Libosmium  2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
entity.hpp
Go to the documentation of this file.
1#ifndef OSMIUM_OSM_ENTITY_HPP
2#define OSMIUM_OSM_ENTITY_HPP
3
4/*
5
6This file is part of Osmium (https://osmcode.org/libosmium).
7
8Copyright 2013-2023 Jochen Topf <jochen@topf.org> and others (see README).
9
10Boost Software License - Version 1.0 - August 17th, 2003
11
12Permission is hereby granted, free of charge, to any person or organization
13obtaining a copy of the software and accompanying documentation covered by
14this license (the "Software") to use, reproduce, display, distribute,
15execute, and transmit the Software, and to prepare derivative works of the
16Software, and to permit third-parties to whom the Software is furnished to
17do so, all subject to the following:
18
19The copyright notices in the Software and this entire statement, including
20the above license grant, this restriction and the following disclaimer,
21must be included in all copies of the Software, in whole or in part, and
22all derivative works of the Software, unless such copies or derivative
23works are solely in the form of machine-executable object code generated by
24a source language processor.
25
26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
29SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
30FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
31ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32DEALINGS IN THE SOFTWARE.
33
34*/
35
39
40namespace osmium {
41
42 namespace detail {
43
44 template <typename TSubitem, typename TIter>
45 inline TSubitem& subitem_of_type(TIter it, const TIter& end) {
46 for (; it != end; ++it) {
47 if (TSubitem::is_compatible_to(it->type()) && !it->removed()) {
48 return reinterpret_cast<TSubitem&>(*it);
49 }
50 }
51
52 // If no subitem of the TSubitem type was found,
53 // return a default constructed one.
54 static TSubitem subitem;
55 return subitem;
56 }
57
58 } // namespace detail
59
65
66 public:
67
68 constexpr static bool is_compatible_to(osmium::item_type t) noexcept {
69 return t == osmium::item_type::node ||
74 }
75
77 Item(size, type) {
78 }
79
80 bool type_is_in(osmium::osm_entity_bits::type entity_bits) const {
81 return (osm_entity_bits::from_item_type(type()) & entity_bits) != 0;
82 }
83
84 }; // class OSMEntity
85
86} // namespace osmium
87
88#endif // OSMIUM_OSM_ENTITY_HPP
OSMEntity is the abstract base class for the OSMObject and Changeset classes.
Definition: entity.hpp:64
bool type_is_in(osmium::osm_entity_bits::type entity_bits) const
Definition: entity.hpp:80
static constexpr bool is_compatible_to(osmium::item_type t) noexcept
Definition: entity.hpp:68
OSMEntity(osmium::memory::item_size_type size, osmium::item_type type)
Definition: entity.hpp:76
Definition: item.hpp:105
item_type type() const noexcept
Definition: item.hpp:171
Item(item_size_type size=0, item_type type=item_type{}) noexcept
Definition: item.hpp:128
Definition: attr.hpp:342
InputIterator< Reader > end(Reader &)
Definition: reader_iterator.hpp:47
uint32_t item_size_type
Definition: item.hpp:57
type
Definition: entity_bits.hpp:63
type from_item_type(osmium::item_type item_type) noexcept
Definition: entity_bits.hpp:108
Namespace for everything in the Osmium library.
Definition: assembler.hpp:53
item_type
Definition: item_type.hpp:45