:orphan: .. index:: pair: group; JSON routines. .. _doxid-group__te__tools__te__json: JSON routines. ============== .. toctree:: :hidden: enum_te_json_compound.rst enum_te_json_out_t.rst struct_te_json_ctx_t.rst struct_te_json_level_t.rst union_te_json_out_loc_t.rst Overview ~~~~~~~~ These functions provide an easy but robust way to convert native data to JSON format. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef enum :ref:`te_json_compound` :ref:`te_json_compound`; typedef struct :ref:`te_json_level_t` :ref:`te_json_level_t`; typedef enum :ref:`te_json_out_t` :ref:`te_json_out_t`; typedef union :ref:`te_json_out_loc_t` :ref:`te_json_out_loc_t`; typedef struct :ref:`te_json_ctx_t` :ref:`te_json_ctx_t`; // enums enum :ref:`te_json_compound`; enum :ref:`te_json_out_t`; // structs struct :ref:`te_json_ctx_t`; struct :ref:`te_json_level_t`; // unions union :ref:`te_json_out_loc_t`; // global functions void :ref:`te_json_add_simple`(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...); static void static void :ref:`te_json_add_null`(:ref:`te_json_ctx_t`* ctx); static void :ref:`te_json_add_bool`(:ref:`te_json_ctx_t`* ctx, bool val); static void :ref:`te_json_add_integer`(:ref:`te_json_ctx_t`* ctx, intmax_t val); static void :ref:`te_json_add_float`(:ref:`te_json_ctx_t`* ctx, double val, int precision); void :ref:`te_json_add_string`(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...); void void :ref:`te_json_start_string`(:ref:`te_json_ctx_t`* ctx); void :ref:`te_json_append_string`(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...); void void :ref:`te_json_append_string_va`(:ref:`te_json_ctx_t`* ctx, const char* fmt, va_list args); void :ref:`te_json_start_raw`(:ref:`te_json_ctx_t`* ctx); void :ref:`te_json_append_raw`(:ref:`te_json_ctx_t`* ctx, const char* value, size_t len); void :ref:`te_json_start_array`(:ref:`te_json_ctx_t`* ctx); void :ref:`te_json_start_object`(:ref:`te_json_ctx_t`* ctx); void :ref:`te_json_end`(:ref:`te_json_ctx_t`* ctx); void :ref:`te_json_add_key`(:ref:`te_json_ctx_t`* ctx, const char* key); static void :ref:`te_json_add_key_str`(:ref:`te_json_ctx_t`* ctx, const char* key, const char* val); static void :ref:`te_json_add_key_enum`(:ref:`te_json_ctx_t`* ctx, const :ref:`te_enum_map`* map, const char* key, int val); void :ref:`te_json_add_array_str`(:ref:`te_json_ctx_t`* ctx, bool skip_null, size_t n_strs, const char* strs[n_strs]); void :ref:`te_json_add_kvpair`(:ref:`te_json_ctx_t`* ctx, const te_kvpair_h* head); .. _details-group__te__tools__te__json: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ These functions provide an easy but robust way to convert native data to JSON format. Note, however, that it is not a full-fledged JSON serializer, so it is still possible to generate invalid JSON if the API is used carelessly. Since they are intended to be used with C data of known layout, they do not report errors: if anything goes wrong, it's considered API contract violation and an assertion fires. Typedefs -------- .. index:: pair: typedef; te_json_compound .. _doxid-group__te__tools__te__json_1ga658df26387b467d87d4d7f0cd5e71f6b: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`te_json_compound` te_json_compound The kind of JSON compound. .. index:: pair: typedef; te_json_level_t .. _doxid-group__te__tools__te__json_1ga8451a28af65529450398ad2203ab7ae3: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_json_level_t` te_json_level_t One level of JSON value nesting .. index:: pair: typedef; te_json_out_t .. _doxid-group__te__tools__te__json_1ga30c7783991d7926cdb54e8cf4e64a742: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`te_json_out_t` te_json_out_t JSON output type. .. index:: pair: typedef; te_json_out_loc_t .. _doxid-group__te__tools__te__json_1ga9234f958688cb5b314dcd776079e0a42: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef union :ref:`te_json_out_loc_t` te_json_out_loc_t Output location for generated JSON. .. index:: pair: typedef; te_json_ctx_t .. _doxid-group__te__tools__te__json_1gae5e70c3e50e51767fa208877867fdc44: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`te_json_ctx_t` te_json_ctx_t The context for JSON serialization. While the structure is declared public to make on-stack variables possible, it shall be treated as an opaque and only initialized with TE_JSON_INIT_STR() and then passed to the API from this group. Global Functions ---------------- .. index:: pair: function; te_json_add_simple .. _doxid-group__te__tools__te__json_1ga8e290e5b9924e435ba8d7c434e16ab5e: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_add_simple(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...) Serialize a simple JSON value formatted according to ``fmt``. This function does no escaping, so is not intended for general usage. Normally one should use one of type-specific functions. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - fmt - format string * - ... - arguments .. rubric:: See also: :ref:`te_json_add_null `, :ref:`te_json_add_integer `, :ref:`te_json_add_float `, :ref:`te_json_add_string ` .. index:: pair: function; te_json_add_null .. _doxid-group__te__tools__te__json_1gae554f016c4103574930cf8f539e32d3a: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void static void te_json_add_null(:ref:`te_json_ctx_t`* ctx) Serialize JSON null. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_add_bool .. _doxid-group__te__tools__te__json_1ga9ca22c3892c0da5f41b30fdb30ee37a4: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_json_add_bool(:ref:`te_json_ctx_t`* ctx, bool val) Serialize a JSON boolean. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - val - boolean value .. index:: pair: function; te_json_add_integer .. _doxid-group__te__tools__te__json_1ga8bf6d6e3751680fdff2b9cb5d7d42013: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_json_add_integer(:ref:`te_json_ctx_t`* ctx, intmax_t val) Serialize a JSON integer value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - val - integral value .. index:: pair: function; te_json_add_float .. _doxid-group__te__tools__te__json_1ga46c496d2df1065ed7fcad31c5229fc33: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_json_add_float(:ref:`te_json_ctx_t`* ctx, double val, int precision) Serialize a JSON floating value. If ``val`` is not finite (infinity or NaN), ``null`` is serialized. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - val - Value * - precision - Floating-point precision (unlimited if negative) .. index:: pair: function; te_json_add_string .. _doxid-group__te__tools__te__json_1ga7f1b299ac868215660266c7dc67cfbab: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_add_string(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...) Serialize a string value escaping it if necessary. Namely, double quotes, backslashes and control characters are properly escaped. No special provision is made for Unicode non-ASCII characters, though. Embedded zeroes are not supported. Double quotes are added around the value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - fmt - format string * - ... - arguments .. index:: pair: function; te_json_start_string .. _doxid-group__te__tools__te__json_1ga5ba7a086595880a60a5aab66ee7c45b4: .. ref-code-block:: cpp :class: doxyrest-title-code-block void void te_json_start_string(:ref:`te_json_ctx_t`* ctx) Start serializing a JSON string. :ref:`te_json_append_string() ` should be used to append bytes to the serialized string. At the end, :ref:`te_json_end() ` must be called to finalize JSON string. Double quotes around the composed string value are added automatically. Unlike :ref:`te_json_add_string() `, this allows to construct string value incrementally instead of specifying it all at once. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_append_string .. _doxid-group__te__tools__te__json_1ga5fe2b02c6e3086922fd6ec5b49f6b0f9: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_append_string(:ref:`te_json_ctx_t`* ctx, const char* fmt, ...) Append formatted string to a string value which was started with :ref:`te_json_start_string() `. The same escaping is done as with :ref:`te_json_add_string() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - fmt - format string * - ... - arguments .. rubric:: See also: :ref:`te_json_append_string_va() ` .. index:: pair: function; te_json_append_string_va .. _doxid-group__te__tools__te__json_1gab855bff451410ecd6f1142cc922efa58: .. ref-code-block:: cpp :class: doxyrest-title-code-block void void te_json_append_string_va(:ref:`te_json_ctx_t`* ctx, const char* fmt, va_list args) Same as :ref:`te_json_append_string() ` but accepts va_list instead of a list of arguments. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - fmt - format string * - args - arguments .. index:: pair: function; te_json_start_raw .. _doxid-group__te__tools__te__json_1ga1de98cc1c99b437bb25adc54c4a99d4c: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_start_raw(:ref:`te_json_ctx_t`* ctx) Start "raw" JSON value. :ref:`te_json_end() ` should be called once the value is finished. :ref:`te_json_append_raw() ` should be used to construct the value. This function can be used when there is a string containing JSON object which should simply be attached to constructed JSON tree without any editing. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_append_raw .. _doxid-group__te__tools__te__json_1ga4328ae4c5ac748461aff18dfa744adc2: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_append_raw(:ref:`te_json_ctx_t`* ctx, const char* value, size_t len) Append preformatted JSON string. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - value - String to append * - len - Length of the string (if zero, the string must include the terminating null byte) .. index:: pair: function; te_json_start_array .. _doxid-group__te__tools__te__json_1ga82fbe30446731989b70651a212d8e0fc: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_start_array(:ref:`te_json_ctx_t`* ctx) Start serializing a JSON array. :ref:`te_json_end() ` shall be called after all items are serialized. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_start_object .. _doxid-group__te__tools__te__json_1ga7266847a846f223fbd8433ac38cd9b6d: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_start_object(:ref:`te_json_ctx_t`* ctx) Start serializing a JSON object. :ref:`te_json_end() ` shall be called after all items are serialized. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_end .. _doxid-group__te__tools__te__json_1ga1ccd6b1db66bd6eadefac1420c0ac503: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_end(:ref:`te_json_ctx_t`* ctx) Finalize the current JSON value nesting. This function must be called after :ref:`te_json_start_object() ` or :ref:`te_json_start_array() `. It may be called at the toplevel and has no effect in this case. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context .. index:: pair: function; te_json_add_key .. _doxid-group__te__tools__te__json_1ga5933a47f0abd83d58c5771763297b2cc: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_add_key(:ref:`te_json_ctx_t`* ctx, const char* key) Mark the beginning of a new key in an object. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - key - key (it is assumed that it does not need escaping); ``NULL`` value is treated as an empty string .. index:: pair: function; te_json_add_key_str .. _doxid-group__te__tools__te__json_1gace32199a400dca00e866d3e77a0e75dc: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_json_add_key_str(:ref:`te_json_ctx_t`* ctx, const char* key, const char* val) Output a new key of an object with a given string value. If ``val`` is ``NULL``, nothing is added, not a null value. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - key - key * - val - string value .. index:: pair: function; te_json_add_key_enum .. _doxid-group__te__tools__te__json_1ga16b0479583f487b3c22965d97be2e219: .. ref-code-block:: cpp :class: doxyrest-title-code-block static void te_json_add_key_enum(:ref:`te_json_ctx_t`* ctx, const :ref:`te_enum_map`* map, const char* key, int val) Output a new key with an enumeration-like value. The string representation of a value is produced by applying ``map`` to ``val``. If ``val`` is not found in ``map`` or if it maps to ``NULL`` explicitly, the key is omitted. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - map - enum-to-string mapping * - key - key * - val - enum value .. index:: pair: function; te_json_add_array_str .. _doxid-group__te__tools__te__json_1ga7e653653d4203f5826dac1c7dd7ccdac: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_add_array_str(:ref:`te_json_ctx_t`* ctx, bool skip_null, size_t n_strs, const char* strs[n_strs]) Serialize an array of strings. If ``skip_null`` is ``true``, ``NULL`` values in ``strs`` will be skipped, otherwise serialized as JSON ``null``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - skip_null - null handling mode * - n_strs - number of elements in ``strs`` * - strs - array of strings .. index:: pair: function; te_json_add_kvpair .. _doxid-group__te__tools__te__json_1gaf13833378045b07aa7f0f668627dbc14: .. ref-code-block:: cpp :class: doxyrest-title-code-block void te_json_add_kvpair(:ref:`te_json_ctx_t`* ctx, const te_kvpair_h* head) Serialize a list of kv_pairs as a JSON object. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - ctx - JSON context * - head - Key-value list