ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.xs
(Generate patch)

Comparing JSON-XS/XS.xs (file contents):
Revision 1.36 by root, Wed Jun 6 17:27:33 2007 UTC vs.
Revision 1.132 by root, Tue Sep 5 13:07:09 2017 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#include "assert.h" 5#include <assert.h>
6#include "string.h" 6#include <string.h>
7#include "stdlib.h" 7#include <stdlib.h>
8#include "stdio.h" 8#include <stdio.h>
9#include <limits.h>
10#include <float.h>
11#include <inttypes.h>
9 12
10#if defined(__BORLANDC__) || defined(_MSC_VER) 13#if defined(__BORLANDC__) || defined(_MSC_VER)
11# define snprintf _snprintf // C compilers have this in stdio.h 14# define snprintf _snprintf // C compilers have this in stdio.h
12#endif 15#endif
13 16
17// some old perls do not have this, try to make it work, no
18// guarantees, though. if it breaks, you get to keep the pieces.
19#ifndef UTF8_MAXBYTES
20# define UTF8_MAXBYTES 13
21#endif
22
23// compatibility with perl <5.18
24#ifndef HvNAMELEN_get
25# define HvNAMELEN_get(hv) strlen (HvNAME (hv))
26#endif
27#ifndef HvNAMELEN
28# define HvNAMELEN(hv) HvNAMELEN_get (hv)
29#endif
30#ifndef HvNAMEUTF8
31# define HvNAMEUTF8(hv) 0
32#endif
33
34// three extra for rounding, sign, and end of string
35#define IVUV_MAXCHARS (sizeof (UV) * CHAR_BIT * 28 / 93 + 3)
36
14#define F_ASCII 0x00000001UL 37#define F_ASCII 0x00000001UL
15#define F_LATIN1 0x00000002UL 38#define F_LATIN1 0x00000002UL
16#define F_UTF8 0x00000004UL 39#define F_UTF8 0x00000004UL
17#define F_INDENT 0x00000008UL 40#define F_INDENT 0x00000008UL
18#define F_CANONICAL 0x00000010UL 41#define F_CANONICAL 0x00000010UL
19#define F_SPACE_BEFORE 0x00000020UL 42#define F_SPACE_BEFORE 0x00000020UL
20#define F_SPACE_AFTER 0x00000040UL 43#define F_SPACE_AFTER 0x00000040UL
21#define F_ALLOW_NONREF 0x00000100UL 44#define F_ALLOW_NONREF 0x00000100UL
22#define F_SHRINK 0x00000200UL 45#define F_SHRINK 0x00000200UL
46#define F_ALLOW_BLESSED 0x00000400UL
47#define F_CONV_BLESSED 0x00000800UL
23#define F_MAXDEPTH 0xf8000000UL 48#define F_RELAXED 0x00001000UL
24#define S_MAXDEPTH 27 49#define F_ALLOW_UNKNOWN 0x00002000UL
25 50#define F_ALLOW_TAGS 0x00004000UL
26#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) 51#define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing
27
28// F_SELFCONVERT? <=> to_json/toJson
29// F_BLESSED? <=> { $__class__$ => }
30 52
31#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 53#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
32#define F_DEFAULT (9UL << S_MAXDEPTH)
33 54
34#define INIT_SIZE 32 // initial scalar size to be allocated 55#define INIT_SIZE 32 // initial scalar size to be allocated
35#define INDENT_STEP 3 // spaces per indentation level 56#define INDENT_STEP 3 // spaces per indentation level
36 57
37#define SHORT_STRING_LEN 512 // special-case strings of up to this size 58#define SHORT_STRING_LEN 16384 // special-case strings of up to this size
59
60#define DECODE_WANTS_OCTETS(json) ((json)->flags & F_UTF8)
38 61
39#define SB do { 62#define SB do {
40#define SE } while (0) 63#define SE } while (0)
41 64
42#if __GNUC__ >= 3 65#if __GNUC__ >= 3
43# define expect(expr,value) __builtin_expect ((expr),(value)) 66# define expect(expr,value) __builtin_expect ((expr), (value))
44# define inline inline 67# define INLINE static inline
45#else 68#else
46# define expect(expr,value) (expr) 69# define expect(expr,value) (expr)
47# define inline static 70# define INLINE static
48#endif 71#endif
49 72
50#define expect_false(expr) expect ((expr) != 0, 0) 73#define expect_false(expr) expect ((expr) != 0, 0)
51#define expect_true(expr) expect ((expr) != 0, 1) 74#define expect_true(expr) expect ((expr) != 0, 1)
52 75
53static HV *json_stash; // JSON::XS:: 76#define IN_RANGE_INC(type,val,beg,end) \
77 ((unsigned type)((unsigned type)(val) - (unsigned type)(beg)) \
78 <= (unsigned type)((unsigned type)(end) - (unsigned type)(beg)))
79
80#define ERR_NESTING_EXCEEDED "json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
81
82#ifdef USE_ITHREADS
83# define JSON_SLOW 1
84# define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1))
85# define BOOL_STASH (bool_stash ? bool_stash : gv_stashpv ("Types::Serialiser::Boolean", 1))
86#else
87# define JSON_SLOW 0
88# define JSON_STASH json_stash
89# define BOOL_STASH bool_stash
90#endif
91
92// the amount of HEs to allocate on the stack, when sorting keys
93#define STACK_HES 64
94
95static HV *json_stash, *bool_stash; // JSON::XS::, Types::Serialiser::Boolean::
96static SV *bool_true, *bool_false, *sv_json;
97
98enum {
99 INCR_M_WS = 0, // initial whitespace skipping, must be 0
100 INCR_M_STR, // inside string
101 INCR_M_BS, // inside backslash
102 INCR_M_C0, // inside comment in initial whitespace sequence
103 INCR_M_C1, // inside comment in other places
104 INCR_M_JSON // outside anything, count nesting
105};
106
107#define INCR_DONE(json) ((json)->incr_nest <= 0 && (json)->incr_mode == INCR_M_JSON)
108
109typedef struct {
110 U32 flags;
111 U32 max_depth;
112 STRLEN max_size;
113
114 SV *cb_object;
115 HV *cb_sk_object;
116
117 // for the incremental parser
118 SV *incr_text; // the source text so far
119 STRLEN incr_pos; // the current offset into the text
120 int incr_nest; // {[]}-nesting level
121 unsigned char incr_mode;
122} JSON;
123
124INLINE void
125json_init (JSON *json)
126{
127 Zero (json, 1, JSON);
128 json->max_depth = 512;
129}
54 130
55///////////////////////////////////////////////////////////////////////////// 131/////////////////////////////////////////////////////////////////////////////
56// utility functions 132// utility functions
57 133
58static UV * 134INLINE SV *
59SvJSON (SV *sv) 135get_bool (const char *name)
60{ 136{
61 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash)) 137 SV *sv = get_sv (name, 1);
62 croak ("object is not of type JSON::XS");
63 138
64 return &SvUVX (SvRV (sv)); 139 SvREADONLY_on (sv);
65} 140 SvREADONLY_on (SvRV (sv));
66 141
67static void 142 return sv;
143}
144
145INLINE void
68shrink (SV *sv) 146shrink (SV *sv)
69{ 147{
70 sv_utf8_downgrade (sv, 1); 148 sv_utf8_downgrade (sv, 1);
149
71 if (SvLEN (sv) > SvCUR (sv) + 1) 150 if (SvLEN (sv) > SvCUR (sv) + 1)
72 { 151 {
73#ifdef SvPV_shrink_to_cur 152#ifdef SvPV_shrink_to_cur
74 SvPV_shrink_to_cur (sv); 153 SvPV_shrink_to_cur (sv);
75#elif defined (SvPV_renew) 154#elif defined (SvPV_renew)
76 SvPV_renew (sv, SvCUR (sv) + 1); 155 SvPV_renew (sv, SvCUR (sv) + 1);
77#endif 156#endif
78 } 157 }
79} 158}
80 159
160/* adds two STRLENs together, slow, and with paranoia */
161STRLEN
162strlen_sum (STRLEN l1, STRLEN l2)
163{
164 size_t sum = l1 + l2;
165
166 if (sum < (size_t)l2 || sum != (size_t)(STRLEN)sum)
167 croak ("JSON::XS: string size overflow");
168
169 return sum;
170}
171
172/* similar to SvGROW, but somewhat safer and guarantees exponential realloc strategy */
173static char *
174json_sv_grow (SV *sv, size_t len1, size_t len2)
175{
176 len1 = strlen_sum (len1, len2);
177 len1 = strlen_sum (len1, len1 >> 1);
178
179 if (len1 > 4096 - 24)
180 len1 = (len1 | 4095) - 24;
181
182 return SvGROW (sv, len1);
183}
184
81// decode an utf-8 character and return it, or (UV)-1 in 185// decode a utf-8 character and return it, or (UV)-1 in
82// case of an error. 186// case of an error.
83// we special-case "safe" characters from U+80 .. U+7FF, 187// we special-case "safe" characters from U+80 .. U+7FF,
84// but use the very good perl function to parse anything else. 188// but use the very good perl function to parse anything else.
85// note that we never call this function for a ascii codepoints 189// note that we never call this function for a ascii codepoints
86inline UV 190INLINE UV
87decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen) 191decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
88{ 192{
89 if (expect_false (s[0] > 0xdf || s[0] < 0xc2)) 193 if (expect_true (len >= 2
90 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY); 194 && IN_RANGE_INC (char, s[0], 0xc2, 0xdf)
91 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf) 195 && IN_RANGE_INC (char, s[1], 0x80, 0xbf)))
92 { 196 {
93 *clen = 2; 197 *clen = 2;
94 return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f); 198 return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
95 } 199 }
96 else 200 else
201 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
202}
203
204// likewise for encoding, also never called for ascii codepoints
205// this function takes advantage of this fact, although current gccs
206// seem to optimise the check for >= 0x80 away anyways
207INLINE unsigned char *
208encode_utf8 (unsigned char *s, UV ch)
209{
210 if (expect_false (ch < 0x000080))
211 *s++ = ch;
212 else if (expect_true (ch < 0x000800))
213 *s++ = 0xc0 | ( ch >> 6),
214 *s++ = 0x80 | ( ch & 0x3f);
215 else if ( ch < 0x010000)
216 *s++ = 0xe0 | ( ch >> 12),
217 *s++ = 0x80 | ((ch >> 6) & 0x3f),
218 *s++ = 0x80 | ( ch & 0x3f);
219 else if ( ch < 0x110000)
220 *s++ = 0xf0 | ( ch >> 18),
221 *s++ = 0x80 | ((ch >> 12) & 0x3f),
222 *s++ = 0x80 | ((ch >> 6) & 0x3f),
223 *s++ = 0x80 | ( ch & 0x3f);
224
225 return s;
226}
227
228// convert offset pointer to character index, sv must be string
229static STRLEN
230ptr_to_index (SV *sv, char *offset)
231{
232 return SvUTF8 (sv)
233 ? utf8_distance (offset, SvPVX (sv))
234 : offset - SvPVX (sv);
235}
236
237/////////////////////////////////////////////////////////////////////////////
238// fp hell
239
240// scan a group of digits, and a trailing exponent
241static void
242json_atof_scan1 (const char *s, NV *accum, int *expo, int postdp, int maxdepth)
243{
244 UV uaccum = 0;
245 int eaccum = 0;
246
247 // if we recurse too deep, skip all remaining digits
248 // to avoid a stack overflow attack
249 if (expect_false (--maxdepth <= 0))
250 while (((U8)*s - '0') < 10)
251 ++s;
252
253 for (;;)
254 {
255 U8 dig = (U8)*s - '0';
256
257 if (expect_false (dig >= 10))
258 {
259 if (dig == (U8)((U8)'.' - (U8)'0'))
260 {
261 ++s;
262 json_atof_scan1 (s, accum, expo, 1, maxdepth);
263 }
264 else if ((dig | ' ') == 'e' - '0')
265 {
266 int exp2 = 0;
267 int neg = 0;
268
269 ++s;
270
271 if (*s == '-')
272 {
273 ++s;
274 neg = 1;
275 }
276 else if (*s == '+')
277 ++s;
278
279 while ((dig = (U8)*s - '0') < 10)
280 exp2 = exp2 * 10 + *s++ - '0';
281
282 *expo += neg ? -exp2 : exp2;
283 }
284
285 break;
286 }
287
288 ++s;
289
290 uaccum = uaccum * 10 + dig;
291 ++eaccum;
292
293 // if we have too many digits, then recurse for more
294 // we actually do this for rather few digits
295 if (uaccum >= (UV_MAX - 9) / 10)
296 {
297 if (postdp) *expo -= eaccum;
298 json_atof_scan1 (s, accum, expo, postdp, maxdepth);
299 if (postdp) *expo += eaccum;
300
301 break;
302 }
97 { 303 }
98 *clen = (STRLEN)-1; 304
305 // this relies greatly on the quality of the pow ()
306 // implementation of the platform, but a good
307 // implementation is hard to beat.
308 // (IEEE 754 conformant ones are required to be exact)
309 if (postdp) *expo -= eaccum;
310 *accum += uaccum * Perl_pow (10., *expo);
311 *expo += eaccum;
312}
313
314static NV
315json_atof (const char *s)
316{
317 NV accum = 0.;
318 int expo = 0;
319 int neg = 0;
320
321 if (*s == '-')
322 {
323 ++s;
324 neg = 1;
325 }
326
327 // a recursion depth of ten gives us >>500 bits
328 json_atof_scan1 (s, &accum, &expo, 0, 10);
329
330 return neg ? -accum : accum;
331}
332
333// target of scalar reference is bool? -1 == nope, 0 == false, 1 == true
334static int
335ref_bool_type (SV *sv)
336{
337 svtype svt = SvTYPE (sv);
338
339 if (svt < SVt_PVAV)
340 {
341 STRLEN len = 0;
342 char *pv = svt ? SvPV (sv, len) : 0;
343
344 if (len == 1)
345 if (*pv == '1')
346 return 1;
347 else if (*pv == '0')
348 return 0;
349 }
350
351 return -1;
352}
353
354// returns whether scalar is not a reference in the sense of allow_nonref
355static int
356json_nonref (SV *scalar)
357{
358 if (!SvROK (scalar))
359 return 1;
360
361 scalar = SvRV (scalar);
362
363 if (SvTYPE (scalar) >= SVt_PVMG)
364 {
365 if (SvSTASH (scalar) == bool_stash)
99 return (UV)-1; 366 return 1;
367
368 if (!SvOBJECT (scalar) && ref_bool_type (scalar) >= 0)
369 return 1;
100 } 370 }
371
372 return 0;
101} 373}
102 374
103///////////////////////////////////////////////////////////////////////////// 375/////////////////////////////////////////////////////////////////////////////
104// encoder 376// encoder
105 377
107typedef struct 379typedef struct
108{ 380{
109 char *cur; // SvPVX (sv) + current output position 381 char *cur; // SvPVX (sv) + current output position
110 char *end; // SvEND (sv) 382 char *end; // SvEND (sv)
111 SV *sv; // result scalar 383 SV *sv; // result scalar
112 U32 flags; // F_* 384 JSON json;
113 U32 indent; // indentation level 385 U32 indent; // indentation level
114 U32 maxdepth; // max. indentation/recursion level 386 UV limit; // escape character values >= this value when encoding
115} enc_t; 387} enc_t;
116 388
117inline void 389INLINE void
118need (enc_t *enc, STRLEN len) 390need (enc_t *enc, STRLEN len)
119{ 391{
120 if (expect_false (enc->cur + len >= enc->end)) 392 if (expect_false ((uintptr_t)(enc->end - enc->cur) < len))
121 { 393 {
122 STRLEN cur = enc->cur - SvPVX (enc->sv); 394 STRLEN cur = enc->cur - (char *)SvPVX (enc->sv);
123 SvGROW (enc->sv, cur + len + 1); 395 char *buf = json_sv_grow (enc->sv, cur, len);
124 enc->cur = SvPVX (enc->sv) + cur; 396 enc->cur = buf + cur;
125 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1; 397 enc->end = buf + SvLEN (enc->sv) - 1;
126 } 398 }
127} 399}
128 400
129inline void 401INLINE void
130encode_ch (enc_t *enc, char ch) 402encode_ch (enc_t *enc, char ch)
131{ 403{
132 need (enc, 1); 404 need (enc, 1);
133 *enc->cur++ = ch; 405 *enc->cur++ = ch;
134} 406}
146 418
147 if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case 419 if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case
148 { 420 {
149 if (expect_false (ch == '"')) // but with slow exceptions 421 if (expect_false (ch == '"')) // but with slow exceptions
150 { 422 {
151 need (enc, len += 1); 423 need (enc, len + 1);
152 *enc->cur++ = '\\'; 424 *enc->cur++ = '\\';
153 *enc->cur++ = '"'; 425 *enc->cur++ = '"';
154 } 426 }
155 else if (expect_false (ch == '\\')) 427 else if (expect_false (ch == '\\'))
156 { 428 {
157 need (enc, len += 1); 429 need (enc, len + 1);
158 *enc->cur++ = '\\'; 430 *enc->cur++ = '\\';
159 *enc->cur++ = '\\'; 431 *enc->cur++ = '\\';
160 } 432 }
161 else 433 else
162 *enc->cur++ = ch; 434 *enc->cur++ = ch;
165 } 437 }
166 else 438 else
167 { 439 {
168 switch (ch) 440 switch (ch)
169 { 441 {
170 case '\010': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'b'; ++str; break; 442 case '\010': need (enc, len + 1); *enc->cur++ = '\\'; *enc->cur++ = 'b'; ++str; break;
171 case '\011': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 't'; ++str; break; 443 case '\011': need (enc, len + 1); *enc->cur++ = '\\'; *enc->cur++ = 't'; ++str; break;
172 case '\012': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'n'; ++str; break; 444 case '\012': need (enc, len + 1); *enc->cur++ = '\\'; *enc->cur++ = 'n'; ++str; break;
173 case '\014': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'f'; ++str; break; 445 case '\014': need (enc, len + 1); *enc->cur++ = '\\'; *enc->cur++ = 'f'; ++str; break;
174 case '\015': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'r'; ++str; break; 446 case '\015': need (enc, len + 1); *enc->cur++ = '\\'; *enc->cur++ = 'r'; ++str; break;
175 447
176 default: 448 default:
177 { 449 {
178 STRLEN clen; 450 STRLEN clen;
179 UV uch; 451 UV uch;
180 452
181 if (is_utf8) 453 if (is_utf8)
182 { 454 {
183 //uch = utf8n_to_uvuni (str, end - str, &clen, UTF8_CHECK_ONLY);
184 uch = decode_utf8 (str, end - str, &clen); 455 uch = decode_utf8 (str, end - str, &clen);
185 if (clen == (STRLEN)-1) 456 if (clen == (STRLEN)-1)
186 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str); 457 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str);
187 } 458 }
188 else 459 else
189 { 460 {
190 uch = ch; 461 uch = ch;
191 clen = 1; 462 clen = 1;
192 } 463 }
193 464
194 if (uch > 0x10FFFFUL) 465 if (uch < 0x80/*0x20*/ || uch >= enc->limit)
195 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
196
197 if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF))
198 { 466 {
199 if (uch > 0xFFFFUL) 467 if (uch >= 0x10000UL)
200 { 468 {
469 if (uch >= 0x110000UL)
470 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
471
201 need (enc, len += 11); 472 need (enc, len + 11);
202 sprintf (enc->cur, "\\u%04x\\u%04x", 473 sprintf (enc->cur, "\\u%04x\\u%04x",
203 (int)((uch - 0x10000) / 0x400 + 0xD800), 474 (int)((uch - 0x10000) / 0x400 + 0xD800),
204 (int)((uch - 0x10000) % 0x400 + 0xDC00)); 475 (int)((uch - 0x10000) % 0x400 + 0xDC00));
205 enc->cur += 12; 476 enc->cur += 12;
206 } 477 }
207 else 478 else
208 { 479 {
209 static char hexdigit [16] = "0123456789abcdef";
210 need (enc, len += 5); 480 need (enc, len + 5);
211 *enc->cur++ = '\\'; 481 *enc->cur++ = '\\';
212 *enc->cur++ = 'u'; 482 *enc->cur++ = 'u';
213 *enc->cur++ = hexdigit [ uch >> 12 ]; 483 *enc->cur++ = PL_hexdigit [ uch >> 12 ];
214 *enc->cur++ = hexdigit [(uch >> 8) & 15]; 484 *enc->cur++ = PL_hexdigit [(uch >> 8) & 15];
215 *enc->cur++ = hexdigit [(uch >> 4) & 15]; 485 *enc->cur++ = PL_hexdigit [(uch >> 4) & 15];
216 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 486 *enc->cur++ = PL_hexdigit [(uch >> 0) & 15];
217 } 487 }
218 488
219 str += clen; 489 str += clen;
220 } 490 }
221 else if (enc->flags & F_LATIN1) 491 else if (enc->json.flags & F_LATIN1)
222 { 492 {
223 *enc->cur++ = uch; 493 *enc->cur++ = uch;
224 str += clen; 494 str += clen;
225 } 495 }
226 else if (is_utf8) 496 else if (is_utf8)
227 { 497 {
228 need (enc, len += clen); 498 need (enc, len + clen);
229 do 499 do
230 { 500 {
231 *enc->cur++ = *str++; 501 *enc->cur++ = *str++;
232 } 502 }
233 while (--clen); 503 while (--clen);
234 } 504 }
235 else 505 else
236 { 506 {
237 need (enc, len += UTF8_MAXBYTES - 1); // never more than 11 bytes needed 507 need (enc, len + UTF8_MAXBYTES - 1); // never more than 11 bytes needed
238 enc->cur = uvuni_to_utf8_flags (enc->cur, uch, 0); 508 enc->cur = encode_utf8 (enc->cur, uch);
239 ++str; 509 ++str;
240 } 510 }
241 } 511 }
242 } 512 }
243 } 513 }
244 514
245 --len; 515 --len;
246 } 516 }
247} 517}
248 518
249inline void 519INLINE void
250encode_indent (enc_t *enc) 520encode_indent (enc_t *enc)
251{ 521{
252 if (enc->flags & F_INDENT) 522 if (enc->json.flags & F_INDENT)
253 { 523 {
254 int spaces = enc->indent * INDENT_STEP; 524 int spaces = enc->indent * INDENT_STEP;
255 525
256 need (enc, spaces); 526 need (enc, spaces);
257 memset (enc->cur, ' ', spaces); 527 memset (enc->cur, ' ', spaces);
258 enc->cur += spaces; 528 enc->cur += spaces;
259 } 529 }
260} 530}
261 531
262inline void 532INLINE void
263encode_space (enc_t *enc) 533encode_space (enc_t *enc)
264{ 534{
265 need (enc, 1); 535 need (enc, 1);
266 encode_ch (enc, ' '); 536 encode_ch (enc, ' ');
267} 537}
268 538
269inline void 539INLINE void
270encode_nl (enc_t *enc) 540encode_nl (enc_t *enc)
271{ 541{
272 if (enc->flags & F_INDENT) 542 if (enc->json.flags & F_INDENT)
273 { 543 {
274 need (enc, 1); 544 need (enc, 1);
275 encode_ch (enc, '\n'); 545 encode_ch (enc, '\n');
276 } 546 }
277} 547}
278 548
279inline void 549INLINE void
280encode_comma (enc_t *enc) 550encode_comma (enc_t *enc)
281{ 551{
282 encode_ch (enc, ','); 552 encode_ch (enc, ',');
283 553
284 if (enc->flags & F_INDENT) 554 if (enc->json.flags & F_INDENT)
285 encode_nl (enc); 555 encode_nl (enc);
286 else if (enc->flags & F_SPACE_AFTER) 556 else if (enc->json.flags & F_SPACE_AFTER)
287 encode_space (enc); 557 encode_space (enc);
288} 558}
289 559
290static void encode_sv (enc_t *enc, SV *sv); 560static void encode_sv (enc_t *enc, SV *sv);
291 561
292static void 562static void
293encode_av (enc_t *enc, AV *av) 563encode_av (enc_t *enc, AV *av)
294{ 564{
295 int i, len = av_len (av); 565 int i, len = av_len (av);
296 566
297 if (enc->indent >= enc->maxdepth) 567 if (enc->indent >= enc->json.max_depth)
298 croak ("data structure too deep (hit recursion limit)"); 568 croak (ERR_NESTING_EXCEEDED);
299 569
300 encode_ch (enc, '['); encode_nl (enc); 570 encode_ch (enc, '[');
301 ++enc->indent;
302 571
572 if (len >= 0)
573 {
574 encode_nl (enc); ++enc->indent;
575
303 for (i = 0; i <= len; ++i) 576 for (i = 0; i <= len; ++i)
304 { 577 {
578 SV **svp = av_fetch (av, i, 0);
579
305 encode_indent (enc); 580 encode_indent (enc);
306 encode_sv (enc, *av_fetch (av, i, 0));
307 581
582 if (svp)
583 encode_sv (enc, *svp);
584 else
585 encode_str (enc, "null", 4, 0);
586
308 if (i < len) 587 if (i < len)
309 encode_comma (enc); 588 encode_comma (enc);
310 } 589 }
311 590
591 encode_nl (enc); --enc->indent; encode_indent (enc);
592 }
593
312 encode_nl (enc); 594 encode_ch (enc, ']');
313
314 --enc->indent;
315 encode_indent (enc); encode_ch (enc, ']');
316} 595}
317 596
318static void 597static void
319encode_he (enc_t *enc, HE *he) 598encode_hk (enc_t *enc, HE *he)
320{ 599{
321 encode_ch (enc, '"'); 600 encode_ch (enc, '"');
322 601
323 if (HeKLEN (he) == HEf_SVKEY) 602 if (HeKLEN (he) == HEf_SVKEY)
324 { 603 {
325 SV *sv = HeSVKEY (he); 604 SV *sv = HeSVKEY (he);
326 STRLEN len; 605 STRLEN len;
327 char *str; 606 char *str;
328 607
329 SvGETMAGIC (sv); 608 SvGETMAGIC (sv);
330 str = SvPV (sv, len); 609 str = SvPV (sv, len);
331 610
332 encode_str (enc, str, len, SvUTF8 (sv)); 611 encode_str (enc, str, len, SvUTF8 (sv));
333 } 612 }
334 else 613 else
335 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 614 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
336 615
337 encode_ch (enc, '"'); 616 encode_ch (enc, '"');
338 617
339 if (enc->flags & F_SPACE_BEFORE) encode_space (enc); 618 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
340 encode_ch (enc, ':'); 619 encode_ch (enc, ':');
341 if (enc->flags & F_SPACE_AFTER ) encode_space (enc); 620 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
342 encode_sv (enc, HeVAL (he));
343} 621}
344 622
345// compare hash entries, used when all keys are bytestrings 623// compare hash entries, used when all keys are bytestrings
346static int 624static int
347he_cmp_fast (const void *a_, const void *b_) 625he_cmp_fast (const void *a_, const void *b_)
352 HE *b = *(HE **)b_; 630 HE *b = *(HE **)b_;
353 631
354 STRLEN la = HeKLEN (a); 632 STRLEN la = HeKLEN (a);
355 STRLEN lb = HeKLEN (b); 633 STRLEN lb = HeKLEN (b);
356 634
357 if (!(cmp = memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb))) 635 if (!(cmp = memcmp (HeKEY (b), HeKEY (a), lb < la ? lb : la)))
358 cmp = la - lb; 636 cmp = lb - la;
359 637
360 return cmp; 638 return cmp;
361} 639}
362 640
363// compare hash entries, used when some keys are sv's or utf-x 641// compare hash entries, used when some keys are sv's or utf-x
364static int 642static int
365he_cmp_slow (const void *a, const void *b) 643he_cmp_slow (const void *a, const void *b)
366{ 644{
367 return sv_cmp (HeSVKEY_force (*(HE **)a), HeSVKEY_force (*(HE **)b)); 645 return sv_cmp (HeSVKEY_force (*(HE **)b), HeSVKEY_force (*(HE **)a));
368} 646}
369 647
370static void 648static void
371encode_hv (enc_t *enc, HV *hv) 649encode_hv (enc_t *enc, HV *hv)
372{ 650{
373 int count, i; 651 HE *he;
374 652
375 if (enc->indent >= enc->maxdepth) 653 if (enc->indent >= enc->json.max_depth)
376 croak ("data structure too deep (hit recursion limit)"); 654 croak (ERR_NESTING_EXCEEDED);
377 655
378 encode_ch (enc, '{'); encode_nl (enc); ++enc->indent; 656 encode_ch (enc, '{');
379 657
380 if ((count = hv_iterinit (hv)))
381 {
382 // for canonical output we have to sort by keys first 658 // for canonical output we have to sort by keys first
383 // actually, this is mostly due to the stupid so-called 659 // actually, this is mostly due to the stupid so-called
384 // security workaround added somewhere in 5.8.x. 660 // security workaround added somewhere in 5.8.x
385 // that randomises hash orderings 661 // that randomises hash orderings
386 if (enc->flags & F_CANONICAL) 662 if (enc->json.flags & F_CANONICAL && !SvRMAGICAL (hv))
663 {
664 int count = hv_iterinit (hv);
665
666 if (SvMAGICAL (hv))
387 { 667 {
668 // need to count by iterating. could improve by dynamically building the vector below
669 // but I don't care for the speed of this special case.
670 // note also that we will run into undefined behaviour when the two iterations
671 // do not result in the same count, something I might care for in some later release.
672
673 count = 0;
674 while (hv_iternext (hv))
675 ++count;
676
677 hv_iterinit (hv);
678 }
679
680 if (count)
681 {
388 int fast = 1; 682 int i, fast = 1;
389 HE *he; 683 HE *hes_stack [STACK_HES];
390#if defined(__BORLANDC__) || defined(_MSC_VER) 684 HE **hes = hes_stack;
391 HE **hes = _alloca (count * sizeof (HE)); 685
392#else 686 // allocate larger arrays on the heap
393 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode 687 if (count > STACK_HES)
394#endif 688 {
689 SV *sv = sv_2mortal (NEWSV (0, count * sizeof (*hes)));
690 hes = (HE **)SvPVX (sv);
691 }
395 692
396 i = 0; 693 i = 0;
397 while ((he = hv_iternext (hv))) 694 while ((he = hv_iternext (hv)))
398 { 695 {
399 hes [i++] = he; 696 hes [i++] = he;
421 718
422 FREETMPS; 719 FREETMPS;
423 LEAVE; 720 LEAVE;
424 } 721 }
425 722
426 for (i = 0; i < count; ++i) 723 encode_nl (enc); ++enc->indent;
724
725 while (count--)
427 { 726 {
428 encode_indent (enc); 727 encode_indent (enc);
728 he = hes [count];
429 encode_he (enc, hes [i]); 729 encode_hk (enc, he);
730 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
430 731
431 if (i < count - 1) 732 if (count)
432 encode_comma (enc); 733 encode_comma (enc);
433 } 734 }
434 735
435 encode_nl (enc); 736 encode_nl (enc); --enc->indent; encode_indent (enc);
436 } 737 }
738 }
437 else 739 else
740 {
741 if (hv_iterinit (hv) || SvMAGICAL (hv))
742 if ((he = hv_iternext (hv)))
438 { 743 {
439 HE *he = hv_iternext (hv); 744 encode_nl (enc); ++enc->indent;
440 745
441 for (;;) 746 for (;;)
442 { 747 {
443 encode_indent (enc); 748 encode_indent (enc);
444 encode_he (enc, he); 749 encode_hk (enc, he);
750 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
445 751
446 if (!(he = hv_iternext (hv))) 752 if (!(he = hv_iternext (hv)))
447 break; 753 break;
448 754
449 encode_comma (enc); 755 encode_comma (enc);
450 } 756 }
451 757
452 encode_nl (enc); 758 encode_nl (enc); --enc->indent; encode_indent (enc);
453 } 759 }
454 } 760 }
455 761
456 --enc->indent; encode_indent (enc); encode_ch (enc, '}'); 762 encode_ch (enc, '}');
457} 763}
458 764
459// encode objects, arrays and special \0=false and \1=true values. 765// encode objects, arrays and special \0=false and \1=true values.
460static void 766static void
461encode_rv (enc_t *enc, SV *sv) 767encode_rv (enc_t *enc, SV *sv)
462{ 768{
463 svtype svt; 769 svtype svt;
770 GV *method;
464 771
465 SvGETMAGIC (sv); 772 SvGETMAGIC (sv);
466 svt = SvTYPE (sv); 773 svt = SvTYPE (sv);
467 774
775 if (expect_false (SvOBJECT (sv)))
776 {
777 HV *stash = SvSTASH (sv);
778
779 if (stash == bool_stash)
780 {
781 if (SvIV (sv))
782 encode_str (enc, "true", 4, 0);
783 else
784 encode_str (enc, "false", 5, 0);
785 }
786 else if ((enc->json.flags & F_ALLOW_TAGS) && (method = gv_fetchmethod_autoload (stash, "FREEZE", 0)))
787 {
788 int count;
789 dSP;
790
791 ENTER; SAVETMPS;
792 SAVESTACK_POS ();
793 PUSHMARK (SP);
794 EXTEND (SP, 2);
795 // we re-bless the reference to get overload and other niceties right
796 PUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
797 PUSHs (sv_json);
798
799 PUTBACK;
800 count = call_sv ((SV *)GvCV (method), G_ARRAY);
801 SPAGAIN;
802
803 // catch this surprisingly common error
804 if (SvROK (TOPs) && SvRV (TOPs) == sv)
805 croak ("%s::FREEZE method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
806
807 encode_ch (enc, '(');
808 encode_ch (enc, '"');
809 encode_str (enc, HvNAME (stash), HvNAMELEN (stash), HvNAMEUTF8 (stash));
810 encode_ch (enc, '"');
811 encode_ch (enc, ')');
812 encode_ch (enc, '[');
813
814 while (count)
815 {
816 encode_sv (enc, SP[1 - count--]);
817
818 if (count)
819 encode_ch (enc, ',');
820 }
821
822 encode_ch (enc, ']');
823
824 FREETMPS; LEAVE;
825 }
826 else if ((enc->json.flags & F_CONV_BLESSED) && (method = gv_fetchmethod_autoload (stash, "TO_JSON", 0)))
827 {
828 dSP;
829
830 ENTER; SAVETMPS;
831 PUSHMARK (SP);
832 // we re-bless the reference to get overload and other niceties right
833 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
834
835 // calling with G_SCALAR ensures that we always get a 1 return value
836 PUTBACK;
837 call_sv ((SV *)GvCV (method), G_SCALAR);
838 SPAGAIN;
839
840 // catch this surprisingly common error
841 if (SvROK (TOPs) && SvRV (TOPs) == sv)
842 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
843
844 sv = POPs;
845 PUTBACK;
846
847 encode_sv (enc, sv);
848
849 FREETMPS; LEAVE;
850 }
851 else if (enc->json.flags & F_ALLOW_BLESSED)
852 encode_str (enc, "null", 4, 0);
853 else
854 croak ("encountered object '%s', but neither allow_blessed, convert_blessed nor allow_tags settings are enabled (or TO_JSON/FREEZE method missing)",
855 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
856 }
468 if (svt == SVt_PVHV) 857 else if (svt == SVt_PVHV)
469 encode_hv (enc, (HV *)sv); 858 encode_hv (enc, (HV *)sv);
470 else if (svt == SVt_PVAV) 859 else if (svt == SVt_PVAV)
471 encode_av (enc, (AV *)sv); 860 encode_av (enc, (AV *)sv);
472 else if (svt < SVt_PVAV) 861 else if (svt < SVt_PVAV)
473 { 862 {
474 if (SvNIOK (sv) && SvIV (sv) == 0) 863 int bool_type = ref_bool_type (sv);
864
865 if (bool_type == 1)
866 encode_str (enc, "true", 4, 0);
867 else if (bool_type == 0)
475 encode_str (enc, "false", 5, 0); 868 encode_str (enc, "false", 5, 0);
476 else if (SvNIOK (sv) && SvIV (sv) == 1) 869 else if (enc->json.flags & F_ALLOW_UNKNOWN)
477 encode_str (enc, "true", 4, 0); 870 encode_str (enc, "null", 4, 0);
478 else 871 else
479 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1", 872 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
480 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 873 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
481 } 874 }
875 else if (enc->json.flags & F_ALLOW_UNKNOWN)
876 encode_str (enc, "null", 4, 0);
482 else 877 else
483 croak ("encountered %s, but JSON can only represent references to arrays or hashes", 878 croak ("encountered %s, but JSON can only represent references to arrays or hashes",
484 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 879 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
485} 880}
486 881
497 encode_str (enc, str, len, SvUTF8 (sv)); 892 encode_str (enc, str, len, SvUTF8 (sv));
498 encode_ch (enc, '"'); 893 encode_ch (enc, '"');
499 } 894 }
500 else if (SvNOKp (sv)) 895 else if (SvNOKp (sv))
501 { 896 {
897 // trust that perl will do the right thing w.r.t. JSON syntax.
502 need (enc, NV_DIG + 32); 898 need (enc, NV_DIG + 32);
503 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur); 899 Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur);
504 enc->cur += strlen (enc->cur); 900 enc->cur += strlen (enc->cur);
505 } 901 }
506 else if (SvIOKp (sv)) 902 else if (SvIOKp (sv))
507 { 903 {
508 // we assume we can always read an IV as a UV 904 // we assume we can always read an IV as a UV and vice versa
509 if (SvUV (sv) & ~(UV)0x7fff) 905 // we assume two's complement
906 // we assume no aliasing issues in the union
907 if (SvIsUV (sv) ? SvUVX (sv) <= 59000
908 : SvIVX (sv) <= 59000 && SvIVX (sv) >= -59000)
510 { 909 {
910 // optimise the "small number case"
911 // code will likely be branchless and use only a single multiplication
912 // works for numbers up to 59074
913 I32 i = SvIVX (sv);
914 U32 u;
915 char digit, nz = 0;
916
511 need (enc, 64); 917 need (enc, 6);
512 enc->cur += 918
513 SvIsUV(sv) 919 *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0;
514 ? snprintf (enc->cur, 64, "%"UVuf, (UV)SvUVX (sv)) 920 u = i < 0 ? -i : i;
515 : snprintf (enc->cur, 64, "%"IVdf, (IV)SvIVX (sv)); 921
922 // convert to 4.28 fixed-point representation
923 u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits
924
925 // now output digit by digit, each time masking out the integer part
926 // and multiplying by 5 while moving the decimal point one to the right,
927 // resulting in a net multiplication by 10.
928 // we always write the digit to memory but conditionally increment
929 // the pointer, to enable the use of conditional move instructions.
930 digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffffUL) * 5;
931 digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x7ffffffUL) * 5;
932 digit = u >> 26; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x3ffffffUL) * 5;
933 digit = u >> 25; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x1ffffffUL) * 5;
934 digit = u >> 24; *enc->cur = digit + '0'; enc->cur += 1; // correctly generate '0'
516 } 935 }
517 else 936 else
518 { 937 {
519 // optimise the "small number case" 938 // large integer, use the (rather slow) snprintf way.
520 // code will likely be branchless and use only a single multiplication
521 I32 i = SvIV (sv);
522 U32 u;
523
524 need (enc, 6); 939 need (enc, IVUV_MAXCHARS);
525 940 enc->cur +=
526 *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0; 941 SvIsUV(sv)
527 u = i < 0 ? -i : i; 942 ? snprintf (enc->cur, IVUV_MAXCHARS, "%"UVuf, (UV)SvUVX (sv))
528 943 : snprintf (enc->cur, IVUV_MAXCHARS, "%"IVdf, (IV)SvIVX (sv));
529 // convert to 4.28 fixed-point representation
530 u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits
531
532 char digit, nz = 0;
533
534 digit = u >> 28; *enc->cur = digit + '0'; nz |= digit; enc->cur += nz ? 1 : 0; u = (u & 0xfffffff) * 5;
535 digit = u >> 27; *enc->cur = digit + '0'; nz |= digit; enc->cur += nz ? 1 : 0; u = (u & 0x7ffffff) * 5;
536 digit = u >> 26; *enc->cur = digit + '0'; nz |= digit; enc->cur += nz ? 1 : 0; u = (u & 0x3ffffff) * 5;
537 digit = u >> 25; *enc->cur = digit + '0'; nz |= digit; enc->cur += nz ? 1 : 0; u = (u & 0x1ffffff) * 5;
538 digit = u >> 24; *enc->cur = digit + '0'; nz |= digit; enc->cur += 1;
539 } 944 }
540 } 945 }
541 else if (SvROK (sv)) 946 else if (SvROK (sv))
542 encode_rv (enc, SvRV (sv)); 947 encode_rv (enc, SvRV (sv));
543 else if (!SvOK (sv)) 948 else if (!SvOK (sv) || enc->json.flags & F_ALLOW_UNKNOWN)
544 encode_str (enc, "null", 4, 0); 949 encode_str (enc, "null", 4, 0);
545 else 950 else
546 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this", 951 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, check your input data",
547 SvPV_nolen (sv), SvFLAGS (sv)); 952 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
548} 953}
549 954
550static SV * 955static SV *
551encode_json (SV *scalar, U32 flags) 956encode_json (SV *scalar, JSON *json)
552{ 957{
553 enc_t enc; 958 enc_t enc;
554 959
555 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) 960 if (!(json->flags & F_ALLOW_NONREF) && json_nonref (scalar))
556 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); 961 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
557 962
558 enc.flags = flags; 963 enc.json = *json;
559 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 964 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
560 enc.cur = SvPVX (enc.sv); 965 enc.cur = SvPVX (enc.sv);
561 enc.end = SvEND (enc.sv); 966 enc.end = SvEND (enc.sv);
562 enc.indent = 0; 967 enc.indent = 0;
563 enc.maxdepth = DEC_DEPTH (flags); 968 enc.limit = enc.json.flags & F_ASCII ? 0x000080UL
969 : enc.json.flags & F_LATIN1 ? 0x000100UL
970 : 0x110000UL;
564 971
565 SvPOK_only (enc.sv); 972 SvPOK_only (enc.sv);
566 encode_sv (&enc, scalar); 973 encode_sv (&enc, scalar);
974 encode_nl (&enc);
567 975
568 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 976 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
569 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings 977 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
570 978
571 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) 979 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
572 SvUTF8_on (enc.sv); 980 SvUTF8_on (enc.sv);
573 981
574 if (enc.flags & F_SHRINK) 982 if (enc.json.flags & F_SHRINK)
575 shrink (enc.sv); 983 shrink (enc.sv);
576 984
577 return enc.sv; 985 return enc.sv;
578} 986}
579 987
584typedef struct 992typedef struct
585{ 993{
586 char *cur; // current parser pointer 994 char *cur; // current parser pointer
587 char *end; // end of input string 995 char *end; // end of input string
588 const char *err; // parse error, if != 0 996 const char *err; // parse error, if != 0
589 U32 flags; // F_* 997 JSON json;
590 U32 depth; // recursion depth 998 U32 depth; // recursion depth
591 U32 maxdepth; // recursion depth limit 999 U32 maxdepth; // recursion depth limit
592} dec_t; 1000} dec_t;
593 1001
594inline void 1002INLINE void
1003decode_comment (dec_t *dec)
1004{
1005 // only '#'-style comments allowed a.t.m.
1006
1007 while (*dec->cur && *dec->cur != 0x0a && *dec->cur != 0x0d)
1008 ++dec->cur;
1009}
1010
1011INLINE void
595decode_ws (dec_t *dec) 1012decode_ws (dec_t *dec)
596{ 1013{
597 for (;;) 1014 for (;;)
598 { 1015 {
599 char ch = *dec->cur; 1016 char ch = *dec->cur;
600 1017
601 if (ch > 0x20 1018 if (ch > 0x20)
1019 {
1020 if (expect_false (ch == '#'))
1021 {
1022 if (dec->json.flags & F_RELAXED)
1023 decode_comment (dec);
1024 else
1025 break;
1026 }
1027 else
1028 break;
1029 }
602 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)) 1030 else if (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)
603 break; 1031 break; // parse error, but let higher level handle it, gives better error messages
604 1032
605 ++dec->cur; 1033 ++dec->cur;
606 } 1034 }
607} 1035}
608 1036
612 if (*dec->cur != ch) \ 1040 if (*dec->cur != ch) \
613 ERR (# ch " expected"); \ 1041 ERR (# ch " expected"); \
614 ++dec->cur; \ 1042 ++dec->cur; \
615 SE 1043 SE
616 1044
617#define DEC_INC_DEPTH if (++dec->depth > dec->maxdepth) ERR ("json datastructure exceeds maximum nesting level (set a higher max_depth)") 1045#define DEC_INC_DEPTH if (++dec->depth > dec->json.max_depth) ERR (ERR_NESTING_EXCEEDED)
618#define DEC_DEC_DEPTH --dec->depth 1046#define DEC_DEC_DEPTH --dec->depth
619 1047
620static SV *decode_sv (dec_t *dec); 1048static SV *decode_sv (dec_t *dec);
621 1049
622static signed char decode_hexdigit[256]; 1050static signed char decode_hexdigit[256];
625decode_4hex (dec_t *dec) 1053decode_4hex (dec_t *dec)
626{ 1054{
627 signed char d1, d2, d3, d4; 1055 signed char d1, d2, d3, d4;
628 unsigned char *cur = (unsigned char *)dec->cur; 1056 unsigned char *cur = (unsigned char *)dec->cur;
629 1057
630 d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("four hexadecimal digits expected"); 1058 d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("exactly four hexadecimal digits expected");
631 d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("four hexadecimal digits expected"); 1059 d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("exactly four hexadecimal digits expected");
632 d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("four hexadecimal digits expected"); 1060 d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("exactly four hexadecimal digits expected");
633 d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("four hexadecimal digits expected"); 1061 d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("exactly four hexadecimal digits expected");
634 1062
635 dec->cur += 4; 1063 dec->cur += 4;
636 1064
637 return ((UV)d1) << 12 1065 return ((UV)d1) << 12
638 | ((UV)d2) << 8 1066 | ((UV)d2) << 8
646static SV * 1074static SV *
647decode_str (dec_t *dec) 1075decode_str (dec_t *dec)
648{ 1076{
649 SV *sv = 0; 1077 SV *sv = 0;
650 int utf8 = 0; 1078 int utf8 = 0;
1079 char *dec_cur = dec->cur;
651 1080
652 do 1081 do
653 { 1082 {
654 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES]; 1083 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES];
655 char *cur = buf; 1084 char *cur = buf;
656 1085
657 do 1086 do
658 { 1087 {
659 unsigned char ch = *(unsigned char *)dec->cur++; 1088 unsigned char ch = *(unsigned char *)dec_cur++;
660 1089
661 if (expect_false (ch == '"')) 1090 if (expect_false (ch == '"'))
662 { 1091 {
663 --dec->cur; 1092 --dec_cur;
664 break; 1093 break;
665 } 1094 }
666 else if (expect_false (ch == '\\')) 1095 else if (expect_false (ch == '\\'))
667 { 1096 {
668 switch (*dec->cur) 1097 switch (*dec_cur)
669 { 1098 {
670 case '\\': 1099 case '\\':
671 case '/': 1100 case '/':
672 case '"': *cur++ = *dec->cur++; break; 1101 case '"': *cur++ = *dec_cur++; break;
673 1102
674 case 'b': ++dec->cur; *cur++ = '\010'; break; 1103 case 'b': ++dec_cur; *cur++ = '\010'; break;
675 case 't': ++dec->cur; *cur++ = '\011'; break; 1104 case 't': ++dec_cur; *cur++ = '\011'; break;
676 case 'n': ++dec->cur; *cur++ = '\012'; break; 1105 case 'n': ++dec_cur; *cur++ = '\012'; break;
677 case 'f': ++dec->cur; *cur++ = '\014'; break; 1106 case 'f': ++dec_cur; *cur++ = '\014'; break;
678 case 'r': ++dec->cur; *cur++ = '\015'; break; 1107 case 'r': ++dec_cur; *cur++ = '\015'; break;
679 1108
680 case 'u': 1109 case 'u':
681 { 1110 {
682 UV lo, hi; 1111 UV lo, hi;
683 ++dec->cur; 1112 ++dec_cur;
684 1113
1114 dec->cur = dec_cur;
685 hi = decode_4hex (dec); 1115 hi = decode_4hex (dec);
1116 dec_cur = dec->cur;
686 if (hi == (UV)-1) 1117 if (hi == (UV)-1)
687 goto fail; 1118 goto fail;
688 1119
689 // possibly a surrogate pair 1120 // possibly a surrogate pair
690 if (hi >= 0xd800) 1121 if (hi >= 0xd800)
691 if (hi < 0xdc00) 1122 if (hi < 0xdc00)
692 { 1123 {
693 if (dec->cur [0] != '\\' || dec->cur [1] != 'u') 1124 if (dec_cur [0] != '\\' || dec_cur [1] != 'u')
694 ERR ("missing low surrogate character in surrogate pair"); 1125 ERR ("missing low surrogate character in surrogate pair");
695 1126
696 dec->cur += 2; 1127 dec_cur += 2;
697 1128
1129 dec->cur = dec_cur;
698 lo = decode_4hex (dec); 1130 lo = decode_4hex (dec);
1131 dec_cur = dec->cur;
699 if (lo == (UV)-1) 1132 if (lo == (UV)-1)
700 goto fail; 1133 goto fail;
701 1134
702 if (lo < 0xdc00 || lo >= 0xe000) 1135 if (lo < 0xdc00 || lo >= 0xe000)
703 ERR ("surrogate pair expected"); 1136 ERR ("surrogate pair expected");
709 1142
710 if (hi >= 0x80) 1143 if (hi >= 0x80)
711 { 1144 {
712 utf8 = 1; 1145 utf8 = 1;
713 1146
714 cur = (char *)uvuni_to_utf8_flags (cur, hi, 0); 1147 cur = encode_utf8 (cur, hi);
715 } 1148 }
716 else 1149 else
717 *cur++ = hi; 1150 *cur++ = hi;
718 } 1151 }
719 break; 1152 break;
720 1153
721 default: 1154 default:
722 --dec->cur; 1155 --dec_cur;
723 ERR ("illegal backslash escape sequence in string"); 1156 ERR ("illegal backslash escape sequence in string");
724 } 1157 }
725 } 1158 }
726 else if (expect_true (ch >= 0x20 && ch <= 0x7f)) 1159 else if (expect_true (ch >= 0x20 && ch < 0x80))
727 *cur++ = ch; 1160 *cur++ = ch;
728 else if (ch >= 0x80) 1161 else if (ch >= 0x80)
729 { 1162 {
730 STRLEN clen; 1163 STRLEN clen;
731 UV uch;
732 1164
733 --dec->cur; 1165 --dec_cur;
734 1166
735 uch = decode_utf8 (dec->cur, dec->end - dec->cur, &clen); 1167 decode_utf8 (dec_cur, dec->end - dec_cur, &clen);
736 if (clen == (STRLEN)-1) 1168 if (clen == (STRLEN)-1)
737 ERR ("malformed UTF-8 character in JSON string"); 1169 ERR ("malformed UTF-8 character in JSON string");
738 1170
739 do 1171 do
740 *cur++ = *dec->cur++; 1172 *cur++ = *dec_cur++;
741 while (--clen); 1173 while (--clen);
742 1174
743 utf8 = 1; 1175 utf8 = 1;
744 } 1176 }
1177 else if (ch == '\t' && dec->json.flags & F_RELAXED)
1178 *cur++ = ch;
745 else 1179 else
746 { 1180 {
747 --dec->cur; 1181 --dec_cur;
748 1182
749 if (!ch) 1183 if (!ch)
750 ERR ("unexpected end of string while parsing JSON string"); 1184 ERR ("unexpected end of string while parsing JSON string");
751 else 1185 else
752 ERR ("invalid character encountered while parsing JSON string"); 1186 ERR ("invalid character encountered while parsing JSON string");
757 { 1191 {
758 STRLEN len = cur - buf; 1192 STRLEN len = cur - buf;
759 1193
760 if (sv) 1194 if (sv)
761 { 1195 {
762 SvGROW (sv, SvCUR (sv) + len + 1); 1196 STRLEN cur = SvCUR (sv);
1197
1198 if (SvLEN (sv) - cur <= len)
1199 json_sv_grow (sv, cur, len);
1200
763 memcpy (SvPVX (sv) + SvCUR (sv), buf, len); 1201 memcpy (SvPVX (sv) + SvCUR (sv), buf, len);
764 SvCUR_set (sv, SvCUR (sv) + len); 1202 SvCUR_set (sv, SvCUR (sv) + len);
765 } 1203 }
766 else 1204 else
767 sv = newSVpvn (buf, len); 1205 sv = newSVpvn (buf, len);
768 } 1206 }
769 } 1207 }
770 while (*dec->cur != '"'); 1208 while (*dec_cur != '"');
771 1209
772 ++dec->cur; 1210 ++dec_cur;
773 1211
774 if (sv) 1212 if (sv)
775 { 1213 {
776 SvPOK_only (sv); 1214 SvPOK_only (sv);
777 *SvEND (sv) = 0; 1215 *SvEND (sv) = 0;
780 SvUTF8_on (sv); 1218 SvUTF8_on (sv);
781 } 1219 }
782 else 1220 else
783 sv = newSVpvn ("", 0); 1221 sv = newSVpvn ("", 0);
784 1222
1223 dec->cur = dec_cur;
785 return sv; 1224 return sv;
786 1225
787fail: 1226fail:
1227 dec->cur = dec_cur;
788 return 0; 1228 return 0;
789} 1229}
790 1230
791static SV * 1231static SV *
792decode_num (dec_t *dec) 1232decode_num (dec_t *dec)
850 is_nv = 1; 1290 is_nv = 1;
851 } 1291 }
852 1292
853 if (!is_nv) 1293 if (!is_nv)
854 { 1294 {
1295 int len = dec->cur - start;
1296
855 // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so 1297 // special case the rather common 1..5-digit-int case
856 if (*start == '-') 1298 if (*start == '-')
857 switch (dec->cur - start) 1299 switch (len)
858 { 1300 {
859 case 2: return newSViv (-( start [1] - '0' )); 1301 case 2: return newSViv (-(IV)( start [1] - '0' * 1));
860 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11)); 1302 case 3: return newSViv (-(IV)( start [1] * 10 + start [2] - '0' * 11));
861 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111)); 1303 case 4: return newSViv (-(IV)( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
862 case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111)); 1304 case 5: return newSViv (-(IV)( start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111));
1305 case 6: return newSViv (-(IV)(start [1] * 10000 + start [2] * 1000 + start [3] * 100 + start [4] * 10 + start [5] - '0' * 11111));
863 } 1306 }
864 else 1307 else
865 switch (dec->cur - start) 1308 switch (len)
866 { 1309 {
867 case 1: return newSViv ( start [0] - '0' ); 1310 case 1: return newSViv ( start [0] - '0' * 1);
868 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11); 1311 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
869 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111); 1312 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
870 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111); 1313 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111);
1314 case 5: return newSViv ( start [0] * 10000 + start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 11111);
871 } 1315 }
872 1316
873 { 1317 {
874 UV uv; 1318 UV uv;
875 int numtype = grok_number (start, dec->cur - start, &uv); 1319 int numtype = grok_number (start, len, &uv);
876 if (numtype & IS_NUMBER_IN_UV) 1320 if (numtype & IS_NUMBER_IN_UV)
877 if (numtype & IS_NUMBER_NEG) 1321 if (numtype & IS_NUMBER_NEG)
878 { 1322 {
879 if (uv < (UV)IV_MIN) 1323 if (uv < (UV)IV_MIN)
880 return newSViv (-(IV)uv); 1324 return newSViv (-(IV)uv);
881 } 1325 }
882 else 1326 else
883 return newSVuv (uv); 1327 return newSVuv (uv);
884 } 1328 }
885 }
886 1329
1330 len -= *start == '-' ? 1 : 0;
1331
1332 // does not fit into IV or UV, try NV
1333 if (len <= NV_DIG)
1334 // fits into NV without loss of precision
1335 return newSVnv (json_atof (start));
1336
1337 // everything else fails, convert it to a string
1338 return newSVpvn (start, dec->cur - start);
1339 }
1340
1341 // loss of precision here
887 return newSVnv (Atof (start)); 1342 return newSVnv (json_atof (start));
888 1343
889fail: 1344fail:
890 return 0; 1345 return 0;
891} 1346}
892 1347
916 if (*dec->cur == ']') 1371 if (*dec->cur == ']')
917 { 1372 {
918 ++dec->cur; 1373 ++dec->cur;
919 break; 1374 break;
920 } 1375 }
921 1376
922 if (*dec->cur != ',') 1377 if (*dec->cur != ',')
923 ERR (", or ] expected while parsing array"); 1378 ERR (", or ] expected while parsing array");
924 1379
925 ++dec->cur; 1380 ++dec->cur;
1381
1382 decode_ws (dec);
1383
1384 if (*dec->cur == ']' && dec->json.flags & F_RELAXED)
1385 {
1386 ++dec->cur;
1387 break;
1388 }
926 } 1389 }
927 1390
928 DEC_DEC_DEPTH; 1391 DEC_DEC_DEPTH;
929 return newRV_noinc ((SV *)av); 1392 return newRV_noinc ((SV *)av);
930 1393
935} 1398}
936 1399
937static SV * 1400static SV *
938decode_hv (dec_t *dec) 1401decode_hv (dec_t *dec)
939{ 1402{
1403 SV *sv;
940 HV *hv = newHV (); 1404 HV *hv = newHV ();
941 1405
942 DEC_INC_DEPTH; 1406 DEC_INC_DEPTH;
943 decode_ws (dec); 1407 decode_ws (dec);
944 1408
945 if (*dec->cur == '}') 1409 if (*dec->cur == '}')
946 ++dec->cur; 1410 ++dec->cur;
947 else 1411 else
948 for (;;) 1412 for (;;)
949 { 1413 {
1414 EXPECT_CH ('"');
1415
1416 // heuristic: assume that
1417 // a) decode_str + hv_store_ent are abysmally slow.
1418 // b) most hash keys are short, simple ascii text.
1419 // => try to "fast-match" such strings to avoid
1420 // the overhead of decode_str + hv_store_ent.
1421 {
950 SV *key, *value; 1422 SV *value;
1423 char *p = dec->cur;
1424 char *e = p + 24; // only try up to 24 bytes
951 1425
952 decode_ws (dec); EXPECT_CH ('"'); 1426 for (;;)
953
954 key = decode_str (dec);
955 if (!key)
956 goto fail;
957
958 decode_ws (dec); EXPECT_CH (':');
959
960 value = decode_sv (dec);
961 if (!value)
962 { 1427 {
1428 // the >= 0x80 is false on most architectures
1429 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1430 {
1431 // slow path, back up and use decode_str
1432 SV *key = decode_str (dec);
1433 if (!key)
1434 goto fail;
1435
1436 decode_ws (dec); EXPECT_CH (':');
1437
1438 decode_ws (dec);
1439 value = decode_sv (dec);
1440 if (!value)
1441 {
1442 SvREFCNT_dec (key);
1443 goto fail;
1444 }
1445
1446 hv_store_ent (hv, key, value, 0);
963 SvREFCNT_dec (key); 1447 SvREFCNT_dec (key);
1448
1449 break;
1450 }
1451 else if (*p == '"')
1452 {
1453 // fast path, got a simple key
1454 char *key = dec->cur;
1455 int len = p - key;
1456 dec->cur = p + 1;
1457
1458 decode_ws (dec); EXPECT_CH (':');
1459
1460 decode_ws (dec);
1461 value = decode_sv (dec);
1462 if (!value)
964 goto fail; 1463 goto fail;
1464
1465 hv_store (hv, key, len, value, 0);
1466
1467 break;
1468 }
1469
1470 ++p;
965 } 1471 }
966 1472 }
967 hv_store_ent (hv, key, value, 0);
968 SvREFCNT_dec (key);
969 1473
970 decode_ws (dec); 1474 decode_ws (dec);
971 1475
972 if (*dec->cur == '}') 1476 if (*dec->cur == '}')
973 { 1477 {
977 1481
978 if (*dec->cur != ',') 1482 if (*dec->cur != ',')
979 ERR (", or } expected while parsing object/hash"); 1483 ERR (", or } expected while parsing object/hash");
980 1484
981 ++dec->cur; 1485 ++dec->cur;
1486
1487 decode_ws (dec);
1488
1489 if (*dec->cur == '}' && dec->json.flags & F_RELAXED)
1490 {
1491 ++dec->cur;
1492 break;
1493 }
982 } 1494 }
983 1495
984 DEC_DEC_DEPTH; 1496 DEC_DEC_DEPTH;
985 return newRV_noinc ((SV *)hv); 1497 sv = newRV_noinc ((SV *)hv);
1498
1499 // check filter callbacks
1500 if (dec->json.flags & F_HOOK)
1501 {
1502 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1503 {
1504 HE *cb, *he;
1505
1506 hv_iterinit (hv);
1507 he = hv_iternext (hv);
1508 hv_iterinit (hv);
1509
1510 // the next line creates a mortal sv each time it's called.
1511 // might want to optimise this for common cases.
1512 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1513
1514 if (cb)
1515 {
1516 dSP;
1517 int count;
1518
1519 ENTER; SAVETMPS;
1520 SAVESTACK_POS ();
1521 PUSHMARK (SP);
1522 XPUSHs (HeVAL (he));
1523 sv_2mortal (sv);
1524
1525 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1526
1527 if (count == 1)
1528 {
1529 sv = newSVsv (POPs);
1530 FREETMPS; LEAVE;
1531 return sv;
1532 }
1533
1534 SvREFCNT_inc (sv);
1535 FREETMPS; LEAVE;
1536 }
1537 }
1538
1539 if (dec->json.cb_object)
1540 {
1541 dSP;
1542 int count;
1543
1544 ENTER; SAVETMPS;
1545 SAVESTACK_POS ();
1546 PUSHMARK (SP);
1547 XPUSHs (sv_2mortal (sv));
1548
1549 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1550
1551 if (count == 1)
1552 {
1553 sv = newSVsv (POPs);
1554 FREETMPS; LEAVE;
1555 return sv;
1556 }
1557
1558 SvREFCNT_inc (sv);
1559 FREETMPS; LEAVE;
1560 }
1561 }
1562
1563 return sv;
986 1564
987fail: 1565fail:
988 SvREFCNT_dec (hv); 1566 SvREFCNT_dec (hv);
989 DEC_DEC_DEPTH; 1567 DEC_DEC_DEPTH;
990 return 0; 1568 return 0;
991} 1569}
992 1570
993static SV * 1571static SV *
1572decode_tag (dec_t *dec)
1573{
1574 SV *tag = 0;
1575 SV *val = 0;
1576
1577 if (!(dec->json.flags & F_ALLOW_TAGS))
1578 ERR ("malformed JSON string, neither array, object, number, string or atom");
1579
1580 ++dec->cur;
1581
1582 decode_ws (dec);
1583
1584 tag = decode_sv (dec);
1585 if (!tag)
1586 goto fail;
1587
1588 if (!SvPOK (tag))
1589 ERR ("malformed JSON string, (tag) must be a string");
1590
1591 decode_ws (dec);
1592
1593 if (*dec->cur != ')')
1594 ERR (") expected after tag");
1595
1596 ++dec->cur;
1597
1598 decode_ws (dec);
1599
1600 val = decode_sv (dec);
1601 if (!val)
1602 goto fail;
1603
1604 if (!SvROK (val) || SvTYPE (SvRV (val)) != SVt_PVAV)
1605 ERR ("malformed JSON string, tag value must be an array");
1606
1607 {
1608 AV *av = (AV *)SvRV (val);
1609 int i, len = av_len (av) + 1;
1610 HV *stash = gv_stashsv (tag, 0);
1611 SV *sv;
1612
1613 if (!stash)
1614 ERR ("cannot decode perl-object (package does not exist)");
1615
1616 GV *method = gv_fetchmethod_autoload (stash, "THAW", 0);
1617
1618 if (!method)
1619 ERR ("cannot decode perl-object (package does not have a THAW method)");
1620
1621 dSP;
1622
1623 ENTER; SAVETMPS;
1624 PUSHMARK (SP);
1625 EXTEND (SP, len + 2);
1626 // we re-bless the reference to get overload and other niceties right
1627 PUSHs (tag);
1628 PUSHs (sv_json);
1629
1630 for (i = 0; i < len; ++i)
1631 PUSHs (*av_fetch (av, i, 1));
1632
1633 PUTBACK;
1634 call_sv ((SV *)GvCV (method), G_SCALAR);
1635 SPAGAIN;
1636
1637 SvREFCNT_dec (tag);
1638 SvREFCNT_dec (val);
1639 sv = SvREFCNT_inc (POPs);
1640
1641 PUTBACK;
1642
1643 FREETMPS; LEAVE;
1644
1645 return sv;
1646 }
1647
1648fail:
1649 SvREFCNT_dec (tag);
1650 SvREFCNT_dec (val);
1651 return 0;
1652}
1653
1654static SV *
994decode_sv (dec_t *dec) 1655decode_sv (dec_t *dec)
995{ 1656{
996 decode_ws (dec); 1657 // the beauty of JSON: you need exactly one character lookahead
1658 // to parse everything.
997 switch (*dec->cur) 1659 switch (*dec->cur)
998 { 1660 {
999 case '"': ++dec->cur; return decode_str (dec); 1661 case '"': ++dec->cur; return decode_str (dec);
1000 case '[': ++dec->cur; return decode_av (dec); 1662 case '[': ++dec->cur; return decode_av (dec);
1001 case '{': ++dec->cur; return decode_hv (dec); 1663 case '{': ++dec->cur; return decode_hv (dec);
1664 case '(': return decode_tag (dec);
1002 1665
1003 case '-': 1666 case '-':
1004 case '0': case '1': case '2': case '3': case '4': 1667 case '0': case '1': case '2': case '3': case '4':
1005 case '5': case '6': case '7': case '8': case '9': 1668 case '5': case '6': case '7': case '8': case '9':
1006 return decode_num (dec); 1669 return decode_num (dec);
1007 1670
1008 case 't': 1671 case 't':
1009 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1672 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1010 { 1673 {
1011 dec->cur += 4; 1674 dec->cur += 4;
1675#if JSON_SLOW
1676 bool_true = get_bool ("Types::Serialiser::true");
1677#endif
1012 return newSViv (1); 1678 return newSVsv (bool_true);
1013 } 1679 }
1014 else 1680 else
1015 ERR ("'true' expected"); 1681 ERR ("'true' expected");
1016 1682
1017 break; 1683 break;
1018 1684
1019 case 'f': 1685 case 'f':
1020 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1686 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1021 { 1687 {
1022 dec->cur += 5; 1688 dec->cur += 5;
1689#if JSON_SLOW
1690 bool_false = get_bool ("Types::Serialiser::false");
1691#endif
1023 return newSViv (0); 1692 return newSVsv (bool_false);
1024 } 1693 }
1025 else 1694 else
1026 ERR ("'false' expected"); 1695 ERR ("'false' expected");
1027 1696
1028 break; 1697 break;
1037 ERR ("'null' expected"); 1706 ERR ("'null' expected");
1038 1707
1039 break; 1708 break;
1040 1709
1041 default: 1710 default:
1042 ERR ("malformed JSON string, neither array, object, number, string or atom"); 1711 ERR ("malformed JSON string, neither tag, array, object, number, string or atom");
1043 break; 1712 break;
1044 } 1713 }
1045 1714
1046fail: 1715fail:
1047 return 0; 1716 return 0;
1048} 1717}
1049 1718
1050static SV * 1719static SV *
1051decode_json (SV *string, U32 flags, UV *offset_return) 1720decode_json (SV *string, JSON *json, STRLEN *offset_return)
1052{ 1721{
1053 dec_t dec; 1722 dec_t dec;
1054 UV offset;
1055 SV *sv; 1723 SV *sv;
1056 1724
1725 /* work around bugs in 5.10 where manipulating magic values
1726 * makes perl ignore the magic in subsequent accesses.
1727 * also make a copy of non-PV values, to get them into a clean
1728 * state (SvPV should do that, but it's buggy, see below).
1729 *
1730 * SvIsCOW_shared_hash works around a bug in perl (possibly 5.16),
1731 * as reported by Reini Urban.
1732 */
1057 SvGETMAGIC (string); 1733 /*SvGETMAGIC (string);*/
1734 if (SvMAGICAL (string) || !SvPOK (string) || SvIsCOW_shared_hash (string))
1735 string = sv_2mortal (newSVsv (string));
1736
1058 SvUPGRADE (string, SVt_PV); 1737 SvUPGRADE (string, SVt_PV);
1059 1738
1060 if (flags & F_UTF8) 1739 /* work around a bug in perl 5.10, which causes SvCUR to fail an
1740 * assertion with -DDEBUGGING, although SvCUR is documented to
1741 * return the xpv_cur field which certainly exists after upgrading.
1742 * according to nicholas clark, calling SvPOK fixes this.
1743 * But it doesn't fix it, so try another workaround, call SvPV_nolen
1744 * and hope for the best.
1745 * Damnit, SvPV_nolen still trips over yet another assertion. This
1746 * assertion business is seriously broken, try yet another workaround
1747 * for the broken -DDEBUGGING.
1748 */
1749 {
1750#ifdef DEBUGGING
1751 STRLEN offset = SvOK (string) ? sv_len (string) : 0;
1752#else
1753 STRLEN offset = SvCUR (string);
1754#endif
1755
1756 if (offset > json->max_size && json->max_size)
1757 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1758 (unsigned long)SvCUR (string), (unsigned long)json->max_size);
1759 }
1760
1761 if (DECODE_WANTS_OCTETS (json))
1061 sv_utf8_downgrade (string, 0); 1762 sv_utf8_downgrade (string, 0);
1062 else 1763 else
1063 sv_utf8_upgrade (string); 1764 sv_utf8_upgrade (string);
1064 1765
1065 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1766 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1066 1767
1067 dec.flags = flags; 1768 dec.json = *json;
1068 dec.cur = SvPVX (string); 1769 dec.cur = SvPVX (string);
1069 dec.end = SvEND (string); 1770 dec.end = SvEND (string);
1070 dec.err = 0; 1771 dec.err = 0;
1071 dec.depth = 0; 1772 dec.depth = 0;
1072 dec.maxdepth = DEC_DEPTH (dec.flags); 1773
1774 if (dec.json.cb_object || dec.json.cb_sk_object)
1775 dec.json.flags |= F_HOOK;
1073 1776
1074 *dec.end = 0; // this should basically be a nop, too, but make sure it's there 1777 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1778
1779 decode_ws (&dec);
1075 sv = decode_sv (&dec); 1780 sv = decode_sv (&dec);
1076 1781
1077 if (!(offset_return || !sv)) 1782 if (offset_return)
1783 *offset_return = dec.cur - SvPVX (string);
1784 else if (sv)
1078 { 1785 {
1079 // check for trailing garbage 1786 // check for trailing garbage
1080 decode_ws (&dec); 1787 decode_ws (&dec);
1081 1788
1082 if (*dec.cur) 1789 if (*dec.cur)
1083 { 1790 {
1084 dec.err = "garbage after JSON object"; 1791 dec.err = "garbage after JSON object";
1085 SvREFCNT_dec (sv); 1792 SvREFCNT_dec (sv);
1086 sv = 0; 1793 sv = 0;
1087 } 1794 }
1088 }
1089
1090 if (offset_return || !sv)
1091 {
1092 offset = dec.flags & F_UTF8
1093 ? dec.cur - SvPVX (string)
1094 : utf8_distance (dec.cur, SvPVX (string));
1095
1096 if (offset_return)
1097 *offset_return = offset;
1098 } 1795 }
1099 1796
1100 if (!sv) 1797 if (!sv)
1101 { 1798 {
1102 SV *uni = sv_newmortal (); 1799 SV *uni = sv_newmortal ();
1108 SAVEVPTR (PL_curcop); 1805 SAVEVPTR (PL_curcop);
1109 PL_curcop = &cop; 1806 PL_curcop = &cop;
1110 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ); 1807 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1111 LEAVE; 1808 LEAVE;
1112 1809
1113 croak ("%s, at character offset %d [\"%s\"]", 1810 croak ("%s, at character offset %d (before \"%s\")",
1114 dec.err, 1811 dec.err,
1115 (int)offset, 1812 (int)ptr_to_index (string, dec.cur),
1116 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1813 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1117 } 1814 }
1118 1815
1119 sv = sv_2mortal (sv); 1816 sv = sv_2mortal (sv);
1120 1817
1121 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1818 if (!(dec.json.flags & F_ALLOW_NONREF) && json_nonref (sv))
1122 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1819 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1123 1820
1124 return sv; 1821 return sv;
1822}
1823
1824/////////////////////////////////////////////////////////////////////////////
1825// incremental parser
1826
1827static void
1828incr_parse (JSON *self)
1829{
1830 const char *p = SvPVX (self->incr_text) + self->incr_pos;
1831
1832 // the state machine here is a bit convoluted and could be simplified a lot
1833 // but this would make it slower, so...
1834
1835 for (;;)
1836 {
1837 //printf ("loop pod %d *p<%c><%s>, mode %d nest %d\n", p - SvPVX (self->incr_text), *p, p, self->incr_mode, self->incr_nest);//D
1838 switch (self->incr_mode)
1839 {
1840 // only used for initial whitespace skipping
1841 case INCR_M_WS:
1842 for (;;)
1843 {
1844 if (*p > 0x20)
1845 {
1846 if (*p == '#')
1847 {
1848 self->incr_mode = INCR_M_C0;
1849 goto incr_m_c;
1850 }
1851 else
1852 {
1853 self->incr_mode = INCR_M_JSON;
1854 goto incr_m_json;
1855 }
1856 }
1857 else if (!*p)
1858 goto interrupt;
1859
1860 ++p;
1861 }
1862
1863 // skip a single char inside a string (for \\-processing)
1864 case INCR_M_BS:
1865 if (!*p)
1866 goto interrupt;
1867
1868 ++p;
1869 self->incr_mode = INCR_M_STR;
1870 goto incr_m_str;
1871
1872 // inside #-style comments
1873 case INCR_M_C0:
1874 case INCR_M_C1:
1875 incr_m_c:
1876 for (;;)
1877 {
1878 if (*p == '\n')
1879 {
1880 self->incr_mode = self->incr_mode == INCR_M_C0 ? INCR_M_WS : INCR_M_JSON;
1881 break;
1882 }
1883 else if (!*p)
1884 goto interrupt;
1885
1886 ++p;
1887 }
1888
1889 break;
1890
1891 // inside a string
1892 case INCR_M_STR:
1893 incr_m_str:
1894 for (;;)
1895 {
1896 if (*p == '"')
1897 {
1898 ++p;
1899 self->incr_mode = INCR_M_JSON;
1900
1901 if (!self->incr_nest)
1902 goto interrupt;
1903
1904 goto incr_m_json;
1905 }
1906 else if (*p == '\\')
1907 {
1908 ++p; // "virtually" consumes character after \
1909
1910 if (!*p) // if at end of string we have to switch modes
1911 {
1912 self->incr_mode = INCR_M_BS;
1913 goto interrupt;
1914 }
1915 }
1916 else if (!*p)
1917 goto interrupt;
1918
1919 ++p;
1920 }
1921
1922 // after initial ws, outside string
1923 case INCR_M_JSON:
1924 incr_m_json:
1925 for (;;)
1926 {
1927 switch (*p++)
1928 {
1929 case 0:
1930 --p;
1931 goto interrupt;
1932
1933 case 0x09:
1934 case 0x0a:
1935 case 0x0d:
1936 case 0x20:
1937 if (!self->incr_nest)
1938 {
1939 --p; // do not eat the whitespace, let the next round do it
1940 goto interrupt;
1941 }
1942 break;
1943
1944 case '"':
1945 self->incr_mode = INCR_M_STR;
1946 goto incr_m_str;
1947
1948 case '[':
1949 case '{':
1950 case '(':
1951 if (++self->incr_nest > self->max_depth)
1952 croak (ERR_NESTING_EXCEEDED);
1953 break;
1954
1955 case ']':
1956 case '}':
1957 if (--self->incr_nest <= 0)
1958 goto interrupt;
1959 break;
1960
1961 case ')':
1962 --self->incr_nest;
1963 break;
1964
1965 case '#':
1966 self->incr_mode = INCR_M_C1;
1967 goto incr_m_c;
1968 }
1969 }
1970 }
1971
1972 modechange:
1973 ;
1974 }
1975
1976interrupt:
1977 self->incr_pos = p - SvPVX (self->incr_text);
1978 //printf ("interrupt<%.*s>\n", self->incr_pos, SvPVX(self->incr_text));//D
1979 //printf ("return pos %d mode %d nest %d\n", self->incr_pos, self->incr_mode, self->incr_nest);//D
1125} 1980}
1126 1981
1127///////////////////////////////////////////////////////////////////////////// 1982/////////////////////////////////////////////////////////////////////////////
1128// XS interface functions 1983// XS interface functions
1129 1984
1130MODULE = JSON::XS PACKAGE = JSON::XS 1985MODULE = JSON::XS PACKAGE = JSON::XS
1131 1986
1132BOOT: 1987BOOT:
1133{ 1988{
1134 int i; 1989 int i;
1135
1136 memset (decode_hexdigit, 0xff, 256);
1137 1990
1138 for (i = 0; i < 256; ++i) 1991 for (i = 0; i < 256; ++i)
1139 decode_hexdigit [i] = 1992 decode_hexdigit [i] =
1140 i >= '0' && i <= '9' ? i - '0' 1993 i >= '0' && i <= '9' ? i - '0'
1141 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1994 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1142 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1995 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1143 : -1; 1996 : -1;
1144 1997
1145 json_stash = gv_stashpv ("JSON::XS", 1); 1998 json_stash = gv_stashpv ("JSON::XS" , 1);
1999 bool_stash = gv_stashpv ("Types::Serialiser::Boolean", 1);
2000 bool_true = get_bool ("Types::Serialiser::true");
2001 bool_false = get_bool ("Types::Serialiser::false");
2002
2003 sv_json = newSVpv ("JSON", 0);
2004 SvREADONLY_on (sv_json);
2005
2006 CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */
1146} 2007}
1147 2008
1148PROTOTYPES: DISABLE 2009PROTOTYPES: DISABLE
1149 2010
1150SV *new (char *dummy) 2011void CLONE (...)
1151 CODE: 2012 CODE:
1152 RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); 2013 json_stash = 0;
2014 bool_stash = 0;
2015
2016void new (char *klass)
2017 PPCODE:
2018{
2019 SV *pv = NEWSV (0, sizeof (JSON));
2020 SvPOK_only (pv);
2021 json_init ((JSON *)SvPVX (pv));
2022 XPUSHs (sv_2mortal (sv_bless (
2023 newRV_noinc (pv),
2024 strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1)
2025 )));
2026}
2027
2028void ascii (JSON *self, int enable = 1)
2029 ALIAS:
2030 ascii = F_ASCII
2031 latin1 = F_LATIN1
2032 utf8 = F_UTF8
2033 indent = F_INDENT
2034 canonical = F_CANONICAL
2035 space_before = F_SPACE_BEFORE
2036 space_after = F_SPACE_AFTER
2037 pretty = F_PRETTY
2038 allow_nonref = F_ALLOW_NONREF
2039 shrink = F_SHRINK
2040 allow_blessed = F_ALLOW_BLESSED
2041 convert_blessed = F_CONV_BLESSED
2042 relaxed = F_RELAXED
2043 allow_unknown = F_ALLOW_UNKNOWN
2044 allow_tags = F_ALLOW_TAGS
2045 PPCODE:
2046{
2047 if (enable)
2048 self->flags |= ix;
2049 else
2050 self->flags &= ~ix;
2051
2052 XPUSHs (ST (0));
2053}
2054
2055void get_ascii (JSON *self)
2056 ALIAS:
2057 get_ascii = F_ASCII
2058 get_latin1 = F_LATIN1
2059 get_utf8 = F_UTF8
2060 get_indent = F_INDENT
2061 get_canonical = F_CANONICAL
2062 get_space_before = F_SPACE_BEFORE
2063 get_space_after = F_SPACE_AFTER
2064 get_allow_nonref = F_ALLOW_NONREF
2065 get_shrink = F_SHRINK
2066 get_allow_blessed = F_ALLOW_BLESSED
2067 get_convert_blessed = F_CONV_BLESSED
2068 get_relaxed = F_RELAXED
2069 get_allow_unknown = F_ALLOW_UNKNOWN
2070 get_allow_tags = F_ALLOW_TAGS
2071 PPCODE:
2072 XPUSHs (boolSV (self->flags & ix));
2073
2074void max_depth (JSON *self, U32 max_depth = 0x80000000UL)
2075 PPCODE:
2076 self->max_depth = max_depth;
2077 XPUSHs (ST (0));
2078
2079U32 get_max_depth (JSON *self)
2080 CODE:
2081 RETVAL = self->max_depth;
1153 OUTPUT: 2082 OUTPUT:
1154 RETVAL 2083 RETVAL
1155 2084
1156SV *ascii (SV *self, int enable = 1) 2085void max_size (JSON *self, U32 max_size = 0)
1157 ALIAS: 2086 PPCODE:
1158 ascii = F_ASCII 2087 self->max_size = max_size;
1159 latin1 = F_LATIN1 2088 XPUSHs (ST (0));
1160 utf8 = F_UTF8 2089
1161 indent = F_INDENT 2090int get_max_size (JSON *self)
1162 canonical = F_CANONICAL
1163 space_before = F_SPACE_BEFORE
1164 space_after = F_SPACE_AFTER
1165 pretty = F_PRETTY
1166 allow_nonref = F_ALLOW_NONREF
1167 shrink = F_SHRINK
1168 CODE: 2091 CODE:
1169{ 2092 RETVAL = self->max_size;
1170 UV *uv = SvJSON (self);
1171 if (enable)
1172 *uv |= ix;
1173 else
1174 *uv &= ~ix;
1175
1176 RETVAL = newSVsv (self);
1177}
1178 OUTPUT: 2093 OUTPUT:
1179 RETVAL 2094 RETVAL
1180 2095
1181SV *max_depth (SV *self, UV max_depth = 0x80000000UL) 2096void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
2097 PPCODE:
2098{
2099 SvREFCNT_dec (self->cb_object);
2100 self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
2101
2102 XPUSHs (ST (0));
2103}
2104
2105void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
2106 PPCODE:
2107{
2108 if (!self->cb_sk_object)
2109 self->cb_sk_object = newHV ();
2110
2111 if (SvOK (cb))
2112 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
2113 else
2114 {
2115 hv_delete_ent (self->cb_sk_object, key, G_DISCARD, 0);
2116
2117 if (!HvKEYS (self->cb_sk_object))
2118 {
2119 SvREFCNT_dec (self->cb_sk_object);
2120 self->cb_sk_object = 0;
2121 }
2122 }
2123
2124 XPUSHs (ST (0));
2125}
2126
2127void encode (JSON *self, SV *scalar)
2128 PPCODE:
2129 PUTBACK; scalar = encode_json (scalar, self); SPAGAIN;
2130 XPUSHs (scalar);
2131
2132void decode (JSON *self, SV *jsonstr)
2133 PPCODE:
2134 PUTBACK; jsonstr = decode_json (jsonstr, self, 0); SPAGAIN;
2135 XPUSHs (jsonstr);
2136
2137void decode_prefix (JSON *self, SV *jsonstr)
2138 PPCODE:
2139{
2140 SV *sv;
2141 STRLEN offset;
2142 PUTBACK; sv = decode_json (jsonstr, self, &offset); SPAGAIN;
2143 EXTEND (SP, 2);
2144 PUSHs (sv);
2145 PUSHs (sv_2mortal (newSVuv (ptr_to_index (jsonstr, SvPV_nolen (jsonstr) + offset))));
2146}
2147
2148void incr_parse (JSON *self, SV *jsonstr = 0)
2149 PPCODE:
2150{
2151 if (!self->incr_text)
2152 self->incr_text = newSVpvn ("", 0);
2153
2154 /* if utf8-ness doesn't match the decoder, need to upgrade/downgrade */
2155 if (!DECODE_WANTS_OCTETS (self) == !SvUTF8 (self->incr_text))
2156 if (DECODE_WANTS_OCTETS (self))
2157 {
2158 if (self->incr_pos)
2159 self->incr_pos = utf8_length ((U8 *)SvPVX (self->incr_text),
2160 (U8 *)SvPVX (self->incr_text) + self->incr_pos);
2161
2162 sv_utf8_downgrade (self->incr_text, 0);
2163 }
2164 else
2165 {
2166 sv_utf8_upgrade (self->incr_text);
2167
2168 if (self->incr_pos)
2169 self->incr_pos = utf8_hop ((U8 *)SvPVX (self->incr_text), self->incr_pos)
2170 - (U8 *)SvPVX (self->incr_text);
2171 }
2172
2173 // append data, if any
2174 if (jsonstr)
2175 {
2176 /* make sure both strings have same encoding */
2177 if (SvUTF8 (jsonstr) != SvUTF8 (self->incr_text))
2178 if (SvUTF8 (jsonstr))
2179 sv_utf8_downgrade (jsonstr, 0);
2180 else
2181 sv_utf8_upgrade (jsonstr);
2182
2183 /* and then just blindly append */
2184 {
2185 STRLEN len;
2186 const char *str = SvPV (jsonstr, len);
2187 STRLEN cur = SvCUR (self->incr_text);
2188
2189 if (SvLEN (self->incr_text) - cur <= len)
2190 json_sv_grow (self->incr_text, cur, len);
2191
2192 Move (str, SvEND (self->incr_text), len, char);
2193 SvCUR_set (self->incr_text, SvCUR (self->incr_text) + len);
2194 *SvEND (self->incr_text) = 0; // this should basically be a nop, too, but make sure it's there
2195 }
2196 }
2197
2198 if (GIMME_V != G_VOID)
2199 do
2200 {
2201 SV *sv;
2202 STRLEN offset;
2203
2204 if (!INCR_DONE (self))
2205 {
2206 incr_parse (self);
2207
2208 if (self->incr_pos > self->max_size && self->max_size)
2209 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
2210 (unsigned long)self->incr_pos, (unsigned long)self->max_size);
2211
2212 if (!INCR_DONE (self))
2213 {
2214 // as an optimisation, do not accumulate white space in the incr buffer
2215 if (self->incr_mode == INCR_M_WS && self->incr_pos)
2216 {
2217 self->incr_pos = 0;
2218 SvCUR_set (self->incr_text, 0);
2219 }
2220
2221 break;
2222 }
2223 }
2224
2225 PUTBACK; sv = decode_json (self->incr_text, self, &offset); SPAGAIN;
2226 XPUSHs (sv);
2227
2228 self->incr_pos -= offset;
2229 self->incr_nest = 0;
2230 self->incr_mode = 0;
2231
2232 sv_chop (self->incr_text, SvPVX (self->incr_text) + offset);
2233 }
2234 while (GIMME_V == G_ARRAY);
2235}
2236
2237SV *incr_text (JSON *self)
2238 ATTRS: lvalue
1182 CODE: 2239 CODE:
1183{ 2240{
1184 UV *uv = SvJSON (self); 2241 if (self->incr_pos)
1185 UV log2 = 0; 2242 croak ("incr_text can not be called when the incremental parser already started parsing");
1186 2243
1187 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL; 2244 RETVAL = self->incr_text ? SvREFCNT_inc (self->incr_text) : &PL_sv_undef;
1188
1189 while ((1UL << log2) < max_depth)
1190 ++log2;
1191
1192 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1193
1194 RETVAL = newSVsv (self);
1195} 2245}
1196 OUTPUT: 2246 OUTPUT:
1197 RETVAL 2247 RETVAL
1198 2248
2249void incr_skip (JSON *self)
2250 CODE:
2251{
2252 if (self->incr_pos)
2253 {
2254 sv_chop (self->incr_text, SvPV_nolen (self->incr_text) + self->incr_pos);
2255 self->incr_pos = 0;
2256 self->incr_nest = 0;
2257 self->incr_mode = 0;
2258 }
2259}
2260
2261void incr_reset (JSON *self)
2262 CODE:
2263{
2264 SvREFCNT_dec (self->incr_text);
2265 self->incr_text = 0;
2266 self->incr_pos = 0;
2267 self->incr_nest = 0;
2268 self->incr_mode = 0;
2269}
2270
2271void DESTROY (JSON *self)
2272 CODE:
2273 SvREFCNT_dec (self->cb_sk_object);
2274 SvREFCNT_dec (self->cb_object);
2275 SvREFCNT_dec (self->incr_text);
2276
2277PROTOTYPES: ENABLE
2278
1199void encode (SV *self, SV *scalar) 2279void encode_json (SV *scalar)
1200 PPCODE: 2280 PPCODE:
1201 XPUSHs (encode_json (scalar, *SvJSON (self))); 2281{
2282 JSON json;
2283 json_init (&json);
2284 json.flags |= F_UTF8;
2285 PUTBACK; scalar = encode_json (scalar, &json); SPAGAIN;
2286 XPUSHs (scalar);
2287}
1202 2288
1203void decode (SV *self, SV *jsonstr) 2289void decode_json (SV *jsonstr)
1204 PPCODE: 2290 PPCODE:
1205 XPUSHs (decode_json (jsonstr, *SvJSON (self), 0));
1206
1207void decode_prefix (SV *self, SV *jsonstr)
1208 PPCODE:
1209{ 2291{
1210 UV offset; 2292 JSON json;
1211 EXTEND (SP, 2); 2293 json_init (&json);
1212 PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); 2294 json.flags |= F_UTF8;
1213 PUSHs (sv_2mortal (newSVuv (offset))); 2295 PUTBACK; jsonstr = decode_json (jsonstr, &json, 0); SPAGAIN;
2296 XPUSHs (jsonstr);
1214} 2297}
1215 2298
1216PROTOTYPES: ENABLE
1217
1218void to_json (SV *scalar)
1219 ALIAS:
1220 objToJson = 0
1221 PPCODE:
1222 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8));
1223
1224void from_json (SV *jsonstr)
1225 ALIAS:
1226 jsonToObj = 0
1227 PPCODE:
1228 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0));
1229

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines