Lines Matching +full:json +full:- +full:schema
5 - [Synopsis](#synopsis)
6 - [Description](#description)
7 - [Parser functions](#parser-functions)
8 - [Emitting functions](#emitting-functions)
9 - [Conversion functions](#conversion-functions)
10 - [Generation functions](#generation-functions)
11 - [Iteration functions](#iteration-functions)
12 - [Validation functions](#validation-functions)
13 - [Utility functions](#utility-functions)
14 - [Parser functions](#parser-functions-1)
15 - [ucl_parser_new](#ucl_parser_new)
16 - [ucl_parser_register_macro](#ucl_parser_register_macro)
17 - [ucl_parser_register_variable](#ucl_parser_register_variable)
18 - [ucl_parser_add_chunk](#ucl_parser_add_chunk)
19 - [ucl_parser_add_string](#ucl_parser_add_string)
20 - [ucl_parser_add_file](#ucl_parser_add_file)
21 - [ucl_parser_get_object](#ucl_parser_get_object)
22 - [ucl_parser_get_error](#ucl_parser_get_error)
23 - [ucl_parser_free](#ucl_parser_free)
24 - [ucl_pubkey_add](#ucl_pubkey_add)
25 - [ucl_parser_set_filevars](#ucl_parser_set_filevars)
26 - [Parser usage example](#parser-usage-example)
27 - [Emitting functions](#emitting-functions-1)
28 - [ucl_object_emit](#ucl_object_emit)
29 - [ucl_object_emit_full](#ucl_object_emit_full)
30 - [Conversion functions](#conversion-functions-1)
31 - [Generation functions](#generation-functions-1)
32 - [ucl_object_new](#ucl_object_new)
33 - [ucl_object_typed_new](#ucl_object_typed_new)
34 - [Primitive objects generation](#primitive-objects-generation)
35 - [ucl_object_fromstring_common](#ucl_object_fromstring_common)
36 - [Iteration functions](#iteration-functions-1)
37 - [ucl_iterate_object](#ucl_iterate_object)
38 - [Validation functions](#validation-functions-1)
39 - [ucl_object_validate](#ucl_object_validate)
55 - `JSON` - valid json format (can possibly lose some original data, such as implicit arrays)
56 - `Config` - human-readable configuration format (lossless)
57 - `YAML` - embedded yaml format (has the same limitations as `json` output)
69 … are used to validate some object `obj` using json-schema compatible object `schema`. Both input a…
86 - `UCL_PARSER_KEY_LOWERCASE` - lowercase keys parsed
87 - `UCL_PARSER_ZEROCOPY` - try to use zero-copy mode when reading files (in zero-copy mode text chun…
88 - `UCL_PARSER_NO_TIME` - treat time values as strings without parsing them as floats
124 ~~~json
130 ~~~json
142 …unk` does but if `len` argument is zero, then the string `data` must be zero-terminated and the ac…
195 - `$FILENAME` - a filename of `ucl` input
196 - `$CURDIR` - a current directory of the input
200 - `$FILENAME` - "../something.conf"
201 - `$CURDIR` - ".."
205 - `$FILENAME` - "/etc/something.conf"
206 - `$CURDIR` - "/etc"
222 r += fread (inbuf + r, 1, sizeof (inbuf) - r, in);
248 - configuration (`UCL_EMIT_CONFIG`) - nginx like human readable configuration file where implicit a…
249 - compact json: `UCL_EMIT_JSON_COMPACT` - single line valid json without spaces
250 - formatted json: `UCL_EMIT_JSON` - pretty formatted JSON with newlines and spaces
251 - compact yaml: `UCL_EMIT_YAML` - compact YAML output
254 efficient and zero-copy output of libucl objects. Libucl uses the following structure to support th…
273 - `ucl_emitter_append_character` - a function that is called to append `nchars` characters equal to…
274 - `ucl_emitter_append_len` - used to append a string of length `len` starting from pointer `str`
275 - `ucl_emitter_append_int` - this function applies to integer numbers
276 - `ucl_emitter_append_double` - this function is intended to output floating point variable
303 - safe: try to convert an ucl object to a primitive type and fail if such a conversion is not possi…
304 - unsafe: return primitive type without additional checks, if the object cannot be converted then s…
306 …es - arrays and objects) to a string representation. For objects, arrays, booleans and numeric typ…
310 - `ucl_object_toint` - returns `int64_t` of UCL object
311 - `ucl_object_todouble` - returns `double` of UCL object
312 - `ucl_object_toboolean` - returns `bool` of UCL object
313 - `ucl_object_tostring` - returns `const char *` of UCL object (this string is NULL terminated)
314 - `ucl_object_tolstring` - returns `const char *` and `size_t` len of UCL object (string does not n…
315 - `ucl_object_tostring_forced` - returns string representation of any UCL object
336 - `UCL_OBJECT` - UCL object - key/value pairs
337 - `UCL_ARRAY` - UCL array
338 - `UCL_INT` - integer number
339 - `UCL_FLOAT` - floating point number
340 - `UCL_STRING` - NULL terminated string
341 - `UCL_BOOLEAN` - boolean value
342 - `UCL_TIME` - time value (floating point number of seconds)
343 - `UCL_USERDATA` - opaque userdata pointer (may be used in macros)
344 - `UCL_NULL` - null value
350 - `ucl_object_fromint` - converts `int64_t` to UCL object
351 - `ucl_object_fromdouble` - converts `double` to UCL object
352 - `ucl_object_frombool` - converts `bool` to UCL object
353 - `ucl_object_fromstring` - converts `const char *` to UCL object (this string should be NULL termi…
354 - `ucl_object_fromlstring` - converts `const char *` and `size_t` len to UCL object (string does no…
364 …lags` conversions. If `len` is equal to zero then a `str` is assumed as NULL-terminated. This func…
366 - `UCL_STRING_ESCAPE` - perform JSON escape
367 - `UCL_STRING_TRIM` - trim leading and trailing whitespaces
368 - `UCL_STRING_PARSE_BOOLEAN` - parse passed string and detect boolean
369 - `UCL_STRING_PARSE_INT` - parse passed string and detect integer number
370 - `UCL_STRING_PARSE_DOUBLE` - parse passed string and detect integer or float number
371 - `UCL_STRING_PARSE_TIME` - parse time values as floating point numbers
372 - `UCL_STRING_PARSE_NUMBER` - parse passed string and detect number (both float, integer and time t…
373 - `UCL_STRING_PARSE` - parse passed string (and detect booleans, numbers and time values)
374 - `UCL_STRING_PARSE_BYTES` - assume that numeric multipliers are in bytes notation, for example `10…
409 … to clarify iterating over UCL objects and simplify flattening of UCL objects in non-trivial cases.
433 - `ucl_object_iterate_new` - creates new safe iterator
434 - `ucl_object_iterate_reset` - resets iterator to a new object
435 - `ucl_object_iterate_safe` - safely iterate the object inside iterator. Note: function may allocat…
436 - `ucl_object_iter_chk_excpn` - check if the last call to `ucl_object_iterate_safe` ended up in un…
437 - `ucl_object_iterate_free` - free memory associated with the safe iterator
474 …l_object_validate`. It performs validation of object using the specified schema. This function is …
478 bool ucl_object_validate (const ucl_object_t *schema,
482 This function uses ucl object `schema`, that must be valid in terms of `json-schema` draft v4, to v…
498 UCL_SCHEMA_INVALID_SCHEMA, /* schema is invalid */