/
githubmirror
/
libcbor
Обзор
Документация
Войти
/
githubmirror
/
libcbor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
doc/source/api/streaming_encoding.rst
64 строки
2 KB
Pavel Kalvoda
Fix critical documentation errors (#398)
08 фев 2026, 22:05
Не верифицирован
08 фев 2026, 22:05
4813d51
Код
Авторство
О чём код?
Streaming Encoding ============================= `cbor/encoding.h <https://github.com/PJK/libcbor/blob/master/src/cbor/encoding.h>`_ exposes a low-level encoding API to encode CBOR objects on the fly. Unlike :func:`cbor_serialize`, these functions take logical values (integers, floats, strings, etc.) instead of :type:`cbor_item_t`. The client is responsible for constructing the compound types correctly (e.g. terminating arrays). Streaming encoding is typically used to create a streaming (indefinite length) CBOR :doc:`byte strings <type_2_byte_strings>`, :doc:`strings <type_3_strings>`, :doc:`arrays <type_4_arrays>`, and :doc:`maps <type_5_maps>`. Complete example: `examples/streaming_array.c <https://github.com/PJK/libcbor/blob/master/examples/streaming_array.c>`_ .. doxygenfunction:: cbor_encode_uint8 .. doxygenfunction:: cbor_encode_uint16 .. doxygenfunction:: cbor_encode_uint32 .. doxygenfunction:: cbor_encode_uint64 .. doxygenfunction:: cbor_encode_uint .. doxygenfunction:: cbor_encode_negint8 .. doxygenfunction:: cbor_encode_negint16 .. doxygenfunction:: cbor_encode_negint32 .. doxygenfunction:: cbor_encode_negint64 .. doxygenfunction:: cbor_encode_negint .. doxygenfunction:: cbor_encode_bytestring_start .. doxygenfunction:: cbor_encode_indef_bytestring_start .. doxygenfunction:: cbor_encode_string_start .. doxygenfunction:: cbor_encode_indef_string_start .. doxygenfunction:: cbor_encode_array_start .. doxygenfunction:: cbor_encode_indef_array_start .. doxygenfunction:: cbor_encode_map_start .. doxygenfunction:: cbor_encode_indef_map_start .. doxygenfunction:: cbor_encode_tag .. doxygenfunction:: cbor_encode_bool .. doxygenfunction:: cbor_encode_null .. doxygenfunction:: cbor_encode_undef .. doxygenfunction:: cbor_encode_half .. doxygenfunction:: cbor_encode_single .. doxygenfunction:: cbor_encode_double .. doxygenfunction:: cbor_encode_break .. doxygenfunction:: cbor_encode_ctrl