#ifndef OSMIUM_VISITOR_HPP #define OSMIUM_VISITOR_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 // IWYU pragma: keep #include #include #include #include #include #include namespace osmium { namespace detail { template using ConstIfConst = typename std::conditional::value, typename std::add_const::type, U>::type; template inline void apply_item_impl(TItem& item, THandler&& handler) { switch (item.type()) { case osmium::item_type::undefined: break; case osmium::item_type::node: handler.osm_object(static_cast&>(item)); handler.node(static_cast&>(item)); break; case osmium::item_type::way: handler.osm_object(static_cast&>(item)); handler.way(static_cast&>(item)); break; case osmium::item_type::relation: handler.osm_object(static_cast&>(item)); handler.relation(static_cast&>(item)); break; case osmium::item_type::area: handler.osm_object(static_cast&>(item)); handler.area(static_cast&>(item)); break; case osmium::item_type::changeset: handler.changeset(static_cast&>(item)); break; case osmium::item_type::tag_list: handler.tag_list(static_cast&>(item)); break; case osmium::item_type::way_node_list: handler.way_node_list(static_cast&>(item)); break; case osmium::item_type::relation_member_list: case osmium::item_type::relation_member_list_with_full_members: handler.relation_member_list(static_cast&>(item)); break; case osmium::item_type::outer_ring: handler.outer_ring(static_cast&>(item)); break; case osmium::item_type::inner_ring: handler.inner_ring(static_cast&>(item)); break; case osmium::item_type::changeset_discussion: handler.changeset_discussion(static_cast&>(item)); break; } } template inline void apply_item_impl(const osmium::OSMEntity& item, THandler&& handler) { switch (item.type()) { case osmium::item_type::node: handler.osm_object(static_cast(item)); handler.node(static_cast(item)); break; case osmium::item_type::way: handler.osm_object(static_cast(item)); handler.way(static_cast(item)); break; case osmium::item_type::relation: handler.osm_object(static_cast(item)); handler.relation(static_cast(item)); break; case osmium::item_type::area: handler.osm_object(static_cast(item)); handler.area(static_cast(item)); break; case osmium::item_type::changeset: handler.changeset(static_cast(item)); break; default: throw osmium::unknown_type{}; } } template inline void apply_item_impl(osmium::OSMEntity& item, THandler&& handler) { switch (item.type()) { case osmium::item_type::node: handler.osm_object(static_cast(item)); handler.node(static_cast(item)); break; case osmium::item_type::way: handler.osm_object(static_cast(item)); handler.way(static_cast(item)); break; case osmium::item_type::relation: handler.osm_object(static_cast(item)); handler.relation(static_cast(item)); break; case osmium::item_type::area: handler.osm_object(static_cast(item)); handler.area(static_cast(item)); break; case osmium::item_type::changeset: handler.changeset(static_cast(item)); break; default: throw osmium::unknown_type{}; } } template inline void apply_item_impl(const osmium::OSMObject& item, THandler&& handler) { switch (item.type()) { case osmium::item_type::node: handler.osm_object(item); handler.node(static_cast(item)); break; case osmium::item_type::way: handler.osm_object(item); handler.way(static_cast(item)); break; case osmium::item_type::relation: handler.osm_object(item); handler.relation(static_cast(item)); break; case osmium::item_type::area: handler.osm_object(item); handler.area(static_cast(item)); break; default: throw osmium::unknown_type{}; } } template inline void apply_item_impl(osmium::OSMObject& item, THandler&& handler) { switch (item.type()) { case osmium::item_type::node: handler.osm_object(item); handler.node(static_cast(item)); break; case osmium::item_type::way: handler.osm_object(item); handler.way(static_cast(item)); break; case osmium::item_type::relation: handler.osm_object(item); handler.relation(static_cast(item)); break; case osmium::item_type::area: handler.osm_object(item); handler.area(static_cast(item)); break; default: throw osmium::unknown_type{}; } } template struct wrapper_handler : TFunc { template explicit wrapper_handler(T&& func) : TFunc(std::forward(func)) { // NOLINT(bugprone-forwarding-reference-overload) } // Fallback that always matches. void operator()(const osmium::memory::Item& /*item*/) const noexcept { } // The function we are wrapping. using TFunc::operator(); void osm_object(const osmium::OSMObject& /*osm_object*/) const noexcept { } void node(const osmium::Node& node) const { operator()(node); } // cppcheck-suppress constParameter void node(osmium::Node& node) const { operator()(node); } void way(const osmium::Way& way) const { operator()(way); } // cppcheck-suppress constParameter void way(osmium::Way& way) const { operator()(way); } void relation(const osmium::Relation& relation) const { operator()(relation); } // cppcheck-suppress constParameter void relation(osmium::Relation& relation) const { operator()(relation); } void area(const osmium::Area& area) const { operator()(area); } // cppcheck-suppress constParameter void area(osmium::Area& area) const { operator()(area); } void changeset(const osmium::Changeset& changeset) const { operator()(changeset); } // cppcheck-suppress constParameter void changeset(osmium::Changeset& changeset) const { operator()(changeset); } void tag_list(const osmium::TagList& /*tag_list*/) const noexcept { } void way_node_list(const osmium::WayNodeList& /*way_node_list*/) const noexcept { } void relation_member_list(const osmium::RelationMemberList& /*relation_member_list*/) const noexcept { } void outer_ring(const osmium::OuterRing& /*outer_ring*/) const noexcept { } void inner_ring(const osmium::InnerRing& /*inner_ring*/) const noexcept { } void changeset_discussion(const osmium::ChangesetDiscussion& /*changeset_discussion*/) const noexcept { } void flush() const noexcept { } }; // struct wrapper_handler // Is the class T derived from osmium::handler::Handler? template using is_handler = std::is_base_of::type>; // This is already a handler, use it as it is. template ::value>::type> T make_handler(T&& func) { return std::forward(func); } // This is not a handler, but a functor. Wrap a handler around it. template ::value>::type> wrapper_handler::type> make_handler(T&& func) { return wrapper_handler::type>(std::forward(func)); } } // namespace detail template inline void apply_item(TItem& item, THandlers&&... handlers) { (void)std::initializer_list{ (detail::apply_item_impl(item, std::forward(handlers)), 0)...}; } template inline void apply_flush(THandlers&&... handlers) { (void)std::initializer_list{ (std::forward(handlers).flush(), 0)...}; } template inline void apply_impl(TIterator it, TIterator end, THandlers&&... handlers) { for (; it != end; ++it) { apply_item(*it, handlers...); } apply_flush(std::forward(handlers)...); } template inline void apply(TIterator it, TIterator end, THandlers&&... handlers) { apply_impl(it, end, detail::make_handler(std::forward(handlers))...); } template inline void apply(TContainer& c, THandlers&&... handlers) { using std::begin; using std::end; apply(begin(c), end(c), std::forward(handlers)...); } template inline void apply(const osmium::memory::Buffer& buffer, THandlers&&... handlers) { apply(buffer.cbegin(), buffer.cend(), std::forward(handlers)...); } } // namespace osmium #endif // OSMIUM_VISITOR_HPP