#ifndef OSMIUM_IO_DETAIL_XML_OUTPUT_FORMAT_HPP #define OSMIUM_IO_DETAIL_XML_OUTPUT_FORMAT_HPP /* This file is part of Osmium (http://osmcode.org/libosmium). Copyright 2013,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 #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 {}; namespace { void xml_string(std::string& out, const char* in) { for (; *in != '\0'; ++in) { switch(*in) { case '&': out += "&"; break; case '\"': out += """; break; case '\'': out += "'"; break; case '<': out += "<"; break; case '>': out += ">"; break; default: out += *in; break; } } } const size_t tmp_buffer_size = 100; template void oprintf(std::string& out, const char* format, T value) { char buffer[tmp_buffer_size+1]; size_t max_size = sizeof(buffer)/sizeof(char); #ifndef NDEBUG int len = #endif #ifndef _MSC_VER snprintf(buffer, max_size, format, value); #else _snprintf(buffer, max_size, format, value); #endif assert(len > 0 && static_cast(len) < max_size); out += buffer; } } // anonymous namespace class XMLOutputBlock : public osmium::handler::Handler { // 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 osmium::memory::Buffer m_input_buffer; std::string m_out; operation m_last_op {operation::op_none}; const bool m_write_visible_flag; const bool m_write_change_ops; void write_spaces(int num) { for (; num!=0; --num) { m_out += ' '; } } void write_prefix() { if (m_write_change_ops) { write_spaces(4); } else { write_spaces(2); } } void write_meta(const osmium::OSMObject& object) { oprintf(m_out, " id=\"%" PRId64 "\"", object.id()); if (object.version()) { oprintf(m_out, " version=\"%d\"", object.version()); } if (object.timestamp()) { m_out += " timestamp=\""; m_out += object.timestamp().to_iso(); m_out += "\""; } if (!object.user_is_anonymous()) { oprintf(m_out, " uid=\"%d\" user=\"", object.uid()); xml_string(m_out, object.user()); m_out += "\""; } if (object.changeset()) { oprintf(m_out, " changeset=\"%d\"", object.changeset()); } if (m_write_visible_flag) { if (object.visible()) { m_out += " visible=\"true\""; } else { m_out += " visible=\"false\""; } } } void write_tags(const osmium::TagList& tags) { for (const auto& tag : tags) { write_prefix(); 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: explicit XMLOutputBlock(osmium::memory::Buffer&& buffer, bool write_visible_flag, bool write_change_ops) : m_input_buffer(std::move(buffer)), m_write_visible_flag(write_visible_flag && !write_change_ops), m_write_change_ops(write_change_ops) { } XMLOutputBlock(const XMLOutputBlock&) = delete; XMLOutputBlock& operator=(const XMLOutputBlock&) = delete; XMLOutputBlock(XMLOutputBlock&&) = default; XMLOutputBlock& operator=(XMLOutputBlock&&) = default; std::string operator()() { osmium::apply(m_input_buffer.cbegin(), m_input_buffer.cend(), *this); if (m_write_change_ops) { open_close_op_tag(); } std::string out; std::swap(out, m_out); return out; } void node(const osmium::Node& node) { if (m_write_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", node_ref.ref()); } write_tags(way.tags()); write_prefix(); m_out += "\n"; } void relation(const osmium::Relation& relation) { if (m_write_change_ops) { open_close_op_tag(relation.visible() ? (relation.version() == 1 ? operation::op_create : operation::op_modify) : operation::op_delete); } write_prefix(); m_out += "\n"; } write_tags(relation.tags()); write_prefix(); m_out += "\n"; } void changeset(const osmium::Changeset& changeset) { write_prefix(); m_out += "\n"; } else { out += "\n"; } for (const auto& box : header.boxes()) { out += " \n", box.top_right().lat()); } std::promise promise; m_output_queue.push(promise.get_future()); promise.set_value(std::move(out)); } void close() override final { { std::string out; if (m_file.is_true("xml_change_format")) { out += "\n"; } else { out += "\n"; } std::promise promise; m_output_queue.push(promise.get_future()); promise.set_value(std::move(out)); } std::promise promise; m_output_queue.push(promise.get_future()); promise.set_value(std::string()); } }; // class XMLOutputFormat namespace { const bool registered_xml_output = osmium::io::detail::OutputFormatFactory::instance().register_output_format(osmium::io::file_format::xml, [](const osmium::io::File& file, data_queue_type& output_queue) { return new osmium::io::detail::XMLOutputFormat(file, output_queue); }); } // anonymous namespace } // namespace detail } // namespace output } // namespace osmium #endif // OSMIUM_IO_DETAIL_XML_OUTPUT_FORMAT_HPP