// Copyright 2017 Daniel Parkerstd // 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_CBOR_ENCODE_CBOR_HPP #define JSONCONS_CBOR_ENCODE_CBOR_HPP #include #include #include #include // std::enable_if #include // std::basic_istream #include #include #include #include #include namespace jsoncons { namespace cbor { // to bytes template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_cbor(const T& j, Container& v, const cbor_encode_options& options = cbor_encode_options()) { using char_type = typename T::char_type; basic_cbor_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_cbor(const T& val, Container& v, const cbor_encode_options& options = cbor_encode_options()) { basic_cbor_encoder> encoder(v, options); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } // stream template typename std::enable_if::value,void>::type encode_cbor(const T& j, std::ostream& os, const cbor_encode_options& options = cbor_encode_options()) { using char_type = typename T::char_type; cbor_stream_encoder encoder(os, options); auto adaptor = make_json_visitor_adaptor>(encoder); j.dump(adaptor); } template typename std::enable_if::value,void>::type encode_cbor(const T& val, std::ostream& os, const cbor_encode_options& options = cbor_encode_options()) { cbor_stream_encoder encoder(os, options); std::error_code ec; encode_traits::encode(val, encoder, json(), ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } // temp_allocator_arg // to bytes template typename std::enable_if::value && type_traits::is_back_insertable_byte_container::value,void>::type encode_cbor(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& j, Container& v, const cbor_encode_options& options = cbor_encode_options()) { using char_type = typename T::char_type; basic_cbor_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_cbor(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& val, Container& v, const cbor_encode_options& options = cbor_encode_options()) { basic_cbor_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)); } } // stream template typename std::enable_if::value,void>::type encode_cbor(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& j, std::ostream& os, const cbor_encode_options& options = cbor_encode_options()) { using char_type = typename T::char_type; basic_cbor_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_cbor(temp_allocator_arg_t, const TempAllocator& temp_alloc, const T& val, std::ostream& os, const cbor_encode_options& options = cbor_encode_options()) { std::error_code ec; encode_cbor(temp_allocator_arg, temp_alloc, val, os, options, ec); if (ec) { JSONCONS_THROW(ser_error(ec)); } } } // namespace cbor } // namespace jsoncons #endif