#ifndef OSMIUM_IO_DETAIL_XML_OUTPUT_FORMAT_HPP #define OSMIUM_IO_DETAIL_XML_OUTPUT_FORMAT_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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace osmium { namespace io { namespace detail { struct XMLWriteError {}; struct xml_output_options { /// Which metadata of objects should be added? osmium::metadata_options add_metadata; /// Should the visible flag be added to all OSM objects? bool add_visible_flag = false; /** * Should , , "operations" be added? * (This is used for .osc files.) */ bool use_change_ops = false; /// Should node locations be added to ways? bool locations_on_ways = false; }; // struct xml_output_options namespace detail { inline void append_lat_lon_attributes(std::string& out, const char* lat, const char* lon, const osmium::Location& location) { out += ' '; out += lat; out += "=\""; osmium::detail::append_location_coordinate_to_string(std::back_inserter(out), location.y()); out += "\" "; out += lon; out += "=\""; osmium::detail::append_location_coordinate_to_string(std::back_inserter(out), location.x()); out += "\""; } } // namespace detail class XMLOutputBlock : public OutputBlock { // operation (create, modify, delete) for osc files enum class operation { op_none = 0, op_create = 1, op_modify = 2, op_delete = 3 }; // enum class operation operation m_last_op{operation::op_none}; xml_output_options m_options; void write_spaces(int num) { for (; num != 0; --num) { *m_out += ' '; } } int prefix_spaces() const noexcept { return m_options.use_change_ops ? 4 : 2; } void write_prefix() { write_spaces(prefix_spaces()); } template void write_attribute(const char* name, T value) { *m_out += ' '; *m_out += name; *m_out += "=\""; output_int(value); *m_out += '"'; } void write_meta(const osmium::OSMObject& object) { write_attribute("id", object.id()); if (m_options.add_metadata.version() && object.version()) { write_attribute("version", object.version()); } if (m_options.add_metadata.timestamp() && object.timestamp()) { *m_out += " timestamp=\""; *m_out += object.timestamp().to_iso_all(); *m_out += "\""; } if (m_options.add_metadata.uid() && object.uid()) { write_attribute("uid", object.uid()); } if (m_options.add_metadata.user() && object.user()[0] != '\0') { *m_out += " user=\""; append_xml_encoded_string(*m_out, object.user()); *m_out += "\""; } if (m_options.add_metadata.changeset() && object.changeset()) { write_attribute("changeset", object.changeset()); } if (m_options.add_visible_flag) { if (object.visible()) { *m_out += " visible=\"true\""; } else { *m_out += " visible=\"false\""; } } } void write_tags(const osmium::TagList& tags, int spaces) { for (const auto& tag : tags) { write_spaces(spaces); *m_out += " \n"; } } void write_discussion(const osmium::ChangesetDiscussion& comments) { *m_out += " \n"; for (const auto& comment : comments) { *m_out += " \n"; *m_out += " "; append_xml_encoded_string(*m_out, comment.text()); *m_out += "\n \n"; } *m_out += " \n"; } void open_close_op_tag(const operation op = operation::op_none) { if (op == m_last_op) { return; } switch (m_last_op) { case operation::op_none: break; case operation::op_create: *m_out += " \n"; break; case operation::op_modify: *m_out += " \n"; break; case operation::op_delete: *m_out += " \n"; break; } switch (op) { case operation::op_none: break; case operation::op_create: *m_out += " \n"; break; case operation::op_modify: *m_out += " \n"; break; case operation::op_delete: *m_out += " \n"; break; } m_last_op = op; } public: XMLOutputBlock(osmium::memory::Buffer&& buffer, const xml_output_options& options) : OutputBlock(std::move(buffer)), m_options(options) { } std::string operator()() { osmium::apply(m_input_buffer->cbegin(), m_input_buffer->cend(), *this); if (m_options.use_change_ops) { open_close_op_tag(); } std::string out; using std::swap; swap(out, *m_out); return out; } void node(const osmium::Node& node) { if (m_options.use_change_ops) { open_close_op_tag(node.visible() ? (node.version() == 1 ? operation::op_create : operation::op_modify) : operation::op_delete); } write_prefix(); *m_out += "\n"; } write_tags(relation.tags(), prefix_spaces()); write_prefix(); *m_out += "\n"; } void changeset(const osmium::Changeset& changeset) { *m_out += " \n"}; if (m_options.use_change_ops) { out += "\n"; for (const auto& box : header.boxes()) { out += "