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