// Copyright 2013 Daniel Parker // Distributed under the Boost license, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // See https://github.com/danielaparker/jsoncons for latest version #ifndef JSONCONS_BSON_ENCODE_BSON_HPP #define JSONCONS_BSON_ENCODE_BSON_HPP #include #include #include #include // std::enable_if #include // std::basic_istream #include #include #include #include namespace jsoncons { namespace bson { template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_bson(const T& j, Container& v, const bson_encode_options& options = bson_encode_options()) { using char_type = typename T::char_type; basic_bson_encoder> encoder(v, options); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_bson(const T& val, Container& v, const bson_encode_options& options = bson_encode_options()) { basic_bson_encoder> encoder(v, options); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } template typename std::enable_if::value,void>::type encode_bson(const T& j, std::ostream& os, const bson_encode_options& options = bson_encode_options()) { using char_type = typename T::char_type; bson_stream_encoder encoder(os, options); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value,void>::type encode_bson(const T& val, std::ostream& os, const bson_encode_options& options = bson_encode_options()) { bson_stream_encoder encoder(os, options); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } // with temp_allocator_rag template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_bson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& j, Container& v, const bson_encode_options& options = bson_encode_options()) { using char_type = typename T::char_type; basic_bson_encoder,TempAllocator> encoder(v, options, temp_alloc); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_bson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& val, Container& v, const bson_encode_options& options = bson_encode_options()) { basic_bson_encoder,TempAllocator> encoder(v, options, temp_alloc); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } template typename std::enable_if::value,void>::type encode_bson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& j, std::ostream& os, const bson_encode_options& options = bson_encode_options()) { using char_type = typename T::char_type; basic_bson_encoder encoder(os, options, temp_alloc); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value,void>::type encode_bson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& val, std::ostream& os, const bson_encode_options& options = bson_encode_options()) { basic_bson_encoder encoder(os, options, temp_alloc); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } } // bson } // jsoncons #endif