#ifndef OSMIUM_MEMORY_ITEM_ITERATOR_HPP #define OSMIUM_MEMORY_ITEM_ITERATOR_HPP /* This file is part of Osmium (https://osmcode.org/libosmium). Copyright 2013-2022 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 #include namespace osmium { namespace memory { namespace detail { template constexpr inline bool type_is_compatible(const osmium::item_type t) noexcept { return T::is_compatible_to(t); } } // namespace detail template class ItemIterator { 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. using data_type = typename std::conditional::value, const unsigned char*, unsigned char*>::type; data_type m_data; data_type m_end; void advance_to_next_item_of_right_type() noexcept { while (m_data != m_end && !detail::type_is_compatible(reinterpret_cast(m_data)->type())) { m_data = reinterpret_cast(m_data)->next(); } } public: using iterator_category = std::forward_iterator_tag; using value_type = TMember; using difference_type = std::ptrdiff_t; using pointer = value_type*; using reference = value_type&; ItemIterator() noexcept : m_data(nullptr), m_end(nullptr) { } ItemIterator(data_type data, data_type end) noexcept : m_data(data), m_end(end) { advance_to_next_item_of_right_type(); } template ItemIterator cast() const noexcept { return ItemIterator(m_data, m_end); } ItemIterator& operator++() noexcept { 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() noexcept { assert(m_data); assert(m_data != m_end); m_data = reinterpret_cast(m_data)->next(); return *static_cast*>(this); } ItemIterator operator++(int) noexcept { ItemIterator tmp{*this}; operator++(); return tmp; } bool operator==(const ItemIterator& rhs) const noexcept { return m_data == rhs.m_data && m_end == rhs.m_end; } bool operator!=(const ItemIterator& rhs) const noexcept { return !(*this == rhs); } data_type data() noexcept { assert(m_data); return m_data; } const unsigned char* data() const noexcept { assert(m_data); return m_data; } TMember& operator*() const noexcept { assert(m_data); assert(m_data != m_end); return *reinterpret_cast(m_data); } TMember* operator->() const noexcept { assert(m_data); assert(m_data != m_end); return reinterpret_cast(m_data); } explicit operator bool() const noexcept { return (m_data != nullptr) && (m_data != m_end); } template void print(std::basic_ostream& out) const { out << static_cast(m_data); } }; // class ItemIterator template inline std::basic_ostream& operator<<(std::basic_ostream& out, const ItemIterator& iter) { iter.print(out); return out; } template class ItemIteratorRange { static_assert(std::is_base_of::value, "Template parameter must derive from osmium::memory::Item"); // This data_type is either 'unsigned char*' or // 'const unsigned char*' depending on whether T is const. using data_type = typename std::conditional::value, const unsigned char*, unsigned char*>::type; data_type m_begin; data_type m_end; public: using iterator = ItemIterator; using const_iterator = ItemIterator; ItemIteratorRange(data_type first, data_type last) noexcept : m_begin(first), m_end(last) { } iterator begin() noexcept { return iterator{m_begin, m_end}; } iterator end() noexcept { return iterator{m_end, m_end}; } const_iterator cbegin() const noexcept { return const_iterator{m_begin, m_end}; } const_iterator cend() const noexcept { return const_iterator{m_end, m_end}; } const_iterator begin() const noexcept { return cbegin(); } const_iterator end() const noexcept { return cend(); } /** * Return the number of items in this range. * * Complexity: Linear in the number of items. */ std::size_t size() const noexcept { if (m_begin == m_end) { return 0; } return std::distance(cbegin(), cend()); } /** * Is this range empty? * * Complexity: Linear in the number of items. */ bool empty() const noexcept { return size() == 0; } }; // class ItemIteratorRange } // namespace memory } // namespace osmium #endif // OSMIUM_MEMORY_ITEM_ITERATOR_HPP