// 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_UBJSON_ENCODE_UBJSON_HPP #define JSONCONS_UBJSON_ENCODE_UBJSON_HPP #include #include #include #include // std::enable_if #include // std::basic_istream #include #include #include #include namespace jsoncons { namespace ubjson { template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_ubjson(const T& j, Container& v, const ubjson_encode_options& options = ubjson_encode_options()) { using char_type = typename T::char_type; basic_ubjson_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_ubjson(const T& val, Container& v, const ubjson_encode_options& options = ubjson_encode_options()) { basic_ubjson_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_ubjson(const T& j, std::ostream& os, const ubjson_encode_options& options = ubjson_encode_options()) { using char_type = typename T::char_type; ubjson_stream_encoder encoder(os, options); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value,void>::type encode_ubjson(const T& val, std::ostream& os, const ubjson_encode_options& options = ubjson_encode_options()) { ubjson_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_arg_t template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_ubjson(temp_allocator_arg_t, const TempAllocator& temp_alloc,const T& j, Container& v, const ubjson_encode_options& options = ubjson_encode_options()) { using char_type = typename T::char_type; basic_ubjson_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_ubjson(temp_allocator_arg_t, const TempAllocator& temp_alloc,const T& val, Container& v, const ubjson_encode_options& options = ubjson_encode_options()) { basic_ubjson_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_ubjson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& j, std::ostream& os, const ubjson_encode_options& options = ubjson_encode_options()) { using char_type = typename T::char_type; basic_ubjson_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_ubjson(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& val, std::ostream& os, const ubjson_encode_options& options = ubjson_encode_options()) { basic_ubjson_encoder encoder(os, options, temp_alloc); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } } // ubjson } // jsoncons #endif