1 #ifndef OSMIUM_OSM_CRC_HPP 2 #define OSMIUM_OSM_CRC_HPP 55 inline namespace util {
58 #if defined(__GNUC__) || defined(__clang__) 59 return __builtin_bswap16(value);
61 return (value >> 8) | (value << 8);
66 #if defined(__GNUC__) || defined(__clang__) 67 return __builtin_bswap32(value);
69 return (value >> 24) |
70 ((value >> 8) & 0x0000FF00) |
71 ((value << 8) & 0x00FF0000) |
77 #if defined(__GNUC__) || defined(__clang__) 78 return __builtin_bswap64(value);
82 return (val1 << 32) | val2;
101 template <
typename TCRC>
117 m_crc.process_byte(value);
121 m_crc.process_byte(value);
125 #if __BYTE_ORDER == __LITTLE_ENDIAN 126 m_crc.process_bytes(&value,
sizeof(uint16_t));
129 m_crc.process_bytes(&v,
sizeof(uint16_t));
134 #if __BYTE_ORDER == __LITTLE_ENDIAN 135 m_crc.process_bytes(&value,
sizeof(uint32_t));
138 m_crc.process_bytes(&v,
sizeof(uint32_t));
143 #if __BYTE_ORDER == __LITTLE_ENDIAN 144 m_crc.process_bytes(&value,
sizeof(uint64_t));
147 m_crc.process_bytes(&v,
sizeof(uint64_t));
153 m_crc.process_byte(*str++);
158 update_int32(uint32_t(timestamp));
162 update_int32(location.x());
163 update_int32(location.y());
167 update(box.bottom_left());
168 update(box.top_right());
172 update_int64(node_ref.ref());
173 update(node_ref.location());
177 for (
const NodeRef& node_ref : node_refs) {
183 for (
const Tag& tag : tags) {
184 update_string(tag.key());
185 update_string(tag.value());
190 update_int64(member.ref());
191 update_int16(uint16_t(member.type()));
192 update_string(member.role());
202 update_int64(
object.
id());
203 update_bool(
object.visible());
204 update_int32(
object.version());
205 update(
object.timestamp());
206 update_int32(
object.uid());
207 update_string(
object.user());
208 update(
object.tags());
212 update(static_cast<const osmium::OSMObject&>(node));
213 update(node.location());
217 update(static_cast<const osmium::OSMObject&>(way));
222 update(static_cast<const osmium::OSMObject&>(relation));
223 update(relation.members());
227 update(static_cast<const osmium::OSMObject&>(area));
228 for (
const auto& subitem : area) {
231 update(static_cast<const osmium::NodeRefList&>(subitem));
237 for (
const auto& comment : discussion) {
238 update(comment.date());
239 update_int32(comment.uid());
240 update_string(comment.user());
241 update_string(comment.text());
246 update_int64(changeset.id());
247 update(changeset.created_at());
248 update(changeset.closed_at());
249 update(changeset.bounds());
250 update_int32(changeset.num_changes());
251 update_int32(changeset.num_comments());
252 update_int32(changeset.uid());
253 update_string(changeset.user());
254 update(changeset.tags());
255 update(changeset.discussion());
262 #endif // OSMIUM_OSM_CRC_HPP
Definition: changeset.hpp:132
void update(const osmium::RelationMemberList &members) noexcept
Definition: crc.hpp:195
void update_string(const char *str) noexcept
Definition: crc.hpp:151
void update_int16(const uint16_t value) noexcept
Definition: crc.hpp:124
Definition: relation.hpp:168
void update(const osmium::Location &location) noexcept
Definition: crc.hpp:161
void update(const osmium::Relation &relation) noexcept
Definition: crc.hpp:221
void update(const osmium::Node &node) noexcept
Definition: crc.hpp:211
Definition: relation.hpp:154
void update(const osmium::Way &way) noexcept
Definition: crc.hpp:216
TCRC m_crc
Definition: crc.hpp:104
void update_int64(const uint64_t value) noexcept
Definition: crc.hpp:142
void update(const osmium::Changeset &changeset) noexcept
Definition: crc.hpp:245
void update(const osmium::Area &area) noexcept
Definition: crc.hpp:226
void update(const osmium::Box &box) noexcept
Definition: crc.hpp:166
const TCRC & operator()() const noexcept
Definition: crc.hpp:112
TCRC & operator()() noexcept
Definition: crc.hpp:108
void update(const osmium::RelationMember &member) noexcept
Definition: crc.hpp:189
Definition: relation.hpp:57
void update_int32(const uint32_t value) noexcept
Definition: crc.hpp:133
void update(const TagList &tags) noexcept
Definition: crc.hpp:182
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
Definition: timestamp.hpp:147
uint32_t byte_swap_32(uint32_t value) noexcept
Definition: crc.hpp:65
Definition: location.hpp:271
void update(const osmium::OSMObject &object) noexcept
Definition: crc.hpp:201
uint64_t byte_swap_64(uint64_t value) noexcept
Definition: crc.hpp:76
void update(const Timestamp ×tamp) noexcept
Definition: crc.hpp:157
Definition: node_ref_list.hpp:52
An OSM Changeset, a group of changes made by a single user over a short period of time...
Definition: changeset.hpp:148
Definition: node_ref.hpp:50
void update(const NodeRefList &node_refs) noexcept
Definition: crc.hpp:176
uint16_t byte_swap_16(uint16_t value) noexcept
Definition: crc.hpp:57
void update(const osmium::ChangesetDiscussion &discussion) noexcept
Definition: crc.hpp:236
void update(const NodeRef &node_ref) noexcept
Definition: crc.hpp:171
void update_bool(const bool value) noexcept
Definition: crc.hpp:116
Definition: object.hpp:64
void update_int8(const uint8_t value) noexcept
Definition: crc.hpp:120