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.43 by root, Sat Jun 23 23:49:29 2007 UTC vs.
Revision 1.71 by root, Wed Mar 19 03:17:38 2008 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 <float.h>
9 10
10#if defined(__BORLANDC__) || defined(_MSC_VER) 11#if defined(__BORLANDC__) || defined(_MSC_VER)
11# define snprintf _snprintf // C compilers have this in stdio.h 12# define snprintf _snprintf // C compilers have this in stdio.h
12#endif 13#endif
13 14
15// guarentees, though. if it breaks, you get to keep the pieces. 16// guarentees, though. if it breaks, you get to keep the pieces.
16#ifndef UTF8_MAXBYTES 17#ifndef UTF8_MAXBYTES
17# define UTF8_MAXBYTES 13 18# define UTF8_MAXBYTES 13
18#endif 19#endif
19 20
20#define F_ASCII 0x00000001UL 21#define F_ASCII 0x00000001UL
21#define F_LATIN1 0x00000002UL 22#define F_LATIN1 0x00000002UL
22#define F_UTF8 0x00000004UL 23#define F_UTF8 0x00000004UL
23#define F_INDENT 0x00000008UL 24#define F_INDENT 0x00000008UL
24#define F_CANONICAL 0x00000010UL 25#define F_CANONICAL 0x00000010UL
25#define F_SPACE_BEFORE 0x00000020UL 26#define F_SPACE_BEFORE 0x00000020UL
26#define F_SPACE_AFTER 0x00000040UL 27#define F_SPACE_AFTER 0x00000040UL
27#define F_ALLOW_NONREF 0x00000100UL 28#define F_ALLOW_NONREF 0x00000100UL
28#define F_SHRINK 0x00000200UL 29#define F_SHRINK 0x00000200UL
30#define F_ALLOW_BLESSED 0x00000400UL
31#define F_CONV_BLESSED 0x00000800UL
32#define F_RELAXED 0x00001000UL
33
29#define F_MAXDEPTH 0xf8000000UL 34#define F_MAXDEPTH 0xf8000000UL
30#define S_MAXDEPTH 27 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
31 39
32#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH)) 40#define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
33 41#define DEC_SIZE(flags) (1UL << ((flags & F_MAXSIZE ) >> S_MAXSIZE ))
34// F_SELFCONVERT? <=> to_json/toJson
35// F_BLESSED? <=> { $__class__$ => }
36 42
37#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER 43#define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
38#define F_DEFAULT (9UL << S_MAXDEPTH) 44#define F_DEFAULT (9UL << S_MAXDEPTH)
39 45
40#define INIT_SIZE 32 // initial scalar size to be allocated 46#define INIT_SIZE 32 // initial scalar size to be allocated
44 50
45#define SB do { 51#define SB do {
46#define SE } while (0) 52#define SE } while (0)
47 53
48#if __GNUC__ >= 3 54#if __GNUC__ >= 3
49# define expect(expr,value) __builtin_expect ((expr),(value)) 55# define expect(expr,value) __builtin_expect ((expr), (value))
50# define inline inline 56# define INLINE static inline
51#else 57#else
52# define expect(expr,value) (expr) 58# define expect(expr,value) (expr)
53# define inline static 59# define INLINE static
54#endif 60#endif
55 61
56#define expect_false(expr) expect ((expr) != 0, 0) 62#define expect_false(expr) expect ((expr) != 0, 0)
57#define expect_true(expr) expect ((expr) != 0, 1) 63#define expect_true(expr) expect ((expr) != 0, 1)
58 64
65#ifdef USE_ITHREADS
66# define JSON_SLOW 1
67# define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1))
68#else
69# define JSON_SLOW 0
70# define JSON_STASH json_stash
71#endif
72
59static HV *json_stash; // JSON::XS:: 73static HV *json_stash, *json_boolean_stash; // JSON::XS::
60static SV *json_true, *json_false; 74static SV *json_true, *json_false;
75
76typedef struct {
77 U32 flags;
78 SV *cb_object;
79 HV *cb_sk_object;
80} JSON;
61 81
62///////////////////////////////////////////////////////////////////////////// 82/////////////////////////////////////////////////////////////////////////////
63// utility functions 83// utility functions
64 84
65static UV * 85INLINE void
66SvJSON (SV *sv)
67{
68 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
69 croak ("object is not of type JSON::XS");
70
71 return &SvUVX (SvRV (sv));
72}
73
74static void
75shrink (SV *sv) 86shrink (SV *sv)
76{ 87{
77 sv_utf8_downgrade (sv, 1); 88 sv_utf8_downgrade (sv, 1);
78 if (SvLEN (sv) > SvCUR (sv) + 1) 89 if (SvLEN (sv) > SvCUR (sv) + 1)
79 { 90 {
88// decode an utf-8 character and return it, or (UV)-1 in 99// decode an utf-8 character and return it, or (UV)-1 in
89// case of an error. 100// case of an error.
90// we special-case "safe" characters from U+80 .. U+7FF, 101// we special-case "safe" characters from U+80 .. U+7FF,
91// but use the very good perl function to parse anything else. 102// but use the very good perl function to parse anything else.
92// note that we never call this function for a ascii codepoints 103// note that we never call this function for a ascii codepoints
93inline UV 104INLINE UV
94decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen) 105decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
95{ 106{
96 if (expect_false (s[0] > 0xdf || s[0] < 0xc2)) 107 if (expect_false (s[0] > 0xdf || s[0] < 0xc2))
97 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY); 108 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
98 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf) 109 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf)
114typedef struct 125typedef struct
115{ 126{
116 char *cur; // SvPVX (sv) + current output position 127 char *cur; // SvPVX (sv) + current output position
117 char *end; // SvEND (sv) 128 char *end; // SvEND (sv)
118 SV *sv; // result scalar 129 SV *sv; // result scalar
119 U32 flags; // F_* 130 JSON json;
120 U32 indent; // indentation level 131 U32 indent; // indentation level
121 U32 maxdepth; // max. indentation/recursion level 132 U32 maxdepth; // max. indentation/recursion level
133 UV limit; // escape character values >= this value when encoding
122} enc_t; 134} enc_t;
123 135
124inline void 136INLINE void
125need (enc_t *enc, STRLEN len) 137need (enc_t *enc, STRLEN len)
126{ 138{
127 if (expect_false (enc->cur + len >= enc->end)) 139 if (expect_false (enc->cur + len >= enc->end))
128 { 140 {
129 STRLEN cur = enc->cur - SvPVX (enc->sv); 141 STRLEN cur = enc->cur - SvPVX (enc->sv);
131 enc->cur = SvPVX (enc->sv) + cur; 143 enc->cur = SvPVX (enc->sv) + cur;
132 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1; 144 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
133 } 145 }
134} 146}
135 147
136inline void 148INLINE void
137encode_ch (enc_t *enc, char ch) 149encode_ch (enc_t *enc, char ch)
138{ 150{
139 need (enc, 1); 151 need (enc, 1);
140 *enc->cur++ = ch; 152 *enc->cur++ = ch;
141} 153}
195 { 207 {
196 uch = ch; 208 uch = ch;
197 clen = 1; 209 clen = 1;
198 } 210 }
199 211
200 if (uch > 0x10FFFFUL) 212 if (uch < 0x20 || uch >= enc->limit)
201 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
202
203 if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF))
204 { 213 {
205 if (uch > 0xFFFFUL) 214 if (uch > 0xFFFFUL)
206 { 215 {
216 if (uch > 0x10FFFFUL)
217 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
218
207 need (enc, len += 11); 219 need (enc, len += 11);
208 sprintf (enc->cur, "\\u%04x\\u%04x", 220 sprintf (enc->cur, "\\u%04x\\u%04x",
209 (int)((uch - 0x10000) / 0x400 + 0xD800), 221 (int)((uch - 0x10000) / 0x400 + 0xD800),
210 (int)((uch - 0x10000) % 0x400 + 0xDC00)); 222 (int)((uch - 0x10000) % 0x400 + 0xDC00));
211 enc->cur += 12; 223 enc->cur += 12;
222 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 234 *enc->cur++ = hexdigit [(uch >> 0) & 15];
223 } 235 }
224 236
225 str += clen; 237 str += clen;
226 } 238 }
227 else if (enc->flags & F_LATIN1) 239 else if (enc->json.flags & F_LATIN1)
228 { 240 {
229 *enc->cur++ = uch; 241 *enc->cur++ = uch;
230 str += clen; 242 str += clen;
231 } 243 }
232 else if (is_utf8) 244 else if (is_utf8)
250 262
251 --len; 263 --len;
252 } 264 }
253} 265}
254 266
255inline void 267INLINE void
256encode_indent (enc_t *enc) 268encode_indent (enc_t *enc)
257{ 269{
258 if (enc->flags & F_INDENT) 270 if (enc->json.flags & F_INDENT)
259 { 271 {
260 int spaces = enc->indent * INDENT_STEP; 272 int spaces = enc->indent * INDENT_STEP;
261 273
262 need (enc, spaces); 274 need (enc, spaces);
263 memset (enc->cur, ' ', spaces); 275 memset (enc->cur, ' ', spaces);
264 enc->cur += spaces; 276 enc->cur += spaces;
265 } 277 }
266} 278}
267 279
268inline void 280INLINE void
269encode_space (enc_t *enc) 281encode_space (enc_t *enc)
270{ 282{
271 need (enc, 1); 283 need (enc, 1);
272 encode_ch (enc, ' '); 284 encode_ch (enc, ' ');
273} 285}
274 286
275inline void 287INLINE void
276encode_nl (enc_t *enc) 288encode_nl (enc_t *enc)
277{ 289{
278 if (enc->flags & F_INDENT) 290 if (enc->json.flags & F_INDENT)
279 { 291 {
280 need (enc, 1); 292 need (enc, 1);
281 encode_ch (enc, '\n'); 293 encode_ch (enc, '\n');
282 } 294 }
283} 295}
284 296
285inline void 297INLINE void
286encode_comma (enc_t *enc) 298encode_comma (enc_t *enc)
287{ 299{
288 encode_ch (enc, ','); 300 encode_ch (enc, ',');
289 301
290 if (enc->flags & F_INDENT) 302 if (enc->json.flags & F_INDENT)
291 encode_nl (enc); 303 encode_nl (enc);
292 else if (enc->flags & F_SPACE_AFTER) 304 else if (enc->json.flags & F_SPACE_AFTER)
293 encode_space (enc); 305 encode_space (enc);
294} 306}
295 307
296static void encode_sv (enc_t *enc, SV *sv); 308static void encode_sv (enc_t *enc, SV *sv);
297 309
301 int i, len = av_len (av); 313 int i, len = av_len (av);
302 314
303 if (enc->indent >= enc->maxdepth) 315 if (enc->indent >= enc->maxdepth)
304 croak ("data structure too deep (hit recursion limit)"); 316 croak ("data structure too deep (hit recursion limit)");
305 317
306 encode_ch (enc, '['); encode_nl (enc); 318 encode_ch (enc, '[');
307 ++enc->indent; 319
320 if (len >= 0)
321 {
322 encode_nl (enc); ++enc->indent;
308 323
309 for (i = 0; i <= len; ++i) 324 for (i = 0; i <= len; ++i)
310 { 325 {
326 SV **svp = av_fetch (av, i, 0);
327
311 encode_indent (enc); 328 encode_indent (enc);
312 encode_sv (enc, *av_fetch (av, i, 0));
313 329
330 if (svp)
331 encode_sv (enc, *svp);
332 else
333 encode_str (enc, "null", 4, 0);
334
314 if (i < len) 335 if (i < len)
315 encode_comma (enc); 336 encode_comma (enc);
316 } 337 }
317 338
339 encode_nl (enc); --enc->indent; encode_indent (enc);
340 }
341
318 encode_nl (enc); 342 encode_ch (enc, ']');
319
320 --enc->indent;
321 encode_indent (enc); encode_ch (enc, ']');
322} 343}
323 344
324static void 345static void
325encode_he (enc_t *enc, HE *he) 346encode_hk (enc_t *enc, HE *he)
326{ 347{
327 encode_ch (enc, '"'); 348 encode_ch (enc, '"');
328 349
329 if (HeKLEN (he) == HEf_SVKEY) 350 if (HeKLEN (he) == HEf_SVKEY)
330 { 351 {
340 else 361 else
341 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 362 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
342 363
343 encode_ch (enc, '"'); 364 encode_ch (enc, '"');
344 365
345 if (enc->flags & F_SPACE_BEFORE) encode_space (enc); 366 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
346 encode_ch (enc, ':'); 367 encode_ch (enc, ':');
347 if (enc->flags & F_SPACE_AFTER ) encode_space (enc); 368 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
348 encode_sv (enc, HeVAL (he));
349} 369}
350 370
351// compare hash entries, used when all keys are bytestrings 371// compare hash entries, used when all keys are bytestrings
352static int 372static int
353he_cmp_fast (const void *a_, const void *b_) 373he_cmp_fast (const void *a_, const void *b_)
358 HE *b = *(HE **)b_; 378 HE *b = *(HE **)b_;
359 379
360 STRLEN la = HeKLEN (a); 380 STRLEN la = HeKLEN (a);
361 STRLEN lb = HeKLEN (b); 381 STRLEN lb = HeKLEN (b);
362 382
363 if (!(cmp = memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb))) 383 if (!(cmp = memcmp (HeKEY (b), HeKEY (a), lb < la ? lb : la)))
364 cmp = la - lb; 384 cmp = lb - la;
365 385
366 return cmp; 386 return cmp;
367} 387}
368 388
369// compare hash entries, used when some keys are sv's or utf-x 389// compare hash entries, used when some keys are sv's or utf-x
370static int 390static int
371he_cmp_slow (const void *a, const void *b) 391he_cmp_slow (const void *a, const void *b)
372{ 392{
373 return sv_cmp (HeSVKEY_force (*(HE **)a), HeSVKEY_force (*(HE **)b)); 393 return sv_cmp (HeSVKEY_force (*(HE **)b), HeSVKEY_force (*(HE **)a));
374} 394}
375 395
376static void 396static void
377encode_hv (enc_t *enc, HV *hv) 397encode_hv (enc_t *enc, HV *hv)
378{ 398{
399 HE *he;
379 int count, i; 400 int count;
380 401
381 if (enc->indent >= enc->maxdepth) 402 if (enc->indent >= enc->maxdepth)
382 croak ("data structure too deep (hit recursion limit)"); 403 croak ("data structure too deep (hit recursion limit)");
383 404
384 encode_ch (enc, '{'); encode_nl (enc); ++enc->indent; 405 encode_ch (enc, '{');
385 406
386 if ((count = hv_iterinit (hv)))
387 {
388 // for canonical output we have to sort by keys first 407 // for canonical output we have to sort by keys first
389 // actually, this is mostly due to the stupid so-called 408 // actually, this is mostly due to the stupid so-called
390 // security workaround added somewhere in 5.8.x. 409 // security workaround added somewhere in 5.8.x.
391 // that randomises hash orderings 410 // that randomises hash orderings
392 if (enc->flags & F_CANONICAL) 411 if (enc->json.flags & F_CANONICAL)
412 {
413 int count = hv_iterinit (hv);
414
415 if (SvMAGICAL (hv))
393 { 416 {
417 // need to count by iterating. could improve by dynamically building the vector below
418 // but I don't care for the speed of this special case.
419 // note also that we will run into undefined behaviour when the two iterations
420 // do not result in the same count, something I might care for in some later release.
421
422 count = 0;
423 while (hv_iternext (hv))
424 ++count;
425
426 hv_iterinit (hv);
427 }
428
429 if (count)
430 {
394 int fast = 1; 431 int i, fast = 1;
395 HE *he;
396#if defined(__BORLANDC__) || defined(_MSC_VER) 432#if defined(__BORLANDC__) || defined(_MSC_VER)
397 HE **hes = _alloca (count * sizeof (HE)); 433 HE **hes = _alloca (count * sizeof (HE));
398#else 434#else
399 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode 435 HE *hes [count]; // if your compiler dies here, you need to enable C99 mode
400#endif 436#endif
427 463
428 FREETMPS; 464 FREETMPS;
429 LEAVE; 465 LEAVE;
430 } 466 }
431 467
432 for (i = 0; i < count; ++i) 468 encode_nl (enc); ++enc->indent;
469
470 while (count--)
433 { 471 {
434 encode_indent (enc); 472 encode_indent (enc);
473 he = hes [count];
435 encode_he (enc, hes [i]); 474 encode_hk (enc, he);
475 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
436 476
437 if (i < count - 1) 477 if (count)
438 encode_comma (enc); 478 encode_comma (enc);
439 } 479 }
440 480
481 encode_nl (enc); --enc->indent; encode_indent (enc);
482 }
483 }
484 else
485 {
486 if (hv_iterinit (hv) || SvMAGICAL (hv))
487 if ((he = hv_iternext (hv)))
488 {
489 encode_nl (enc); ++enc->indent;
490
491 for (;;)
492 {
441 encode_nl (enc); 493 encode_indent (enc);
494 encode_hk (enc, he);
495 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
496
497 if (!(he = hv_iternext (hv)))
498 break;
499
500 encode_comma (enc);
501 }
502
503 encode_nl (enc); --enc->indent; encode_indent (enc);
504 }
505 }
506
507 encode_ch (enc, '}');
508}
509
510// encode objects, arrays and special \0=false and \1=true values.
511static void
512encode_rv (enc_t *enc, SV *sv)
513{
514 svtype svt;
515
516 SvGETMAGIC (sv);
517 svt = SvTYPE (sv);
518
519 if (expect_false (SvOBJECT (sv)))
520 {
521 HV *stash = !JSON_SLOW || json_boolean_stash
522 ? json_boolean_stash
523 : gv_stashpv ("JSON::XS::Boolean", 1);
524
525 if (SvSTASH (sv) == stash)
526 {
527 if (SvIV (sv))
528 encode_str (enc, "true", 4, 0);
529 else
530 encode_str (enc, "false", 5, 0);
442 } 531 }
443 else 532 else
444 { 533 {
445 HE *he = hv_iternext (hv); 534#if 0
446 535 if (0 && sv_derived_from (rv, "JSON::Literal"))
447 for (;;)
448 { 536 {
449 encode_indent (enc); 537 // not yet
450 encode_he (enc, he);
451
452 if (!(he = hv_iternext (hv)))
453 break;
454
455 encode_comma (enc);
456 } 538 }
539#endif
540 if (enc->json.flags & F_CONV_BLESSED)
541 {
542 // we re-bless the reference to get overload and other niceties right
543 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 0);
457 544
545 if (to_json)
546 {
547 dSP;
548
549 ENTER; SAVETMPS; PUSHMARK (SP);
550 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
551
552 // calling with G_SCALAR ensures that we always get a 1 return value
553 PUTBACK;
554 call_sv ((SV *)GvCV (to_json), G_SCALAR);
555 SPAGAIN;
556
557 // catch this surprisingly common error
558 if (SvROK (TOPs) && SvRV (TOPs) == sv)
559 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
560
561 sv = POPs;
562 PUTBACK;
563
458 encode_nl (enc); 564 encode_sv (enc, sv);
565
566 FREETMPS; LEAVE;
567 }
568 else if (enc->json.flags & F_ALLOW_BLESSED)
569 encode_str (enc, "null", 4, 0);
570 else
571 croak ("encountered object '%s', but neither allow_blessed enabled nor TO_JSON method available on it",
572 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
573 }
574 else if (enc->json.flags & F_ALLOW_BLESSED)
575 encode_str (enc, "null", 4, 0);
576 else
577 croak ("encountered object '%s', but neither allow_blessed nor convert_blessed settings are enabled",
578 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
459 } 579 }
460 } 580 }
461
462 --enc->indent; encode_indent (enc); encode_ch (enc, '}');
463}
464
465// encode objects, arrays and special \0=false and \1=true values.
466static void
467encode_rv (enc_t *enc, SV *sv)
468{
469 svtype svt;
470
471 SvGETMAGIC (sv);
472 svt = SvTYPE (sv);
473
474 if (svt == SVt_PVHV) 581 else if (svt == SVt_PVHV)
475 encode_hv (enc, (HV *)sv); 582 encode_hv (enc, (HV *)sv);
476 else if (svt == SVt_PVAV) 583 else if (svt == SVt_PVAV)
477 encode_av (enc, (AV *)sv); 584 encode_av (enc, (AV *)sv);
478 else if (svt < SVt_PVAV) 585 else if (svt < SVt_PVAV)
479 { 586 {
480 if (SvNIOK (sv) && SvIV (sv) == 0) 587 STRLEN len = 0;
588 char *pv = svt ? SvPV (sv, len) : 0;
589
590 if (len == 1 && *pv == '1')
591 encode_str (enc, "true", 4, 0);
592 else if (len == 1 && *pv == '0')
481 encode_str (enc, "false", 5, 0); 593 encode_str (enc, "false", 5, 0);
482 else if (SvNIOK (sv) && SvIV (sv) == 1)
483 encode_str (enc, "true", 4, 0);
484 else 594 else
485 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1", 595 croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
486 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 596 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
487 } 597 }
488 else 598 else
558 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this", 668 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
559 SvPV_nolen (sv), SvFLAGS (sv)); 669 SvPV_nolen (sv), SvFLAGS (sv));
560} 670}
561 671
562static SV * 672static SV *
563encode_json (SV *scalar, U32 flags) 673encode_json (SV *scalar, JSON *json)
564{ 674{
565 enc_t enc; 675 enc_t enc;
566 676
567 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) 677 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
568 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)"); 678 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
569 679
570 enc.flags = flags; 680 enc.json = *json;
571 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 681 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
572 enc.cur = SvPVX (enc.sv); 682 enc.cur = SvPVX (enc.sv);
573 enc.end = SvEND (enc.sv); 683 enc.end = SvEND (enc.sv);
574 enc.indent = 0; 684 enc.indent = 0;
575 enc.maxdepth = DEC_DEPTH (flags); 685 enc.maxdepth = DEC_DEPTH (enc.json.flags);
686 enc.limit = enc.json.flags & F_ASCII ? 0x000080UL
687 : enc.json.flags & F_LATIN1 ? 0x000100UL
688 : 0x10FFFFUL;
576 689
577 SvPOK_only (enc.sv); 690 SvPOK_only (enc.sv);
578 encode_sv (&enc, scalar); 691 encode_sv (&enc, scalar);
579 692
580 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 693 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
581 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings 694 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
582 695
583 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) 696 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
584 SvUTF8_on (enc.sv); 697 SvUTF8_on (enc.sv);
585 698
586 if (enc.flags & F_SHRINK) 699 if (enc.json.flags & F_SHRINK)
587 shrink (enc.sv); 700 shrink (enc.sv);
588 701
589 return enc.sv; 702 return enc.sv;
590} 703}
591 704
596typedef struct 709typedef struct
597{ 710{
598 char *cur; // current parser pointer 711 char *cur; // current parser pointer
599 char *end; // end of input string 712 char *end; // end of input string
600 const char *err; // parse error, if != 0 713 const char *err; // parse error, if != 0
601 U32 flags; // F_* 714 JSON json;
602 U32 depth; // recursion depth 715 U32 depth; // recursion depth
603 U32 maxdepth; // recursion depth limit 716 U32 maxdepth; // recursion depth limit
604} dec_t; 717} dec_t;
605 718
606inline void 719INLINE void
720decode_comment (dec_t *dec)
721{
722 // only '#'-style comments allowed a.t.m.
723
724 while (*dec->cur && *dec->cur != 0x0a && *dec->cur != 0x0d)
725 ++dec->cur;
726}
727
728INLINE void
607decode_ws (dec_t *dec) 729decode_ws (dec_t *dec)
608{ 730{
609 for (;;) 731 for (;;)
610 { 732 {
611 char ch = *dec->cur; 733 char ch = *dec->cur;
612 734
613 if (ch > 0x20 735 if (ch > 0x20)
736 {
737 if (expect_false (ch == '#'))
738 {
739 if (dec->json.flags & F_RELAXED)
740 decode_comment (dec);
741 else
742 break;
743 }
744 else
745 break;
746 }
614 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)) 747 else if (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)
615 break; 748 break; // parse error, but let higher level handle it, gives better error messages
616 749
617 ++dec->cur; 750 ++dec->cur;
618 } 751 }
619} 752}
620 753
869 is_nv = 1; 1002 is_nv = 1;
870 } 1003 }
871 1004
872 if (!is_nv) 1005 if (!is_nv)
873 { 1006 {
1007 int len = dec->cur - start;
1008
874 // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so 1009 // special case the rather common 1..5-digit-int case
875 if (*start == '-') 1010 if (*start == '-')
876 switch (dec->cur - start) 1011 switch (len)
877 { 1012 {
878 case 2: return newSViv (-( start [1] - '0' * 1)); 1013 case 2: return newSViv (-( start [1] - '0' * 1));
879 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11)); 1014 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11));
880 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111)); 1015 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
881 case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111)); 1016 case 5: return newSViv (-( start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111));
1017 case 6: return newSViv (-(start [1] * 10000 + start [2] * 1000 + start [3] * 100 + start [4] * 10 + start [5] - '0' * 11111));
882 } 1018 }
883 else 1019 else
884 switch (dec->cur - start) 1020 switch (len)
885 { 1021 {
886 case 1: return newSViv ( start [0] - '0' * 1); 1022 case 1: return newSViv ( start [0] - '0' * 1);
887 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11); 1023 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
888 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111); 1024 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
889 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111); 1025 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111);
1026 case 5: return newSViv ( start [0] * 10000 + start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 11111);
890 } 1027 }
891 1028
892 { 1029 {
893 UV uv; 1030 UV uv;
894 int numtype = grok_number (start, dec->cur - start, &uv); 1031 int numtype = grok_number (start, len, &uv);
895 if (numtype & IS_NUMBER_IN_UV) 1032 if (numtype & IS_NUMBER_IN_UV)
896 if (numtype & IS_NUMBER_NEG) 1033 if (numtype & IS_NUMBER_NEG)
897 { 1034 {
898 if (uv < (UV)IV_MIN) 1035 if (uv < (UV)IV_MIN)
899 return newSViv (-(IV)uv); 1036 return newSViv (-(IV)uv);
900 } 1037 }
901 else 1038 else
902 return newSVuv (uv); 1039 return newSVuv (uv);
903
904 // here would likely be the place for bigint support
905 } 1040 }
906 }
907 1041
908 // if we ever support bigint or bigfloat, this is the place for bigfloat 1042 len -= *start == '-' ? 1 : 0;
1043
1044 // does not fit into IV or UV, try NV
1045 if ((sizeof (NV) == sizeof (double) && DBL_DIG >= len)
1046 #if defined (LDBL_DIG)
1047 || (sizeof (NV) == sizeof (long double) && LDBL_DIG >= len)
1048 #endif
1049 )
1050 // fits into NV without loss of precision
1051 return newSVnv (Atof (start));
1052
1053 // everything else fails, convert it to a string
1054 return newSVpvn (start, dec->cur - start);
1055 }
1056
1057 // loss of precision here
909 return newSVnv (Atof (start)); 1058 return newSVnv (Atof (start));
910 1059
911fail: 1060fail:
912 return 0; 1061 return 0;
913} 1062}
943 1092
944 if (*dec->cur != ',') 1093 if (*dec->cur != ',')
945 ERR (", or ] expected while parsing array"); 1094 ERR (", or ] expected while parsing array");
946 1095
947 ++dec->cur; 1096 ++dec->cur;
1097
1098 decode_ws (dec);
1099
1100 if (*dec->cur == ']' && dec->json.flags & F_RELAXED)
1101 {
1102 ++dec->cur;
1103 break;
1104 }
948 } 1105 }
949 1106
950 DEC_DEC_DEPTH; 1107 DEC_DEC_DEPTH;
951 return newRV_noinc ((SV *)av); 1108 return newRV_noinc ((SV *)av);
952 1109
957} 1114}
958 1115
959static SV * 1116static SV *
960decode_hv (dec_t *dec) 1117decode_hv (dec_t *dec)
961{ 1118{
1119 SV *sv;
962 HV *hv = newHV (); 1120 HV *hv = newHV ();
963 1121
964 DEC_INC_DEPTH; 1122 DEC_INC_DEPTH;
965 decode_ws (dec); 1123 decode_ws (dec);
966 1124
967 if (*dec->cur == '}') 1125 if (*dec->cur == '}')
968 ++dec->cur; 1126 ++dec->cur;
969 else 1127 else
970 for (;;) 1128 for (;;)
971 { 1129 {
1130 EXPECT_CH ('"');
1131
1132 // heuristic: assume that
1133 // a) decode_str + hv_store_ent are abysmally slow.
1134 // b) most hash keys are short, simple ascii text.
1135 // => try to "fast-match" such strings to avoid
1136 // the overhead of decode_str + hv_store_ent.
1137 {
972 SV *key, *value; 1138 SV *value;
1139 char *p = dec->cur;
1140 char *e = p + 24; // only try up to 24 bytes
973 1141
974 decode_ws (dec); EXPECT_CH ('"'); 1142 for (;;)
975
976 key = decode_str (dec);
977 if (!key)
978 goto fail;
979
980 decode_ws (dec); EXPECT_CH (':');
981
982 value = decode_sv (dec);
983 if (!value)
984 { 1143 {
1144 // the >= 0x80 is true on most architectures
1145 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1146 {
1147 // slow path, back up and use decode_str
1148 SV *key = decode_str (dec);
1149 if (!key)
1150 goto fail;
1151
1152 decode_ws (dec); EXPECT_CH (':');
1153
1154 decode_ws (dec);
1155 value = decode_sv (dec);
1156 if (!value)
1157 {
1158 SvREFCNT_dec (key);
1159 goto fail;
1160 }
1161
1162 hv_store_ent (hv, key, value, 0);
985 SvREFCNT_dec (key); 1163 SvREFCNT_dec (key);
1164
1165 break;
1166 }
1167 else if (*p == '"')
1168 {
1169 // fast path, got a simple key
1170 char *key = dec->cur;
1171 int len = p - key;
1172 dec->cur = p + 1;
1173
1174 decode_ws (dec); EXPECT_CH (':');
1175
1176 decode_ws (dec);
1177 value = decode_sv (dec);
1178 if (!value)
986 goto fail; 1179 goto fail;
1180
1181 hv_store (hv, key, len, value, 0);
1182
1183 break;
1184 }
1185
1186 ++p;
987 } 1187 }
988 1188 }
989 hv_store_ent (hv, key, value, 0);
990 SvREFCNT_dec (key);
991 1189
992 decode_ws (dec); 1190 decode_ws (dec);
993 1191
994 if (*dec->cur == '}') 1192 if (*dec->cur == '}')
995 { 1193 {
999 1197
1000 if (*dec->cur != ',') 1198 if (*dec->cur != ',')
1001 ERR (", or } expected while parsing object/hash"); 1199 ERR (", or } expected while parsing object/hash");
1002 1200
1003 ++dec->cur; 1201 ++dec->cur;
1202
1203 decode_ws (dec);
1204
1205 if (*dec->cur == '}' && dec->json.flags & F_RELAXED)
1206 {
1207 ++dec->cur;
1208 break;
1209 }
1004 } 1210 }
1005 1211
1006 DEC_DEC_DEPTH; 1212 DEC_DEC_DEPTH;
1007 return newRV_noinc ((SV *)hv); 1213 sv = newRV_noinc ((SV *)hv);
1214
1215 // check filter callbacks
1216 if (dec->json.flags & F_HOOK)
1217 {
1218 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1219 {
1220 HE *cb, *he;
1221
1222 hv_iterinit (hv);
1223 he = hv_iternext (hv);
1224 hv_iterinit (hv);
1225
1226 // the next line creates a mortal sv each time its called.
1227 // might want to optimise this for common cases.
1228 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1229
1230 if (cb)
1231 {
1232 dSP;
1233 int count;
1234
1235 ENTER; SAVETMPS; PUSHMARK (SP);
1236 XPUSHs (HeVAL (he));
1237
1238 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1239
1240 if (count == 1)
1241 {
1242 sv = newSVsv (POPs);
1243 FREETMPS; LEAVE;
1244 return sv;
1245 }
1246
1247 FREETMPS; LEAVE;
1248 }
1249 }
1250
1251 if (dec->json.cb_object)
1252 {
1253 dSP;
1254 int count;
1255
1256 ENTER; SAVETMPS; PUSHMARK (SP);
1257 XPUSHs (sv_2mortal (sv));
1258
1259 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1260
1261 if (count == 1)
1262 {
1263 sv = newSVsv (POPs);
1264 FREETMPS; LEAVE;
1265 return sv;
1266 }
1267
1268 SvREFCNT_inc (sv);
1269 FREETMPS; LEAVE;
1270 }
1271 }
1272
1273 return sv;
1008 1274
1009fail: 1275fail:
1010 SvREFCNT_dec (hv); 1276 SvREFCNT_dec (hv);
1011 DEC_DEC_DEPTH; 1277 DEC_DEC_DEPTH;
1012 return 0; 1278 return 0;
1013} 1279}
1014 1280
1015static SV * 1281static SV *
1016decode_sv (dec_t *dec) 1282decode_sv (dec_t *dec)
1017{ 1283{
1018 decode_ws (dec);
1019
1020 // the beauty of JSON: you need exactly one character lookahead 1284 // the beauty of JSON: you need exactly one character lookahead
1021 // to parse anything. 1285 // to parse anything.
1022 switch (*dec->cur) 1286 switch (*dec->cur)
1023 { 1287 {
1024 case '"': ++dec->cur; return decode_str (dec); 1288 case '"': ++dec->cur; return decode_str (dec);
1032 1296
1033 case 't': 1297 case 't':
1034 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1298 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1035 { 1299 {
1036 dec->cur += 4; 1300 dec->cur += 4;
1301#if JSON_SLOW
1302 json_true = get_sv ("JSON::XS::true", 1); SvREADONLY_on (json_true);
1303#endif
1037 return SvREFCNT_inc (json_true); 1304 return SvREFCNT_inc (json_true);
1038 } 1305 }
1039 else 1306 else
1040 ERR ("'true' expected"); 1307 ERR ("'true' expected");
1041 1308
1043 1310
1044 case 'f': 1311 case 'f':
1045 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1312 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1046 { 1313 {
1047 dec->cur += 5; 1314 dec->cur += 5;
1315#if JSON_SLOW
1316 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1317#endif
1048 return SvREFCNT_inc (json_false); 1318 return SvREFCNT_inc (json_false);
1049 } 1319 }
1050 else 1320 else
1051 ERR ("'false' expected"); 1321 ERR ("'false' expected");
1052 1322
1071fail: 1341fail:
1072 return 0; 1342 return 0;
1073} 1343}
1074 1344
1075static SV * 1345static SV *
1076decode_json (SV *string, U32 flags, UV *offset_return) 1346decode_json (SV *string, JSON *json, UV *offset_return)
1077{ 1347{
1078 dec_t dec; 1348 dec_t dec;
1079 UV offset; 1349 UV offset;
1080 SV *sv; 1350 SV *sv;
1081 1351
1082 SvGETMAGIC (string); 1352 SvGETMAGIC (string);
1083 SvUPGRADE (string, SVt_PV); 1353 SvUPGRADE (string, SVt_PV);
1084 1354
1355 if (json->flags & F_MAXSIZE && SvCUR (string) > DEC_SIZE (json->flags))
1356 croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1357 (unsigned long)SvCUR (string), (unsigned long)DEC_SIZE (json->flags));
1358
1085 if (flags & F_UTF8) 1359 if (json->flags & F_UTF8)
1086 sv_utf8_downgrade (string, 0); 1360 sv_utf8_downgrade (string, 0);
1087 else 1361 else
1088 sv_utf8_upgrade (string); 1362 sv_utf8_upgrade (string);
1089 1363
1090 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1364 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1091 1365
1092 dec.flags = flags; 1366 dec.json = *json;
1093 dec.cur = SvPVX (string); 1367 dec.cur = SvPVX (string);
1094 dec.end = SvEND (string); 1368 dec.end = SvEND (string);
1095 dec.err = 0; 1369 dec.err = 0;
1096 dec.depth = 0; 1370 dec.depth = 0;
1097 dec.maxdepth = DEC_DEPTH (dec.flags); 1371 dec.maxdepth = DEC_DEPTH (dec.json.flags);
1372
1373 if (dec.json.cb_object || dec.json.cb_sk_object)
1374 dec.json.flags |= F_HOOK;
1098 1375
1099 *dec.end = 0; // this should basically be a nop, too, but make sure it's there 1376 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1377
1378 decode_ws (&dec);
1100 sv = decode_sv (&dec); 1379 sv = decode_sv (&dec);
1101 1380
1102 if (!(offset_return || !sv)) 1381 if (!(offset_return || !sv))
1103 { 1382 {
1104 // check for trailing garbage 1383 // check for trailing garbage
1112 } 1391 }
1113 } 1392 }
1114 1393
1115 if (offset_return || !sv) 1394 if (offset_return || !sv)
1116 { 1395 {
1117 offset = dec.flags & F_UTF8 1396 offset = dec.json.flags & F_UTF8
1118 ? dec.cur - SvPVX (string) 1397 ? dec.cur - SvPVX (string)
1119 : utf8_distance (dec.cur, SvPVX (string)); 1398 : utf8_distance (dec.cur, SvPVX (string));
1120 1399
1121 if (offset_return) 1400 if (offset_return)
1122 *offset_return = offset; 1401 *offset_return = offset;
1141 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1420 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1142 } 1421 }
1143 1422
1144 sv = sv_2mortal (sv); 1423 sv = sv_2mortal (sv);
1145 1424
1146 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1425 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
1147 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)"); 1426 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1148 1427
1149 return sv; 1428 return sv;
1150} 1429}
1151 1430
1163 i >= '0' && i <= '9' ? i - '0' 1442 i >= '0' && i <= '9' ? i - '0'
1164 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1443 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1165 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1444 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1166 : -1; 1445 : -1;
1167 1446
1168 json_stash = gv_stashpv ("JSON::XS", 1); 1447 json_stash = gv_stashpv ("JSON::XS" , 1);
1448 json_boolean_stash = gv_stashpv ("JSON::XS::Boolean", 1);
1169 1449
1170 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true ); 1450 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1171 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false); 1451 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1172} 1452}
1173 1453
1174PROTOTYPES: DISABLE 1454PROTOTYPES: DISABLE
1175 1455
1176SV *new (char *dummy) 1456void CLONE (...)
1177 CODE: 1457 CODE:
1178 RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash); 1458 json_stash = 0;
1459 json_boolean_stash = 0;
1460
1461void new (char *klass)
1462 PPCODE:
1463{
1464 SV *pv = NEWSV (0, sizeof (JSON));
1465 SvPOK_only (pv);
1466 Zero (SvPVX (pv), 1, JSON);
1467 ((JSON *)SvPVX (pv))->flags = F_DEFAULT;
1468 XPUSHs (sv_2mortal (sv_bless (
1469 newRV_noinc (pv),
1470 strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1)
1471 )));
1472}
1473
1474void ascii (JSON *self, int enable = 1)
1475 ALIAS:
1476 ascii = F_ASCII
1477 latin1 = F_LATIN1
1478 utf8 = F_UTF8
1479 indent = F_INDENT
1480 canonical = F_CANONICAL
1481 space_before = F_SPACE_BEFORE
1482 space_after = F_SPACE_AFTER
1483 pretty = F_PRETTY
1484 allow_nonref = F_ALLOW_NONREF
1485 shrink = F_SHRINK
1486 allow_blessed = F_ALLOW_BLESSED
1487 convert_blessed = F_CONV_BLESSED
1488 relaxed = F_RELAXED
1489 PPCODE:
1490{
1491 if (enable)
1492 self->flags |= ix;
1493 else
1494 self->flags &= ~ix;
1495
1496 XPUSHs (ST (0));
1497}
1498
1499void get_ascii (JSON *self)
1500 ALIAS:
1501 get_ascii = F_ASCII
1502 get_latin1 = F_LATIN1
1503 get_utf8 = F_UTF8
1504 get_indent = F_INDENT
1505 get_canonical = F_CANONICAL
1506 get_space_before = F_SPACE_BEFORE
1507 get_space_after = F_SPACE_AFTER
1508 get_allow_nonref = F_ALLOW_NONREF
1509 get_shrink = F_SHRINK
1510 get_allow_blessed = F_ALLOW_BLESSED
1511 get_convert_blessed = F_CONV_BLESSED
1512 get_relaxed = F_RELAXED
1513 PPCODE:
1514 XPUSHs (boolSV (self->flags & ix));
1515
1516void max_depth (JSON *self, UV max_depth = 0x80000000UL)
1517 PPCODE:
1518{
1519 UV log2 = 0;
1520
1521 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1522
1523 while ((1UL << log2) < max_depth)
1524 ++log2;
1525
1526 self->flags = self->flags & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1527
1528 XPUSHs (ST (0));
1529}
1530
1531U32 get_max_depth (JSON *self)
1532 CODE:
1533 RETVAL = DEC_DEPTH (self->flags);
1179 OUTPUT: 1534 OUTPUT:
1180 RETVAL 1535 RETVAL
1181 1536
1182SV *ascii (SV *self, int enable = 1) 1537void max_size (JSON *self, UV max_size = 0)
1183 ALIAS: 1538 PPCODE:
1184 ascii = F_ASCII 1539{
1185 latin1 = F_LATIN1 1540 UV log2 = 0;
1186 utf8 = F_UTF8 1541
1187 indent = F_INDENT 1542 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
1188 canonical = F_CANONICAL 1543 if (max_size == 1) max_size = 2;
1189 space_before = F_SPACE_BEFORE 1544
1190 space_after = F_SPACE_AFTER 1545 while ((1UL << log2) < max_size)
1191 pretty = F_PRETTY 1546 ++log2;
1192 allow_nonref = F_ALLOW_NONREF 1547
1193 shrink = F_SHRINK 1548 self->flags = self->flags & ~F_MAXSIZE | (log2 << S_MAXSIZE);
1549
1550 XPUSHs (ST (0));
1551}
1552
1553int get_max_size (JSON *self)
1194 CODE: 1554 CODE:
1195{ 1555 RETVAL = DEC_SIZE (self->flags);
1196 UV *uv = SvJSON (self);
1197 if (enable)
1198 *uv |= ix;
1199 else
1200 *uv &= ~ix;
1201
1202 RETVAL = newSVsv (self);
1203}
1204 OUTPUT: 1556 OUTPUT:
1205 RETVAL 1557 RETVAL
1206 1558
1207SV *max_depth (SV *self, UV max_depth = 0x80000000UL) 1559void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
1208 CODE:
1209{
1210 UV *uv = SvJSON (self);
1211 UV log2 = 0;
1212
1213 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1214
1215 while ((1UL << log2) < max_depth)
1216 ++log2;
1217
1218 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1219
1220 RETVAL = newSVsv (self);
1221}
1222 OUTPUT:
1223 RETVAL
1224
1225void encode (SV *self, SV *scalar)
1226 PPCODE: 1560 PPCODE:
1227 XPUSHs (encode_json (scalar, *SvJSON (self))); 1561{
1562 SvREFCNT_dec (self->cb_object);
1563 self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
1228 1564
1229void decode (SV *self, SV *jsonstr) 1565 XPUSHs (ST (0));
1566}
1567
1568void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
1230 PPCODE: 1569 PPCODE:
1570{
1571 if (!self->cb_sk_object)
1572 self->cb_sk_object = newHV ();
1573
1574 if (SvOK (cb))
1575 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
1576 else
1577 {
1578 hv_delete_ent (self->cb_sk_object, key, G_DISCARD, 0);
1579
1580 if (!HvKEYS (self->cb_sk_object))
1581 {
1582 SvREFCNT_dec (self->cb_sk_object);
1583 self->cb_sk_object = 0;
1584 }
1585 }
1586
1587 XPUSHs (ST (0));
1588}
1589
1590void encode (JSON *self, SV *scalar)
1591 PPCODE:
1592 XPUSHs (encode_json (scalar, self));
1593
1594void decode (JSON *self, SV *jsonstr)
1595 PPCODE:
1231 XPUSHs (decode_json (jsonstr, *SvJSON (self), 0)); 1596 XPUSHs (decode_json (jsonstr, self, 0));
1232 1597
1233void decode_prefix (SV *self, SV *jsonstr) 1598void decode_prefix (JSON *self, SV *jsonstr)
1234 PPCODE: 1599 PPCODE:
1235{ 1600{
1236 UV offset; 1601 UV offset;
1237 EXTEND (SP, 2); 1602 EXTEND (SP, 2);
1238 PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); 1603 PUSHs (decode_json (jsonstr, self, &offset));
1239 PUSHs (sv_2mortal (newSVuv (offset))); 1604 PUSHs (sv_2mortal (newSVuv (offset)));
1240} 1605}
1241 1606
1607void DESTROY (JSON *self)
1608 CODE:
1609 SvREFCNT_dec (self->cb_sk_object);
1610 SvREFCNT_dec (self->cb_object);
1611
1242PROTOTYPES: ENABLE 1612PROTOTYPES: ENABLE
1243 1613
1244void to_json (SV *scalar) 1614void encode_json (SV *scalar)
1245 ALIAS:
1246 objToJson = 0
1247 PPCODE: 1615 PPCODE:
1616{
1617 JSON json = { F_DEFAULT | F_UTF8 };
1248 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8)); 1618 XPUSHs (encode_json (scalar, &json));
1619}
1249 1620
1250void from_json (SV *jsonstr) 1621void decode_json (SV *jsonstr)
1251 ALIAS:
1252 jsonToObj = 0
1253 PPCODE: 1622 PPCODE:
1623{
1624 JSON json = { F_DEFAULT | F_UTF8 };
1254 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0)); 1625 XPUSHs (decode_json (jsonstr, &json, 0));
1626}
1255 1627

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines