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.65 by root, Sat Oct 13 01:55:31 2007 UTC vs.
Revision 1.130 by root, Sat Nov 26 06:09:29 2016 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines