UBJSON

Universal Binary JSON (UBJSON) is a binary form directly imitating JSON, but requiring fewer bytes of data. It aims to achieve the generality of JSON, combined with being much easier to process than JSON.

!!! abstract “References”

- [UBJSON Website](http://ubjson.org)

Serialization

The library uses the following mapping from JSON values types to UBJSON types according to the UBJSON specification:

JSON value typevalue/rangeUBJSON typemarker
nullnullnullZ
booleantruetrueT
booleanfalsefalseF
number_integer-9223372036854775808..-2147483649int64L
number_integer-2147483648..-32769int32l
number_integer-32768..-129int16I
number_integer-128..127int8i
number_integer128..255uint8U
number_integer256..32767int16I
number_integer32768..2147483647int32l
number_integer2147483648..9223372036854775807int64L
number_unsigned0..127int8i
number_unsigned128..255uint8U
number_unsigned256..32767int16I
number_unsigned32768..2147483647int32l
number_unsigned2147483648..9223372036854775807int64L
number_unsigned2147483649..18446744073709551615high-precisionH
number_floatany valuefloat64D
stringwith shortest length indicatorstringS
arraysee notes on optimized formatarray[
objectsee notes on optimized formatmap{

!!! success “Complete mapping”

The mapping is **complete** in the sense that any JSON value type can be converted to a UBJSON value.

Any UBJSON output created by `to_ubjson` can be successfully parsed by `from_ubjson`.

!!! warning “Size constraints”

The following values can **not** be converted to a UBJSON value:

  - strings with more than 9223372036854775807 bytes (theoretical)

!!! info “Unused UBJSON markers”

The following markers are not used in the conversion:

- `Z`: no-op values are not created.
- `C`: single-byte strings are serialized with `S` markers.

!!! info “NaN/infinity handling”

If NaN or Infinity are stored inside a JSON number, they are
serialized properly. This behavior differs from the `dump()`
function which serializes NaN or Infinity to `null`.

!!! info “Optimized formats”

The optimized formats for containers are supported: Parameter
`use_size` adds size information to the beginning of a container and
removes the closing marker. Parameter `use_type` further checks
whether all elements of a container have the same type and adds the
type marker to the beginning of the container. The `use_type`
parameter must only be used together with `use_size = true`.

Note that `use_size = true` alone may result in larger representations -
the benefit of this parameter is that the receiving side is
immediately informed on the number of elements of the container.

!!! info “Binary values”

If the JSON data contains the binary type, the value stored is a list
of integers, as suggested by the UBJSON documentation.  In particular,
this means that serialization and the deserialization of a JSON
containing binary values into UBJSON and back will result in a
different JSON object.

??? example

```cpp
--8<-- "examples/to_ubjson.cpp"
```

Output:

```c
--8<-- "examples/to_ubjson.output"
```

Deserialization

The library maps UBJSON types to JSON value types as follows:

UBJSON typeJSON value typemarker
no-opno value, next value is readN
nullnullZ
falsefalseF
truetrueT
float32number_floatd
float64number_floatD
uint8number_unsignedU
int8number_integeri
int16number_integerI
int32number_integerl
int64number_integerL
stringstringS
charstringC
arrayarray (optimized values are supported)[
objectobject (optimized values are supported){

!!! success “Complete mapping”

The mapping is **complete** in the sense that any UBJSON value can be converted to a JSON value.

??? example

```cpp
--8<-- "examples/from_ubjson.cpp"
```

Output:

```json
--8<-- "examples/from_ubjson.output"
```