Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
jansson.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009-2016 Petri Lehtinen <petri@digip.org>
3 *
4 * Jansson is free software; you can redistribute it and/or modify
5 * it under the terms of the MIT license. See LICENSE for details.
6 */
7
8#ifndef JANSSON_H
9#define JANSSON_H
10
11#include <stdarg.h>
12#include <stdio.h>
13#include <stdlib.h> /* for size_t */
14
15#include "jansson_config.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/* version */
22
23#define JANSSON_MAJOR_VERSION 2
24#define JANSSON_MINOR_VERSION 14
25#define JANSSON_MICRO_VERSION 0
26
27/* Micro version is omitted if it's 0 */
28#define JANSSON_VERSION "2.14"
29
30/* Version as a 3-byte hex number, e.g. 0x010201 == 1.2.1. Use this
31 for numeric comparisons, e.g. #if JANSSON_VERSION_HEX >= ... */
32#define JANSSON_VERSION_HEX \
33 ((JANSSON_MAJOR_VERSION << 16) | (JANSSON_MINOR_VERSION << 8) | \
34 (JANSSON_MICRO_VERSION << 0))
35
36/* If __atomic or __sync builtins are available the library is thread
37 * safe for all read-only functions plus reference counting. */
38#if JSON_HAVE_ATOMIC_BUILTINS || JSON_HAVE_SYNC_BUILTINS
39#define JANSSON_THREAD_SAFE_REFCOUNT 1
40#endif
41
42#if defined(__GNUC__) || defined(__clang__)
43#define JANSSON_ATTRS(x) __attribute__(x)
44#else
45#define JANSSON_ATTRS(x)
46#endif
47
48/* types */
49
60
61typedef struct json_t {
63 volatile size_t refcount;
65
66#ifndef JANSSON_USING_CMAKE /* disabled if using cmake */
67#if JSON_INTEGER_IS_LONG_LONG
68#ifdef _WIN32
69#define JSON_INTEGER_FORMAT "I64d"
70#else
71#define JSON_INTEGER_FORMAT "lld"
72#endif
73typedef long long json_int_t;
74#else
75#define JSON_INTEGER_FORMAT "ld"
76typedef long json_int_t;
77#endif /* JSON_INTEGER_IS_LONG_LONG */
78#endif
79
80#define json_typeof(json) ((json)->type)
81#define json_is_object(json) ((json) && json_typeof(json) == JSON_OBJECT)
82#define json_is_array(json) ((json) && json_typeof(json) == JSON_ARRAY)
83#define json_is_string(json) ((json) && json_typeof(json) == JSON_STRING)
84#define json_is_integer(json) ((json) && json_typeof(json) == JSON_INTEGER)
85#define json_is_real(json) ((json) && json_typeof(json) == JSON_REAL)
86#define json_is_number(json) (json_is_integer(json) || json_is_real(json))
87#define json_is_true(json) ((json) && json_typeof(json) == JSON_TRUE)
88#define json_is_false(json) ((json) && json_typeof(json) == JSON_FALSE)
89#define json_boolean_value json_is_true
90#define json_is_boolean(json) (json_is_true(json) || json_is_false(json))
91#define json_is_null(json) ((json) && json_typeof(json) == JSON_NULL)
92
93/* construction, destruction, reference counting */
94
97json_t *json_string(const char *value);
98json_t *json_stringn(const char *value, size_t len);
100json_t *json_stringn_nocheck(const char *value, size_t len);
105#define json_boolean(val) ((val) ? json_true() : json_false())
107
108/* do not call JSON_INTERNAL_INCREF or JSON_INTERNAL_DECREF directly */
109#if JSON_HAVE_ATOMIC_BUILTINS
110#define JSON_INTERNAL_INCREF(json) \
111 __atomic_add_fetch(&json->refcount, 1, __ATOMIC_ACQUIRE)
112#define JSON_INTERNAL_DECREF(json) \
113 __atomic_sub_fetch(&json->refcount, 1, __ATOMIC_RELEASE)
114#elif JSON_HAVE_SYNC_BUILTINS
115#define JSON_INTERNAL_INCREF(json) __sync_add_and_fetch(&json->refcount, 1)
116#define JSON_INTERNAL_DECREF(json) __sync_sub_and_fetch(&json->refcount, 1)
117#else
118#define JSON_INTERNAL_INCREF(json) (++json->refcount)
119#define JSON_INTERNAL_DECREF(json) (--json->refcount)
120#endif
121
123 if (json && json->refcount != (size_t)-1)
125 return json;
126}
127
128/* do not call json_delete directly */
129void json_delete(json_t *json);
130
131static JSON_INLINE void json_decref(json_t *json) {
132 if (json && json->refcount != (size_t)-1 && JSON_INTERNAL_DECREF(json) == 0)
133 json_delete(json);
134}
135
136#if defined(__GNUC__) || defined(__clang__)
137static JSON_INLINE void json_decrefp(json_t **json) {
138 if (json) {
139 json_decref(*json);
140 *json = NULL;
141 }
142}
143
144#define json_auto_t json_t __attribute__((cleanup(json_decrefp)))
145#endif
146
147/* error reporting */
148
149#define JSON_ERROR_TEXT_LENGTH 160
150#define JSON_ERROR_SOURCE_LENGTH 80
151
159
180
184
185/* getters, setters, manipulation */
186
187void json_object_seed(size_t seed);
188size_t json_object_size(const json_t *object);
189json_t *json_object_get(const json_t *object, const char *key)
190 JANSSON_ATTRS((warn_unused_result));
191json_t *json_object_getn(const json_t *object, const char *key, size_t key_len)
192 JANSSON_ATTRS((warn_unused_result));
193int json_object_set_new(json_t *object, const char *key, json_t *value);
194int json_object_setn_new(json_t *object, const char *key, size_t key_len, json_t *value);
195int json_object_set_new_nocheck(json_t *object, const char *key, json_t *value);
196int json_object_setn_new_nocheck(json_t *object, const char *key, size_t key_len,
197 json_t *value);
198int json_object_del(json_t *object, const char *key);
199int json_object_deln(json_t *object, const char *key, size_t key_len);
201int json_object_update(json_t *object, json_t *other);
206void *json_object_iter_at(json_t *object, const char *key);
207void *json_object_key_to_iter(const char *key);
208void *json_object_iter_next(json_t *object, void *iter);
209const char *json_object_iter_key(void *iter);
210size_t json_object_iter_key_len(void *iter);
212int json_object_iter_set_new(json_t *object, void *iter, json_t *value);
213
214#define json_object_foreach(object, key, value) \
215 for (key = json_object_iter_key(json_object_iter(object)); \
216 key && (value = json_object_iter_value(json_object_key_to_iter(key))); \
217 key = json_object_iter_key( \
218 json_object_iter_next(object, json_object_key_to_iter(key))))
219
220#define json_object_keylen_foreach(object, key, key_len, value) \
221 for (key = json_object_iter_key(json_object_iter(object)), \
222 key_len = json_object_iter_key_len(json_object_key_to_iter(key)); \
223 key && (value = json_object_iter_value(json_object_key_to_iter(key))); \
224 key = json_object_iter_key( \
225 json_object_iter_next(object, json_object_key_to_iter(key))), \
226 key_len = json_object_iter_key_len(json_object_key_to_iter(key)))
227
228#define json_object_foreach_safe(object, n, key, value) \
229 for (key = json_object_iter_key(json_object_iter(object)), \
230 n = json_object_iter_next(object, json_object_key_to_iter(key)); \
231 key && (value = json_object_iter_value(json_object_key_to_iter(key))); \
232 key = json_object_iter_key(n), \
233 n = json_object_iter_next(object, json_object_key_to_iter(key)))
234
235#define json_object_keylen_foreach_safe(object, n, key, key_len, value) \
236 for (key = json_object_iter_key(json_object_iter(object)), \
237 n = json_object_iter_next(object, json_object_key_to_iter(key)), \
238 key_len = json_object_iter_key_len(json_object_key_to_iter(key)); \
239 key && (value = json_object_iter_value(json_object_key_to_iter(key))); \
240 key = json_object_iter_key(n), key_len = json_object_iter_key_len(n), \
241 n = json_object_iter_next(object, json_object_key_to_iter(key)))
242
243#define json_array_foreach(array, index, value) \
244 for (index = 0; \
245 index < json_array_size(array) && (value = json_array_get(array, index)); \
246 index++)
247
248static JSON_INLINE int json_object_set(json_t *object, const char *key, json_t *value) {
249 return json_object_set_new(object, key, json_incref(value));
250}
251
252static JSON_INLINE int json_object_setn(json_t *object, const char *key, size_t key_len,
253 json_t *value) {
254 return json_object_setn_new(object, key, key_len, json_incref(value));
255}
256
257static JSON_INLINE int json_object_set_nocheck(json_t *object, const char *key,
258 json_t *value) {
259 return json_object_set_new_nocheck(object, key, json_incref(value));
260}
261
262static JSON_INLINE int json_object_setn_nocheck(json_t *object, const char *key,
263 size_t key_len, json_t *value) {
264 return json_object_setn_new_nocheck(object, key, key_len, json_incref(value));
265}
266
267static JSON_INLINE int json_object_iter_set(json_t *object, void *iter, json_t *value) {
268 return json_object_iter_set_new(object, iter, json_incref(value));
269}
270
271static JSON_INLINE int json_object_update_new(json_t *object, json_t *other) {
272 int ret = json_object_update(object, other);
273 json_decref(other);
274 return ret;
275}
276
278 int ret = json_object_update_existing(object, other);
279 json_decref(other);
280 return ret;
281}
282
284 int ret = json_object_update_missing(object, other);
285 json_decref(other);
286 return ret;
287}
288
289size_t json_array_size(const json_t *array);
290json_t *json_array_get(const json_t *array, size_t index)
291 JANSSON_ATTRS((warn_unused_result));
295int json_array_remove(json_t *array, size_t index);
297int json_array_extend(json_t *array, json_t *other);
298
299static JSON_INLINE int json_array_set(json_t *array, size_t ind, json_t *value) {
300 return json_array_set_new(array, ind, json_incref(value));
301}
302
306
307static JSON_INLINE int json_array_insert(json_t *array, size_t ind, json_t *value) {
308 return json_array_insert_new(array, ind, json_incref(value));
309}
310
311const char *json_string_value(const json_t *string);
312size_t json_string_length(const json_t *string);
314double json_real_value(const json_t *real);
315double json_number_value(const json_t *json);
316
317int json_string_set(json_t *string, const char *value);
318int json_string_setn(json_t *string, const char *value, size_t len);
319int json_string_set_nocheck(json_t *string, const char *value);
320int json_string_setn_nocheck(json_t *string, const char *value, size_t len);
322int json_real_set(json_t *real, double value);
323
324/* pack, unpack */
325
326json_t *json_pack(const char *fmt, ...) JANSSON_ATTRS((warn_unused_result));
327json_t *json_pack_ex(json_error_t *error, size_t flags, const char *fmt, ...)
328 JANSSON_ATTRS((warn_unused_result));
329json_t *json_vpack_ex(json_error_t *error, size_t flags, const char *fmt, va_list ap)
330 JANSSON_ATTRS((warn_unused_result));
331
332#define JSON_VALIDATE_ONLY 0x1
333#define JSON_STRICT 0x2
334
335int json_unpack(json_t *root, const char *fmt, ...);
336int json_unpack_ex(json_t *root, json_error_t *error, size_t flags, const char *fmt, ...);
337int json_vunpack_ex(json_t *root, json_error_t *error, size_t flags, const char *fmt,
338 va_list ap);
339
340/* sprintf */
341
342json_t *json_sprintf(const char *fmt, ...)
343 JANSSON_ATTRS((warn_unused_result, format(printf, 1, 2)));
344json_t *json_vsprintf(const char *fmt, va_list ap)
345 JANSSON_ATTRS((warn_unused_result, format(printf, 1, 0)));
346
347/* equality */
348
349int json_equal(const json_t *value1, const json_t *value2);
350
351/* copying */
352
353json_t *json_copy(json_t *value) JANSSON_ATTRS((warn_unused_result));
354json_t *json_deep_copy(const json_t *value) JANSSON_ATTRS((warn_unused_result));
355
356/* decoding */
357
358#define JSON_REJECT_DUPLICATES 0x1
359#define JSON_DISABLE_EOF_CHECK 0x2
360#define JSON_DECODE_ANY 0x4
361#define JSON_DECODE_INT_AS_REAL 0x8
362#define JSON_ALLOW_NUL 0x10
363
364typedef size_t (*json_load_callback_t)(void *buffer, size_t buflen, void *data);
365
366json_t *json_loads(const char *input, size_t flags, json_error_t *error)
367 JANSSON_ATTRS((warn_unused_result));
368json_t *json_loadb(const char *buffer, size_t buflen, size_t flags, json_error_t *error)
369 JANSSON_ATTRS((warn_unused_result));
370json_t *json_loadf(FILE *input, size_t flags, json_error_t *error)
371 JANSSON_ATTRS((warn_unused_result));
372json_t *json_loadfd(int input, size_t flags, json_error_t *error)
373 JANSSON_ATTRS((warn_unused_result));
374json_t *json_load_file(const char *path, size_t flags, json_error_t *error)
375 JANSSON_ATTRS((warn_unused_result));
376json_t *json_load_callback(json_load_callback_t callback, void *data, size_t flags,
377 json_error_t *error) JANSSON_ATTRS((warn_unused_result));
378
379/* encoding */
380
381#define JSON_MAX_INDENT 0x1F
382#define JSON_INDENT(n) ((n)&JSON_MAX_INDENT)
383#define JSON_COMPACT 0x20
384#define JSON_ENSURE_ASCII 0x40
385#define JSON_SORT_KEYS 0x80
386#define JSON_PRESERVE_ORDER 0x100
387#define JSON_ENCODE_ANY 0x200
388#define JSON_ESCAPE_SLASH 0x400
389#define JSON_REAL_PRECISION(n) (((n)&0x1F) << 11)
390#define JSON_EMBED 0x10000
391
392typedef int (*json_dump_callback_t)(const char *buffer, size_t size, void *data);
393
394char *json_dumps(const json_t *json, size_t flags) JANSSON_ATTRS((warn_unused_result));
395size_t json_dumpb(const json_t *json, char *buffer, size_t size, size_t flags);
396int json_dumpf(const json_t *json, FILE *output, size_t flags);
397int json_dumpfd(const json_t *json, int output, size_t flags);
398int json_dump_file(const json_t *json, const char *path, size_t flags);
399int json_dump_callback(const json_t *json, json_dump_callback_t callback, void *data,
400 size_t flags);
401
402/* custom memory allocation */
403
404typedef void *(*json_malloc_t)(size_t);
405typedef void (*json_free_t)(void *);
406
409
410/* runtime version checking */
411
412const char *jansson_version_str(void);
413int jansson_version_cmp(int major, int minor, int micro);
414
415#ifdef __cplusplus
416}
417#endif
418
419#endif
guint index
#define NULL
Definition gmacros.h:924
int json_equal(const json_t *value1, const json_t *value2)
json_t * json_array_get(const json_t *array, size_t index) JANSSON_ATTRS((warn_unused_result))
json_t * json_vsprintf(const char *fmt, va_list ap) JANSSON_ATTRS((warn_unused_result
static JSON_INLINE int json_object_update_missing_new(json_t *object, json_t *other)
Definition jansson.h:283
struct json_t json_t
json_t * json_vpack_ex(json_error_t *error, size_t flags, const char *fmt, va_list ap) JANSSON_ATTRS((warn_unused_result))
int json_dumpfd(const json_t *json, int output, size_t flags)
size_t(* json_load_callback_t)(void *buffer, size_t buflen, void *data)
Definition jansson.h:364
void * json_object_iter(json_t *object)
static JSON_INLINE int json_object_update_existing_new(json_t *object, json_t *other)
Definition jansson.h:277
json_t format(printf, 1, 2)))
json_t * json_array(void)
int json_array_insert_new(json_t *array, size_t index, json_t *value)
int json_string_set_nocheck(json_t *string, const char *value)
char * json_dumps(const json_t *json, size_t flags) JANSSON_ATTRS((warn_unused_result))
json_t * json_loadb(const char *buffer, size_t buflen, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
json_t * json_load_callback(json_load_callback_t callback, void *data, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
void(* json_free_t)(void *)
Definition jansson.h:405
#define JSON_ERROR_SOURCE_LENGTH
Definition jansson.h:150
struct json_error_t json_error_t
static JSON_INLINE int json_object_update_new(json_t *object, json_t *other)
Definition jansson.h:271
#define JANSSON_ATTRS(x)
Definition jansson.h:45
static JSON_INLINE int json_object_setn(json_t *object, const char *key, size_t key_len, json_t *value)
Definition jansson.h:252
int json_array_extend(json_t *array, json_t *other)
static JSON_INLINE int json_array_append(json_t *array, json_t *value)
Definition jansson.h:303
void * json_object_iter_at(json_t *object, const char *key)
int json_array_set_new(json_t *array, size_t index, json_t *value)
size_t json_dumpb(const json_t *json, char *buffer, size_t size, size_t flags)
const char * jansson_version_str(void)
int json_array_remove(json_t *array, size_t index)
int json_string_setn(json_t *string, const char *value, size_t len)
int json_dumpf(const json_t *json, FILE *output, size_t flags)
#define JSON_ERROR_TEXT_LENGTH
Definition jansson.h:149
int(* json_dump_callback_t)(const char *buffer, size_t size, void *data)
Definition jansson.h:392
json_t * json_copy(json_t *value) JANSSON_ATTRS((warn_unused_result))
int json_array_append_new(json_t *array, json_t *value)
void json_get_alloc_funcs(json_malloc_t *malloc_fn, json_free_t *free_fn)
size_t json_string_length(const json_t *string)
int json_object_deln(json_t *object, const char *key, size_t key_len)
static JSON_INLINE int json_object_setn_nocheck(json_t *object, const char *key, size_t key_len, json_t *value)
Definition jansson.h:262
const char * json_string_value(const json_t *string)
static JSON_INLINE int json_object_set_nocheck(json_t *object, const char *key, json_t *value)
Definition jansson.h:257
static JSON_INLINE int json_array_set(json_t *array, size_t ind, json_t *value)
Definition jansson.h:299
int json_dump_callback(const json_t *json, json_dump_callback_t callback, void *data, size_t flags)
size_t json_array_size(const json_t *array)
json_t * json_string_nocheck(const char *value)
void * json_object_iter_next(json_t *object, void *iter)
int json_integer_set(json_t *integer, json_int_t value)
static JSON_INLINE int json_object_set(json_t *object, const char *key, json_t *value)
Definition jansson.h:248
int json_object_iter_set_new(json_t *object, void *iter, json_t *value)
json_t * json_load_file(const char *path, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
void *(* json_malloc_t)(size_t)
Definition jansson.h:404
int json_unpack(json_t *root, const char *fmt,...)
int json_object_update_missing(json_t *object, json_t *other)
int json_object_set_new_nocheck(json_t *object, const char *key, json_t *value)
int json_object_del(json_t *object, const char *key)
json_t * json_string(const char *value)
int json_object_setn_new_nocheck(json_t *object, const char *key, size_t key_len, json_t *value)
void json_object_seed(size_t seed)
int json_object_setn_new(json_t *object, const char *key, size_t key_len, json_t *value)
json_t * json_loadfd(int input, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
int json_unpack_ex(json_t *root, json_error_t *error, size_t flags, const char *fmt,...)
json_t * json_true(void)
json_t * json_pack(const char *fmt,...) JANSSON_ATTRS((warn_unused_result))
json_t * json_deep_copy(const json_t *value) JANSSON_ATTRS((warn_unused_result))
#define JSON_INTERNAL_DECREF(json)
Definition jansson.h:112
json_error_code
Definition jansson.h:160
@ json_error_null_byte_in_key
Definition jansson.h:174
@ json_error_null_value
Definition jansson.h:173
@ json_error_end_of_input_expected
Definition jansson.h:168
@ json_error_index_out_of_range
Definition jansson.h:178
@ json_error_invalid_format
Definition jansson.h:170
@ json_error_numeric_overflow
Definition jansson.h:176
@ json_error_unknown
Definition jansson.h:161
@ json_error_stack_overflow
Definition jansson.h:163
@ json_error_duplicate_key
Definition jansson.h:175
@ json_error_item_not_found
Definition jansson.h:177
@ json_error_wrong_type
Definition jansson.h:171
@ json_error_invalid_utf8
Definition jansson.h:166
@ json_error_premature_end_of_input
Definition jansson.h:167
@ json_error_invalid_syntax
Definition jansson.h:169
@ json_error_out_of_memory
Definition jansson.h:162
@ json_error_invalid_argument
Definition jansson.h:165
@ json_error_cannot_open_file
Definition jansson.h:164
@ json_error_null_character
Definition jansson.h:172
void * json_object_key_to_iter(const char *key)
void json_delete(json_t *json)
int json_string_set(json_t *string, const char *value)
json_t * json_pack_ex(json_error_t *error, size_t flags, const char *fmt,...) JANSSON_ATTRS((warn_unused_result))
json_t * json_null(void)
int json_object_update(json_t *object, json_t *other)
json_t * json_object_get(const json_t *object, const char *key) JANSSON_ATTRS((warn_unused_result))
static JSON_INLINE int json_object_iter_set(json_t *object, void *iter, json_t *value)
Definition jansson.h:267
static JSON_INLINE int json_array_insert(json_t *array, size_t ind, json_t *value)
Definition jansson.h:307
size_t json_object_iter_key_len(void *iter)
int json_object_update_existing(json_t *object, json_t *other)
json_t * json_loads(const char *input, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
static JSON_INLINE json_t * json_incref(json_t *json)
Definition jansson.h:122
json_type
Definition jansson.h:50
@ JSON_STRING
Definition jansson.h:53
@ JSON_NULL
Definition jansson.h:58
@ JSON_TRUE
Definition jansson.h:56
@ JSON_OBJECT
Definition jansson.h:51
@ JSON_INTEGER
Definition jansson.h:54
@ JSON_ARRAY
Definition jansson.h:52
@ JSON_FALSE
Definition jansson.h:57
@ JSON_REAL
Definition jansson.h:55
json_t * json_object_getn(const json_t *object, const char *key, size_t key_len) JANSSON_ATTRS((warn_unused_result))
int json_object_clear(json_t *object)
json_t * json_real(double value)
int json_dump_file(const json_t *json, const char *path, size_t flags)
json_t * json_sprintf(const char *fmt,...) JANSSON_ATTRS((warn_unused_result
json_t * json_false(void)
double json_real_value(const json_t *real)
json_t * json_stringn(const char *value, size_t len)
size_t json_object_size(const json_t *object)
int json_array_clear(json_t *array)
int json_real_set(json_t *real, double value)
json_t * json_stringn_nocheck(const char *value, size_t len)
static JSON_INLINE void json_decref(json_t *json)
Definition jansson.h:131
json_t * json_object(void)
json_t * json_object_iter_value(void *iter)
json_t * json_integer(json_int_t value)
json_int_t json_integer_value(const json_t *integer)
double json_number_value(const json_t *json)
#define JSON_INTERNAL_INCREF(json)
Definition jansson.h:110
json_t * json_loadf(FILE *input, size_t flags, json_error_t *error) JANSSON_ATTRS((warn_unused_result))
void json_set_alloc_funcs(json_malloc_t malloc_fn, json_free_t free_fn)
int json_object_update_recursive(json_t *object, json_t *other)
int json_vunpack_ex(json_t *root, json_error_t *error, size_t flags, const char *fmt, va_list ap)
int jansson_version_cmp(int major, int minor, int micro)
int json_object_set_new(json_t *object, const char *key, json_t *value)
int json_string_setn_nocheck(json_t *string, const char *value, size_t len)
const char * json_object_iter_key(void *iter)
#define JSON_INLINE
#define json_int_t
int value
Definition lsqlite3.c:2155
static const char * output
static void error(LoadState *S, const char *why)
char source[JSON_ERROR_SOURCE_LENGTH]
Definition jansson.h:156
char text[JSON_ERROR_TEXT_LENGTH]
Definition jansson.h:157
json_type type
Definition jansson.h:62
volatile size_t refcount
Definition jansson.h:63
#define printf