2 * Copyright (C) 2010-2012 Felix Fietkau <nbd@openwrt.org>
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 #include "blobmsg_json.h"
23 #include <json/json.h>
26 bool blobmsg_add_object(struct blob_buf *b, json_object *obj)
28 json_object_object_foreach(obj, key, val) {
29 if (!blobmsg_add_json_element(b, key, val))
35 static bool blobmsg_add_array(struct blob_buf *b, struct array_list *a)
39 for (i = 0, len = array_list_length(a); i < len; i++) {
40 if (!blobmsg_add_json_element(b, NULL, array_list_get_idx(a, i)))
47 bool blobmsg_add_json_element(struct blob_buf *b, const char *name, json_object *obj)
55 switch (json_object_get_type(obj)) {
56 case json_type_object:
57 c = blobmsg_open_table(b, name);
58 ret = blobmsg_add_object(b, obj);
59 blobmsg_close_table(b, c);
62 c = blobmsg_open_array(b, name);
63 ret = blobmsg_add_array(b, json_object_get_array(obj));
64 blobmsg_close_array(b, c);
66 case json_type_string:
67 blobmsg_add_string(b, name, json_object_get_string(obj));
69 case json_type_boolean:
70 blobmsg_add_u8(b, name, json_object_get_boolean(obj));
73 blobmsg_add_u32(b, name, json_object_get_int(obj));
81 static bool __blobmsg_add_json(struct blob_buf *b, json_object *obj)
88 if (json_object_get_type(obj) != json_type_object)
91 ret = blobmsg_add_object(b, obj);
98 bool blobmsg_add_json_from_file(struct blob_buf *b, const char *file)
100 return __blobmsg_add_json(b, json_object_from_file(file));
103 bool blobmsg_add_json_from_string(struct blob_buf *b, const char *str)
105 return __blobmsg_add_json(b, json_tokener_parse(str));
114 blobmsg_json_format_t custom_format;
120 static bool blobmsg_puts(struct strbuf *s, const char *c, int len)
125 if (s->pos + len >= s->len) {
127 s->buf = realloc(s->buf, s->len);
131 memcpy(s->buf + s->pos, c, len);
136 static void add_separator(struct strbuf *s)
138 static char indent_chars[17] = "\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
145 indent = s->indent_level;
149 start = &indent_chars[sizeof(indent_chars) - indent - 1];
151 blobmsg_puts(s, start, indent + 1);
156 static void blobmsg_format_string(struct strbuf *s, const char *str)
158 const unsigned char *p, *last, *end;
159 char buf[8] = "\\u00";
161 end = (unsigned char *) str + strlen(str);
162 blobmsg_puts(s, "\"", 1);
163 for (p = (unsigned char *) str, last = p; *p; p++) {
195 blobmsg_puts(s, (char *) last, p - last);
200 sprintf(buf + 4, "%02x", (unsigned char) *p);
205 blobmsg_puts(s, buf, len);
208 blobmsg_puts(s, (char *) last, end - last);
209 blobmsg_puts(s, "\"", 1);
212 static void blobmsg_format_json_list(struct strbuf *s, struct blob_attr *attr, int len, bool array);
214 static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, bool array, bool head)
216 const char *data_str;
221 if (!blobmsg_check_attr(attr, false))
224 if (!array && blobmsg_name(attr)[0]) {
225 blobmsg_format_string(s, blobmsg_name(attr));
226 blobmsg_puts(s, ": ", s->indent ? 2 : 1);
229 data = blobmsg_data(attr);
230 len = blobmsg_data_len(attr);
232 if (!head && s->custom_format) {
233 data_str = s->custom_format(s->priv, attr);
239 switch(blob_id(attr)) {
240 case BLOBMSG_TYPE_UNSPEC:
241 sprintf(buf, "null");
243 case BLOBMSG_TYPE_BOOL:
244 sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false");
246 case BLOBMSG_TYPE_INT16:
247 sprintf(buf, "%d", be16_to_cpu(*(uint16_t *)data));
249 case BLOBMSG_TYPE_INT32:
250 sprintf(buf, "%d", (int32_t) be32_to_cpu(*(uint32_t *)data));
252 case BLOBMSG_TYPE_INT64:
253 sprintf(buf, "%" PRId64, (int64_t) be64_to_cpu(*(uint64_t *)data));
255 case BLOBMSG_TYPE_STRING:
256 blobmsg_format_string(s, data);
258 case BLOBMSG_TYPE_ARRAY:
259 blobmsg_format_json_list(s, data, len, true);
261 case BLOBMSG_TYPE_TABLE:
262 blobmsg_format_json_list(s, data, len, false);
267 blobmsg_puts(s, data_str, strlen(data_str));
270 static void blobmsg_format_json_list(struct strbuf *s, struct blob_attr *attr, int len, bool array)
272 struct blob_attr *pos;
276 blobmsg_puts(s, (array ? "[" : "{" ), 1);
279 __blob_for_each_attr(pos, attr, rem) {
281 blobmsg_puts(s, ",", 1);
285 blobmsg_format_element(s, pos, array, false);
290 blobmsg_puts(s, (array ? "]" : "}"), 1);
293 char *blobmsg_format_json_with_cb(struct blob_attr *attr, bool list, blobmsg_json_format_t cb, void *priv, int indent)
298 s.len = blob_len(attr);
299 s.buf = malloc(s.len);
301 s.custom_format = cb;
307 s.indent_level = indent;
310 array = blob_is_extended(attr) &&
311 blobmsg_type(attr) == BLOBMSG_TYPE_ARRAY;
314 blobmsg_format_json_list(&s, blobmsg_data(attr), blobmsg_data_len(attr), array);
316 blobmsg_format_element(&s, attr, false, false);
323 s.buf = realloc(s.buf, s.pos + 1);