2009-07-28 16:01:52 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 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.
|
|
|
|
*/
|
|
|
|
|
2009-05-13 02:34:14 +08:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2009-02-07 02:26:27 +08:00
|
|
|
#include <jansson.h>
|
2009-10-16 02:02:27 +08:00
|
|
|
#include "jansson_private.h"
|
2009-06-11 13:56:11 +08:00
|
|
|
#include "strbuffer.h"
|
2009-02-07 02:26:27 +08:00
|
|
|
|
2009-10-13 20:40:26 +08:00
|
|
|
#define MAX_INTEGER_STR_LENGTH 100
|
|
|
|
#define MAX_REAL_STR_LENGTH 100
|
|
|
|
|
2009-05-13 02:34:14 +08:00
|
|
|
typedef int (*dump_func)(const char *buffer, int size, void *data);
|
|
|
|
|
2009-06-10 03:37:31 +08:00
|
|
|
struct string
|
|
|
|
{
|
|
|
|
char *buffer;
|
|
|
|
int length;
|
|
|
|
int size;
|
|
|
|
};
|
|
|
|
|
2009-06-11 13:56:11 +08:00
|
|
|
static int dump_to_strbuffer(const char *buffer, int size, void *data)
|
2009-06-10 03:37:31 +08:00
|
|
|
{
|
2009-06-11 13:56:11 +08:00
|
|
|
return strbuffer_append_bytes((strbuffer_t *)data, buffer, size);
|
2009-06-10 03:37:31 +08:00
|
|
|
}
|
|
|
|
|
2009-05-13 02:34:14 +08:00
|
|
|
static int dump_to_file(const char *buffer, int size, void *data)
|
|
|
|
{
|
|
|
|
FILE *dest = (FILE *)data;
|
|
|
|
if(fwrite(buffer, size, 1, dest) != 1)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-04 03:00:33 +08:00
|
|
|
/* 256 spaces (the maximum indentation size) */
|
|
|
|
static char whitespace[] = " ";
|
|
|
|
|
2009-09-12 17:49:17 +08:00
|
|
|
static int dump_indent(unsigned long flags, int depth, dump_func dump, void *data)
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
|
|
|
if(JSON_INDENT(flags) > 0)
|
|
|
|
{
|
2009-09-04 03:00:33 +08:00
|
|
|
int i, ws_count = JSON_INDENT(flags);
|
2009-05-13 02:34:14 +08:00
|
|
|
|
|
|
|
if(dump("\n", 1, data))
|
|
|
|
return -1;
|
|
|
|
|
2009-09-04 03:00:33 +08:00
|
|
|
for(i = 0; i < depth; i++)
|
|
|
|
{
|
|
|
|
if(dump(whitespace, ws_count, data))
|
|
|
|
return -1;
|
|
|
|
}
|
2009-05-13 02:34:14 +08:00
|
|
|
}
|
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, dump_func dump, void *data)
|
2009-02-07 02:26:27 +08:00
|
|
|
{
|
2009-05-13 02:34:14 +08:00
|
|
|
const char *end;
|
|
|
|
|
|
|
|
if(dump("\"", 1, data))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
end = str;
|
2009-07-05 03:02:16 +08:00
|
|
|
while(1)
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
2009-07-05 03:02:16 +08:00
|
|
|
const char *text;
|
|
|
|
char seq[7];
|
|
|
|
int length;
|
|
|
|
|
2009-10-02 02:52:12 +08:00
|
|
|
while(*end && *end != '\\' && *end != '"' && (unsigned char)*end > 0x1F)
|
2009-05-13 02:34:14 +08:00
|
|
|
end++;
|
|
|
|
|
2009-07-05 03:02:16 +08:00
|
|
|
if(end != str) {
|
2009-05-13 02:34:14 +08:00
|
|
|
if(dump(str, end - str, data))
|
|
|
|
return -1;
|
|
|
|
}
|
2009-07-05 03:02:16 +08:00
|
|
|
|
|
|
|
if(!*end)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* handle \, ", and control codes */
|
|
|
|
length = 2;
|
|
|
|
switch(*end)
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
2009-07-05 03:02:16 +08:00
|
|
|
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;
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
sprintf(seq, "\\u00%02x", *end);
|
|
|
|
text = seq;
|
|
|
|
length = 6;
|
|
|
|
break;
|
|
|
|
}
|
2009-05-13 02:34:14 +08:00
|
|
|
}
|
2009-07-05 03:02:16 +08:00
|
|
|
|
|
|
|
if(dump(text, length, data))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
end++;
|
2009-05-13 02:34:14 +08:00
|
|
|
str = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dump("\"", 1, data);
|
|
|
|
}
|
|
|
|
|
2009-09-12 17:49:17 +08:00
|
|
|
static int do_dump(const json_t *json, unsigned long flags, int depth,
|
2009-05-13 02:34:14 +08:00
|
|
|
dump_func dump, void *data)
|
|
|
|
{
|
2009-02-07 02:26:27 +08:00
|
|
|
switch(json_typeof(json)) {
|
|
|
|
case JSON_NULL:
|
2009-05-13 02:34:14 +08:00
|
|
|
return dump("null", 4, data);
|
2009-02-07 02:26:27 +08:00
|
|
|
|
|
|
|
case JSON_TRUE:
|
2009-05-13 02:34:14 +08:00
|
|
|
return dump("true", 4, data);
|
2009-02-07 02:26:27 +08:00
|
|
|
|
|
|
|
case JSON_FALSE:
|
2009-05-13 02:34:14 +08:00
|
|
|
return dump("false", 5, data);
|
2009-02-07 02:26:27 +08:00
|
|
|
|
2009-06-23 05:14:28 +08:00
|
|
|
case JSON_INTEGER:
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
2009-10-13 20:40:26 +08:00
|
|
|
char buffer[MAX_INTEGER_STR_LENGTH];
|
|
|
|
int size;
|
2009-05-13 02:34:14 +08:00
|
|
|
|
2009-10-13 20:40:26 +08:00
|
|
|
size = snprintf(buffer, MAX_INTEGER_STR_LENGTH, "%d", json_integer_value(json));
|
|
|
|
if(size >= MAX_INTEGER_STR_LENGTH)
|
2009-06-23 05:14:28 +08:00
|
|
|
return -1;
|
|
|
|
|
2009-10-13 20:40:26 +08:00
|
|
|
return dump(buffer, size, data);
|
2009-06-23 05:14:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case JSON_REAL:
|
|
|
|
{
|
2009-10-13 20:40:26 +08:00
|
|
|
char buffer[MAX_REAL_STR_LENGTH];
|
|
|
|
int size;
|
2009-06-23 05:14:28 +08:00
|
|
|
|
2009-10-13 20:40:26 +08:00
|
|
|
size = snprintf(buffer, MAX_REAL_STR_LENGTH, "%0.17f", json_real_value(json));
|
|
|
|
if(size >= MAX_REAL_STR_LENGTH)
|
2009-05-13 02:34:14 +08:00
|
|
|
return -1;
|
|
|
|
|
2009-10-13 20:40:26 +08:00
|
|
|
return dump(buffer, size, data);
|
2009-05-13 02:34:14 +08:00
|
|
|
}
|
2009-02-07 02:26:27 +08:00
|
|
|
|
|
|
|
case JSON_STRING:
|
2009-05-13 02:34:14 +08:00
|
|
|
return dump_string(json_string_value(json), dump, data);
|
|
|
|
|
|
|
|
case JSON_ARRAY:
|
|
|
|
{
|
|
|
|
int i;
|
2009-10-16 02:02:27 +08:00
|
|
|
int n;
|
|
|
|
json_array_t *array;
|
|
|
|
|
|
|
|
/* detect circular references */
|
|
|
|
array = json_to_array(json);
|
|
|
|
if(array->visited)
|
|
|
|
return -1;
|
|
|
|
array->visited = 1;
|
|
|
|
|
|
|
|
n = json_array_size(json);
|
2009-05-13 02:34:14 +08:00
|
|
|
|
|
|
|
if(dump("[", 1, data))
|
|
|
|
return -1;
|
|
|
|
if(n == 0)
|
2009-07-04 04:22:47 +08:00
|
|
|
return dump("]", 1, data);
|
2009-05-13 02:34:14 +08:00
|
|
|
if(dump_indent(flags, depth + 1, dump, data))
|
|
|
|
return -1;
|
2009-02-07 02:26:27 +08:00
|
|
|
|
|
|
|
for(i = 0; i < n; ++i) {
|
2009-05-13 02:34:14 +08:00
|
|
|
if(do_dump(json_array_get(json, i), flags, depth + 1,
|
|
|
|
dump, data))
|
|
|
|
return -1;
|
|
|
|
|
2009-02-07 02:26:27 +08:00
|
|
|
if(i < n - 1)
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
|
|
|
if(dump(",", 1, data) ||
|
|
|
|
dump_indent(flags, depth + 1, dump, data))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(dump_indent(flags, depth, dump, data))
|
|
|
|
return -1;
|
|
|
|
}
|
2009-02-07 02:26:27 +08:00
|
|
|
}
|
2009-10-16 02:02:27 +08:00
|
|
|
|
|
|
|
array->visited = 0;
|
2009-05-13 02:34:14 +08:00
|
|
|
return dump("]", 1, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
case JSON_OBJECT:
|
|
|
|
{
|
2009-10-16 02:02:27 +08:00
|
|
|
json_object_t *object;
|
|
|
|
void *iter;
|
|
|
|
|
|
|
|
/* detect circular references */
|
|
|
|
object = json_to_object(json);
|
|
|
|
if(object->visited)
|
|
|
|
return -1;
|
|
|
|
object->visited = 1;
|
|
|
|
|
|
|
|
iter = json_object_iter((json_t *)json);
|
2009-05-13 02:34:14 +08:00
|
|
|
|
|
|
|
if(dump("{", 1, data))
|
|
|
|
return -1;
|
|
|
|
if(!iter)
|
|
|
|
return dump("}", 1, data);
|
|
|
|
if(dump_indent(flags, depth + 1, dump, data))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while(iter)
|
|
|
|
{
|
|
|
|
void *next = json_object_iter_next((json_t *)json, iter);
|
|
|
|
|
|
|
|
dump_string(json_object_iter_key(iter), dump, data);
|
|
|
|
if(dump(": ", 2, data) ||
|
|
|
|
do_dump(json_object_iter_value(iter), flags, depth + 1,
|
|
|
|
dump, data))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if(next)
|
|
|
|
{
|
|
|
|
if(dump(",", 1, data) ||
|
|
|
|
dump_indent(flags, depth + 1, dump, data))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(dump_indent(flags, depth, dump, data))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter = next;
|
|
|
|
}
|
2009-10-16 02:02:27 +08:00
|
|
|
|
|
|
|
object->visited = 0;
|
2009-05-13 02:34:14 +08:00
|
|
|
return 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-13 02:34:14 +08:00
|
|
|
|
2009-09-12 17:49:17 +08:00
|
|
|
char *json_dumps(const json_t *json, unsigned long flags)
|
2009-06-10 03:37:31 +08:00
|
|
|
{
|
2009-06-11 13:56:11 +08:00
|
|
|
strbuffer_t strbuff;
|
2009-06-10 03:37:31 +08:00
|
|
|
char *result;
|
|
|
|
|
2009-08-05 01:54:47 +08:00
|
|
|
if(!json_is_array(json) && !json_is_object(json))
|
|
|
|
return NULL;
|
|
|
|
|
2009-06-23 02:09:25 +08:00
|
|
|
if(strbuffer_init(&strbuff))
|
2009-10-17 02:20:38 +08:00
|
|
|
return NULL;
|
2009-06-11 13:56:11 +08:00
|
|
|
|
2009-10-16 01:54:32 +08:00
|
|
|
if(do_dump(json, flags, 0, dump_to_strbuffer, (void *)&strbuff)) {
|
|
|
|
strbuffer_close(&strbuff);
|
2009-06-10 03:37:31 +08:00
|
|
|
return NULL;
|
2009-10-16 01:54:32 +08:00
|
|
|
}
|
2009-06-10 03:37:31 +08:00
|
|
|
|
2009-10-16 01:54:32 +08:00
|
|
|
if(dump_to_strbuffer("\n", 1, (void *)&strbuff)) {
|
|
|
|
strbuffer_close(&strbuff);
|
2009-06-10 03:37:31 +08:00
|
|
|
return NULL;
|
2009-10-16 01:54:32 +08:00
|
|
|
}
|
2009-06-10 03:37:31 +08:00
|
|
|
|
2009-06-14 03:26:45 +08:00
|
|
|
result = strdup(strbuffer_value(&strbuff));
|
2009-06-11 13:56:11 +08:00
|
|
|
strbuffer_close(&strbuff);
|
2009-06-10 03:37:31 +08:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-09-12 17:49:17 +08:00
|
|
|
int json_dumpf(const json_t *json, FILE *output, unsigned long flags)
|
2009-05-13 02:34:14 +08:00
|
|
|
{
|
2009-08-05 01:54:47 +08:00
|
|
|
if(!json_is_array(json) && !json_is_object(json))
|
|
|
|
return -1;
|
|
|
|
|
2009-05-13 02:34:14 +08:00
|
|
|
if(do_dump(json, flags, 0, dump_to_file, (void *)output))
|
|
|
|
return -1;
|
|
|
|
return dump_to_file("\n", 1, (void *)output);
|
|
|
|
}
|
2009-07-28 15:57:17 +08:00
|
|
|
|
2009-09-12 17:49:17 +08:00
|
|
|
int json_dump_file(const json_t *json, const char *path, unsigned long flags)
|
2009-07-28 15:57:17 +08:00
|
|
|
{
|
|
|
|
int result;
|
|
|
|
|
|
|
|
FILE *output = fopen(path, "w");
|
|
|
|
if(!output)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
result = json_dumpf(json, output, flags);
|
|
|
|
|
|
|
|
fclose(output);
|
|
|
|
return result;
|
|
|
|
}
|