#ifndef OSMIUM_ITEM_ITERATOR_HPP #define OSMIUM_ITEM_ITERATOR_HPP /* This file is part of Osmium (http://osmcode.org/libosmium). Copyright 2014 Jochen Topf and others (see README). Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include #include #include #include namespace osmium { class Node; class Way; class Relation; class Area; class Changeset; class OSMObject; class OSMEntity; class TagList; class WayNodeList; class RelationMemberList; class InnerRing; class OuterRing; namespace memory { namespace detail { template inline bool type_is_compatible(osmium::item_type) noexcept { return true; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::node; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::way; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::relation; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::area; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::changeset; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::node || t == osmium::item_type::way || t == osmium::item_type::relation || t == osmium::item_type::area; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::node || t == osmium::item_type::way || t == osmium::item_type::relation || t == osmium::item_type::area || t == osmium::item_type::changeset; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::tag_list; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::way_node_list; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::relation_member_list || t == osmium::item_type::relation_member_list_with_full_members; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::outer_ring; } template <> inline bool type_is_compatible(osmium::item_type t) noexcept { return t == osmium::item_type::inner_ring; } } // namespace detail template class ItemIterator : public std::iterator { static_assert(std::is_base_of::value, "TMember must derive from osmium::memory::Item"); // This data_type is either 'unsigned char*' or 'const unsigned char*' depending // on whether TMember is const. This allows this class to be used as an iterator and // as a const_iterator. typedef typename std::conditional::value, const unsigned char*, unsigned char*>::type data_type; data_type m_data; data_type m_end; void advance_to_next_item_of_right_type() { while (m_data != m_end && !detail::type_is_compatible::type>(reinterpret_cast(m_data)->type())) { m_data = reinterpret_cast(m_data)->next(); } } public: ItemIterator() noexcept : m_data(nullptr), m_end(nullptr) { } ItemIterator(data_type data, data_type end) : m_data(data), m_end(end) { advance_to_next_item_of_right_type(); } template ItemIterator cast() const { return ItemIterator(m_data, m_end); } ItemIterator& operator++() { assert(m_data); assert(m_data != m_end); m_data = reinterpret_cast(m_data)->next(); advance_to_next_item_of_right_type(); return *static_cast*>(this); } /** * Like operator++() but will NOT skip items of unwanted * types. Do not use this unless you know what you are * doing. */ ItemIterator& advance_once() { assert(m_data); assert(m_data != m_end); m_data = reinterpret_cast(m_data)->next(); return *static_cast*>(this); } ItemIterator operator++(int) { ItemIterator tmp(*this); operator++(); return tmp; } bool operator==(const ItemIterator& rhs) const { return m_data == rhs.m_data && m_end == rhs.m_end; } bool operator!=(const ItemIterator& rhs) const { return !(*this == rhs); } unsigned char* data() const { assert(m_data); return m_data; } TMember& operator*() const { assert(m_data); assert(m_data != m_end); return *reinterpret_cast(m_data); } TMember* operator->() const { assert(m_data); assert(m_data != m_end); return reinterpret_cast(m_data); } explicit operator bool() const { return m_data != nullptr; } template friend std::basic_ostream& operator<<(std::basic_ostream& out, const ItemIterator& iter) { return out << static_cast(iter.m_data); } }; // class ItemIterator } // namespace memory } // namespace osmium #endif // OSMIUM_ITEM_ITERATOR_HPP