Encodes a C++ data structure to the Universal Binary JSON Specification (UBJSON) data format.
#include <jsoncons_ext/ubjson/ubjson.hpp>
template <typename T,typename ByteContainer>
void encode_ubjson(const T& jval, ByteContainer& cont,
const ubjson_decode_options& options = ubjson_decode_options()); (1)
template <typename T>
void encode_ubjson(const T& jval, std::ostream& os,
const bson_decode_options& options = bson_decode_options()); (2)
template <typename T,typename ByteContainer>
void encode_ubjson(const allocator_set<Allocator,TempAllocator>& alloc_set,
const T& jval, ByteContainer& cont,
const ubjson_decode_options& options = ubjson_decode_options()); (3) (since 0.171.0)
template <typename T>
void encode_ubjson(const allocator_set<Allocator,TempAllocator>& alloc_set,
const T& jval, std::ostream& os,
const bson_decode_options& options = bson_decode_options()); (4) (since 0.171.0)
(1) Writes a value of type T into a byte container in the UBJSON data format, using the specified (or defaulted) options.
Type 'T' must be an instantiation of basic_json
or support json_type_traits.
Type ByteContainer
must be back insertable and have member type value_type
with size exactly 8 bits (since 0.152.0.)
Any of the values types int8_t
, uint8_t
, char
, unsigned char
and std::byte
(since C++17) are allowed.
(2) Writes a value of type T into a binary stream in the UBJSON data format, using the specified (or defaulted) options. Type 'T' must be an instantiation of basic_json or support json_type_traits.
Functions (3)-(4) are identical to (1)-(2) except an allocator_set is passed as an additional argument.
decode_ubjson decodes a Binary JSON data format to a json value.