]> mj.ucw.cz Git - libucw.git/blob - ucw-json/json.h
JSON: Rudimentary formatting
[libucw.git] / ucw-json / json.h
1 /*
2  *      UCW JSON Library
3  *
4  *      (c) 2015 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #ifndef _UCW_JSON_JSON_H
11 #define _UCW_JSON_JSON_H
12
13 #include <ucw/clists.h>
14 #include <ucw/slists.h>
15 #include <ucw/mempool.h>
16 #include <ucw/fastbuf.h>
17
18 #ifdef CONFIG_UCW_CLEAN_ABI
19 // FIXME
20 #endif
21
22 /***
23  * === FIXME
24  ***/
25
26 struct json_context {
27   struct mempool *pool;
28   struct mempool_state init_state;
29   // FIXME: Size limit?
30
31   struct fastbuf *in_fb;
32   uint in_line;
33   bool in_eof;
34   struct json_node *next_token;
35   struct json_node *trivial_token;
36   int next_char;
37
38   struct fastbuf *out_fb;
39 };
40
41 struct json_context *json_new(void);
42 void json_delete(struct json_context *js);
43 void json_reset(struct json_context *js);
44
45 enum json_node_type {
46   JSON_INVALID,
47   JSON_NULL,
48   JSON_BOOLEAN,
49   JSON_NUMBER,
50   JSON_STRING,
51   JSON_ARRAY,
52   JSON_OBJECT,
53   // These are not real nodes, but raw tokens
54   JSON_BEGIN_ARRAY,
55   JSON_END_ARRAY,
56   JSON_BEGIN_OBJECT,
57   JSON_END_OBJECT,
58   JSON_NAME_SEP,
59   JSON_VALUE_SEP,
60   JSON_EOF,
61 };
62
63 struct json_node {
64   enum json_node_type type;
65   union {
66     bool boolean;
67     double number;
68     const char *string;
69     struct json_node **elements;        // Growing array
70     struct json_pair *pairs;            // Growing array
71   };
72 };
73
74 struct json_pair {
75   const char *key;
76   struct json_node *value;
77   // FIXME: Hash table
78 };
79
80 struct json_node *json_new_node(struct json_context *js, enum json_node_type type);
81
82 static inline struct json_node *json_new_null(struct json_context *js)
83 {
84   return json_new_node(js, JSON_NULL);
85 }
86
87 static inline struct json_node *json_new_bool(struct json_context *js, bool value)
88 {
89   struct json_node *n = json_new_node(js, JSON_BOOLEAN);
90   n->boolean = value;
91   return n;
92 }
93
94 static inline struct json_node *json_new_number(struct json_context *js, double value)
95 {
96   struct json_node *n = json_new_node(js, JSON_NUMBER);
97   n->number = value;
98   return n;
99 }
100
101 static inline struct json_node *json_new_string_ref(struct json_context *js, const char *value)
102 {
103   struct json_node *n = json_new_node(js, JSON_STRING);
104   n->string = value;
105   return n;
106 }
107
108 static inline struct json_node *json_new_string(struct json_context *js, const char *value)
109 {
110   return json_new_string_ref(js, mp_strdup(js->pool, value));
111 }
112
113 struct json_node *json_new_array(struct json_context *js);
114 void json_array_append(struct json_node *array, struct json_node *elt);
115
116 struct json_node *json_new_object(struct json_context *js);
117 // FIXME: key must not be freed
118 void json_object_set(struct json_node *n, const char *key, struct json_node *value);
119 struct json_node *json_object_get(struct json_node *n, const char *key);
120
121 void json_set_input(struct json_context *js, struct fastbuf *in);
122 struct json_node *json_peek_token(struct json_context *js);
123 struct json_node *json_next_token(struct json_context *js);
124
125 struct json_node *json_next_value(struct json_context *js);
126
127 struct json_node *json_parse(struct json_context *js, struct fastbuf *fb);
128
129 void json_set_output(struct json_context *js, struct fastbuf *fb);
130 void json_write_value(struct json_context *js, struct json_node *n);
131 void json_write(struct json_context *js, struct fastbuf *fb, struct json_node *n);
132
133 #endif