#ifndef OSMIUM_IO_WRITER_HPP #define OSMIUM_IO_WRITER_HPP /* This file is part of Osmium (http://osmcode.org/libosmium). Copyright 2013-2015 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 namespace osmium { namespace io { /** * This is the user-facing interface for writing OSM files. Instantiate * an object of this class with a file name or osmium::io::File object * and optionally the data for the header and then call operator() on it * to write Buffers. Call close() to finish up. */ class Writer { osmium::io::File m_file; osmium::io::detail::data_queue_type m_output_queue; std::unique_ptr m_output; std::unique_ptr m_compressor; std::future m_write_future; public: /** * The constructor of the Writer object opens a file and writes the * header to it. * * @param file File (contains name and format info) to open. * @param header Optional header data. If this is not given sensible * defaults will be used. See the default constructor * of osmium::io::Header for details. * @param allow_overwrite Allow overwriting of existing file? Can be * osmium::io::overwrite::allow or osmium::io::overwrite::no * (default). * * @throws std::runtime_error If the file could not be opened. * @throws std::system_error If the file could not be opened. */ explicit Writer(const osmium::io::File& file, const osmium::io::Header& header = osmium::io::Header(), overwrite allow_overwrite = overwrite::no) : m_file(file), m_output_queue(20, "raw_output"), // XXX m_output(osmium::io::detail::OutputFormatFactory::instance().create_output(m_file, m_output_queue)), m_compressor(osmium::io::CompressionFactory::instance().create_compressor(file.compression(), osmium::io::detail::open_for_writing(m_file.filename(), allow_overwrite))), m_write_future(std::async(std::launch::async, detail::WriteThread(m_output_queue, m_compressor.get()))) { assert(!m_file.buffer()); m_output->write_header(header); } explicit Writer(const std::string& filename, const osmium::io::Header& header = osmium::io::Header(), overwrite allow_overwrite = overwrite::no) : Writer(osmium::io::File(filename), header, allow_overwrite) { } explicit Writer(const char* filename, const osmium::io::Header& header = osmium::io::Header(), overwrite allow_overwrite = overwrite::no) : Writer(osmium::io::File(filename), header, allow_overwrite) { } Writer(const Writer&) = delete; Writer& operator=(const Writer&) = delete; ~Writer() { close(); } /** * Write contents of a buffer to the output file. * * @throws Some form of std::runtime_error when there is a problem. */ void operator()(osmium::memory::Buffer&& buffer) { osmium::thread::check_for_exception(m_write_future); if (buffer.committed() > 0) { m_output->write_buffer(std::move(buffer)); } } /** * Flush writes to output file and closes it. If you do not * call this, the destructor of Writer will also do the same * thing. But because this call might thrown an exception, * it is better to call close() explicitly. * * @throws Some form of std::runtime_error when there is a problem. */ void close() { m_output->close(); osmium::thread::wait_until_done(m_write_future); } }; // class Writer } // namespace io } // namespace osmium #endif // OSMIUM_IO_WRITER_HPP