ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.xs
Revision: 1.130
Committed: Sat Nov 26 06:09:29 2016 UTC (7 years, 5 months ago) by root
Branch: MAIN
Changes since 1.129: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #include "EXTERN.h"
2     #include "perl.h"
3     #include "XSUB.h"
4    
5 root 1.56 #include <assert.h>
6     #include <string.h>
7     #include <stdlib.h>
8     #include <stdio.h>
9 root 1.75 #include <limits.h>
10 root 1.56 #include <float.h>
11 root 1.130 #include <inttypes.h>
12 root 1.26
13     #if defined(__BORLANDC__) || defined(_MSC_VER)
14     # define snprintf _snprintf // C compilers have this in stdio.h
15     #endif
16 root 1.1
17 root 1.41 // some old perls do not have this, try to make it work, no
18 root 1.99 // guarantees, though. if it breaks, you get to keep the pieces.
19 root 1.41 #ifndef UTF8_MAXBYTES
20     # define UTF8_MAXBYTES 13
21     #endif
22    
23 root 1.122 // 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 root 1.102 // three extra for rounding, sign, and end of string
35     #define IVUV_MAXCHARS (sizeof (UV) * CHAR_BIT * 28 / 93 + 3)
36 root 1.75
37 root 1.44 #define F_ASCII 0x00000001UL
38     #define F_LATIN1 0x00000002UL
39     #define F_UTF8 0x00000004UL
40     #define F_INDENT 0x00000008UL
41     #define F_CANONICAL 0x00000010UL
42     #define F_SPACE_BEFORE 0x00000020UL
43     #define F_SPACE_AFTER 0x00000040UL
44     #define F_ALLOW_NONREF 0x00000100UL
45     #define F_SHRINK 0x00000200UL
46     #define F_ALLOW_BLESSED 0x00000400UL
47 root 1.49 #define F_CONV_BLESSED 0x00000800UL
48 root 1.63 #define F_RELAXED 0x00001000UL
49 root 1.84 #define F_ALLOW_UNKNOWN 0x00002000UL
50 root 1.119 #define F_ALLOW_TAGS 0x00004000UL
51 root 1.49 #define F_HOOK 0x00080000UL // some hooks exist, so slow-path processing
52 root 1.18
53 root 1.2 #define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
54 root 1.1
55     #define INIT_SIZE 32 // initial scalar size to be allocated
56 root 1.12 #define INDENT_STEP 3 // spaces per indentation level
57    
58 root 1.38 #define SHORT_STRING_LEN 16384 // special-case strings of up to this size
59 root 1.1
60 root 1.108 #define DECODE_WANTS_OCTETS(json) ((json)->flags & F_UTF8)
61    
62 root 1.1 #define SB do {
63     #define SE } while (0)
64    
65 root 1.35 #if __GNUC__ >= 3
66 root 1.71 # define expect(expr,value) __builtin_expect ((expr), (value))
67     # define INLINE static inline
68 root 1.35 #else
69     # define expect(expr,value) (expr)
70 root 1.71 # define INLINE static
71 root 1.35 #endif
72    
73     #define expect_false(expr) expect ((expr) != 0, 0)
74     #define expect_true(expr) expect ((expr) != 0, 1)
75    
76 root 1.72 #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 root 1.85 #define ERR_NESTING_EXCEEDED "json text or perl structure exceeds maximum nesting level (max_depth set too low?)"
81    
82 root 1.57 #ifdef USE_ITHREADS
83     # define JSON_SLOW 1
84 root 1.59 # define JSON_STASH (json_stash ? json_stash : gv_stashpv ("JSON::XS", 1))
85 root 1.126 # define BOOL_STASH (bool_stash ? bool_stash : gv_stashpv ("Types::Serialiser::Boolean", 1))
86 root 1.57 #else
87 root 1.58 # define JSON_SLOW 0
88 root 1.59 # define JSON_STASH json_stash
89 root 1.126 # define BOOL_STASH bool_stash
90 root 1.57 #endif
91    
92 root 1.115 // the amount of HEs to allocate on the stack, when sorting keys
93     #define STACK_HES 64
94    
95 root 1.126 static HV *json_stash, *bool_stash; // JSON::XS::, Types::Serialiser::Boolean::
96     static SV *bool_true, *bool_false, *sv_json;
97 root 1.1
98 root 1.77 enum {
99     INCR_M_WS = 0, // initial whitespace skipping, must be 0
100     INCR_M_STR, // inside string
101     INCR_M_BS, // inside backslash
102 root 1.103 INCR_M_C0, // inside comment in initial whitespace sequence
103     INCR_M_C1, // inside comment in other places
104 root 1.77 INCR_M_JSON // outside anything, count nesting
105     };
106    
107 root 1.88 #define INCR_DONE(json) ((json)->incr_nest <= 0 && (json)->incr_mode == INCR_M_JSON)
108 root 1.77
109 root 1.48 typedef struct {
110 root 1.47 U32 flags;
111 root 1.85 U32 max_depth;
112     STRLEN max_size;
113    
114 root 1.52 SV *cb_object;
115     HV *cb_sk_object;
116 root 1.77
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 root 1.88 int incr_nest; // {[]}-nesting level
121 root 1.85 unsigned char incr_mode;
122 root 1.48 } JSON;
123 root 1.47
124 root 1.85 INLINE void
125     json_init (JSON *json)
126     {
127     Zero (json, 1, JSON);
128     json->max_depth = 512;
129     }
130    
131 root 1.12 /////////////////////////////////////////////////////////////////////////////
132     // utility functions
133 root 1.1
134 root 1.83 INLINE SV *
135     get_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    
145 root 1.71 INLINE void
146 root 1.7 shrink (SV *sv)
147     {
148     sv_utf8_downgrade (sv, 1);
149 root 1.87
150 root 1.12 if (SvLEN (sv) > SvCUR (sv) + 1)
151     {
152 root 1.7 #ifdef SvPV_shrink_to_cur
153 root 1.12 SvPV_shrink_to_cur (sv);
154     #elif defined (SvPV_renew)
155     SvPV_renew (sv, SvCUR (sv) + 1);
156 root 1.7 #endif
157 root 1.12 }
158 root 1.7 }
159    
160 root 1.13 // decode an utf-8 character and return it, or (UV)-1 in
161     // case of an error.
162     // we special-case "safe" characters from U+80 .. U+7FF,
163     // but use the very good perl function to parse anything else.
164     // note that we never call this function for a ascii codepoints
165 root 1.71 INLINE UV
166 root 1.13 decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
167     {
168 root 1.72 if (expect_true (len >= 2
169     && IN_RANGE_INC (char, s[0], 0xc2, 0xdf)
170     && IN_RANGE_INC (char, s[1], 0x80, 0xbf)))
171 root 1.13 {
172     *clen = 2;
173     return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
174     }
175     else
176 root 1.72 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
182     INLINE unsigned char *
183     encode_utf8 (unsigned char *s, UV ch)
184     {
185 root 1.74 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 root 1.72
200     return s;
201 root 1.13 }
202    
203 root 1.96 // convert offset pointer to character index, sv must be string
204     static STRLEN
205     ptr_to_index (SV *sv, char *offset)
206     {
207     return SvUTF8 (sv)
208     ? utf8_distance (offset, SvPVX (sv))
209     : offset - SvPVX (sv);
210     }
211    
212 root 1.1 /////////////////////////////////////////////////////////////////////////////
213 root 1.104 // fp hell
214    
215     // scan a group of digits, and a trailing exponent
216     static void
217 root 1.106 json_atof_scan1 (const char *s, NV *accum, int *expo, int postdp, int maxdepth)
218 root 1.104 {
219     UV uaccum = 0;
220     int eaccum = 0;
221    
222 root 1.106 // 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 root 1.104 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 root 1.106 json_atof_scan1 (s, accum, expo, 1, maxdepth);
238 root 1.104 }
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 root 1.106 json_atof_scan1 (s, accum, expo, postdp, maxdepth);
274 root 1.104 if (postdp) *expo += eaccum;
275    
276     break;
277     }
278     }
279    
280 root 1.105 // this relies greatly on the quality of the pow ()
281     // implementation of the platform, but a good
282     // implementation is hard to beat.
283 root 1.110 // (IEEE 754 conformant ones are required to be exact)
284 root 1.104 if (postdp) *expo -= eaccum;
285 root 1.105 *accum += uaccum * Perl_pow (10., *expo);
286 root 1.104 *expo += eaccum;
287     }
288    
289     static NV
290     json_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 root 1.106 // a recursion depth of ten gives us >>500 bits
303     json_atof_scan1 (s, &accum, &expo, 0, 10);
304 root 1.104
305     return neg ? -accum : accum;
306     }
307 root 1.126
308     // target of scalar reference is bool? -1 == nope, 0 == false, 1 == true
309     static int
310     ref_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
330     static int
331     json_nonref (SV *scalar)
332     {
333     if (!SvROK (scalar))
334     return 1;
335    
336     scalar = SvRV (scalar);
337    
338 root 1.128 if (SvTYPE (scalar) >= SVt_PVMG)
339     {
340     if (SvSTASH (scalar) == bool_stash)
341     return 1;
342 root 1.126
343 root 1.128 if (!SvOBJECT (scalar) && ref_bool_type (scalar) >= 0)
344     return 1;
345     }
346 root 1.126
347     return 0;
348     }
349    
350 root 1.104 /////////////////////////////////////////////////////////////////////////////
351 root 1.12 // encoder
352    
353     // structure used for encoding JSON
354     typedef struct
355     {
356     char *cur; // SvPVX (sv) + current output position
357     char *end; // SvEND (sv)
358     SV *sv; // result scalar
359 root 1.48 JSON json;
360 root 1.18 U32 indent; // indentation level
361 root 1.71 UV limit; // escape character values >= this value when encoding
362 root 1.12 } enc_t;
363 root 1.1
364 root 1.71 INLINE void
365 root 1.1 need (enc_t *enc, STRLEN len)
366     {
367 root 1.130 if (expect_false ((uintptr_t)(enc->end - enc->cur) < len))
368 root 1.1 {
369 root 1.93 STRLEN cur = enc->cur - (char *)SvPVX (enc->sv);
370 root 1.95 SvGROW (enc->sv, cur + (len < (cur >> 2) ? cur >> 2 : len) + 1);
371 root 1.1 enc->cur = SvPVX (enc->sv) + cur;
372 root 1.27 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
373 root 1.1 }
374     }
375    
376 root 1.71 INLINE void
377 root 1.1 encode_ch (enc_t *enc, char ch)
378     {
379     need (enc, 1);
380     *enc->cur++ = ch;
381     }
382    
383     static void
384     encode_str (enc_t *enc, char *str, STRLEN len, int is_utf8)
385     {
386     char *end = str + len;
387    
388 root 1.4 need (enc, len);
389    
390 root 1.1 while (str < end)
391     {
392     unsigned char ch = *(unsigned char *)str;
393 root 1.4
394 root 1.35 if (expect_true (ch >= 0x20 && ch < 0x80)) // most common case
395 root 1.4 {
396 root 1.35 if (expect_false (ch == '"')) // but with slow exceptions
397 root 1.6 {
398     need (enc, len += 1);
399     *enc->cur++ = '\\';
400     *enc->cur++ = '"';
401     }
402 root 1.35 else if (expect_false (ch == '\\'))
403 root 1.6 {
404     need (enc, len += 1);
405     *enc->cur++ = '\\';
406     *enc->cur++ = '\\';
407     }
408     else
409     *enc->cur++ = ch;
410    
411 root 1.4 ++str;
412 root 1.1 }
413     else
414     {
415 root 1.6 switch (ch)
416 root 1.1 {
417 root 1.6 case '\010': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'b'; ++str; break;
418     case '\011': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 't'; ++str; break;
419     case '\012': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'n'; ++str; break;
420     case '\014': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'f'; ++str; break;
421     case '\015': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'r'; ++str; break;
422 root 1.1
423 root 1.6 default:
424 root 1.1 {
425 root 1.6 STRLEN clen;
426     UV uch;
427    
428     if (is_utf8)
429     {
430 root 1.13 uch = decode_utf8 (str, end - str, &clen);
431 root 1.6 if (clen == (STRLEN)-1)
432 root 1.9 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str);
433 root 1.6 }
434     else
435     {
436     uch = ch;
437     clen = 1;
438     }
439    
440 root 1.72 if (uch < 0x80/*0x20*/ || uch >= enc->limit)
441 root 1.6 {
442 root 1.74 if (uch >= 0x10000UL)
443 root 1.6 {
444 root 1.74 if (uch >= 0x110000UL)
445 root 1.71 croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
446    
447 root 1.6 need (enc, len += 11);
448     sprintf (enc->cur, "\\u%04x\\u%04x",
449 root 1.10 (int)((uch - 0x10000) / 0x400 + 0xD800),
450     (int)((uch - 0x10000) % 0x400 + 0xDC00));
451 root 1.6 enc->cur += 12;
452     }
453     else
454     {
455     need (enc, len += 5);
456     *enc->cur++ = '\\';
457     *enc->cur++ = 'u';
458 root 1.91 *enc->cur++ = PL_hexdigit [ uch >> 12 ];
459     *enc->cur++ = PL_hexdigit [(uch >> 8) & 15];
460     *enc->cur++ = PL_hexdigit [(uch >> 4) & 15];
461     *enc->cur++ = PL_hexdigit [(uch >> 0) & 15];
462 root 1.6 }
463 root 1.4
464 root 1.6 str += clen;
465     }
466 root 1.47 else if (enc->json.flags & F_LATIN1)
467 root 1.30 {
468     *enc->cur++ = uch;
469     str += clen;
470     }
471 root 1.6 else if (is_utf8)
472     {
473     need (enc, len += clen);
474     do
475     {
476     *enc->cur++ = *str++;
477     }
478     while (--clen);
479     }
480     else
481     {
482 root 1.28 need (enc, len += UTF8_MAXBYTES - 1); // never more than 11 bytes needed
483 root 1.72 enc->cur = encode_utf8 (enc->cur, uch);
484 root 1.6 ++str;
485     }
486 root 1.5 }
487 root 1.4 }
488 root 1.1 }
489    
490     --len;
491     }
492     }
493    
494 root 1.71 INLINE void
495 root 1.12 encode_indent (enc_t *enc)
496     {
497 root 1.47 if (enc->json.flags & F_INDENT)
498 root 1.12 {
499     int spaces = enc->indent * INDENT_STEP;
500    
501     need (enc, spaces);
502     memset (enc->cur, ' ', spaces);
503     enc->cur += spaces;
504     }
505     }
506    
507 root 1.71 INLINE void
508 root 1.12 encode_space (enc_t *enc)
509     {
510     need (enc, 1);
511     encode_ch (enc, ' ');
512     }
513    
514 root 1.71 INLINE void
515 root 1.12 encode_nl (enc_t *enc)
516     {
517 root 1.47 if (enc->json.flags & F_INDENT)
518 root 1.12 {
519     need (enc, 1);
520     encode_ch (enc, '\n');
521     }
522     }
523    
524 root 1.71 INLINE void
525 root 1.12 encode_comma (enc_t *enc)
526     {
527     encode_ch (enc, ',');
528 root 1.1
529 root 1.47 if (enc->json.flags & F_INDENT)
530 root 1.12 encode_nl (enc);
531 root 1.47 else if (enc->json.flags & F_SPACE_AFTER)
532 root 1.12 encode_space (enc);
533     }
534 root 1.1
535     static void encode_sv (enc_t *enc, SV *sv);
536    
537     static void
538     encode_av (enc_t *enc, AV *av)
539     {
540     int i, len = av_len (av);
541    
542 root 1.85 if (enc->indent >= enc->json.max_depth)
543     croak (ERR_NESTING_EXCEEDED);
544 root 1.21
545 root 1.65 encode_ch (enc, '[');
546 root 1.117
547 root 1.65 if (len >= 0)
548 root 1.1 {
549 root 1.65 encode_nl (enc); ++enc->indent;
550 root 1.55
551 root 1.65 for (i = 0; i <= len; ++i)
552     {
553     SV **svp = av_fetch (av, i, 0);
554 root 1.55
555 root 1.65 encode_indent (enc);
556 root 1.1
557 root 1.65 if (svp)
558     encode_sv (enc, *svp);
559     else
560     encode_str (enc, "null", 4, 0);
561 root 1.1
562 root 1.65 if (i < len)
563     encode_comma (enc);
564     }
565 root 1.1
566 root 1.65 encode_nl (enc); --enc->indent; encode_indent (enc);
567     }
568 root 1.117
569 root 1.65 encode_ch (enc, ']');
570 root 1.1 }
571    
572     static void
573 root 1.61 encode_hk (enc_t *enc, HE *he)
574 root 1.1 {
575     encode_ch (enc, '"');
576    
577     if (HeKLEN (he) == HEf_SVKEY)
578     {
579     SV *sv = HeSVKEY (he);
580     STRLEN len;
581 root 1.4 char *str;
582 root 1.117
583 root 1.4 SvGETMAGIC (sv);
584     str = SvPV (sv, len);
585 root 1.1
586     encode_str (enc, str, len, SvUTF8 (sv));
587     }
588     else
589     encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
590    
591     encode_ch (enc, '"');
592    
593 root 1.47 if (enc->json.flags & F_SPACE_BEFORE) encode_space (enc);
594 root 1.1 encode_ch (enc, ':');
595 root 1.47 if (enc->json.flags & F_SPACE_AFTER ) encode_space (enc);
596 root 1.1 }
597    
598     // compare hash entries, used when all keys are bytestrings
599     static int
600     he_cmp_fast (const void *a_, const void *b_)
601     {
602     int cmp;
603    
604     HE *a = *(HE **)a_;
605     HE *b = *(HE **)b_;
606    
607     STRLEN la = HeKLEN (a);
608     STRLEN lb = HeKLEN (b);
609    
610 root 1.61 if (!(cmp = memcmp (HeKEY (b), HeKEY (a), lb < la ? lb : la)))
611     cmp = lb - la;
612 root 1.1
613     return cmp;
614     }
615    
616     // compare hash entries, used when some keys are sv's or utf-x
617     static int
618     he_cmp_slow (const void *a, const void *b)
619     {
620 root 1.61 return sv_cmp (HeSVKEY_force (*(HE **)b), HeSVKEY_force (*(HE **)a));
621 root 1.1 }
622    
623     static void
624     encode_hv (enc_t *enc, HV *hv)
625     {
626 root 1.61 HE *he;
627 root 1.1
628 root 1.85 if (enc->indent >= enc->json.max_depth)
629     croak (ERR_NESTING_EXCEEDED);
630 root 1.21
631 root 1.65 encode_ch (enc, '{');
632 root 1.1
633 root 1.61 // for canonical output we have to sort by keys first
634     // actually, this is mostly due to the stupid so-called
635 root 1.92 // security workaround added somewhere in 5.8.x
636 root 1.61 // that randomises hash orderings
637 root 1.98 if (enc->json.flags & F_CANONICAL && !SvRMAGICAL (hv))
638 root 1.1 {
639 root 1.61 int count = hv_iterinit (hv);
640    
641     if (SvMAGICAL (hv))
642     {
643     // need to count by iterating. could improve by dynamically building the vector below
644     // but I don't care for the speed of this special case.
645     // note also that we will run into undefined behaviour when the two iterations
646     // do not result in the same count, something I might care for in some later release.
647    
648     count = 0;
649     while (hv_iternext (hv))
650     ++count;
651    
652     hv_iterinit (hv);
653     }
654    
655     if (count)
656 root 1.1 {
657 root 1.61 int i, fast = 1;
658 root 1.115 HE *hes_stack [STACK_HES];
659     HE **hes = hes_stack;
660 root 1.117
661 root 1.115 // allocate larger arrays on the heap
662     if (count > STACK_HES)
663     {
664     SV *sv = sv_2mortal (NEWSV (0, count * sizeof (*hes)));
665     hes = (HE **)SvPVX (sv);
666     }
667 root 1.1
668     i = 0;
669     while ((he = hv_iternext (hv)))
670     {
671     hes [i++] = he;
672     if (HeKLEN (he) < 0 || HeKUTF8 (he))
673     fast = 0;
674     }
675    
676     assert (i == count);
677    
678     if (fast)
679     qsort (hes, count, sizeof (HE *), he_cmp_fast);
680     else
681     {
682 root 1.8 // hack to forcefully disable "use bytes"
683     COP cop = *PL_curcop;
684 root 1.1 cop.op_private = 0;
685 root 1.8
686     ENTER;
687     SAVETMPS;
688    
689     SAVEVPTR (PL_curcop);
690 root 1.1 PL_curcop = &cop;
691    
692     qsort (hes, count, sizeof (HE *), he_cmp_slow);
693 root 1.8
694 root 1.1 FREETMPS;
695 root 1.8 LEAVE;
696 root 1.1 }
697    
698 root 1.65 encode_nl (enc); ++enc->indent;
699    
700 root 1.61 while (count--)
701 root 1.1 {
702 root 1.12 encode_indent (enc);
703 root 1.61 he = hes [count];
704     encode_hk (enc, he);
705 root 1.62 encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
706 root 1.1
707 root 1.61 if (count)
708 root 1.12 encode_comma (enc);
709 root 1.1 }
710 root 1.65
711     encode_nl (enc); --enc->indent; encode_indent (enc);
712 root 1.1 }
713 root 1.61 }
714     else
715     {
716     if (hv_iterinit (hv) || SvMAGICAL (hv))
717     if ((he = hv_iternext (hv)))
718 root 1.65 {
719     encode_nl (enc); ++enc->indent;
720    
721     for (;;)
722     {
723     encode_indent (enc);
724     encode_hk (enc, he);
725     encode_sv (enc, expect_false (SvMAGICAL (hv)) ? hv_iterval (hv, he) : HeVAL (he));
726    
727     if (!(he = hv_iternext (hv)))
728     break;
729 root 1.1
730 root 1.65 encode_comma (enc);
731     }
732 root 1.1
733 root 1.65 encode_nl (enc); --enc->indent; encode_indent (enc);
734     }
735 root 1.61 }
736 root 1.1
737 root 1.65 encode_ch (enc, '}');
738 root 1.1 }
739    
740 root 1.21 // encode objects, arrays and special \0=false and \1=true values.
741     static void
742     encode_rv (enc_t *enc, SV *sv)
743     {
744 root 1.25 svtype svt;
745 root 1.120 GV *method;
746 root 1.25
747 root 1.21 SvGETMAGIC (sv);
748 root 1.25 svt = SvTYPE (sv);
749 root 1.21
750 root 1.44 if (expect_false (SvOBJECT (sv)))
751     {
752 root 1.119 HV *stash = SvSTASH (sv);
753 root 1.57
754 root 1.126 if (stash == bool_stash)
755 root 1.44 {
756 root 1.51 if (SvIV (sv))
757     encode_str (enc, "true", 4, 0);
758     else
759 root 1.44 encode_str (enc, "false", 5, 0);
760     }
761 root 1.120 else if ((enc->json.flags & F_ALLOW_TAGS) && (method = gv_fetchmethod_autoload (stash, "FREEZE", 0)))
762 root 1.44 {
763 root 1.120 int count;
764     dSP;
765    
766 root 1.125 ENTER; SAVETMPS;
767     SAVESTACK_POS ();
768     PUSHMARK (SP);
769 root 1.120 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 root 1.123 croak ("%s::FREEZE method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
781 root 1.120
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 root 1.119
789 root 1.120 while (count)
790 root 1.44 {
791 root 1.120 encode_sv (enc, SP[1 - count--]);
792 root 1.119
793 root 1.120 if (count)
794     encode_ch (enc, ',');
795     }
796 root 1.119
797 root 1.120 encode_ch (enc, ']');
798 root 1.119
799 root 1.120 FREETMPS; LEAVE;
800 root 1.119 }
801 root 1.120 else if ((enc->json.flags & F_CONV_BLESSED) && (method = gv_fetchmethod_autoload (stash, "TO_JSON", 0)))
802 root 1.119 {
803 root 1.120 dSP;
804 root 1.119
805 root 1.125 ENTER; SAVETMPS;
806     PUSHMARK (SP);
807 root 1.120 // we re-bless the reference to get overload and other niceties right
808     XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), stash));
809 root 1.119
810 root 1.120 // 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 root 1.44
819 root 1.120 sv = POPs;
820     PUTBACK;
821 root 1.53
822 root 1.120 encode_sv (enc, sv);
823 root 1.44
824 root 1.120 FREETMPS; LEAVE;
825 root 1.44 }
826 root 1.119 else if (enc->json.flags & F_ALLOW_BLESSED)
827     encode_str (enc, "null", 4, 0);
828     else
829 root 1.120 croak ("encountered object '%s', but neither allow_blessed, convert_blessed nor allow_tags settings are enabled (or TO_JSON/FREEZE method missing)",
830 root 1.119 SvPV_nolen (sv_2mortal (newRV_inc (sv))));
831 root 1.44 }
832     else if (svt == SVt_PVHV)
833 root 1.21 encode_hv (enc, (HV *)sv);
834     else if (svt == SVt_PVAV)
835     encode_av (enc, (AV *)sv);
836     else if (svt < SVt_PVAV)
837     {
838 root 1.126 int bool_type = ref_bool_type (sv);
839 root 1.50
840 root 1.126 if (bool_type == 1)
841 root 1.51 encode_str (enc, "true", 4, 0);
842 root 1.126 else if (bool_type == 0)
843 root 1.21 encode_str (enc, "false", 5, 0);
844 root 1.84 else if (enc->json.flags & F_ALLOW_UNKNOWN)
845     encode_str (enc, "null", 4, 0);
846 root 1.21 else
847     croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
848     SvPV_nolen (sv_2mortal (newRV_inc (sv))));
849     }
850 root 1.84 else if (enc->json.flags & F_ALLOW_UNKNOWN)
851     encode_str (enc, "null", 4, 0);
852 root 1.21 else
853     croak ("encountered %s, but JSON can only represent references to arrays or hashes",
854     SvPV_nolen (sv_2mortal (newRV_inc (sv))));
855     }
856    
857 root 1.1 static void
858     encode_sv (enc_t *enc, SV *sv)
859     {
860 root 1.4 SvGETMAGIC (sv);
861    
862 root 1.1 if (SvPOKp (sv))
863     {
864     STRLEN len;
865     char *str = SvPV (sv, len);
866     encode_ch (enc, '"');
867     encode_str (enc, str, len, SvUTF8 (sv));
868     encode_ch (enc, '"');
869     }
870     else if (SvNOKp (sv))
871     {
872 root 1.39 // trust that perl will do the right thing w.r.t. JSON syntax.
873 root 1.1 need (enc, NV_DIG + 32);
874     Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur);
875     enc->cur += strlen (enc->cur);
876     }
877     else if (SvIOKp (sv))
878     {
879 root 1.74 // we assume we can always read an IV as a UV and vice versa
880     // we assume two's complement
881     // we assume no aliasing issues in the union
882 root 1.75 if (SvIsUV (sv) ? SvUVX (sv) <= 59000
883     : SvIVX (sv) <= 59000 && SvIVX (sv) >= -59000)
884 root 1.35 {
885     // optimise the "small number case"
886     // code will likely be branchless and use only a single multiplication
887 root 1.74 // works for numbers up to 59074
888     I32 i = SvIVX (sv);
889 root 1.35 U32 u;
890 root 1.39 char digit, nz = 0;
891 root 1.35
892     need (enc, 6);
893    
894     *enc->cur = '-'; enc->cur += i < 0 ? 1 : 0;
895     u = i < 0 ? -i : i;
896    
897     // convert to 4.28 fixed-point representation
898     u = u * ((0xfffffff + 10000) / 10000); // 10**5, 5 fractional digits
899    
900 root 1.39 // now output digit by digit, each time masking out the integer part
901     // and multiplying by 5 while moving the decimal point one to the right,
902     // resulting in a net multiplication by 10.
903     // we always write the digit to memory but conditionally increment
904 root 1.75 // the pointer, to enable the use of conditional move instructions.
905     digit = u >> 28; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0xfffffffUL) * 5;
906     digit = u >> 27; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x7ffffffUL) * 5;
907     digit = u >> 26; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x3ffffffUL) * 5;
908     digit = u >> 25; *enc->cur = digit + '0'; enc->cur += (nz = nz || digit); u = (u & 0x1ffffffUL) * 5;
909 root 1.39 digit = u >> 24; *enc->cur = digit + '0'; enc->cur += 1; // correctly generate '0'
910 root 1.35 }
911 root 1.75 else
912     {
913     // large integer, use the (rather slow) snprintf way.
914     need (enc, IVUV_MAXCHARS);
915 root 1.114 enc->cur +=
916 root 1.75 SvIsUV(sv)
917     ? snprintf (enc->cur, IVUV_MAXCHARS, "%"UVuf, (UV)SvUVX (sv))
918     : snprintf (enc->cur, IVUV_MAXCHARS, "%"IVdf, (IV)SvIVX (sv));
919     }
920 root 1.1 }
921     else if (SvROK (sv))
922 root 1.21 encode_rv (enc, SvRV (sv));
923 root 1.84 else if (!SvOK (sv) || enc->json.flags & F_ALLOW_UNKNOWN)
924 root 1.1 encode_str (enc, "null", 4, 0);
925     else
926 root 1.117 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, check your input data",
927 root 1.113 SvPV_nolen (sv), (unsigned int)SvFLAGS (sv));
928 root 1.1 }
929    
930     static SV *
931 root 1.48 encode_json (SV *scalar, JSON *json)
932 root 1.1 {
933 root 1.25 enc_t enc;
934    
935 root 1.126 if (!(json->flags & F_ALLOW_NONREF) && json_nonref (scalar))
936 root 1.9 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
937 root 1.3
938 root 1.47 enc.json = *json;
939 root 1.12 enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
940     enc.cur = SvPVX (enc.sv);
941     enc.end = SvEND (enc.sv);
942     enc.indent = 0;
943 root 1.71 enc.limit = enc.json.flags & F_ASCII ? 0x000080UL
944     : enc.json.flags & F_LATIN1 ? 0x000100UL
945 root 1.74 : 0x110000UL;
946 root 1.1
947     SvPOK_only (enc.sv);
948     encode_sv (&enc, scalar);
949 root 1.100 encode_nl (&enc);
950 root 1.1
951     SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
952 root 1.27 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
953 root 1.6
954 root 1.47 if (!(enc.json.flags & (F_ASCII | F_LATIN1 | F_UTF8)))
955 root 1.30 SvUTF8_on (enc.sv);
956    
957 root 1.47 if (enc.json.flags & F_SHRINK)
958 root 1.7 shrink (enc.sv);
959    
960 root 1.1 return enc.sv;
961     }
962    
963     /////////////////////////////////////////////////////////////////////////////
964 root 1.12 // decoder
965 root 1.1
966 root 1.12 // structure used for decoding JSON
967     typedef struct
968     {
969     char *cur; // current parser pointer
970     char *end; // end of input string
971     const char *err; // parse error, if != 0
972 root 1.48 JSON json;
973 root 1.18 U32 depth; // recursion depth
974     U32 maxdepth; // recursion depth limit
975 root 1.12 } dec_t;
976    
977 root 1.71 INLINE void
978 root 1.64 decode_comment (dec_t *dec)
979     {
980     // only '#'-style comments allowed a.t.m.
981    
982     while (*dec->cur && *dec->cur != 0x0a && *dec->cur != 0x0d)
983     ++dec->cur;
984     }
985    
986 root 1.71 INLINE void
987 root 1.12 decode_ws (dec_t *dec)
988     {
989     for (;;)
990     {
991     char ch = *dec->cur;
992    
993 root 1.64 if (ch > 0x20)
994     {
995     if (expect_false (ch == '#'))
996     {
997     if (dec->json.flags & F_RELAXED)
998     decode_comment (dec);
999     else
1000     break;
1001     }
1002     else
1003     break;
1004     }
1005     else if (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09)
1006     break; // parse error, but let higher level handle it, gives better error messages
1007 root 1.63
1008 root 1.12 ++dec->cur;
1009 root 1.1 }
1010 root 1.12 }
1011 root 1.1
1012     #define ERR(reason) SB dec->err = reason; goto fail; SE
1013 root 1.18
1014 root 1.1 #define EXPECT_CH(ch) SB \
1015     if (*dec->cur != ch) \
1016     ERR (# ch " expected"); \
1017     ++dec->cur; \
1018     SE
1019    
1020 root 1.85 #define DEC_INC_DEPTH if (++dec->depth > dec->json.max_depth) ERR (ERR_NESTING_EXCEEDED)
1021 root 1.18 #define DEC_DEC_DEPTH --dec->depth
1022    
1023 root 1.1 static SV *decode_sv (dec_t *dec);
1024    
1025     static signed char decode_hexdigit[256];
1026    
1027     static UV
1028     decode_4hex (dec_t *dec)
1029     {
1030     signed char d1, d2, d3, d4;
1031 root 1.12 unsigned char *cur = (unsigned char *)dec->cur;
1032 root 1.1
1033 root 1.40 d1 = decode_hexdigit [cur [0]]; if (expect_false (d1 < 0)) ERR ("exactly four hexadecimal digits expected");
1034     d2 = decode_hexdigit [cur [1]]; if (expect_false (d2 < 0)) ERR ("exactly four hexadecimal digits expected");
1035     d3 = decode_hexdigit [cur [2]]; if (expect_false (d3 < 0)) ERR ("exactly four hexadecimal digits expected");
1036     d4 = decode_hexdigit [cur [3]]; if (expect_false (d4 < 0)) ERR ("exactly four hexadecimal digits expected");
1037 root 1.1
1038     dec->cur += 4;
1039    
1040     return ((UV)d1) << 12
1041     | ((UV)d2) << 8
1042     | ((UV)d3) << 4
1043     | ((UV)d4);
1044    
1045     fail:
1046     return (UV)-1;
1047     }
1048    
1049     static SV *
1050     decode_str (dec_t *dec)
1051     {
1052 root 1.12 SV *sv = 0;
1053 root 1.1 int utf8 = 0;
1054 root 1.38 char *dec_cur = dec->cur;
1055 root 1.1
1056 root 1.12 do
1057 root 1.1 {
1058 root 1.28 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES];
1059 root 1.12 char *cur = buf;
1060 root 1.1
1061 root 1.12 do
1062 root 1.1 {
1063 root 1.38 unsigned char ch = *(unsigned char *)dec_cur++;
1064 root 1.12
1065 root 1.35 if (expect_false (ch == '"'))
1066 root 1.12 {
1067 root 1.38 --dec_cur;
1068 root 1.12 break;
1069     }
1070 root 1.35 else if (expect_false (ch == '\\'))
1071 root 1.1 {
1072 root 1.38 switch (*dec_cur)
1073 root 1.1 {
1074 root 1.12 case '\\':
1075     case '/':
1076 root 1.38 case '"': *cur++ = *dec_cur++; break;
1077 root 1.12
1078 root 1.38 case 'b': ++dec_cur; *cur++ = '\010'; break;
1079     case 't': ++dec_cur; *cur++ = '\011'; break;
1080     case 'n': ++dec_cur; *cur++ = '\012'; break;
1081     case 'f': ++dec_cur; *cur++ = '\014'; break;
1082     case 'r': ++dec_cur; *cur++ = '\015'; break;
1083 root 1.1
1084 root 1.12 case 'u':
1085 root 1.1 {
1086 root 1.12 UV lo, hi;
1087 root 1.38 ++dec_cur;
1088 root 1.1
1089 root 1.38 dec->cur = dec_cur;
1090 root 1.12 hi = decode_4hex (dec);
1091 root 1.38 dec_cur = dec->cur;
1092 root 1.12 if (hi == (UV)-1)
1093     goto fail;
1094 root 1.1
1095 root 1.12 // possibly a surrogate pair
1096     if (hi >= 0xd800)
1097     if (hi < 0xdc00)
1098     {
1099 root 1.38 if (dec_cur [0] != '\\' || dec_cur [1] != 'u')
1100 root 1.12 ERR ("missing low surrogate character in surrogate pair");
1101    
1102 root 1.38 dec_cur += 2;
1103 root 1.12
1104 root 1.38 dec->cur = dec_cur;
1105 root 1.12 lo = decode_4hex (dec);
1106 root 1.38 dec_cur = dec->cur;
1107 root 1.12 if (lo == (UV)-1)
1108     goto fail;
1109    
1110     if (lo < 0xdc00 || lo >= 0xe000)
1111     ERR ("surrogate pair expected");
1112    
1113     hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000;
1114     }
1115     else if (hi < 0xe000)
1116     ERR ("missing high surrogate character in surrogate pair");
1117 root 1.1
1118 root 1.12 if (hi >= 0x80)
1119     {
1120     utf8 = 1;
1121 root 1.1
1122 root 1.72 cur = encode_utf8 (cur, hi);
1123 root 1.12 }
1124     else
1125     *cur++ = hi;
1126 root 1.1 }
1127 root 1.12 break;
1128    
1129     default:
1130 root 1.38 --dec_cur;
1131 root 1.12 ERR ("illegal backslash escape sequence in string");
1132     }
1133     }
1134 root 1.74 else if (expect_true (ch >= 0x20 && ch < 0x80))
1135 root 1.12 *cur++ = ch;
1136     else if (ch >= 0x80)
1137     {
1138 root 1.25 STRLEN clen;
1139    
1140 root 1.38 --dec_cur;
1141 root 1.1
1142 root 1.101 decode_utf8 (dec_cur, dec->end - dec_cur, &clen);
1143 root 1.12 if (clen == (STRLEN)-1)
1144     ERR ("malformed UTF-8 character in JSON string");
1145 root 1.1
1146 root 1.12 do
1147 root 1.38 *cur++ = *dec_cur++;
1148 root 1.12 while (--clen);
1149 root 1.5
1150 root 1.12 utf8 = 1;
1151 root 1.1 }
1152 root 1.124 else if (ch == '\t' && dec->json.flags & F_RELAXED)
1153     *cur++ = ch;
1154 root 1.12 else
1155 root 1.23 {
1156 root 1.38 --dec_cur;
1157 root 1.12
1158 root 1.23 if (!ch)
1159 root 1.24 ERR ("unexpected end of string while parsing JSON string");
1160 root 1.23 else
1161 root 1.24 ERR ("invalid character encountered while parsing JSON string");
1162 root 1.23 }
1163 root 1.1 }
1164 root 1.12 while (cur < buf + SHORT_STRING_LEN);
1165 root 1.1
1166 root 1.25 {
1167     STRLEN len = cur - buf;
1168 root 1.5
1169 root 1.25 if (sv)
1170     {
1171 root 1.95 STRLEN cur = SvCUR (sv);
1172    
1173     if (SvLEN (sv) <= cur + len)
1174     SvGROW (sv, cur + (len < (cur >> 2) ? cur >> 2 : len) + 1);
1175    
1176 root 1.25 memcpy (SvPVX (sv) + SvCUR (sv), buf, len);
1177     SvCUR_set (sv, SvCUR (sv) + len);
1178     }
1179     else
1180     sv = newSVpvn (buf, len);
1181     }
1182 root 1.1 }
1183 root 1.38 while (*dec_cur != '"');
1184 root 1.1
1185 root 1.38 ++dec_cur;
1186 root 1.1
1187 root 1.12 if (sv)
1188     {
1189     SvPOK_only (sv);
1190     *SvEND (sv) = 0;
1191 root 1.4
1192 root 1.12 if (utf8)
1193     SvUTF8_on (sv);
1194     }
1195     else
1196     sv = newSVpvn ("", 0);
1197 root 1.6
1198 root 1.38 dec->cur = dec_cur;
1199 root 1.1 return sv;
1200    
1201     fail:
1202 root 1.38 dec->cur = dec_cur;
1203 root 1.1 return 0;
1204     }
1205    
1206     static SV *
1207     decode_num (dec_t *dec)
1208     {
1209     int is_nv = 0;
1210     char *start = dec->cur;
1211    
1212     // [minus]
1213     if (*dec->cur == '-')
1214     ++dec->cur;
1215    
1216     if (*dec->cur == '0')
1217     {
1218     ++dec->cur;
1219     if (*dec->cur >= '0' && *dec->cur <= '9')
1220     ERR ("malformed number (leading zero must not be followed by another digit)");
1221     }
1222 root 1.5 else if (*dec->cur < '0' || *dec->cur > '9')
1223     ERR ("malformed number (no digits after initial minus)");
1224     else
1225     do
1226     {
1227     ++dec->cur;
1228     }
1229     while (*dec->cur >= '0' && *dec->cur <= '9');
1230 root 1.1
1231     // [frac]
1232     if (*dec->cur == '.')
1233     {
1234 root 1.5 ++dec->cur;
1235    
1236     if (*dec->cur < '0' || *dec->cur > '9')
1237     ERR ("malformed number (no digits after decimal point)");
1238 root 1.1
1239     do
1240     {
1241     ++dec->cur;
1242     }
1243     while (*dec->cur >= '0' && *dec->cur <= '9');
1244 root 1.5
1245     is_nv = 1;
1246 root 1.1 }
1247    
1248     // [exp]
1249     if (*dec->cur == 'e' || *dec->cur == 'E')
1250     {
1251 root 1.5 ++dec->cur;
1252 root 1.1
1253     if (*dec->cur == '-' || *dec->cur == '+')
1254     ++dec->cur;
1255    
1256 root 1.5 if (*dec->cur < '0' || *dec->cur > '9')
1257     ERR ("malformed number (no digits after exp sign)");
1258    
1259     do
1260     {
1261     ++dec->cur;
1262     }
1263     while (*dec->cur >= '0' && *dec->cur <= '9');
1264    
1265     is_nv = 1;
1266 root 1.1 }
1267    
1268     if (!is_nv)
1269     {
1270 root 1.56 int len = dec->cur - start;
1271    
1272 root 1.70 // special case the rather common 1..5-digit-int case
1273 root 1.35 if (*start == '-')
1274 root 1.56 switch (len)
1275 root 1.1 {
1276 root 1.97 case 2: return newSViv (-(IV)( start [1] - '0' * 1));
1277     case 3: return newSViv (-(IV)( start [1] * 10 + start [2] - '0' * 11));
1278     case 4: return newSViv (-(IV)( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
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));
1281 root 1.1 }
1282 root 1.35 else
1283 root 1.56 switch (len)
1284 root 1.35 {
1285 root 1.97 case 1: return newSViv ( start [0] - '0' * 1);
1286     case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
1287     case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
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);
1290 root 1.35 }
1291    
1292     {
1293     UV uv;
1294 root 1.56 int numtype = grok_number (start, len, &uv);
1295 root 1.35 if (numtype & IS_NUMBER_IN_UV)
1296     if (numtype & IS_NUMBER_NEG)
1297     {
1298     if (uv < (UV)IV_MIN)
1299     return newSViv (-(IV)uv);
1300     }
1301     else
1302     return newSVuv (uv);
1303 root 1.56 }
1304    
1305     len -= *start == '-' ? 1 : 0;
1306 root 1.40
1307 root 1.56 // does not fit into IV or UV, try NV
1308 root 1.104 if (len <= NV_DIG)
1309 root 1.56 // fits into NV without loss of precision
1310 root 1.104 return newSVnv (json_atof (start));
1311 root 1.56
1312     // everything else fails, convert it to a string
1313     return newSVpvn (start, dec->cur - start);
1314 root 1.1 }
1315    
1316 root 1.56 // loss of precision here
1317 root 1.104 return newSVnv (json_atof (start));
1318 root 1.1
1319     fail:
1320     return 0;
1321     }
1322    
1323     static SV *
1324     decode_av (dec_t *dec)
1325     {
1326     AV *av = newAV ();
1327    
1328 root 1.18 DEC_INC_DEPTH;
1329 root 1.12 decode_ws (dec);
1330 root 1.18
1331 root 1.5 if (*dec->cur == ']')
1332     ++dec->cur;
1333     else
1334     for (;;)
1335     {
1336     SV *value;
1337 root 1.1
1338 root 1.5 value = decode_sv (dec);
1339     if (!value)
1340     goto fail;
1341 root 1.1
1342 root 1.5 av_push (av, value);
1343 root 1.1
1344 root 1.12 decode_ws (dec);
1345 root 1.1
1346 root 1.5 if (*dec->cur == ']')
1347     {
1348     ++dec->cur;
1349     break;
1350     }
1351 root 1.117
1352 root 1.5 if (*dec->cur != ',')
1353     ERR (", or ] expected while parsing array");
1354 root 1.1
1355 root 1.5 ++dec->cur;
1356 root 1.63
1357     decode_ws (dec);
1358    
1359     if (*dec->cur == ']' && dec->json.flags & F_RELAXED)
1360     {
1361     ++dec->cur;
1362     break;
1363     }
1364 root 1.5 }
1365 root 1.1
1366 root 1.18 DEC_DEC_DEPTH;
1367 root 1.1 return newRV_noinc ((SV *)av);
1368    
1369     fail:
1370     SvREFCNT_dec (av);
1371 root 1.18 DEC_DEC_DEPTH;
1372 root 1.1 return 0;
1373     }
1374    
1375     static SV *
1376     decode_hv (dec_t *dec)
1377     {
1378 root 1.49 SV *sv;
1379 root 1.1 HV *hv = newHV ();
1380    
1381 root 1.18 DEC_INC_DEPTH;
1382 root 1.12 decode_ws (dec);
1383 root 1.18
1384 root 1.5 if (*dec->cur == '}')
1385     ++dec->cur;
1386     else
1387     for (;;)
1388     {
1389 root 1.63 EXPECT_CH ('"');
1390 root 1.1
1391 root 1.46 // heuristic: assume that
1392 root 1.47 // a) decode_str + hv_store_ent are abysmally slow.
1393     // b) most hash keys are short, simple ascii text.
1394     // => try to "fast-match" such strings to avoid
1395     // the overhead of decode_str + hv_store_ent.
1396 root 1.46 {
1397     SV *value;
1398     char *p = dec->cur;
1399     char *e = p + 24; // only try up to 24 bytes
1400    
1401     for (;;)
1402     {
1403 root 1.77 // the >= 0x80 is false on most architectures
1404 root 1.46 if (p == e || *p < 0x20 || *p >= 0x80 || *p == '\\')
1405     {
1406     // slow path, back up and use decode_str
1407     SV *key = decode_str (dec);
1408     if (!key)
1409     goto fail;
1410    
1411     decode_ws (dec); EXPECT_CH (':');
1412    
1413 root 1.63 decode_ws (dec);
1414 root 1.46 value = decode_sv (dec);
1415     if (!value)
1416     {
1417     SvREFCNT_dec (key);
1418     goto fail;
1419     }
1420    
1421     hv_store_ent (hv, key, value, 0);
1422     SvREFCNT_dec (key);
1423    
1424     break;
1425     }
1426     else if (*p == '"')
1427     {
1428     // fast path, got a simple key
1429     char *key = dec->cur;
1430     int len = p - key;
1431     dec->cur = p + 1;
1432    
1433     decode_ws (dec); EXPECT_CH (':');
1434    
1435 root 1.63 decode_ws (dec);
1436 root 1.46 value = decode_sv (dec);
1437     if (!value)
1438     goto fail;
1439 root 1.1
1440 root 1.46 hv_store (hv, key, len, value, 0);
1441 root 1.1
1442 root 1.46 break;
1443     }
1444 root 1.1
1445 root 1.46 ++p;
1446     }
1447     }
1448 root 1.1
1449 root 1.12 decode_ws (dec);
1450 root 1.1
1451 root 1.5 if (*dec->cur == '}')
1452     {
1453     ++dec->cur;
1454     break;
1455     }
1456 root 1.1
1457 root 1.5 if (*dec->cur != ',')
1458     ERR (", or } expected while parsing object/hash");
1459 root 1.1
1460 root 1.5 ++dec->cur;
1461 root 1.63
1462     decode_ws (dec);
1463    
1464     if (*dec->cur == '}' && dec->json.flags & F_RELAXED)
1465     {
1466     ++dec->cur;
1467     break;
1468     }
1469 root 1.5 }
1470 root 1.1
1471 root 1.18 DEC_DEC_DEPTH;
1472 root 1.49 sv = newRV_noinc ((SV *)hv);
1473    
1474     // check filter callbacks
1475     if (dec->json.flags & F_HOOK)
1476     {
1477 root 1.51 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1478 root 1.49 {
1479 root 1.52 HE *cb, *he;
1480 root 1.49
1481 root 1.52 hv_iterinit (hv);
1482     he = hv_iternext (hv);
1483     hv_iterinit (hv);
1484 root 1.49
1485 root 1.125 // the next line creates a mortal sv each time it's called.
1486 root 1.52 // might want to optimise this for common cases.
1487     cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1488 root 1.49
1489 root 1.52 if (cb)
1490 root 1.51 {
1491 root 1.53 dSP;
1492 root 1.52 int count;
1493    
1494 root 1.125 ENTER; SAVETMPS;
1495     SAVESTACK_POS ();
1496     PUSHMARK (SP);
1497 root 1.52 XPUSHs (HeVAL (he));
1498 root 1.107 sv_2mortal (sv);
1499 root 1.52
1500     PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1501    
1502     if (count == 1)
1503     {
1504     sv = newSVsv (POPs);
1505     FREETMPS; LEAVE;
1506     return sv;
1507     }
1508    
1509 root 1.107 SvREFCNT_inc (sv);
1510 root 1.52 FREETMPS; LEAVE;
1511 root 1.51 }
1512 root 1.49 }
1513    
1514     if (dec->json.cb_object)
1515     {
1516 root 1.53 dSP;
1517 root 1.49 int count;
1518    
1519 root 1.125 ENTER; SAVETMPS;
1520     SAVESTACK_POS ();
1521     PUSHMARK (SP);
1522 root 1.49 XPUSHs (sv_2mortal (sv));
1523    
1524     PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1525    
1526     if (count == 1)
1527 root 1.51 {
1528     sv = newSVsv (POPs);
1529 root 1.52 FREETMPS; LEAVE;
1530     return sv;
1531 root 1.51 }
1532    
1533     SvREFCNT_inc (sv);
1534 root 1.52 FREETMPS; LEAVE;
1535 root 1.49 }
1536     }
1537    
1538 root 1.51 return sv;
1539 root 1.1
1540     fail:
1541     SvREFCNT_dec (hv);
1542 root 1.18 DEC_DEC_DEPTH;
1543 root 1.1 return 0;
1544     }
1545    
1546     static SV *
1547 root 1.119 decode_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 root 1.121 decode_ws (dec);
1558    
1559 root 1.119 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 root 1.121 decode_ws (dec);
1567    
1568 root 1.119 if (*dec->cur != ')')
1569     ERR (") expected after tag");
1570    
1571     ++dec->cur;
1572    
1573 root 1.121 decode_ws (dec);
1574    
1575 root 1.119 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 root 1.125 ENTER; SAVETMPS;
1599     PUSHMARK (SP);
1600 root 1.119 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    
1623     fail:
1624     SvREFCNT_dec (tag);
1625     SvREFCNT_dec (val);
1626     return 0;
1627     }
1628    
1629     static SV *
1630 root 1.1 decode_sv (dec_t *dec)
1631     {
1632 root 1.40 // the beauty of JSON: you need exactly one character lookahead
1633 root 1.73 // to parse everything.
1634 root 1.1 switch (*dec->cur)
1635     {
1636 root 1.117 case '"': ++dec->cur; return decode_str (dec);
1637     case '[': ++dec->cur; return decode_av (dec);
1638 root 1.73 case '{': ++dec->cur; return decode_hv (dec);
1639 root 1.119 case '(': return decode_tag (dec);
1640 root 1.1
1641     case '-':
1642     case '0': case '1': case '2': case '3': case '4':
1643     case '5': case '6': case '7': case '8': case '9':
1644     return decode_num (dec);
1645    
1646     case 't':
1647     if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
1648     {
1649     dec->cur += 4;
1650 root 1.60 #if JSON_SLOW
1651 root 1.126 bool_true = get_bool ("Types::Serialiser::true");
1652 root 1.60 #endif
1653 root 1.126 return newSVsv (bool_true);
1654 root 1.1 }
1655     else
1656     ERR ("'true' expected");
1657    
1658     break;
1659    
1660     case 'f':
1661     if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
1662     {
1663     dec->cur += 5;
1664 root 1.60 #if JSON_SLOW
1665 root 1.126 bool_false = get_bool ("Types::Serialiser::false");
1666 root 1.60 #endif
1667 root 1.126 return newSVsv (bool_false);
1668 root 1.1 }
1669     else
1670     ERR ("'false' expected");
1671    
1672     break;
1673    
1674     case 'n':
1675     if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "null", 4))
1676     {
1677     dec->cur += 4;
1678 root 1.5 return newSVsv (&PL_sv_undef);
1679 root 1.1 }
1680     else
1681     ERR ("'null' expected");
1682    
1683     break;
1684    
1685     default:
1686 root 1.119 ERR ("malformed JSON string, neither tag, array, object, number, string or atom");
1687 root 1.1 break;
1688     }
1689    
1690     fail:
1691     return 0;
1692     }
1693    
1694     static SV *
1695 root 1.129 decode_json (SV *string, JSON *json, STRLEN *offset_return)
1696 root 1.1 {
1697 root 1.25 dec_t dec;
1698 root 1.1 SV *sv;
1699    
1700 root 1.94 /* work around bugs in 5.10 where manipulating magic values
1701 root 1.116 * makes perl ignore the magic in subsequent accesses.
1702 root 1.109 * 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 root 1.127 *
1705     * SvIsCOW_shared_hash works around a bug in perl (possibly 5.16),
1706     * as reported by Reini Urban.
1707 root 1.94 */
1708     /*SvGETMAGIC (string);*/
1709 root 1.127 if (SvMAGICAL (string) || !SvPOK (string) || SvIsCOW_shared_hash (string))
1710 root 1.94 string = sv_2mortal (newSVsv (string));
1711    
1712 root 1.22 SvUPGRADE (string, SVt_PV);
1713    
1714 root 1.87 /* 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 root 1.89 * But it doesn't fix it, so try another workaround, call SvPV_nolen
1719     * and hope for the best.
1720 root 1.90 * 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 root 1.87 */
1724 root 1.96 {
1725 root 1.89 #ifdef DEBUGGING
1726 root 1.96 STRLEN offset = SvOK (string) ? sv_len (string) : 0;
1727 root 1.90 #else
1728 root 1.96 STRLEN offset = SvCUR (string);
1729 root 1.89 #endif
1730 root 1.87
1731 root 1.96 if (offset > json->max_size && json->max_size)
1732     croak ("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu",
1733     (unsigned long)SvCUR (string), (unsigned long)json->max_size);
1734     }
1735 root 1.45
1736 root 1.108 if (DECODE_WANTS_OCTETS (json))
1737 root 1.5 sv_utf8_downgrade (string, 0);
1738     else
1739 root 1.1 sv_utf8_upgrade (string);
1740    
1741     SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1742    
1743 root 1.85 dec.json = *json;
1744     dec.cur = SvPVX (string);
1745     dec.end = SvEND (string);
1746     dec.err = 0;
1747     dec.depth = 0;
1748 root 1.1
1749 root 1.49 if (dec.json.cb_object || dec.json.cb_sk_object)
1750     dec.json.flags |= F_HOOK;
1751    
1752 root 1.31 *dec.end = 0; // this should basically be a nop, too, but make sure it's there
1753 root 1.63
1754     decode_ws (&dec);
1755 root 1.1 sv = decode_sv (&dec);
1756    
1757 root 1.96 if (offset_return)
1758 root 1.129 *offset_return = dec.cur - SvPVX (string);
1759     else if (sv)
1760 root 1.31 {
1761     // check for trailing garbage
1762     decode_ws (&dec);
1763    
1764     if (*dec.cur)
1765     {
1766     dec.err = "garbage after JSON object";
1767     SvREFCNT_dec (sv);
1768     sv = 0;
1769     }
1770     }
1771    
1772 root 1.1 if (!sv)
1773     {
1774     SV *uni = sv_newmortal ();
1775 root 1.8
1776 root 1.5 // horrible hack to silence warning inside pv_uni_display
1777 root 1.8 COP cop = *PL_curcop;
1778 root 1.5 cop.cop_warnings = pWARN_NONE;
1779 root 1.8 ENTER;
1780 root 1.5 SAVEVPTR (PL_curcop);
1781     PL_curcop = &cop;
1782 root 1.8 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1783     LEAVE;
1784 root 1.1
1785 root 1.96 croak ("%s, at character offset %d (before \"%s\")",
1786 root 1.1 dec.err,
1787 root 1.113 (int)ptr_to_index (string, dec.cur),
1788 root 1.1 dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1789     }
1790    
1791 root 1.3 sv = sv_2mortal (sv);
1792    
1793 root 1.126 if (!(dec.json.flags & F_ALLOW_NONREF) && json_nonref (sv))
1794 root 1.9 croak ("JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)");
1795 root 1.3
1796     return sv;
1797 root 1.1 }
1798    
1799 root 1.12 /////////////////////////////////////////////////////////////////////////////
1800 root 1.77 // incremental parser
1801    
1802     static void
1803     incr_parse (JSON *self)
1804     {
1805     const char *p = SvPVX (self->incr_text) + self->incr_pos;
1806    
1807 root 1.103 // the state machine here is a bit convoluted and could be simplified a lot
1808     // but this would make it slower, so...
1809    
1810 root 1.77 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 root 1.103 // only used for initial whitespace skipping
1816 root 1.77 case INCR_M_WS:
1817     for (;;)
1818     {
1819     if (*p > 0x20)
1820     {
1821 root 1.103 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 root 1.77 }
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 root 1.103 // 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 root 1.77 // 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 root 1.119 case '(':
1926 root 1.85 if (++self->incr_nest > self->max_depth)
1927     croak (ERR_NESTING_EXCEEDED);
1928 root 1.77 break;
1929    
1930     case ']':
1931     case '}':
1932 root 1.88 if (--self->incr_nest <= 0)
1933 root 1.77 goto interrupt;
1934 root 1.103 break;
1935    
1936 root 1.119 case ')':
1937     --self->incr_nest;
1938     break;
1939    
1940 root 1.103 case '#':
1941     self->incr_mode = INCR_M_C1;
1942     goto incr_m_c;
1943 root 1.77 }
1944     }
1945     }
1946    
1947     modechange:
1948     ;
1949     }
1950    
1951     interrupt:
1952     self->incr_pos = p - SvPVX (self->incr_text);
1953 root 1.103 //printf ("interrupt<%.*s>\n", self->incr_pos, SvPVX(self->incr_text));//D
1954 root 1.77 //printf ("return pos %d mode %d nest %d\n", self->incr_pos, self->incr_mode, self->incr_nest);//D
1955     }
1956    
1957     /////////////////////////////////////////////////////////////////////////////
1958 root 1.12 // XS interface functions
1959    
1960 root 1.1 MODULE = JSON::XS PACKAGE = JSON::XS
1961    
1962     BOOT:
1963     {
1964     int i;
1965    
1966 root 1.18 for (i = 0; i < 256; ++i)
1967     decode_hexdigit [i] =
1968     i >= '0' && i <= '9' ? i - '0'
1969     : i >= 'a' && i <= 'f' ? i - 'a' + 10
1970     : i >= 'A' && i <= 'F' ? i - 'A' + 10
1971     : -1;
1972 root 1.1
1973 root 1.126 json_stash = gv_stashpv ("JSON::XS" , 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");
1977 root 1.43
1978 root 1.119 sv_json = newSVpv ("JSON", 0);
1979     SvREADONLY_on (sv_json);
1980 root 1.99
1981     CvNODEBUG_on (get_cv ("JSON::XS::incr_text", 0)); /* the debugger completely breaks lvalue subs */
1982 root 1.1 }
1983    
1984 root 1.4 PROTOTYPES: DISABLE
1985    
1986 root 1.57 void CLONE (...)
1987     CODE:
1988 root 1.126 json_stash = 0;
1989     bool_stash = 0;
1990 root 1.57
1991 root 1.48 void new (char *klass)
1992     PPCODE:
1993     {
1994 root 1.115 SV *pv = NEWSV (0, sizeof (JSON));
1995 root 1.48 SvPOK_only (pv);
1996 root 1.85 json_init ((JSON *)SvPVX (pv));
1997 root 1.68 XPUSHs (sv_2mortal (sv_bless (
1998     newRV_noinc (pv),
1999     strEQ (klass, "JSON::XS") ? JSON_STASH : gv_stashpv (klass, 1)
2000     )));
2001 root 1.48 }
2002 root 1.1
2003 root 1.48 void ascii (JSON *self, int enable = 1)
2004 root 1.1 ALIAS:
2005 root 1.44 ascii = F_ASCII
2006     latin1 = F_LATIN1
2007     utf8 = F_UTF8
2008     indent = F_INDENT
2009     canonical = F_CANONICAL
2010     space_before = F_SPACE_BEFORE
2011     space_after = F_SPACE_AFTER
2012     pretty = F_PRETTY
2013     allow_nonref = F_ALLOW_NONREF
2014     shrink = F_SHRINK
2015     allow_blessed = F_ALLOW_BLESSED
2016     convert_blessed = F_CONV_BLESSED
2017 root 1.63 relaxed = F_RELAXED
2018 root 1.84 allow_unknown = F_ALLOW_UNKNOWN
2019 root 1.119 allow_tags = F_ALLOW_TAGS
2020 root 1.48 PPCODE:
2021 root 1.1 {
2022     if (enable)
2023 root 1.48 self->flags |= ix;
2024 root 1.1 else
2025 root 1.48 self->flags &= ~ix;
2026 root 1.1
2027 root 1.48 XPUSHs (ST (0));
2028 root 1.1 }
2029    
2030 root 1.66 void 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 root 1.84 get_allow_unknown = F_ALLOW_UNKNOWN
2045 root 1.119 get_allow_tags = F_ALLOW_TAGS
2046 root 1.66 PPCODE:
2047     XPUSHs (boolSV (self->flags & ix));
2048    
2049 root 1.85 void max_depth (JSON *self, U32 max_depth = 0x80000000UL)
2050 root 1.48 PPCODE:
2051 root 1.85 self->max_depth = max_depth;
2052 root 1.48 XPUSHs (ST (0));
2053 root 1.18
2054 root 1.67 U32 get_max_depth (JSON *self)
2055 root 1.66 CODE:
2056 root 1.85 RETVAL = self->max_depth;
2057 root 1.66 OUTPUT:
2058     RETVAL
2059    
2060 root 1.85 void max_size (JSON *self, U32 max_size = 0)
2061 root 1.48 PPCODE:
2062 root 1.85 self->max_size = max_size;
2063 root 1.48 XPUSHs (ST (0));
2064 root 1.45
2065 root 1.66 int get_max_size (JSON *self)
2066     CODE:
2067 root 1.85 RETVAL = self->max_size;
2068 root 1.66 OUTPUT:
2069     RETVAL
2070    
2071 root 1.51 void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
2072 root 1.49 PPCODE:
2073     {
2074 root 1.52 SvREFCNT_dec (self->cb_object);
2075     self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
2076    
2077     XPUSHs (ST (0));
2078     }
2079    
2080     void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
2081     PPCODE:
2082     {
2083 root 1.114 if (!self->cb_sk_object)
2084 root 1.52 self->cb_sk_object = newHV ();
2085 root 1.51
2086 root 1.52 if (SvOK (cb))
2087     hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
2088 root 1.51 else
2089 root 1.52 {
2090     hv_delete_ent (self->cb_sk_object, key, G_DISCARD, 0);
2091 root 1.49
2092 root 1.52 if (!HvKEYS (self->cb_sk_object))
2093     {
2094     SvREFCNT_dec (self->cb_sk_object);
2095     self->cb_sk_object = 0;
2096     }
2097 root 1.49 }
2098    
2099     XPUSHs (ST (0));
2100     }
2101    
2102 root 1.48 void encode (JSON *self, SV *scalar)
2103 root 1.1 PPCODE:
2104 root 1.114 PUTBACK; scalar = encode_json (scalar, self); SPAGAIN;
2105     XPUSHs (scalar);
2106 root 1.1
2107 root 1.48 void decode (JSON *self, SV *jsonstr)
2108 root 1.1 PPCODE:
2109 root 1.114 PUTBACK; jsonstr = decode_json (jsonstr, self, 0); SPAGAIN;
2110     XPUSHs (jsonstr);
2111 root 1.31
2112 root 1.48 void decode_prefix (JSON *self, SV *jsonstr)
2113 root 1.31 PPCODE:
2114     {
2115 root 1.114 SV *sv;
2116 root 1.129 STRLEN offset;
2117 root 1.114 PUTBACK; sv = decode_json (jsonstr, self, &offset); SPAGAIN;
2118 root 1.31 EXTEND (SP, 2);
2119 root 1.114 PUSHs (sv);
2120 root 1.129 PUSHs (sv_2mortal (newSVuv (ptr_to_index (jsonstr, SvPV_nolen (jsonstr) + offset))));
2121 root 1.31 }
2122 root 1.2
2123 root 1.77 void incr_parse (JSON *self, SV *jsonstr = 0)
2124     PPCODE:
2125     {
2126     if (!self->incr_text)
2127     self->incr_text = newSVpvn ("", 0);
2128    
2129 root 1.108 /* 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 root 1.77 // append data, if any
2149     if (jsonstr)
2150     {
2151 root 1.108 /* 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 root 1.77
2158 root 1.108 /* and then just blindly append */
2159 root 1.77 {
2160     STRLEN len;
2161     const char *str = SvPV (jsonstr, len);
2162 root 1.95 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 root 1.77 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 root 1.114 SV *sv;
2177 root 1.129 STRLEN offset;
2178 root 1.77
2179     if (!INCR_DONE (self))
2180 root 1.82 {
2181     incr_parse (self);
2182 root 1.85
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 root 1.82 if (!INCR_DONE (self))
2188 root 1.111 {
2189     // as an optimisation, do not accumulate white space in the incr buffer
2190 root 1.112 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 root 1.111
2196     break;
2197     }
2198 root 1.82 }
2199 root 1.77
2200 root 1.114 PUTBACK; sv = decode_json (self->incr_text, self, &offset); SPAGAIN;
2201     XPUSHs (sv);
2202 root 1.77
2203 root 1.129 self->incr_pos -= offset;
2204 root 1.77 self->incr_nest = 0;
2205     self->incr_mode = 0;
2206 root 1.96
2207 root 1.129 sv_chop (self->incr_text, SvPVX (self->incr_text) + offset);
2208 root 1.77 }
2209     while (GIMME_V == G_ARRAY);
2210     }
2211    
2212     SV *incr_text (JSON *self)
2213     ATTRS: lvalue
2214     CODE:
2215     {
2216     if (self->incr_pos)
2217 root 1.82 croak ("incr_text can not be called when the incremental parser already started parsing");
2218 root 1.77
2219     RETVAL = self->incr_text ? SvREFCNT_inc (self->incr_text) : &PL_sv_undef;
2220     }
2221     OUTPUT:
2222     RETVAL
2223    
2224 root 1.79 void incr_skip (JSON *self)
2225     CODE:
2226     {
2227 root 1.81 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 root 1.79 }
2235    
2236 root 1.86 void 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;
2244     }
2245    
2246 root 1.52 void DESTROY (JSON *self)
2247     CODE:
2248     SvREFCNT_dec (self->cb_sk_object);
2249     SvREFCNT_dec (self->cb_object);
2250 root 1.77 SvREFCNT_dec (self->incr_text);
2251 root 1.52
2252 root 1.4 PROTOTYPES: ENABLE
2253    
2254 root 1.69 void encode_json (SV *scalar)
2255 root 1.2 PPCODE:
2256 root 1.47 {
2257 root 1.85 JSON json;
2258     json_init (&json);
2259 root 1.118 json.flags |= F_UTF8;
2260 root 1.114 PUTBACK; scalar = encode_json (scalar, &json); SPAGAIN;
2261     XPUSHs (scalar);
2262 root 1.47 }
2263 root 1.2
2264 root 1.69 void decode_json (SV *jsonstr)
2265 root 1.2 PPCODE:
2266 root 1.47 {
2267 root 1.85 JSON json;
2268     json_init (&json);
2269 root 1.118 json.flags |= F_UTF8;
2270 root 1.114 PUTBACK; jsonstr = decode_json (jsonstr, &json, 0); SPAGAIN;
2271     XPUSHs (jsonstr);
2272 root 1.47 }
2273 root 1.1