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.42 by root, Sat Jun 23 22:56:08 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::
74static SV *json_true, *json_false;
75
76typedef struct {
77 U32 flags;
78 SV *cb_object;
79 HV *cb_sk_object;
80} JSON;
60 81
61///////////////////////////////////////////////////////////////////////////// 82/////////////////////////////////////////////////////////////////////////////
62// utility functions 83// utility functions
63 84
64static UV * 85INLINE void
65SvJSON (SV *sv)
66{
67 if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
68 croak ("object is not of type JSON::XS");
69
70 return &SvUVX (SvRV (sv));
71}
72
73static void
74shrink (SV *sv) 86shrink (SV *sv)
75{ 87{
76 sv_utf8_downgrade (sv, 1); 88 sv_utf8_downgrade (sv, 1);
77 if (SvLEN (sv) > SvCUR (sv) + 1) 89 if (SvLEN (sv) > SvCUR (sv) + 1)
78 { 90 {
87// 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
88// case of an error. 100// case of an error.
89// we special-case "safe" characters from U+80 .. U+7FF, 101// we special-case "safe" characters from U+80 .. U+7FF,
90// but use the very good perl function to parse anything else. 102// but use the very good perl function to parse anything else.
91// note that we never call this function for a ascii codepoints 103// note that we never call this function for a ascii codepoints
92inline UV 104INLINE UV
93decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen) 105decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
94{ 106{
95 if (expect_false (s[0] > 0xdf || s[0] < 0xc2)) 107 if (expect_false (s[0] > 0xdf || s[0] < 0xc2))
96 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY); 108 return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
97 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf) 109 else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf)
113typedef struct 125typedef struct
114{ 126{
115 char *cur; // SvPVX (sv) + current output position 127 char *cur; // SvPVX (sv) + current output position
116 char *end; // SvEND (sv) 128 char *end; // SvEND (sv)
117 SV *sv; // result scalar 129 SV *sv; // result scalar
118 U32 flags; // F_* 130 JSON json;
119 U32 indent; // indentation level 131 U32 indent; // indentation level
120 U32 maxdepth; // max. indentation/recursion level 132 U32 maxdepth; // max. indentation/recursion level
133 UV limit; // escape character values >= this value when encoding
121} enc_t; 134} enc_t;
122 135
123inline void 136INLINE void
124need (enc_t *enc, STRLEN len) 137need (enc_t *enc, STRLEN len)
125{ 138{
126 if (expect_false (enc->cur + len >= enc->end)) 139 if (expect_false (enc->cur + len >= enc->end))
127 { 140 {
128 STRLEN cur = enc->cur - SvPVX (enc->sv); 141 STRLEN cur = enc->cur - SvPVX (enc->sv);
130 enc->cur = SvPVX (enc->sv) + cur; 143 enc->cur = SvPVX (enc->sv) + cur;
131 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1; 144 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
132 } 145 }
133} 146}
134 147
135inline void 148INLINE void
136encode_ch (enc_t *enc, char ch) 149encode_ch (enc_t *enc, char ch)
137{ 150{
138 need (enc, 1); 151 need (enc, 1);
139 *enc->cur++ = ch; 152 *enc->cur++ = ch;
140} 153}
194 { 207 {
195 uch = ch; 208 uch = ch;
196 clen = 1; 209 clen = 1;
197 } 210 }
198 211
199 if (uch > 0x10FFFFUL) 212 if (uch < 0x20 || uch >= enc->limit)
200 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
201
202 if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF))
203 { 213 {
204 if (uch > 0xFFFFUL) 214 if (uch > 0xFFFFUL)
205 { 215 {
216 if (uch > 0x10FFFFUL)
217 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
218
206 need (enc, len += 11); 219 need (enc, len += 11);
207 sprintf (enc->cur, "\\u%04x\\u%04x", 220 sprintf (enc->cur, "\\u%04x\\u%04x",
208 (int)((uch - 0x10000) / 0x400 + 0xD800), 221 (int)((uch - 0x10000) / 0x400 + 0xD800),
209 (int)((uch - 0x10000) % 0x400 + 0xDC00)); 222 (int)((uch - 0x10000) % 0x400 + 0xDC00));
210 enc->cur += 12; 223 enc->cur += 12;
221 *enc->cur++ = hexdigit [(uch >> 0) & 15]; 234 *enc->cur++ = hexdigit [(uch >> 0) & 15];
222 } 235 }
223 236
224 str += clen; 237 str += clen;
225 } 238 }
226 else if (enc->flags & F_LATIN1) 239 else if (enc->json.flags & F_LATIN1)
227 { 240 {
228 *enc->cur++ = uch; 241 *enc->cur++ = uch;
229 str += clen; 242 str += clen;
230 } 243 }
231 else if (is_utf8) 244 else if (is_utf8)
249 262
250 --len; 263 --len;
251 } 264 }
252} 265}
253 266
254inline void 267INLINE void
255encode_indent (enc_t *enc) 268encode_indent (enc_t *enc)
256{ 269{
257 if (enc->flags & F_INDENT) 270 if (enc->json.flags & F_INDENT)
258 { 271 {
259 int spaces = enc->indent * INDENT_STEP; 272 int spaces = enc->indent * INDENT_STEP;
260 273
261 need (enc, spaces); 274 need (enc, spaces);
262 memset (enc->cur, ' ', spaces); 275 memset (enc->cur, ' ', spaces);
263 enc->cur += spaces; 276 enc->cur += spaces;
264 } 277 }
265} 278}
266 279
267inline void 280INLINE void
268encode_space (enc_t *enc) 281encode_space (enc_t *enc)
269{ 282{
270 need (enc, 1); 283 need (enc, 1);
271 encode_ch (enc, ' '); 284 encode_ch (enc, ' ');
272} 285}
273 286
274inline void 287INLINE void
275encode_nl (enc_t *enc) 288encode_nl (enc_t *enc)
276{ 289{
277 if (enc->flags & F_INDENT) 290 if (enc->json.flags & F_INDENT)
278 { 291 {
279 need (enc, 1); 292 need (enc, 1);
280 encode_ch (enc, '\n'); 293 encode_ch (enc, '\n');
281 } 294 }
282} 295}
283 296
284inline void 297INLINE void
285encode_comma (enc_t *enc) 298encode_comma (enc_t *enc)
286{ 299{
287 encode_ch (enc, ','); 300 encode_ch (enc, ',');
288 301
289 if (enc->flags & F_INDENT) 302 if (enc->json.flags & F_INDENT)
290 encode_nl (enc); 303 encode_nl (enc);
291 else if (enc->flags & F_SPACE_AFTER) 304 else if (enc->json.flags & F_SPACE_AFTER)
292 encode_space (enc); 305 encode_space (enc);
293} 306}
294 307
295static void encode_sv (enc_t *enc, SV *sv); 308static void encode_sv (enc_t *enc, SV *sv);
296 309
300 int i, len = av_len (av); 313 int i, len = av_len (av);
301 314
302 if (enc->indent >= enc->maxdepth) 315 if (enc->indent >= enc->maxdepth)
303 croak ("data structure too deep (hit recursion limit)"); 316 croak ("data structure too deep (hit recursion limit)");
304 317
305 encode_ch (enc, '['); encode_nl (enc); 318 encode_ch (enc, '[');
306 ++enc->indent; 319
320 if (len >= 0)
321 {
322 encode_nl (enc); ++enc->indent;
307 323
308 for (i = 0; i <= len; ++i) 324 for (i = 0; i <= len; ++i)
309 { 325 {
326 SV **svp = av_fetch (av, i, 0);
327
310 encode_indent (enc); 328 encode_indent (enc);
311 encode_sv (enc, *av_fetch (av, i, 0));
312 329
330 if (svp)
331 encode_sv (enc, *svp);
332 else
333 encode_str (enc, "null", 4, 0);
334
313 if (i < len) 335 if (i < len)
314 encode_comma (enc); 336 encode_comma (enc);
315 } 337 }
316 338
339 encode_nl (enc); --enc->indent; encode_indent (enc);
340 }
341
317 encode_nl (enc); 342 encode_ch (enc, ']');
318
319 --enc->indent;
320 encode_indent (enc); encode_ch (enc, ']');
321} 343}
322 344
323static void 345static void
324encode_he (enc_t *enc, HE *he) 346encode_hk (enc_t *enc, HE *he)
325{ 347{
326 encode_ch (enc, '"'); 348 encode_ch (enc, '"');
327 349
328 if (HeKLEN (he) == HEf_SVKEY) 350 if (HeKLEN (he) == HEf_SVKEY)
329 { 351 {
339 else 361 else
340 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he)); 362 encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
341 363
342 encode_ch (enc, '"'); 364 encode_ch (enc, '"');
343 365
344 if (enc->flags & F_SPACE_BEFORE) encode_space (enc); 366 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
345 encode_ch (enc, ':'); 367 encode_ch (enc, ':');
346 if (enc->flags & F_SPACE_AFTER ) encode_space (enc); 368 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
347 encode_sv (enc, HeVAL (he));
348} 369}
349 370
350// compare hash entries, used when all keys are bytestrings 371// compare hash entries, used when all keys are bytestrings
351static int 372static int
352he_cmp_fast (const void *a_, const void *b_) 373he_cmp_fast (const void *a_, const void *b_)
357 HE *b = *(HE **)b_; 378 HE *b = *(HE **)b_;
358 379
359 STRLEN la = HeKLEN (a); 380 STRLEN la = HeKLEN (a);
360 STRLEN lb = HeKLEN (b); 381 STRLEN lb = HeKLEN (b);
361 382
362 if (!(cmp = memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb))) 383 if (!(cmp = memcmp (HeKEY (b), HeKEY (a), lb < la ? lb : la)))
363 cmp = la - lb; 384 cmp = lb - la;
364 385
365 return cmp; 386 return cmp;
366} 387}
367 388
368// 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
369static int 390static int
370he_cmp_slow (const void *a, const void *b) 391he_cmp_slow (const void *a, const void *b)
371{ 392{
372 return sv_cmp (HeSVKEY_force (*(HE **)a), HeSVKEY_force (*(HE **)b)); 393 return sv_cmp (HeSVKEY_force (*(HE **)b), HeSVKEY_force (*(HE **)a));
373} 394}
374 395
375static void 396static void
376encode_hv (enc_t *enc, HV *hv) 397encode_hv (enc_t *enc, HV *hv)
377{ 398{
399 HE *he;
378 int count, i; 400 int count;
379 401
380 if (enc->indent >= enc->maxdepth) 402 if (enc->indent >= enc->maxdepth)
381 croak ("data structure too deep (hit recursion limit)"); 403 croak ("data structure too deep (hit recursion limit)");
382 404
383 encode_ch (enc, '{'); encode_nl (enc); ++enc->indent; 405 encode_ch (enc, '{');
384 406
385 if ((count = hv_iterinit (hv)))
386 {
387 // for canonical output we have to sort by keys first 407 // for canonical output we have to sort by keys first
388 // actually, this is mostly due to the stupid so-called 408 // actually, this is mostly due to the stupid so-called
389 // security workaround added somewhere in 5.8.x. 409 // security workaround added somewhere in 5.8.x.
390 // that randomises hash orderings 410 // that randomises hash orderings
391 if (enc->flags & F_CANONICAL) 411 if (enc->json.flags & F_CANONICAL)
412 {
413 int count = hv_iterinit (hv);
414
415 if (SvMAGICAL (hv))
392 { 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 {
393 int fast = 1; 431 int i, fast = 1;
394 HE *he;
395#if defined(__BORLANDC__) || defined(_MSC_VER) 432#if defined(__BORLANDC__) || defined(_MSC_VER)
396 HE **hes = _alloca (count * sizeof (HE)); 433 HE **hes = _alloca (count * sizeof (HE));
397#else 434#else
398 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
399#endif 436#endif
426 463
427 FREETMPS; 464 FREETMPS;
428 LEAVE; 465 LEAVE;
429 } 466 }
430 467
431 for (i = 0; i < count; ++i) 468 encode_nl (enc); ++enc->indent;
469
470 while (count--)
432 { 471 {
433 encode_indent (enc); 472 encode_indent (enc);
473 he = hes [count];
434 encode_he (enc, hes [i]); 474 encode_hk (enc, he);
475 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
435 476
436 if (i < count - 1) 477 if (count)
437 encode_comma (enc); 478 encode_comma (enc);
438 } 479 }
439 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 {
440 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);
441 } 531 }
442 else 532 else
443 { 533 {
444 HE *he = hv_iternext (hv); 534#if 0
445 535 if (0 && sv_derived_from (rv, "JSON::Literal"))
446 for (;;)
447 { 536 {
448 encode_indent (enc); 537 // not yet
449 encode_he (enc, he);
450
451 if (!(he = hv_iternext (hv)))
452 break;
453
454 encode_comma (enc);
455 } 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);
456 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
457 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))));
458 } 579 }
459 } 580 }
460
461 --enc->indent; encode_indent (enc); encode_ch (enc, '}');
462}
463
464// encode objects, arrays and special \0=false and \1=true values.
465static void
466encode_rv (enc_t *enc, SV *sv)
467{
468 svtype svt;
469
470 SvGETMAGIC (sv);
471 svt = SvTYPE (sv);
472
473 if (svt == SVt_PVHV) 581 else if (svt == SVt_PVHV)
474 encode_hv (enc, (HV *)sv); 582 encode_hv (enc, (HV *)sv);
475 else if (svt == SVt_PVAV) 583 else if (svt == SVt_PVAV)
476 encode_av (enc, (AV *)sv); 584 encode_av (enc, (AV *)sv);
477 else if (svt < SVt_PVAV) 585 else if (svt < SVt_PVAV)
478 { 586 {
479 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')
480 encode_str (enc, "false", 5, 0); 593 encode_str (enc, "false", 5, 0);
481 else if (SvNIOK (sv) && SvIV (sv) == 1)
482 encode_str (enc, "true", 4, 0);
483 else 594 else
484 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",
485 SvPV_nolen (sv_2mortal (newRV_inc (sv)))); 596 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
486 } 597 }
487 else 598 else
557 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",
558 SvPV_nolen (sv), SvFLAGS (sv)); 669 SvPV_nolen (sv), SvFLAGS (sv));
559} 670}
560 671
561static SV * 672static SV *
562encode_json (SV *scalar, U32 flags) 673encode_json (SV *scalar, JSON *json)
563{ 674{
564 enc_t enc; 675 enc_t enc;
565 676
566 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar)) 677 if (!(json->flags & F_ALLOW_NONREF) && !SvROK (scalar))
567 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)");
568 679
569 enc.flags = flags; 680 enc.json = *json;
570 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE)); 681 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
571 enc.cur = SvPVX (enc.sv); 682 enc.cur = SvPVX (enc.sv);
572 enc.end = SvEND (enc.sv); 683 enc.end = SvEND (enc.sv);
573 enc.indent = 0; 684 enc.indent = 0;
574 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;
575 689
576 SvPOK_only (enc.sv); 690 SvPOK_only (enc.sv);
577 encode_sv (&enc, scalar); 691 encode_sv (&enc, scalar);
578 692
579 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv)); 693 SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
580 *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
581 695
582 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8))) 696 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
583 SvUTF8_on (enc.sv); 697 SvUTF8_on (enc.sv);
584 698
585 if (enc.flags & F_SHRINK) 699 if (enc.json.flags & F_SHRINK)
586 shrink (enc.sv); 700 shrink (enc.sv);
587 701
588 return enc.sv; 702 return enc.sv;
589} 703}
590 704
595typedef struct 709typedef struct
596{ 710{
597 char *cur; // current parser pointer 711 char *cur; // current parser pointer
598 char *end; // end of input string 712 char *end; // end of input string
599 const char *err; // parse error, if != 0 713 const char *err; // parse error, if != 0
600 U32 flags; // F_* 714 JSON json;
601 U32 depth; // recursion depth 715 U32 depth; // recursion depth
602 U32 maxdepth; // recursion depth limit 716 U32 maxdepth; // recursion depth limit
603} dec_t; 717} dec_t;
604 718
605inline 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
606decode_ws (dec_t *dec) 729decode_ws (dec_t *dec)
607{ 730{
608 for (;;) 731 for (;;)
609 { 732 {
610 char ch = *dec->cur; 733 char ch = *dec->cur;
611 734
612 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 }
613 || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)) 747 else if (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)
614 break; 748 break; // parse error, but let higher level handle it, gives better error messages
615 749
616 ++dec->cur; 750 ++dec->cur;
617 } 751 }
618} 752}
619 753
868 is_nv = 1; 1002 is_nv = 1;
869 } 1003 }
870 1004
871 if (!is_nv) 1005 if (!is_nv)
872 { 1006 {
1007 int len = dec->cur - start;
1008
873 // 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
874 if (*start == '-') 1010 if (*start == '-')
875 switch (dec->cur - start) 1011 switch (len)
876 { 1012 {
877 case 2: return newSViv (-( start [1] - '0' * 1)); 1013 case 2: return newSViv (-( start [1] - '0' * 1));
878 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11)); 1014 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11));
879 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));
880 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));
881 } 1018 }
882 else 1019 else
883 switch (dec->cur - start) 1020 switch (len)
884 { 1021 {
885 case 1: return newSViv ( start [0] - '0' * 1); 1022 case 1: return newSViv ( start [0] - '0' * 1);
886 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11); 1023 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
887 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);
888 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);
889 } 1027 }
890 1028
891 { 1029 {
892 UV uv; 1030 UV uv;
893 int numtype = grok_number (start, dec->cur - start, &uv); 1031 int numtype = grok_number (start, len, &uv);
894 if (numtype & IS_NUMBER_IN_UV) 1032 if (numtype & IS_NUMBER_IN_UV)
895 if (numtype & IS_NUMBER_NEG) 1033 if (numtype & IS_NUMBER_NEG)
896 { 1034 {
897 if (uv < (UV)IV_MIN) 1035 if (uv < (UV)IV_MIN)
898 return newSViv (-(IV)uv); 1036 return newSViv (-(IV)uv);
899 } 1037 }
900 else 1038 else
901 return newSVuv (uv); 1039 return newSVuv (uv);
902
903 // here would likely be the place for bigint support
904 } 1040 }
905 }
906 1041
907 // 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
908 return newSVnv (Atof (start)); 1058 return newSVnv (Atof (start));
909 1059
910fail: 1060fail:
911 return 0; 1061 return 0;
912} 1062}
942 1092
943 if (*dec->cur != ',') 1093 if (*dec->cur != ',')
944 ERR (", or ] expected while parsing array"); 1094 ERR (", or ] expected while parsing array");
945 1095
946 ++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 }
947 } 1105 }
948 1106
949 DEC_DEC_DEPTH; 1107 DEC_DEC_DEPTH;
950 return newRV_noinc ((SV *)av); 1108 return newRV_noinc ((SV *)av);
951 1109
956} 1114}
957 1115
958static SV * 1116static SV *
959decode_hv (dec_t *dec) 1117decode_hv (dec_t *dec)
960{ 1118{
1119 SV *sv;
961 HV *hv = newHV (); 1120 HV *hv = newHV ();
962 1121
963 DEC_INC_DEPTH; 1122 DEC_INC_DEPTH;
964 decode_ws (dec); 1123 decode_ws (dec);
965 1124
966 if (*dec->cur == '}') 1125 if (*dec->cur == '}')
967 ++dec->cur; 1126 ++dec->cur;
968 else 1127 else
969 for (;;) 1128 for (;;)
970 { 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 {
971 SV *key, *value; 1138 SV *value;
1139 char *p = dec->cur;
1140 char *e = p + 24; // only try up to 24 bytes
972 1141
973 decode_ws (dec); EXPECT_CH ('"'); 1142 for (;;)
974
975 key = decode_str (dec);
976 if (!key)
977 goto fail;
978
979 decode_ws (dec); EXPECT_CH (':');
980
981 value = decode_sv (dec);
982 if (!value)
983 { 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);
984 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)
985 goto fail; 1179 goto fail;
1180
1181 hv_store (hv, key, len, value, 0);
1182
1183 break;
1184 }
1185
1186 ++p;
986 } 1187 }
987 1188 }
988 hv_store_ent (hv, key, value, 0);
989 SvREFCNT_dec (key);
990 1189
991 decode_ws (dec); 1190 decode_ws (dec);
992 1191
993 if (*dec->cur == '}') 1192 if (*dec->cur == '}')
994 { 1193 {
998 1197
999 if (*dec->cur != ',') 1198 if (*dec->cur != ',')
1000 ERR (", or } expected while parsing object/hash"); 1199 ERR (", or } expected while parsing object/hash");
1001 1200
1002 ++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 }
1003 } 1210 }
1004 1211
1005 DEC_DEC_DEPTH; 1212 DEC_DEC_DEPTH;
1006 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;
1007 1274
1008fail: 1275fail:
1009 SvREFCNT_dec (hv); 1276 SvREFCNT_dec (hv);
1010 DEC_DEC_DEPTH; 1277 DEC_DEC_DEPTH;
1011 return 0; 1278 return 0;
1012} 1279}
1013 1280
1014static SV * 1281static SV *
1015decode_sv (dec_t *dec) 1282decode_sv (dec_t *dec)
1016{ 1283{
1017 decode_ws (dec);
1018
1019 // the beauty of JSON: you need exactly one character lookahead 1284 // the beauty of JSON: you need exactly one character lookahead
1020 // to parse anything. 1285 // to parse anything.
1021 switch (*dec->cur) 1286 switch (*dec->cur)
1022 { 1287 {
1023 case '"': ++dec->cur; return decode_str (dec); 1288 case '"': ++dec->cur; return decode_str (dec);
1031 1296
1032 case 't': 1297 case 't':
1033 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4)) 1298 if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1034 { 1299 {
1035 dec->cur += 4; 1300 dec->cur += 4;
1036 return newSViv (1); 1301#if JSON_SLOW
1302 json_true = get_sv ("JSON::XS::true", 1); SvREADONLY_on (json_true);
1303#endif
1304 return SvREFCNT_inc (json_true);
1037 } 1305 }
1038 else 1306 else
1039 ERR ("'true' expected"); 1307 ERR ("'true' expected");
1040 1308
1041 break; 1309 break;
1042 1310
1043 case 'f': 1311 case 'f':
1044 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5)) 1312 if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1045 { 1313 {
1046 dec->cur += 5; 1314 dec->cur += 5;
1047 return newSViv (0); 1315#if JSON_SLOW
1316 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1317#endif
1318 return SvREFCNT_inc (json_false);
1048 } 1319 }
1049 else 1320 else
1050 ERR ("'false' expected"); 1321 ERR ("'false' expected");
1051 1322
1052 break; 1323 break;
1070fail: 1341fail:
1071 return 0; 1342 return 0;
1072} 1343}
1073 1344
1074static SV * 1345static SV *
1075decode_json (SV *string, U32 flags, UV *offset_return) 1346decode_json (SV *string, JSON *json, UV *offset_return)
1076{ 1347{
1077 dec_t dec; 1348 dec_t dec;
1078 UV offset; 1349 UV offset;
1079 SV *sv; 1350 SV *sv;
1080 1351
1081 SvGETMAGIC (string); 1352 SvGETMAGIC (string);
1082 SvUPGRADE (string, SVt_PV); 1353 SvUPGRADE (string, SVt_PV);
1083 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
1084 if (flags & F_UTF8) 1359 if (json->flags & F_UTF8)
1085 sv_utf8_downgrade (string, 0); 1360 sv_utf8_downgrade (string, 0);
1086 else 1361 else
1087 sv_utf8_upgrade (string); 1362 sv_utf8_upgrade (string);
1088 1363
1089 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP 1364 SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1090 1365
1091 dec.flags = flags; 1366 dec.json = *json;
1092 dec.cur = SvPVX (string); 1367 dec.cur = SvPVX (string);
1093 dec.end = SvEND (string); 1368 dec.end = SvEND (string);
1094 dec.err = 0; 1369 dec.err = 0;
1095 dec.depth = 0; 1370 dec.depth = 0;
1096 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;
1097 1375
1098 *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);
1099 sv = decode_sv (&dec); 1379 sv = decode_sv (&dec);
1100 1380
1101 if (!(offset_return || !sv)) 1381 if (!(offset_return || !sv))
1102 { 1382 {
1103 // check for trailing garbage 1383 // check for trailing garbage
1111 } 1391 }
1112 } 1392 }
1113 1393
1114 if (offset_return || !sv) 1394 if (offset_return || !sv)
1115 { 1395 {
1116 offset = dec.flags & F_UTF8 1396 offset = dec.json.flags & F_UTF8
1117 ? dec.cur - SvPVX (string) 1397 ? dec.cur - SvPVX (string)
1118 : utf8_distance (dec.cur, SvPVX (string)); 1398 : utf8_distance (dec.cur, SvPVX (string));
1119 1399
1120 if (offset_return) 1400 if (offset_return)
1121 *offset_return = offset; 1401 *offset_return = offset;
1140 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)"); 1420 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1141 } 1421 }
1142 1422
1143 sv = sv_2mortal (sv); 1423 sv = sv_2mortal (sv);
1144 1424
1145 if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv)) 1425 if (!(dec.json.flags & F_ALLOW_NONREF) && !SvROK (sv))
1146 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)");
1147 1427
1148 return sv; 1428 return sv;
1149} 1429}
1150 1430
1162 i >= '0' && i <= '9' ? i - '0' 1442 i >= '0' && i <= '9' ? i - '0'
1163 : i >= 'a' && i <= 'f' ? i - 'a' + 10 1443 : i >= 'a' && i <= 'f' ? i - 'a' + 10
1164 : i >= 'A' && i <= 'F' ? i - 'A' + 10 1444 : i >= 'A' && i <= 'F' ? i - 'A' + 10
1165 : -1; 1445 : -1;
1166 1446
1167 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);
1449
1450 json_true = get_sv ("JSON::XS::true" , 1); SvREADONLY_on (json_true );
1451 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1168} 1452}
1169 1453
1170PROTOTYPES: DISABLE 1454PROTOTYPES: DISABLE
1171 1455
1172SV *new (char *dummy) 1456void CLONE (...)
1173 CODE: 1457 CODE:
1174 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);
1175 OUTPUT: 1534 OUTPUT:
1176 RETVAL 1535 RETVAL
1177 1536
1178SV *ascii (SV *self, int enable = 1) 1537void max_size (JSON *self, UV max_size = 0)
1179 ALIAS: 1538 PPCODE:
1180 ascii = F_ASCII 1539{
1181 latin1 = F_LATIN1 1540 UV log2 = 0;
1182 utf8 = F_UTF8 1541
1183 indent = F_INDENT 1542 if (max_size > 0x80000000UL) max_size = 0x80000000UL;
1184 canonical = F_CANONICAL 1543 if (max_size == 1) max_size = 2;
1185 space_before = F_SPACE_BEFORE 1544
1186 space_after = F_SPACE_AFTER 1545 while ((1UL << log2) < max_size)
1187 pretty = F_PRETTY 1546 ++log2;
1188 allow_nonref = F_ALLOW_NONREF 1547
1189 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)
1190 CODE: 1554 CODE:
1191{ 1555 RETVAL = DEC_SIZE (self->flags);
1192 UV *uv = SvJSON (self);
1193 if (enable)
1194 *uv |= ix;
1195 else
1196 *uv &= ~ix;
1197
1198 RETVAL = newSVsv (self);
1199}
1200 OUTPUT: 1556 OUTPUT:
1201 RETVAL 1557 RETVAL
1202 1558
1203SV *max_depth (SV *self, UV max_depth = 0x80000000UL) 1559void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
1204 CODE:
1205{
1206 UV *uv = SvJSON (self);
1207 UV log2 = 0;
1208
1209 if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1210
1211 while ((1UL << log2) < max_depth)
1212 ++log2;
1213
1214 *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1215
1216 RETVAL = newSVsv (self);
1217}
1218 OUTPUT:
1219 RETVAL
1220
1221void encode (SV *self, SV *scalar)
1222 PPCODE: 1560 PPCODE:
1223 XPUSHs (encode_json (scalar, *SvJSON (self))); 1561{
1562 SvREFCNT_dec (self->cb_object);
1563 self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
1224 1564
1225void 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)
1226 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:
1227 XPUSHs (decode_json (jsonstr, *SvJSON (self), 0)); 1596 XPUSHs (decode_json (jsonstr, self, 0));
1228 1597
1229void decode_prefix (SV *self, SV *jsonstr) 1598void decode_prefix (JSON *self, SV *jsonstr)
1230 PPCODE: 1599 PPCODE:
1231{ 1600{
1232 UV offset; 1601 UV offset;
1233 EXTEND (SP, 2); 1602 EXTEND (SP, 2);
1234 PUSHs (decode_json (jsonstr, *SvJSON (self), &offset)); 1603 PUSHs (decode_json (jsonstr, self, &offset));
1235 PUSHs (sv_2mortal (newSVuv (offset))); 1604 PUSHs (sv_2mortal (newSVuv (offset)));
1236} 1605}
1237 1606
1607void DESTROY (JSON *self)
1608 CODE:
1609 SvREFCNT_dec (self->cb_sk_object);
1610 SvREFCNT_dec (self->cb_object);
1611
1238PROTOTYPES: ENABLE 1612PROTOTYPES: ENABLE
1239 1613
1240void to_json (SV *scalar) 1614void encode_json (SV *scalar)
1241 ALIAS:
1242 objToJson = 0
1243 PPCODE: 1615 PPCODE:
1616{
1617 JSON json = { F_DEFAULT | F_UTF8 };
1244 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8)); 1618 XPUSHs (encode_json (scalar, &json));
1619}
1245 1620
1246void from_json (SV *jsonstr) 1621void decode_json (SV *jsonstr)
1247 ALIAS:
1248 jsonToObj = 0
1249 PPCODE: 1622 PPCODE:
1623{
1624 JSON json = { F_DEFAULT | F_UTF8 };
1250 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8, 0)); 1625 XPUSHs (decode_json (jsonstr, &json, 0));
1626}
1251 1627

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines