jansson/src/dump.c

491 lines
14 KiB
C
Raw Normal View History

/*
2016-09-18 19:17:03 +08:00
* Copyright (c) 2009-2016 Petri Lehtinen <petri@digip.org>
*
* Jansson is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef _GNU_SOURCE
2009-05-13 02:34:14 +08:00
#define _GNU_SOURCE
#endif
#include "jansson_private.h"
2019-10-17 14:08:51 +08:00
#include <assert.h>
2009-05-13 02:34:14 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
2009-05-13 02:34:14 +08:00
#include "jansson.h"
#include "strbuffer.h"
#include "utf.h"
2009-02-07 02:26:27 +08:00
2019-10-17 14:08:51 +08:00
#define MAX_INTEGER_STR_LENGTH 100
#define MAX_REAL_STR_LENGTH 100
2019-10-17 14:08:51 +08:00
#define FLAGS_TO_INDENT(f) ((f)&0x1F)
#define FLAGS_TO_PRECISION(f) (((f) >> 11) & 0x1F)
2014-04-30 17:46:33 +08:00
struct buffer {
const size_t size;
size_t used;
char *data;
};
2019-10-17 14:08:51 +08:00
static int dump_to_strbuffer(const char *buffer, size_t size, void *data) {
return strbuffer_append_bytes((strbuffer_t *)data, buffer, size);
2009-06-10 03:37:31 +08:00
}
2019-10-17 14:08:51 +08:00
static int dump_to_buffer(const char *buffer, size_t size, void *data) {
struct buffer *buf = (struct buffer *)data;
2019-10-17 14:08:51 +08:00
if (buf->used + size <= buf->size)
memcpy(&buf->data[buf->used], buffer, size);
buf->used += size;
return 0;
}
2019-10-17 14:08:51 +08:00
static int dump_to_file(const char *buffer, size_t size, void *data) {
2009-05-13 02:34:14 +08:00
FILE *dest = (FILE *)data;
2019-10-17 14:08:51 +08:00
if (fwrite(buffer, size, 1, dest) != 1)
2009-05-13 02:34:14 +08:00
return -1;
return 0;
}
2019-10-17 14:08:51 +08:00
static int dump_to_fd(const char *buffer, size_t size, void *data) {
#ifdef HAVE_UNISTD_H
int *dest = (int *)data;
2019-10-17 14:08:51 +08:00
if (write(*dest, buffer, size) == (ssize_t)size)
return 0;
#endif
return -1;
}
/* 32 spaces (the maximum indentation size) */
static const char whitespace[] = " ";
static int dump_indent(size_t flags, int depth, int space, json_dump_callback_t dump,
void *data) {
2019-10-17 14:08:51 +08:00
if (FLAGS_TO_INDENT(flags) > 0) {
unsigned int ws_count = FLAGS_TO_INDENT(flags), n_spaces = depth * ws_count;
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (dump("\n", 1, data))
2009-05-13 02:34:14 +08:00
return -1;
2019-10-17 14:08:51 +08:00
while (n_spaces > 0) {
int cur_n =
n_spaces < sizeof whitespace - 1 ? n_spaces : sizeof whitespace - 1;
2019-10-17 14:08:51 +08:00
if (dump(whitespace, cur_n, data))
return -1;
n_spaces -= cur_n;
}
2019-10-17 14:08:51 +08:00
} else if (space && !(flags & JSON_COMPACT)) {
return dump(" ", 1, data);
}
2009-07-10 01:54:29 +08:00
return 0;
2009-05-13 02:34:14 +08:00
}
static int dump_string(const char *str, size_t len, json_dump_callback_t dump, void *data,
size_t flags) {
const char *pos, *end, *lim;
2018-08-31 15:01:36 +08:00
int32_t codepoint = 0;
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (dump("\"", 1, data))
2009-05-13 02:34:14 +08:00
return -1;
end = pos = str;
lim = str + len;
2019-10-17 14:08:51 +08:00
while (1) {
const char *text;
char seq[13];
int length;
2019-10-17 14:08:51 +08:00
while (end < lim) {
end = utf8_iterate(pos, lim - pos, &codepoint);
2019-10-17 14:08:51 +08:00
if (!end)
return -1;
2009-05-13 02:34:14 +08:00
/* mandatory escape or control char */
2019-10-17 14:08:51 +08:00
if (codepoint == '\\' || codepoint == '"' || codepoint < 0x20)
2012-06-29 18:11:41 +08:00
break;
/* slash */
2019-10-17 14:08:51 +08:00
if ((flags & JSON_ESCAPE_SLASH) && codepoint == '/')
break;
/* non-ASCII */
2019-10-17 14:08:51 +08:00
if ((flags & JSON_ENSURE_ASCII) && codepoint > 0x7F)
break;
pos = end;
}
2019-10-17 14:08:51 +08:00
if (pos != str) {
if (dump(str, pos - str, data))
2009-05-13 02:34:14 +08:00
return -1;
}
2019-10-17 14:08:51 +08:00
if (end == pos)
break;
2012-06-28 11:50:01 +08:00
/* handle \, /, ", and control codes */
length = 2;
2019-10-17 14:08:51 +08:00
switch (codepoint) {
case '\\':
text = "\\\\";
break;
case '\"':
text = "\\\"";
break;
case '\b':
text = "\\b";
break;
case '\f':
text = "\\f";
break;
case '\n':
text = "\\n";
break;
case '\r':
text = "\\r";
break;
case '\t':
text = "\\t";
break;
case '/':
text = "\\/";
break;
2019-10-17 14:08:51 +08:00
default: {
/* codepoint is in BMP */
2019-10-17 14:08:51 +08:00
if (codepoint < 0x10000) {
snprintf(seq, sizeof(seq), "\\u%04X", (unsigned int)codepoint);
length = 6;
}
/* not in BMP -> construct a UTF-16 surrogate pair */
2019-10-17 14:08:51 +08:00
else {
int32_t first, last;
codepoint -= 0x10000;
first = 0xD800 | ((codepoint & 0xffc00) >> 10);
last = 0xDC00 | (codepoint & 0x003ff);
snprintf(seq, sizeof(seq), "\\u%04X\\u%04X", (unsigned int)first,
(unsigned int)last);
length = 12;
}
text = seq;
break;
}
2009-05-13 02:34:14 +08:00
}
2019-10-17 14:08:51 +08:00
if (dump(text, length, data))
return -1;
str = pos = end;
2009-05-13 02:34:14 +08:00
}
return dump("\"", 1, data);
}
struct key_len {
const char *key;
int len;
};
2019-10-17 14:08:51 +08:00
static int compare_keys(const void *key1, const void *key2) {
const struct key_len *k1 = key1;
const struct key_len *k2 = key2;
const size_t min_size = k1->len < k2->len ? k1->len : k2->len;
int res = memcmp(k1->key, k2->key, min_size);
if (res)
return res;
return k1->len - k2->len;
}
static int do_dump(const json_t *json, size_t flags, int depth, hashtable_t *parents,
json_dump_callback_t dump, void *data) {
int embed = flags & JSON_EMBED;
flags &= ~JSON_EMBED;
2019-10-17 14:08:51 +08:00
if (!json)
return -1;
2019-10-17 14:08:51 +08:00
switch (json_typeof(json)) {
case JSON_NULL:
return dump("null", 4, data);
2009-02-07 02:26:27 +08:00
case JSON_TRUE:
return dump("true", 4, data);
2009-02-07 02:26:27 +08:00
case JSON_FALSE:
return dump("false", 5, data);
2009-02-07 02:26:27 +08:00
2019-10-17 14:08:51 +08:00
case JSON_INTEGER: {
char buffer[MAX_INTEGER_STR_LENGTH];
int size;
2009-05-13 02:34:14 +08:00
size = snprintf(buffer, MAX_INTEGER_STR_LENGTH, "%" JSON_INTEGER_FORMAT,
json_integer_value(json));
2019-10-17 14:08:51 +08:00
if (size < 0 || size >= MAX_INTEGER_STR_LENGTH)
2009-06-23 05:14:28 +08:00
return -1;
return dump(buffer, size, data);
2009-06-23 05:14:28 +08:00
}
2019-10-17 14:08:51 +08:00
case JSON_REAL: {
char buffer[MAX_REAL_STR_LENGTH];
int size;
double value = json_real_value(json);
2009-06-23 05:14:28 +08:00
2014-04-30 17:46:33 +08:00
size = jsonp_dtostr(buffer, MAX_REAL_STR_LENGTH, value,
FLAGS_TO_PRECISION(flags));
2019-10-17 14:08:51 +08:00
if (size < 0)
2009-05-13 02:34:14 +08:00
return -1;
return dump(buffer, size, data);
2009-05-13 02:34:14 +08:00
}
2009-02-07 02:26:27 +08:00
case JSON_STRING:
return dump_string(json_string_value(json), json_string_length(json), dump,
data, flags);
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
case JSON_ARRAY: {
size_t n;
size_t i;
2019-10-17 14:08:51 +08:00
/* Space for "0x", double the sizeof a pointer for the hex and a
* terminator. */
char key[2 + (sizeof(json) * 2) + 1];
size_t key_len;
/* detect circular references */
if (jsonp_loop_check(parents, json, key, sizeof(key), &key_len))
return -1;
n = json_array_size(json);
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (!embed && dump("[", 1, data))
return -1;
2019-10-17 14:08:51 +08:00
if (n == 0) {
hashtable_del(parents, key, key_len);
return embed ? 0 : dump("]", 1, data);
}
2019-10-17 14:08:51 +08:00
if (dump_indent(flags, depth + 1, 0, dump, data))
return -1;
2009-02-07 02:26:27 +08:00
2019-10-17 14:08:51 +08:00
for (i = 0; i < n; ++i) {
if (do_dump(json_array_get(json, i), flags, depth + 1, parents, dump,
data))
return -1;
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (i < n - 1) {
if (dump(",", 1, data) ||
dump_indent(flags, depth + 1, 1, dump, data))
return -1;
2019-10-17 14:08:51 +08:00
} else {
if (dump_indent(flags, depth, 0, dump, data))
return -1;
2009-05-13 02:34:14 +08:00
}
2009-02-07 02:26:27 +08:00
}
hashtable_del(parents, key, key_len);
return embed ? 0 : dump("]", 1, data);
2009-05-13 02:34:14 +08:00
}
2019-10-17 14:08:51 +08:00
case JSON_OBJECT: {
void *iter;
const char *separator;
int separator_length;
char loop_key[LOOP_KEY_LEN];
size_t loop_key_len;
2019-10-17 14:08:51 +08:00
if (flags & JSON_COMPACT) {
separator = ":";
separator_length = 1;
2019-10-17 14:08:51 +08:00
} else {
separator = ": ";
separator_length = 2;
}
/* detect circular references */
if (jsonp_loop_check(parents, json, loop_key, sizeof(loop_key),
&loop_key_len))
return -1;
iter = json_object_iter((json_t *)json);
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (!embed && dump("{", 1, data))
return -1;
2019-10-17 14:08:51 +08:00
if (!iter) {
hashtable_del(parents, loop_key, loop_key_len);
return embed ? 0 : dump("}", 1, data);
}
2019-10-17 14:08:51 +08:00
if (dump_indent(flags, depth + 1, 0, dump, data))
return -1;
2009-05-13 02:34:14 +08:00
2019-10-17 14:08:51 +08:00
if (flags & JSON_SORT_KEYS) {
struct key_len *keys;
size_t size, i;
size = json_object_size(json);
keys = jsonp_malloc(size * sizeof(struct key_len));
2019-10-17 14:08:51 +08:00
if (!keys)
return -1;
2009-05-13 02:34:14 +08:00
i = 0;
2019-10-17 14:08:51 +08:00
while (iter) {
struct key_len *keylen = &keys[i];
keylen->key = json_object_iter_key(iter);
keylen->len = json_object_iter_key_len(iter);
iter = json_object_iter_next((json_t *)json, iter);
i++;
2009-05-13 02:34:14 +08:00
}
assert(i == size);
qsort(keys, size, sizeof(struct key_len), compare_keys);
2019-10-17 14:08:51 +08:00
for (i = 0; i < size; i++) {
const struct key_len *key;
json_t *value;
key = &keys[i];
value = json_object_getn(json, key->key, key->len);
assert(value);
dump_string(key->key, key->len, dump, data, flags);
2019-10-17 14:08:51 +08:00
if (dump(separator, separator_length, data) ||
do_dump(value, flags, depth + 1, parents, dump, data)) {
jsonp_free(keys);
return -1;
}
2019-10-17 14:08:51 +08:00
if (i < size - 1) {
if (dump(",", 1, data) ||
dump_indent(flags, depth + 1, 1, dump, data)) {
jsonp_free(keys);
return -1;
}
2019-10-17 14:08:51 +08:00
} else {
if (dump_indent(flags, depth, 0, dump, data)) {
jsonp_free(keys);
return -1;
}
}
2009-05-13 02:34:14 +08:00
}
jsonp_free(keys);
2019-10-17 14:08:51 +08:00
} else {
/* Don't sort keys */
2019-10-17 14:08:51 +08:00
while (iter) {
void *next = json_object_iter_next((json_t *)json, iter);
const char *key = json_object_iter_key(iter);
const size_t key_len = json_object_iter_key_len(iter);
dump_string(key, key_len, dump, data, flags);
2019-10-17 14:08:51 +08:00
if (dump(separator, separator_length, data) ||
do_dump(json_object_iter_value(iter), flags, depth + 1, parents,
dump, data))
return -1;
2019-10-17 14:08:51 +08:00
if (next) {
if (dump(",", 1, data) ||
dump_indent(flags, depth + 1, 1, dump, data))
return -1;
2019-10-17 14:08:51 +08:00
} else {
if (dump_indent(flags, depth, 0, dump, data))
return -1;
}
iter = next;
}
2009-05-13 02:34:14 +08:00
}
hashtable_del(parents, loop_key, loop_key_len);
return embed ? 0 : dump("}", 1, data);
2009-02-07 02:26:27 +08:00
}
default:
2009-05-13 02:34:14 +08:00
/* not reached */
return -1;
2009-02-07 02:26:27 +08:00
}
}
2019-10-17 14:08:51 +08:00
char *json_dumps(const json_t *json, size_t flags) {
strbuffer_t strbuff;
2009-06-10 03:37:31 +08:00
char *result;
2019-10-17 14:08:51 +08:00
if (strbuffer_init(&strbuff))
2009-10-17 02:20:38 +08:00
return NULL;
2019-10-17 14:08:51 +08:00
if (json_dump_callback(json, dump_to_strbuffer, (void *)&strbuff, flags))
result = NULL;
else
result = jsonp_strdup(strbuffer_value(&strbuff));
2009-06-10 03:37:31 +08:00
strbuffer_close(&strbuff);
2009-06-10 03:37:31 +08:00
return result;
}
2019-10-17 14:08:51 +08:00
size_t json_dumpb(const json_t *json, char *buffer, size_t size, size_t flags) {
struct buffer buf = {size, 0, buffer};
2019-10-17 14:08:51 +08:00
if (json_dump_callback(json, dump_to_buffer, (void *)&buf, flags))
return 0;
return buf.used;
}
2019-10-17 14:08:51 +08:00
int json_dumpf(const json_t *json, FILE *output, size_t flags) {
return json_dump_callback(json, dump_to_file, (void *)output, flags);
2009-05-13 02:34:14 +08:00
}
2019-10-17 14:08:51 +08:00
int json_dumpfd(const json_t *json, int output, size_t flags) {
return json_dump_callback(json, dump_to_fd, (void *)&output, flags);
}
2019-10-17 14:08:51 +08:00
int json_dump_file(const json_t *json, const char *path, size_t flags) {
int result;
FILE *output = fopen(path, "w");
2019-10-17 14:08:51 +08:00
if (!output)
return -1;
result = json_dumpf(json, output, flags);
2019-10-17 14:08:51 +08:00
if (fclose(output) != 0)
return -1;
return result;
}
int json_dump_callback(const json_t *json, json_dump_callback_t callback, void *data,
size_t flags) {
int res;
hashtable_t parents_set;
2019-10-17 14:08:51 +08:00
if (!(flags & JSON_ENCODE_ANY)) {
if (!json_is_array(json) && !json_is_object(json))
return -1;
}
if (hashtable_init(&parents_set))
return -1;
res = do_dump(json, flags, 0, &parents_set, callback, data);
hashtable_close(&parents_set);
return res;
}