blob: c6db882ee9ed83ef940eb0faa532d4f28b421807 [file] [log] [blame]
Michael Clark4504df72007-03-13 08:26:20 +00001/*
Michael Clark837240f2007-03-13 08:26:25 +00002 * $Id: json_util.c,v 1.4 2006/01/30 23:07:57 mclark Exp $
Michael Clark4504df72007-03-13 08:26:20 +00003 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00004 * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
Michael Clark4504df72007-03-13 08:26:20 +00005 * Michael Clark <michael@metaparadigm.com>
6 *
Michael Clarkf6a6e482007-03-13 08:26:23 +00007 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the MIT license. See COPYING for details.
Michael Clark4504df72007-03-13 08:26:20 +00009 *
10 */
11
12#include "config.h"
ehaszla252669c2010-12-07 18:15:35 +000013#undef realloc
Michael Clark4504df72007-03-13 08:26:20 +000014
Michael Clarkf0d08882007-03-13 08:26:18 +000015#include <stdio.h>
16#include <stdlib.h>
Michael Clarkc8f4a6e2007-12-07 02:44:24 +000017#include <stddef.h>
Michael Clark4504df72007-03-13 08:26:20 +000018#include <limits.h>
Michael Clarkf0d08882007-03-13 08:26:18 +000019#include <string.h>
20#include <errno.h>
Michael Clarkc4dceae2010-10-06 16:39:20 +000021#include <ctype.h>
Michael Clark4504df72007-03-13 08:26:20 +000022
23#if HAVE_SYS_TYPES_H
Michael Clarkf0d08882007-03-13 08:26:18 +000024#include <sys/types.h>
Michael Clark4504df72007-03-13 08:26:20 +000025#endif /* HAVE_SYS_TYPES_H */
26
27#if HAVE_SYS_STAT_H
Michael Clarkf0d08882007-03-13 08:26:18 +000028#include <sys/stat.h>
Michael Clark4504df72007-03-13 08:26:20 +000029#endif /* HAVE_SYS_STAT_H */
30
31#if HAVE_FCNTL_H
Michael Clarkf0d08882007-03-13 08:26:18 +000032#include <fcntl.h>
Michael Clark4504df72007-03-13 08:26:20 +000033#endif /* HAVE_FCNTL_H */
34
35#if HAVE_UNISTD_H
36# include <unistd.h>
37#endif /* HAVE_UNISTD_H */
38
39#ifdef WIN32
40# define WIN32_LEAN_AND_MEAN
41# include <windows.h>
42# include <io.h>
43#endif /* defined(WIN32) */
Michael Clarkf0d08882007-03-13 08:26:18 +000044
Michael Clark837240f2007-03-13 08:26:25 +000045#if !HAVE_OPEN && defined(WIN32)
46# define open _open
47#endif
48
49
Michael Clarkf0d08882007-03-13 08:26:18 +000050#include "bits.h"
51#include "debug.h"
52#include "printbuf.h"
Michael Clarkc4dceae2010-10-06 16:39:20 +000053#include "json_inttypes.h"
Michael Clarkf0d08882007-03-13 08:26:18 +000054#include "json_object.h"
55#include "json_tokener.h"
56#include "json_util.h"
57
Michael Clark88ded9c2009-08-27 06:40:59 +000058struct json_object* json_object_from_file(const char *filename)
Michael Clarkf0d08882007-03-13 08:26:18 +000059{
60 struct printbuf *pb;
61 struct json_object *obj;
62 char buf[JSON_FILE_BUF_SIZE];
63 int fd, ret;
64
65 if((fd = open(filename, O_RDONLY)) < 0) {
Michael Clarkdfaf6702007-10-25 02:26:00 +000066 MC_ERROR("json_object_from_file: error reading file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +000067 filename, strerror(errno));
Michael Clarkaaec1ef2009-02-25 02:31:32 +000068 return (struct json_object*)error_ptr(-1);
Michael Clarkf0d08882007-03-13 08:26:18 +000069 }
70 if(!(pb = printbuf_new())) {
Michael Clarkbd0a5672010-10-13 14:09:41 +000071 close(fd);
Michael Clarkdfaf6702007-10-25 02:26:00 +000072 MC_ERROR("json_object_from_file: printbuf_new failed\n");
Michael Clarkaaec1ef2009-02-25 02:31:32 +000073 return (struct json_object*)error_ptr(-1);
Michael Clarkf0d08882007-03-13 08:26:18 +000074 }
75 while((ret = read(fd, buf, JSON_FILE_BUF_SIZE)) > 0) {
76 printbuf_memappend(pb, buf, ret);
77 }
78 close(fd);
79 if(ret < 0) {
Michael Clarkdfaf6702007-10-25 02:26:00 +000080 MC_ABORT("json_object_from_file: error reading file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +000081 filename, strerror(errno));
82 printbuf_free(pb);
Michael Clarkaaec1ef2009-02-25 02:31:32 +000083 return (struct json_object*)error_ptr(-1);
Michael Clarkf0d08882007-03-13 08:26:18 +000084 }
85 obj = json_tokener_parse(pb->buf);
86 printbuf_free(pb);
87 return obj;
88}
89
90int json_object_to_file(char *filename, struct json_object *obj)
91{
Michael Clark68cafad2009-01-06 22:56:57 +000092 const char *json_str;
Michael Clark4504df72007-03-13 08:26:20 +000093 int fd, ret;
94 unsigned int wpos, wsize;
Michael Clarkf0d08882007-03-13 08:26:18 +000095
96 if(!obj) {
Michael Clarkdfaf6702007-10-25 02:26:00 +000097 MC_ERROR("json_object_to_file: object is null\n");
Michael Clarkf0d08882007-03-13 08:26:18 +000098 return -1;
99 }
100
101 if((fd = open(filename, O_WRONLY | O_TRUNC | O_CREAT, 0644)) < 0) {
Michael Clarkdfaf6702007-10-25 02:26:00 +0000102 MC_ERROR("json_object_to_file: error opening file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +0000103 filename, strerror(errno));
104 return -1;
105 }
Michael Clark4504df72007-03-13 08:26:20 +0000106
Michael Clarkf1ae67d2010-10-13 14:10:51 +0000107 if(!(json_str = json_object_to_json_string(obj))) {
108 close(fd);
109 return -1;
110 }
Michael Clark4504df72007-03-13 08:26:20 +0000111
112 wsize = (unsigned int)(strlen(json_str) & UINT_MAX); /* CAW: probably unnecessary, but the most 64bit safe */
Michael Clarkf0d08882007-03-13 08:26:18 +0000113 wpos = 0;
114 while(wpos < wsize) {
115 if((ret = write(fd, json_str + wpos, wsize-wpos)) < 0) {
116 close(fd);
Michael Clarkdfaf6702007-10-25 02:26:00 +0000117 MC_ERROR("json_object_to_file: error writing file %s: %s\n",
Michael Clarkf0d08882007-03-13 08:26:18 +0000118 filename, strerror(errno));
119 return -1;
120 }
Michael Clark4504df72007-03-13 08:26:20 +0000121
122 /* because of the above check for ret < 0, we can safely cast and add */
123 wpos += (unsigned int)ret;
Michael Clarkf0d08882007-03-13 08:26:18 +0000124 }
125
126 close(fd);
127 return 0;
128}
Michael Clarkc4dceae2010-10-06 16:39:20 +0000129
130int json_parse_int64(const char *buf, int64_t *retval)
131{
132 int64_t num64;
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100133 const char *buf_skip_space;
134 int orig_has_neg;
Michael Clarkc4dceae2010-10-06 16:39:20 +0000135 if (sscanf(buf, "%" SCNd64, &num64) != 1)
136 {
ehaszla252669c2010-12-07 18:15:35 +0000137 MC_DEBUG("Failed to parse, sscanf != 1\n");
Michael Clarkc4dceae2010-10-06 16:39:20 +0000138 return 1;
139 }
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100140 buf_skip_space = buf;
141 orig_has_neg = 0;
Michael Clarkc4dceae2010-10-06 16:39:20 +0000142 // Skip leading spaces
143 while (isspace((int)*buf_skip_space) && *buf_skip_space)
144 buf_skip_space++;
145 if (*buf_skip_space == '-')
146 {
147 buf_skip_space++;
148 orig_has_neg = 1;
149 }
ehaszla252669c2010-12-07 18:15:35 +0000150 // Skip leading zeros, but keep at least one digit
151 while (buf_skip_space[0] == '0' && buf_skip_space[1] != '\0')
Michael Clarkc4dceae2010-10-06 16:39:20 +0000152 buf_skip_space++;
ehaszla252669c2010-12-07 18:15:35 +0000153 if (buf_skip_space[0] == '0' && buf_skip_space[1] == '\0')
154 orig_has_neg = 0; // "-0" is the same as just plain "0"
Michael Clarkc4dceae2010-10-06 16:39:20 +0000155
156 if (errno != ERANGE)
157 {
158 char buf_cmp[100];
159 char *buf_cmp_start = buf_cmp;
160 int recheck_has_neg = 0;
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100161 int buf_cmp_len;
Michael Clarkc4dceae2010-10-06 16:39:20 +0000162 snprintf(buf_cmp_start, sizeof(buf_cmp), "%" PRId64, num64);
163 if (*buf_cmp_start == '-')
164 {
165 recheck_has_neg = 1;
166 buf_cmp_start++;
167 }
168 // No need to skip leading spaces or zeros here.
169
John Arbash Meinel6a231e42012-02-01 09:27:49 +0100170 buf_cmp_len = strlen(buf_cmp_start);
Michael Clarkc4dceae2010-10-06 16:39:20 +0000171 /**
172 * If the sign is different, or
173 * some of the digits are different, or
174 * there is another digit present in the original string
175 * then we NOT successfully parsed the value.
176 */
177 if (orig_has_neg != recheck_has_neg ||
178 strncmp(buf_skip_space, buf_cmp_start, strlen(buf_cmp_start)) != 0 ||
179 (strlen(buf_skip_space) != buf_cmp_len &&
ehaszla252669c2010-12-07 18:15:35 +0000180 isdigit((int)buf_skip_space[buf_cmp_len])
Michael Clarkc4dceae2010-10-06 16:39:20 +0000181 )
182 )
183 {
184 errno = ERANGE;
185 }
186 }
187 if (errno == ERANGE)
188 {
189 if (orig_has_neg)
190 num64 = INT64_MIN;
191 else
192 num64 = INT64_MAX;
193 }
194 *retval = num64;
195 return 0;
196}
ehaszla252669c2010-12-07 18:15:35 +0000197
198#if HAVE_REALLOC == 0
199void* rpl_realloc(void* p, size_t n)
200{
201 if (n == 0)
202 n = 1;
203 if (p == 0)
204 return malloc(n);
205 return realloc(p, n);
206}
207#endif
Eric Haszlakiewicz886c4fb2011-05-03 20:40:49 +0000208
209#define NELEM(a) (sizeof(a) / sizeof(a[0]))
210static const char* json_type_name[] = {
211 /* If you change this, be sure to update the enum json_type definition too */
212 "null",
213 "boolean",
214 "double",
215 "int",
216 "object",
217 "array",
218 "string",
219};
220
221const char *json_type_to_name(enum json_type o_type)
222{
223 if (o_type < 0 || o_type >= NELEM(json_type_name))
224 {
225 MC_ERROR("json_type_to_name: type %d is out of range [0,%d]\n", o_type, NELEM(json_type_name));
226 return NULL;
227 }
228 return json_type_name[o_type];
229}
230