295 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			295 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OSMIUM_HANDLER_DUMP_HPP
 | |
| #define OSMIUM_HANDLER_DUMP_HPP
 | |
| 
 | |
| /*
 | |
| 
 | |
| This file is part of Osmium (http://osmcode.org/libosmium).
 | |
| 
 | |
| Copyright 2013-2017 Jochen Topf <jochen@topf.org> 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 <iomanip>
 | |
| #include <iostream>
 | |
| #include <string>
 | |
| 
 | |
| #include <osmium/handler.hpp>
 | |
| #include <osmium/memory/collection.hpp>
 | |
| #include <osmium/memory/item.hpp>
 | |
| #include <osmium/osm/area.hpp>
 | |
| #include <osmium/osm/box.hpp>
 | |
| #include <osmium/osm/changeset.hpp>
 | |
| #include <osmium/osm/item_type.hpp>
 | |
| #include <osmium/osm/location.hpp>
 | |
| #include <osmium/osm/node.hpp>
 | |
| #include <osmium/osm/node_ref.hpp>
 | |
| #include <osmium/osm/object.hpp>
 | |
| #include <osmium/osm/relation.hpp>
 | |
| #include <osmium/osm/tag.hpp>
 | |
| #include <osmium/osm/timestamp.hpp>
 | |
| #include <osmium/osm/way.hpp>
 | |
| #include <osmium/visitor.hpp>
 | |
| 
 | |
| namespace osmium {
 | |
| 
 | |
|     namespace handler {
 | |
| 
 | |
|         class Dump : public osmium::handler::Handler {
 | |
| 
 | |
|             std::ostream* m_out;
 | |
|             bool m_with_size;
 | |
|             std::string m_prefix;
 | |
| 
 | |
|             void print_title(const char* title, const osmium::memory::Item& item) {
 | |
|                 *m_out << m_prefix
 | |
|                        << title
 | |
|                        << ":";
 | |
| 
 | |
|                 if (m_with_size) {
 | |
|                     *m_out << " ["
 | |
|                            << item.byte_size()
 | |
|                            << "]";
 | |
|                 }
 | |
| 
 | |
|                 *m_out << "\n";
 | |
|             }
 | |
| 
 | |
|             void print_meta(const osmium::OSMObject& object) {
 | |
|                 *m_out << m_prefix
 | |
|                        << "  id="
 | |
|                        << object.id()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  version="
 | |
|                        << object.version()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  uid="
 | |
|                        << object.uid()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  user=|"
 | |
|                        << object.user()
 | |
|                        << "|\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  changeset="
 | |
|                        << object.changeset()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  timestamp="
 | |
|                        << object.timestamp().to_iso()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  visible="
 | |
|                        << (object.visible() ? "yes" : "no")
 | |
|                        << "\n";
 | |
| 
 | |
|                 Dump dump(*m_out, m_with_size, m_prefix + "  ");
 | |
|                 osmium::apply(object.cbegin(), object.cend(), dump);
 | |
|             }
 | |
| 
 | |
|             void print_location(const osmium::Node& node) {
 | |
|                 const osmium::Location& location = node.location();
 | |
| 
 | |
|                 if (location) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  lon="
 | |
|                            << std::fixed
 | |
|                            << std::setprecision(7)
 | |
|                            << location.lon_without_check()
 | |
|                            << "\n";
 | |
|                     *m_out << m_prefix
 | |
|                            << "  lat="
 | |
|                            << location.lat_without_check()
 | |
|                            << "\n";
 | |
|                 } else {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  lon=\n"
 | |
|                            << m_prefix
 | |
|                            << "  lat=\n";
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             explicit Dump(std::ostream& out, bool with_size = true, const std::string& prefix = "") :
 | |
|                 m_out(&out),
 | |
|                 m_with_size(with_size),
 | |
|                 m_prefix(prefix) {
 | |
|             }
 | |
| 
 | |
|             void tag_list(const osmium::TagList& tags) {
 | |
|                 print_title("TAGS", tags);
 | |
|                 for (const auto& tag : tags) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  k=|"
 | |
|                            << tag.key()
 | |
|                            << "| v=|"
 | |
|                            << tag.value()
 | |
|                            << "|"
 | |
|                            << "\n";
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             void way_node_list(const osmium::WayNodeList& wnl) {
 | |
|                 print_title("NODES", wnl);
 | |
|                 for (const auto& node_ref : wnl) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  ref="
 | |
|                            << node_ref.ref();
 | |
|                     if (node_ref.location()) {
 | |
|                         *m_out << " pos="
 | |
|                                << node_ref.location();
 | |
|                     }
 | |
|                     *m_out << "\n";
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             void relation_member_list(const osmium::RelationMemberList& rml) {
 | |
|                 print_title("MEMBERS", rml);
 | |
|                 for (const auto& member : rml) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  type="
 | |
|                            << item_type_to_name(member.type())
 | |
|                            << " ref="
 | |
|                            << member.ref()
 | |
|                            << " role=|"
 | |
|                            << member.role()
 | |
|                            << "|\n";
 | |
|                     if (member.full_member()) {
 | |
|                         Dump dump(*m_out, m_with_size, m_prefix + "  | ");
 | |
|                         osmium::apply_item(member.get_object(), dump);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             void outer_ring(const osmium::OuterRing& ring) {
 | |
|                 print_title("OUTER RING", ring);
 | |
|                 for (const auto& node_ref : ring) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  ref="
 | |
|                            << node_ref.ref();
 | |
|                     if (node_ref.location()) {
 | |
|                         *m_out << " pos="
 | |
|                                << node_ref.location();
 | |
|                     }
 | |
|                     *m_out << "\n";
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             void inner_ring(const osmium::InnerRing& ring) {
 | |
|                 print_title("INNER RING", ring);
 | |
|                 for (const auto& node_ref : ring) {
 | |
|                     *m_out << m_prefix
 | |
|                            << "  ref="
 | |
|                            << node_ref.ref();
 | |
|                     if (node_ref.location()) {
 | |
|                         *m_out << " pos="
 | |
|                                << node_ref.location();
 | |
|                     }
 | |
|                     *m_out << "\n";
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             void node(const osmium::Node& node) {
 | |
|                 print_title("NODE", node);
 | |
|                 print_meta(node);
 | |
|                 print_location(node);
 | |
|             }
 | |
| 
 | |
|             void way(const osmium::Way& way) {
 | |
|                 print_title("WAY", way);
 | |
|                 print_meta(way);
 | |
|             }
 | |
| 
 | |
|             void relation(const osmium::Relation& relation) {
 | |
|                 print_title("RELATION", relation);
 | |
|                 print_meta(relation);
 | |
|             }
 | |
| 
 | |
|             void area(const osmium::Area& area) {
 | |
|                 print_title("AREA", area);
 | |
|                 print_meta(area);
 | |
|             }
 | |
| 
 | |
|             void changeset(const osmium::Changeset& changeset) {
 | |
|                 print_title("CHANGESET", changeset);
 | |
|                 *m_out << m_prefix
 | |
|                        << "  id="
 | |
|                        << changeset.id()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  num_changes="
 | |
|                        << changeset.num_changes()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  uid="
 | |
|                        << changeset.uid()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  user=|"
 | |
|                        << changeset.user()
 | |
|                        << "|\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  created_at="
 | |
|                        << changeset.created_at().to_iso()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  closed_at="
 | |
|                        << changeset.closed_at().to_iso()
 | |
|                        << "\n";
 | |
|                 *m_out << m_prefix
 | |
|                        << "  bounds=";
 | |
| 
 | |
|                 if (changeset.bounds()) {
 | |
|                     *m_out << '('
 | |
|                            << changeset.bounds().bottom_left().lon_without_check()
 | |
|                            << ','
 | |
|                            << changeset.bounds().bottom_left().lat_without_check()
 | |
|                            << ','
 | |
|                            << changeset.bounds().top_right().lon_without_check()
 | |
|                            << ','
 | |
|                            << changeset.bounds().top_right().lat_without_check()
 | |
|                            << ')';
 | |
|                 } else {
 | |
|                     *m_out << "(undefined)";
 | |
|                 }
 | |
| 
 | |
|                 *m_out << "\n";
 | |
| 
 | |
|                 Dump dump(*m_out, m_with_size, m_prefix + "  ");
 | |
|                 osmium::apply(changeset.cbegin(), changeset.cend(), dump);
 | |
|             }
 | |
| 
 | |
|         }; // class Dump
 | |
| 
 | |
|     } // namespace handler
 | |
| 
 | |
| } // namespace osmium
 | |
| 
 | |
| #endif // OSMIUM_HANDLER_DUMP_HPP
 |