84a0233bea5daf44191907bbe8a13066140bc667
[jansson.git] / doc / apiref.rst
1 .. _apiref:
2
3 *************
4 API Reference
5 *************
6
7 .. highlight:: c
8
9 Preliminaries
10 =============
11
12 All declarations are in :file:`jansson.h`, so it's enough to
13
14 ::
15
16    #include <jansson.h>
17
18 in each source file.
19
20 All constants are prefixed ``JSON_`` and other identifiers with
21 ``json_``. Type names are suffixed with ``_t`` and ``typedef``\ 'd so
22 that the ``struct`` keyword need not be used.
23
24
25 Value Representation
26 ====================
27
28 The JSON specification (:rfc:`4627`) defines the following data types:
29 *object*, *array*, *string*, *number*, *boolean*, and *null*. JSON
30 types are used dynamically; arrays and objects can hold any other data
31 type, including themselves. For this reason, Jansson's type system is
32 also dynamic in nature. There's one C type to represent all JSON
33 values, and this structure knows the type of the JSON value it holds.
34
35 .. type:: json_t
36
37   This data structure is used throughout the library to represent all
38   JSON values. It always contains the type of the JSON value it holds
39   and the value's reference count. The rest depends on the type of the
40   value.
41
42 Objects of :type:`json_t` are always used through a pointer. There
43 are APIs for querying the type, manipulating the reference count, and
44 for constructing and manipulating values of different types.
45
46 Unless noted otherwise, all API functions return an error value if an
47 error occurs. Depending on the function's signature, the error value
48 is either *NULL* or -1. Invalid arguments or invalid input are
49 apparent sources for errors. Memory allocation and I/O operations may
50 also cause errors.
51
52
53 Type
54 ----
55
56 The type of a JSON value is queried and tested using the following
57 functions:
58
59 .. type:: enum json_type
60
61    The type of a JSON value. The following members are defined:
62
63    +--------------------+
64    | ``JSON_OBJECT``    |
65    +--------------------+
66    | ``JSON_ARRAY``     |
67    +--------------------+
68    | ``JSON_STRING``    |
69    +--------------------+
70    | ``JSON_INTEGER``   |
71    +--------------------+
72    | ``JSON_REAL``      |
73    +--------------------+
74    | ``JSON_TRUE``      |
75    +--------------------+
76    | ``JSON_FALSE``     |
77    +--------------------+
78    | ``JSON_NULL``      |
79    +--------------------+
80
81    These correspond to JSON object, array, string, number, boolean and
82    null. A number is represented by either a value of the type
83    ``JSON_INTEGER`` or of the type ``JSON_REAL``. A true boolean value
84    is represented by a value of the type ``JSON_TRUE`` and false by a
85    value of the type ``JSON_FALSE``.
86
87 .. function:: int json_typeof(const json_t *json)
88
89    Return the type of the JSON value (a :type:`json_type` cast to
90    :type:`int`). *json* MUST NOT be *NULL*. This function is actually
91    implemented as a macro for speed.
92
93 .. function:: json_is_object(const json_t *json)
94                json_is_array(const json_t *json)
95                json_is_string(const json_t *json)
96                json_is_integer(const json_t *json)
97                json_is_real(const json_t *json)
98                json_is_true(const json_t *json)
99                json_is_false(const json_t *json)
100                json_is_null(const json_t *json)
101
102    These functions (actually macros) return true (non-zero) for values
103    of the given type, and false (zero) for values of other types and
104    for *NULL*.
105
106 .. function:: json_is_number(const json_t *json)
107
108    Returns true for values of types ``JSON_INTEGER`` and
109    ``JSON_REAL``, and false for other types and for *NULL*.
110
111 .. function:: json_is_boolean(const json_t *json)
112
113    Returns true for types ``JSON_TRUE`` and ``JSON_FALSE``, and false
114    for values of other types and for *NULL*.
115
116
117 .. _apiref-reference-count:
118
119 Reference Count
120 ---------------
121
122 The reference count is used to track whether a value is still in use
123 or not. When a value is created, it's reference count is set to 1. If
124 a reference to a value is kept (e.g. a value is stored somewhere for
125 later use), its reference count is incremented, and when the value is
126 no longer needed, the reference count is decremented. When the
127 reference count drops to zero, there are no references left, and the
128 value can be destroyed.
129
130 The following functions are used to manipulate the reference count.
131
132 .. function:: json_t *json_incref(json_t *json)
133
134    Increment the reference count of *json* if it's not non-*NULL*.
135    Returns *json*.
136
137 .. function:: void json_decref(json_t *json)
138
139    Decrement the reference count of *json*. As soon as a call to
140    :func:`json_decref()` drops the reference count to zero, the value
141    is destroyed and it can no longer be used.
142
143 Functions creating new JSON values set the reference count to 1. These
144 functions are said to return a **new reference**. Other functions
145 returning (existing) JSON values do not normally increase the
146 reference count. These functions are said to return a **borrowed
147 reference**. So, if the user will hold a reference to a value returned
148 as a borrowed reference, he must call :func:`json_incref`. As soon as
149 the value is no longer needed, :func:`json_decref` should be called
150 to release the reference.
151
152 Normally, all functions accepting a JSON value as an argument will
153 manage the reference, i.e. increase and decrease the reference count
154 as needed. However, some functions **steal** the reference, i.e. they
155 have the same result as if the user called :func:`json_decref()` on
156 the argument right after calling the function. These functions are
157 suffixed with ``_new`` or have ``_new_`` somewhere in their name.
158
159 For example, the following code creates a new JSON array and appends
160 an integer to it::
161
162   json_t *array, *integer;
163
164   array = json_array();
165   integer = json_integer(42);
166
167   json_array_append(array, integer);
168   json_decref(integer);
169
170 Note how the caller has to release the reference to the integer value
171 by calling :func:`json_decref()`. By using a reference stealing
172 function :func:`json_array_append_new()` instead of
173 :func:`json_array_append()`, the code becomes much simpler::
174
175   json_t *array = json_array();
176   json_array_append_new(array, json_integer(42));
177
178 In this case, the user doesn't have to explicitly release the
179 reference to the integer value, as :func:`json_array_append_new()`
180 steals the reference when appending the value to the array.
181
182 In the following sections it is clearly documented whether a function
183 will return a new or borrowed reference or steal a reference to its
184 argument.
185
186
187 Circular References
188 -------------------
189
190 A circular reference is created when an object or an array is,
191 directly or indirectly, inserted inside itself. The direct case is
192 simple::
193
194   json_t *obj = json_object();
195   json_object_set(obj, "foo", obj);
196
197 Jansson will refuse to do this, and :func:`json_object_set()` (and
198 all the other such functions for objects and arrays) will return with
199 an error status. The indirect case is the dangerous one::
200
201   json_t *arr1 = json_array(), *arr2 = json_array();
202   json_array_append(arr1, arr2);
203   json_array_append(arr2, arr1);
204
205 In this example, the array ``arr2`` is contained in the array
206 ``arr1``, and vice versa. Jansson cannot check for this kind of
207 indirect circular references without a performance hit, so it's up to
208 the user to avoid them.
209
210 If a circular reference is created, the memory consumed by the values
211 cannot be freed by :func:`json_decref()`. The reference counts never
212 drops to zero because the values are keeping the references to each
213 other. Moreover, trying to encode the values with any of the encoding
214 functions will fail. The encoder detects circular references and
215 returns an error status.
216
217
218 True, False and Null
219 ====================
220
221 These values are implemented as singletons, so each of these functions
222 returns the same value each time.
223
224 .. function:: json_t *json_true(void)
225
226    .. refcounting:: new
227
228    Returns the JSON true value.
229
230 .. function:: json_t *json_false(void)
231
232    .. refcounting:: new
233
234    Returns the JSON false value.
235
236 .. function:: json_t *json_null(void)
237
238    .. refcounting:: new
239
240    Returns the JSON null value.
241
242
243 String
244 ======
245
246 Jansson uses UTF-8 as the character encoding. All JSON strings must be
247 valid UTF-8 (or ASCII, as it's a subset of UTF-8). Normal null
248 terminated C strings are used, so JSON strings may not contain
249 embedded null characters. All other Unicode codepoints U+0001 through
250 U+10FFFF are allowed.
251
252 .. function:: json_t *json_string(const char *value)
253
254    .. refcounting:: new
255
256    Returns a new JSON string, or *NULL* on error. *value* must be a
257    valid UTF-8 encoded Unicode string.
258
259 .. function:: json_t *json_string_nocheck(const char *value)
260
261    .. refcounting:: new
262
263    Like :func:`json_string`, but doesn't check that *value* is valid
264    UTF-8. Use this function only if you are certain that this really
265    is the case (e.g. you have already checked it by other means).
266
267    .. versionadded:: 1.2
268
269 .. function:: const char *json_string_value(const json_t *string)
270
271    Returns the associated value of *string* as a null terminated UTF-8
272    encoded string, or *NULL* if *string* is not a JSON string.
273
274 .. function:: int json_string_set(const json_t *string, const char *value)
275
276    Sets the associated value of *string* to *value*. *value* must be a
277    valid UTF-8 encoded Unicode string. Returns 0 on success and -1 on
278    error.
279
280    .. versionadded:: 1.1
281
282 .. function:: int json_string_set_nocheck(const json_t *string, const char *value)
283
284    Like :func:`json_string_set`, but doesn't check that *value* is
285    valid UTF-8. Use this function only if you are certain that this
286    really is the case (e.g. you have already checked it by other
287    means).
288
289    .. versionadded:: 1.2
290
291
292 Number
293 ======
294
295 The JSON specification only contains one numeric type, "number". The C
296 programming language has distinct types for integer and floating-point
297 numbers, so for practical reasons Jansson also has distinct types for
298 the two. They are called "integer" and "real", respectively. For more
299 information, see :ref:`rfc-conformance`.
300
301 .. type:: json_int_t
302
303    This is the C type that is used to store JSON integer values. It
304    represents the widest integer type available on your system. In
305    practice it's just a typedef of ``long long`` if your compiler
306    supports it, otherwise ``long``.
307
308    Usually, you can safely use plain ``int`` in place of
309    ``json_int_t``, and the implicit C integer conversion handles the
310    rest. Only when you know that you need the full 64-bit range, you
311    should use ``json_int_t`` explicitly.
312
313 ``JSON_INTEGER_IS_LONG_LONG``
314
315    This is a preprocessor variable that holds the value 1 if
316    :type:`json_int_t` is ``long long``, and 0 if it's ``long``. It
317    can be used as follows::
318
319        #if JSON_INTEGER_IS_LONG_LONG
320        /* Code specific for long long */
321        #else
322        /* Code specific for long */
323        #endif
324
325 ``JSON_INTEGER_FORMAT``
326
327    This is a macro that expands to a :func:`printf()` conversion
328    specifier that corresponds to :type:`json_int_t`, without the
329    leading ``%`` sign, i.e. either ``"lld"`` or ``"ld"``. This macro
330    is required because the actual type of :type:`json_int_t` can be
331    either ``long`` or ``long long``, and :func:`printf()` reuiqres
332    different length modifiers for the two.
333
334    Example::
335
336        json_int_t x = 123123123;
337        printf("x is %" JSON_INTEGER_FORMAT "\n", x);
338
339
340 .. function:: json_t *json_integer(json_int_t value)
341
342    .. refcounting:: new
343
344    Returns a new JSON integer, or *NULL* on error.
345
346 .. function:: json_int_t json_integer_value(const json_t *integer)
347
348    Returns the associated value of *integer*, or 0 if *json* is not a
349    JSON integer.
350
351 .. function:: int json_integer_set(const json_t *integer, json_int_t value)
352
353    Sets the associated value of *integer* to *value*. Returns 0 on
354    success and -1 if *integer* is not a JSON integer.
355
356    .. versionadded:: 1.1
357
358 .. function:: json_t *json_real(double value)
359
360    .. refcounting:: new
361
362    Returns a new JSON real, or *NULL* on error.
363
364 .. function:: double json_real_value(const json_t *real)
365
366    Returns the associated value of *real*, or 0.0 if *real* is not a
367    JSON real.
368
369 .. function:: int json_real_set(const json_t *real, double value)
370
371    Sets the associated value of *real* to *value*. Returns 0 on
372    success and -1 if *real* is not a JSON real.
373
374    .. versionadded:: 1.1
375
376 In addition to the functions above, there's a common query function
377 for integers and reals:
378
379 .. function:: double json_number_value(const json_t *json)
380
381    Returns the associated value of the JSON integer or JSON real
382    *json*, cast to double regardless of the actual type. If *json* is
383    neither JSON real nor JSON integer, 0.0 is returned.
384
385
386 Array
387 =====
388
389 A JSON array is an ordered collection of other JSON values.
390
391 .. function:: json_t *json_array(void)
392
393    .. refcounting:: new
394
395    Returns a new JSON array, or *NULL* on error. Initially, the array
396    is empty.
397
398 .. function:: size_t json_array_size(const json_t *array)
399
400    Returns the number of elements in *array*, or 0 if *array* is NULL
401    or not a JSON array.
402
403 .. function:: json_t *json_array_get(const json_t *array, size_t index)
404
405    .. refcounting:: borrow
406
407    Returns the element in *array* at position *index*. The valid range
408    for *index* is from 0 to the return value of
409    :func:`json_array_size()` minus 1. If *array* is not a JSON array,
410    if *array* is *NULL*, or if *index* is out of range, *NULL* is
411    returned.
412
413 .. function:: int json_array_set(json_t *array, size_t index, json_t *value)
414
415    Replaces the element in *array* at position *index* with *value*.
416    The valid range for *index* is from 0 to the return value of
417    :func:`json_array_size()` minus 1. Returns 0 on success and -1 on
418    error.
419
420 .. function:: int json_array_set_new(json_t *array, size_t index, json_t *value)
421
422    Like :func:`json_array_set()` but steals the reference to *value*.
423    This is useful when *value* is newly created and not used after
424    the call.
425
426    .. versionadded:: 1.1
427
428 .. function:: int json_array_append(json_t *array, json_t *value)
429
430    Appends *value* to the end of *array*, growing the size of *array*
431    by 1. Returns 0 on success and -1 on error.
432
433 .. function:: int json_array_append_new(json_t *array, json_t *value)
434
435    Like :func:`json_array_append()` but steals the reference to
436    *value*. This is useful when *value* is newly created and not used
437    after the call.
438
439    .. versionadded:: 1.1
440
441 .. function:: int json_array_insert(json_t *array, size_t index, json_t *value)
442
443    Inserts *value* to *array* at position *index*, shifting the
444    elements at *index* and after it one position towards the end of
445    the array. Returns 0 on success and -1 on error.
446
447    .. versionadded:: 1.1
448
449 .. function:: int json_array_insert_new(json_t *array, size_t index, json_t *value)
450
451    Like :func:`json_array_insert()` but steals the reference to
452    *value*. This is useful when *value* is newly created and not used
453    after the call.
454
455    .. versionadded:: 1.1
456
457 .. function:: int json_array_remove(json_t *array, size_t index)
458
459    Removes the element in *array* at position *index*, shifting the
460    elements after *index* one position towards the start of the array.
461    Returns 0 on success and -1 on error.
462
463    .. versionadded:: 1.1
464
465 .. function:: int json_array_clear(json_t *array)
466
467    Removes all elements from *array*. Returns 0 on sucess and -1 on
468    error.
469
470    .. versionadded:: 1.1
471
472 .. function:: int json_array_extend(json_t *array, json_t *other_array)
473
474    Appends all elements in *other_array* to the end of *array*.
475    Returns 0 on success and -1 on error.
476
477    .. versionadded:: 1.1
478
479
480 Object
481 ======
482
483 A JSON object is a dictionary of key-value pairs, where the key is a
484 Unicode string and the value is any JSON value.
485
486 .. function:: json_t *json_object(void)
487
488    .. refcounting:: new
489
490    Returns a new JSON object, or *NULL* on error. Initially, the
491    object is empty.
492
493 .. function:: size_t json_object_size(const json_t *object)
494
495    Returns the number of elements in *object*, or 0 if *object* is not
496    a JSON object.
497
498    .. versionadded:: 1.1
499
500 .. function:: json_t *json_object_get(const json_t *object, const char *key)
501
502    .. refcounting:: borrow
503
504    Get a value corresponding to *key* from *object*. Returns *NULL* if
505    *key* is not found and on error.
506
507 .. function:: int json_object_set(json_t *object, const char *key, json_t *value)
508
509    Set the value of *key* to *value* in *object*. *key* must be a
510    valid null terminated UTF-8 encoded Unicode string. If there
511    already is a value for *key*, it is replaced by the new value.
512    Returns 0 on success and -1 on error.
513
514 .. function:: int json_object_set_nocheck(json_t *object, const char *key, json_t *value)
515
516    Like :func:`json_object_set`, but doesn't check that *key* is
517    valid UTF-8. Use this function only if you are certain that this
518    really is the case (e.g. you have already checked it by other
519    means).
520
521    .. versionadded:: 1.2
522
523 .. function:: int json_object_set_new(json_t *object, const char *key, json_t *value)
524
525    Like :func:`json_object_set()` but steals the reference to
526    *value*. This is useful when *value* is newly created and not used
527    after the call.
528
529    .. versionadded:: 1.1
530
531 .. function:: int json_object_set_new_nocheck(json_t *object, const char *key, json_t *value)
532
533    Like :func:`json_object_set_new`, but doesn't check that *key* is
534    valid UTF-8. Use this function only if you are certain that this
535    really is the case (e.g. you have already checked it by other
536    means).
537
538    .. versionadded:: 1.2
539
540 .. function:: int json_object_del(json_t *object, const char *key)
541
542    Delete *key* from *object* if it exists. Returns 0 on success, or
543    -1 if *key* was not found.
544
545
546 .. function:: int json_object_clear(json_t *object)
547
548    Remove all elements from *object*. Returns 0 on success and -1 if
549    *object* is not a JSON object.
550
551    .. versionadded:: 1.1
552
553 .. function:: int json_object_update(json_t *object, json_t *other)
554
555    Update *object* with the key-value pairs from *other*, overwriting
556    existing keys. Returns 0 on success or -1 on error.
557
558    .. versionadded:: 1.1
559
560
561 The following functions implement an iteration protocol for objects:
562
563 .. function:: void *json_object_iter(json_t *object)
564
565    Returns an opaque iterator which can be used to iterate over all
566    key-value pairs in *object*, or *NULL* if *object* is empty.
567
568 .. function:: void *json_object_iter_at(json_t *object, const char *key)
569
570    Like :func:`json_object_iter()`, but returns an iterator to the
571    key-value pair in *object* whose key is equal to *key*, or NULL if
572    *key* is not found in *object*. Iterating forward to the end of
573    *object* only yields all key-value pairs of the object if *key*
574    happens to be the first key in the underlying hash table.
575
576    .. versionadded:: 1.3
577
578 .. function:: void *json_object_iter_next(json_t *object, void *iter)
579
580    Returns an iterator pointing to the next key-value pair in *object*
581    after *iter*, or *NULL* if the whole object has been iterated
582    through.
583
584 .. function:: const char *json_object_iter_key(void *iter)
585
586    Extract the associated key from *iter*.
587
588 .. function:: json_t *json_object_iter_value(void *iter)
589
590    .. refcounting:: borrow
591
592    Extract the associated value from *iter*.
593
594 .. function:: int json_object_iter_set(json_t *object, void *iter, json_t *value)
595
596    Set the value of the key-value pair in *object*, that is pointed to
597    by *iter*, to *value*.
598
599    .. versionadded:: 1.3
600
601 .. function:: int json_object_iter_set_new(json_t *object, void *iter, json_t *value)
602
603    Like :func:`json_object_iter_set()`, but steals the reference to
604    *value*. This is useful when *value* is newly created and not used
605    after the call.
606
607    .. versionadded:: 1.3
608
609 The iteration protocol can be used for example as follows::
610
611    /* obj is a JSON object */
612    const char *key;
613    json_t *value;
614    void *iter = json_object_iter(obj);
615    while(iter)
616    {
617        key = json_object_iter_key(iter);
618        value = json_object_iter_value(iter);
619        /* use key and value ... */
620        iter = json_object_iter_next(obj, iter);
621    }
622
623
624 Encoding
625 ========
626
627 This sections describes the functions that can be used to encode
628 values to JSON. Only objects and arrays can be encoded, since they are
629 the only valid "root" values of a JSON text.
630
631 By default, the output has no newlines, and spaces are used between
632 array and object elements for a readable output. This behavior can be
633 altered by using the ``JSON_INDENT`` and ``JSON_COMPACT`` flags
634 described below. A newline is never appended to the end of the encoded
635 JSON data.
636
637 Each function takes a *flags* parameter that controls some aspects of
638 how the data is encoded. Its default value is 0. The following macros
639 can be ORed together to obtain *flags*.
640
641 ``JSON_INDENT(n)``
642    Pretty-print the result, using newlines between array and object
643    items, and indenting with *n* spaces. The valid range for *n* is
644    between 0 and 32, other values result in an undefined output. If
645    ``JSON_INDENT`` is not used or *n* is 0, no newlines are inserted
646    between array and object items.
647
648 ``JSON_COMPACT``
649    This flag enables a compact representation, i.e. sets the separator
650    between array and object items to ``","`` and between object keys
651    and values to ``":"``. Without this flag, the corresponding
652    separators are ``", "`` and ``": "`` for more readable output.
653
654    .. versionadded:: 1.2
655
656 ``JSON_ENSURE_ASCII``
657    If this flag is used, the output is guaranteed to consist only of
658    ASCII characters. This is achived by escaping all Unicode
659    characters outside the ASCII range.
660
661    .. versionadded:: 1.2
662
663 ``JSON_SORT_KEYS``
664    If this flag is used, all the objects in output are sorted by key.
665    This is useful e.g. if two JSON texts are diffed or visually
666    compared.
667
668    .. versionadded:: 1.2
669
670 ``JSON_PRESERVE_ORDER``
671    If this flag is used, object keys in the output are sorted into the
672    same order in which they were first inserted to the object. For
673    example, decoding a JSON text and then encoding with this flag
674    preserves the order of object keys.
675
676    .. versionadded:: 1.3
677
678 The following functions perform the actual JSON encoding. The result
679 is in UTF-8.
680
681 .. function:: char *json_dumps(const json_t *root, size_t flags)
682
683    Returns the JSON representation of *root* as a string, or *NULL* on
684    error. *flags* is described above. The return value must be freed
685    by the caller using :func:`free()`.
686
687 .. function:: int json_dumpf(const json_t *root, FILE *output, size_t flags)
688
689    Write the JSON representation of *root* to the stream *output*.
690    *flags* is described above. Returns 0 on success and -1 on error.
691    If an error occurs, something may have already been written to
692    *output*. In this case, the output is undefined and most likely not
693    valid JSON.
694
695 .. function:: int json_dump_file(const json_t *json, const char *path, size_t flags)
696
697    Write the JSON representation of *root* to the file *path*. If
698    *path* already exists, it is overwritten. *flags* is described
699    above. Returns 0 on success and -1 on error.
700
701
702 Decoding
703 ========
704
705 This sections describes the functions that can be used to decode JSON
706 text to the Jansson representation of JSON data. The JSON
707 specification requires that a JSON text is either a serialized array
708 or object, and this requirement is also enforced with the following
709 functions. In other words, the top level value in the JSON text being
710 decoded must be either array or object.
711
712 See :ref:`rfc-conformance` for a discussion on Jansson's conformance
713 to the JSON specification. It explains many design decisions that
714 affect especially the behavior of the decoder.
715
716 .. type:: json_error_t
717
718    This opaque structure is used to return information on errors from
719    the decoding functions. See below for more discussion on error
720    reporting.
721
722 The following functions perform the JSON decoding:
723
724 .. function:: json_t *json_loads(const char *input, size_t flags, json_error_t **error)
725
726    .. refcounting:: new
727
728    Decodes the JSON string *input* and returns the array or object it
729    contains, or *NULL* on error. If *error* is non-*NULL*, it's used
730    to return error information. See below for more discussion on error
731    reporting. *flags* is currently unused, and should be set to 0.
732
733 .. function:: json_t *json_loadf(FILE *input, size_t flags, json_error_t **error)
734
735    .. refcounting:: new
736
737    Decodes the JSON text in stream *input* and returns the array or
738    object it contains, or *NULL* on error. If *error* is non-*NULL*,
739    it's used to return error information. See below for more
740    discussion on error reporting. *flags* is currently unused, and
741    should be set to 0.
742
743 .. function:: json_t *json_load_file(const char *path, size_t flags, json_error_t **error)
744
745    .. refcounting:: new
746
747    Decodes the JSON text in file *path* and returns the array or
748    object it contains, or *NULL* on error. If *error* is non-*NULL*,
749    it's used to return error information. See below for more
750    discussion on error reporting. *flags* is currently unused, and
751    should be set to 0.
752
753
754 The :type:`json_error_t` parameter, that all decoding function accept
755 as their last parameter, is used to return information on decoding
756 errors to the caller. It is used by having a ``json_error_t *``
757 variable and passing a pointer to this variable to a decoding
758 function. Example::
759
760    int main() {
761        json_t *json;
762        json_error_t *error;
763
764        json = json_load_file("/path/to/file.json", 0, &error);
765        if(!json) {
766            /* the error variable contains error information */
767            fprintf(stderr, "Decoding error occured on line %d: %s\n", json_error_line(error), json_error_msg(error));
768            free(error);
769        }
770
771        /* ... */
772    }
773
774 Note that **the caller must free the error structure** after use if a
775 decoding error occurs. If decoding is succesfully finished, *error* is
776 simply set to *NULL* by the decoding function.
777
778 All decoding functions also accept *NULL* as the :type:`json_error_t`
779 pointer, in which case no error information is returned to the caller.
780 Example::
781
782    int main() {
783        json_t *json;
784
785        json = json_load_file("/path/to/file.json", 0, NULL);
786        if(!json) {
787            /* A decoding error occured but no error information is available */
788        }
789
790        /* ... */
791    }
792
793 :type:`json_error_t` is totally opaque and must be queried using the
794 following functions:
795
796 .. function:: const char *json_error_msg(const json_error_t *error)
797
798    Return a pointer to an UTF-8 encoded string that describes the
799    error in human-readable text, or *NULL* if *error* is *NULL*.
800
801 .. function:: int json_error_line(const json_error_t *error)
802
803    Return the line numer on which the error occurred, or -1 if this
804    information is not available or if *error* is *NULL*.
805
806
807 Equality
808 ========
809
810 Testing for equality of two JSON values cannot, in general, be
811 achieved using the ``==`` operator. Equality in the terms of the
812 ``==`` operator states that the two :type:`json_t` pointers point to
813 exactly the same JSON value. However, two JSON values can be equal not
814 only if they are exactly the same value, but also if they have equal
815 "contents":
816
817 * Two integer or real values are equal if their contained numeric
818   values are equal. An integer value is never equal to a real value,
819   though.
820
821 * Two strings are equal if their contained UTF-8 strings are equal,
822   byte by byte. Unicode comparison algorithms are not implemented.
823
824 * Two arrays are equal if they have the same number of elements and
825   each element in the first array is equal to the corresponding
826   element in the second array.
827
828 * Two objects are equal if they have exactly the same keys and the
829   value for each key in the first object is equal to the value of the
830   corresponding key in the second object.
831
832 * Two true, false or null values have no "contents", so they are equal
833   if their types are equal. (Because these values are singletons,
834   their equality can actually be tested with ``==``.)
835
836 The following function can be used to test whether two JSON values are
837 equal.
838
839 .. function:: int json_equal(json_t *value1, json_t *value2)
840
841    Returns 1 if *value1* and *value2* are equal, as defined above.
842    Returns 0 if they are inequal or one or both of the pointers are
843    *NULL*.
844
845    .. versionadded:: 1.2
846
847
848 Copying
849 =======
850
851 Because of reference counting, passing JSON values around doesn't
852 require copying them. But sometimes a fresh copy of a JSON value is
853 needed. For example, if you need to modify an array, but still want to
854 use the original afterwards, you should take a copy of it first.
855
856 Jansson supports two kinds of copying: shallow and deep. There is a
857 difference between these methods only for arrays and objects. Shallow
858 copying only copies the first level value (array or object) and uses
859 the same child values in the copied value. Deep copying makes a fresh
860 copy of the child values, too. Moreover, all the child values are deep
861 copied in a recursive fashion.
862
863 .. function:: json_t *json_copy(json_t *value)
864
865    .. refcounting:: new
866
867    Returns a shallow copy of *value*, or *NULL* on error.
868
869    .. versionadded:: 1.2
870
871 .. function:: json_t *json_deep_copy(json_t *value)
872
873    .. refcounting:: new
874
875    Returns a deep copy of *value*, or *NULL* on error.
876
877    .. versionadded:: 1.2