aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/json.c
blob: 3f22b3905b017eee2c09b2d1d8e9813bb3e4d779 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
 * Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#include "json.h"
#include "log.h"
#include "net.h"

#include <json-c/json_object.h>
#include <json-c/json_tokener.h>

#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

char *json_to_string(struct json_object *obj)
{
	const char *result = json_object_to_json_string(obj);
	if (!result) {
		json_errno("json_object_to_json_string");
		return NULL;
	}

	char *_result = strdup(result);
	if (!_result) {
		log_errno("strdup");
		return NULL;
	}

	return _result;
}

struct json_object *json_from_string(const char *src)
{
	enum json_tokener_error error;

	struct json_object *result = json_tokener_parse_verbose(src, &error);
	if (!result) {
		json_errno("json_tokener_parse_verbose");
		log_err("JSON: parsing failed: %s\n", json_tokener_error_desc(error));
		return NULL;
	}

	return result;
}

int json_clone(const struct json_object *obj, const char *key, struct json_object **_value)
{
	int ret = 0;

	struct json_object *old_value = NULL;
	ret = json_get(obj, key, &old_value);
	if (ret < 0)
		return ret;

	struct json_object *new_value = NULL;
	ret = json_object_deep_copy(old_value, &new_value, NULL);
	if (ret < 0)
		return ret;

	*_value = new_value;
	return ret;
}

int json_send(struct json_object *obj, int fd)
{
	int ret = 0;

	const char *str = json_to_string(obj);
	if (!str)
		return -1;

	struct buf *buf = NULL;
	ret = buf_create_from_string(&buf, str);
	free((char *)str);
	if (ret < 0)
		return ret;

	ret = net_send_buf(fd, buf);
	buf_destroy(buf);
	if (ret < 0)
		return ret;

	return ret;
}

struct json_object *json_recv(int fd)
{
	struct json_object *result = NULL;
	int ret = 0;

	struct buf *buf = NULL;
	ret = net_recv_buf(fd, &buf);
	if (ret < 0)
		return NULL;

	result = json_from_string((const char *)buf_get_data(buf));
	if (!result)
		goto destroy_buf;

destroy_buf:
	buf_destroy(buf);

	return result;
}

int json_has(const struct json_object *obj, const char *key)
{
	return json_object_object_get_ex(obj, key, NULL);
}

int json_get(const struct json_object *obj, const char *key, struct json_object **value)
{
	if (!json_has(obj, key)) {
		log_err("JSON: key is missing: %s\n", key);
		return -1;
	}

	return json_object_object_get_ex(obj, key, value);
}

int json_get_string(const struct json_object *obj, const char *key, const char **_value)
{
	struct json_object *value = NULL;

	int ret = json_get(obj, key, &value);
	if (ret < 0)
		return ret;

	if (!json_object_is_type(value, json_type_string)) {
		log_err("JSON: key is not a string: %s\n", key);
		return -1;
	}

	*_value = json_object_get_string(value);
	return 0;
}

int json_get_int(const struct json_object *obj, const char *key, int64_t *_value)
{
	struct json_object *value = NULL;

	int ret = json_get(obj, key, &value);
	if (ret < 0)
		return ret;

	if (!json_object_is_type(value, json_type_int)) {
		log_err("JSON: key is not an integer: %s\n", key);
		return -1;
	}

	errno = 0;
	int64_t tmp = json_object_get_int64(value);
	if (errno) {
		log_err("JSON: failed to parse integer from key: %s\n", key);
		return -1;
	}

	*_value = tmp;
	return 0;
}

static int json_set_internal(struct json_object *obj, const char *key, struct json_object *value,
                             unsigned flags)
{
	int ret = 0;

	ret = json_object_object_add_ex(obj, key, value, flags);
	if (ret < 0) {
		json_errno("json_object_object_add_ex");
		return ret;
	}

	return 0;
}

static int json_set_string_internal(struct json_object *obj, const char *key, const char *_value,
                                    unsigned flags)
{
	struct json_object *value = json_object_new_string(_value);
	if (!value) {
		json_errno("json_object_new_string");
		return -1;
	}

	int ret = json_set_internal(obj, key, value, flags);
	if (ret < 0)
		goto free_value;

	return ret;

free_value:
	json_object_put(value);

	return ret;
}

static int json_set_int_internal(struct json_object *obj, const char *key, int64_t _value,
                                 unsigned flags)
{
	struct json_object *value = json_object_new_int64(_value);
	if (!value) {
		json_errno("json_object_new_int");
		return -1;
	}

	int ret = json_set_internal(obj, key, value, flags);
	if (ret < 0)
		goto free_value;

	return ret;

free_value:
	json_object_put(value);

	return ret;
}

int json_set(struct json_object *obj, const char *key, struct json_object *value)
{
	return json_set_internal(obj, key, value, 0);
}

int json_set_string(struct json_object *obj, const char *key, const char *value)
{
	return json_set_string_internal(obj, key, value, 0);
}

int json_set_int(struct json_object *obj, const char *key, int64_t value)
{
	return json_set_int_internal(obj, key, value, 0);
}

#ifndef JSON_C_OBJECT_ADD_CONSTANT_KEY
#define JSON_C_OBJECT_ADD_CONSTANT_KEY JSON_C_OBJECT_KEY_IS_CONSTANT
#endif
static const unsigned json_const_key_flags = JSON_C_OBJECT_ADD_CONSTANT_KEY;

int json_set_const_key(struct json_object *obj, const char *key, struct json_object *value)
{
	return json_set_internal(obj, key, value, json_const_key_flags);
}

int json_set_string_const_key(struct json_object *obj, const char *key, const char *value)
{
	return json_set_string_internal(obj, key, value, json_const_key_flags);
}

int json_set_int_const_key(struct json_object *obj, const char *key, int64_t value)
{
	return json_set_int_internal(obj, key, value, json_const_key_flags);
}