ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.xs
Revision: 1.30
Committed: Wed May 9 16:10:37 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.29: +18 -11 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     #include "assert.h"
6     #include "string.h"
7     #include "stdlib.h"
8 root 1.26 #include "stdio.h"
9    
10     #if defined(__BORLANDC__) || defined(_MSC_VER)
11     # define snprintf _snprintf // C compilers have this in stdio.h
12     #endif
13 root 1.1
14 root 1.18 #define F_ASCII 0x00000001UL
15 root 1.30 #define F_LATIN1 0x00000002UL
16     #define F_UTF8 0x00000004UL
17     #define F_INDENT 0x00000008UL
18     #define F_CANONICAL 0x00000010UL
19     #define F_SPACE_BEFORE 0x00000020UL
20     #define F_SPACE_AFTER 0x00000040UL
21     #define F_ALLOW_NONREF 0x00000100UL
22     #define F_SHRINK 0x00000200UL
23 root 1.18 #define F_MAXDEPTH 0xf8000000UL
24     #define S_MAXDEPTH 27
25    
26     #define DEC_DEPTH(flags) (1UL << ((flags & F_MAXDEPTH) >> S_MAXDEPTH))
27    
28     // F_SELFCONVERT? <=> to_json/toJson
29     // F_BLESSED? <=> { $__class__$ => }
30 root 1.16
31 root 1.2 #define F_PRETTY F_INDENT | F_SPACE_BEFORE | F_SPACE_AFTER
32 root 1.24 #define F_DEFAULT (9UL << S_MAXDEPTH)
33 root 1.1
34     #define INIT_SIZE 32 // initial scalar size to be allocated
35 root 1.12 #define INDENT_STEP 3 // spaces per indentation level
36    
37 root 1.14 #define SHORT_STRING_LEN 512 // special-case strings of up to this size
38 root 1.1
39     #define SB do {
40     #define SE } while (0)
41    
42 root 1.12 static HV *json_stash; // JSON::XS::
43 root 1.1
44 root 1.12 /////////////////////////////////////////////////////////////////////////////
45     // utility functions
46 root 1.1
47     static UV *
48     SvJSON (SV *sv)
49     {
50     if (!(SvROK (sv) && SvOBJECT (SvRV (sv)) && SvSTASH (SvRV (sv)) == json_stash))
51     croak ("object is not of type JSON::XS");
52    
53     return &SvUVX (SvRV (sv));
54     }
55    
56 root 1.7 static void
57     shrink (SV *sv)
58     {
59     sv_utf8_downgrade (sv, 1);
60 root 1.12 if (SvLEN (sv) > SvCUR (sv) + 1)
61     {
62 root 1.7 #ifdef SvPV_shrink_to_cur
63 root 1.12 SvPV_shrink_to_cur (sv);
64     #elif defined (SvPV_renew)
65     SvPV_renew (sv, SvCUR (sv) + 1);
66 root 1.7 #endif
67 root 1.12 }
68 root 1.7 }
69    
70 root 1.13 // decode an utf-8 character and return it, or (UV)-1 in
71     // case of an error.
72     // we special-case "safe" characters from U+80 .. U+7FF,
73     // but use the very good perl function to parse anything else.
74     // note that we never call this function for a ascii codepoints
75     static UV
76     decode_utf8 (unsigned char *s, STRLEN len, STRLEN *clen)
77     {
78     if (s[0] > 0xdf || s[0] < 0xc2)
79     return utf8n_to_uvuni (s, len, clen, UTF8_CHECK_ONLY);
80     else if (len > 1 && s[1] >= 0x80 && s[1] <= 0xbf)
81     {
82     *clen = 2;
83     return ((s[0] & 0x1f) << 6) | (s[1] & 0x3f);
84     }
85     else
86 root 1.23 {
87     *clen = (STRLEN)-1;
88     return (UV)-1;
89     }
90 root 1.13 }
91    
92 root 1.1 /////////////////////////////////////////////////////////////////////////////
93 root 1.12 // encoder
94    
95     // structure used for encoding JSON
96     typedef struct
97     {
98     char *cur; // SvPVX (sv) + current output position
99     char *end; // SvEND (sv)
100     SV *sv; // result scalar
101 root 1.18 U32 flags; // F_*
102     U32 indent; // indentation level
103     U32 maxdepth; // max. indentation/recursion level
104 root 1.12 } enc_t;
105 root 1.1
106     static void
107     need (enc_t *enc, STRLEN len)
108     {
109     if (enc->cur + len >= enc->end)
110     {
111     STRLEN cur = enc->cur - SvPVX (enc->sv);
112     SvGROW (enc->sv, cur + len + 1);
113     enc->cur = SvPVX (enc->sv) + cur;
114 root 1.27 enc->end = SvPVX (enc->sv) + SvLEN (enc->sv) - 1;
115 root 1.1 }
116     }
117    
118     static void
119     encode_ch (enc_t *enc, char ch)
120     {
121     need (enc, 1);
122     *enc->cur++ = ch;
123     }
124    
125     static void
126     encode_str (enc_t *enc, char *str, STRLEN len, int is_utf8)
127     {
128     char *end = str + len;
129    
130 root 1.4 need (enc, len);
131    
132 root 1.1 while (str < end)
133     {
134     unsigned char ch = *(unsigned char *)str;
135 root 1.4
136 root 1.6 if (ch >= 0x20 && ch < 0x80) // most common case
137 root 1.4 {
138 root 1.6 if (ch == '"') // but with slow exceptions
139     {
140     need (enc, len += 1);
141     *enc->cur++ = '\\';
142     *enc->cur++ = '"';
143     }
144     else if (ch == '\\')
145     {
146     need (enc, len += 1);
147     *enc->cur++ = '\\';
148     *enc->cur++ = '\\';
149     }
150     else
151     *enc->cur++ = ch;
152    
153 root 1.4 ++str;
154 root 1.1 }
155     else
156     {
157 root 1.6 switch (ch)
158 root 1.1 {
159 root 1.6 case '\010': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'b'; ++str; break;
160     case '\011': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 't'; ++str; break;
161     case '\012': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'n'; ++str; break;
162     case '\014': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'f'; ++str; break;
163     case '\015': need (enc, len += 1); *enc->cur++ = '\\'; *enc->cur++ = 'r'; ++str; break;
164 root 1.1
165 root 1.6 default:
166 root 1.1 {
167 root 1.6 STRLEN clen;
168     UV uch;
169    
170     if (is_utf8)
171     {
172 root 1.13 //uch = utf8n_to_uvuni (str, end - str, &clen, UTF8_CHECK_ONLY);
173     uch = decode_utf8 (str, end - str, &clen);
174 root 1.6 if (clen == (STRLEN)-1)
175 root 1.9 croak ("malformed or illegal unicode character in string [%.11s], cannot convert to JSON", str);
176 root 1.6 }
177     else
178     {
179     uch = ch;
180     clen = 1;
181     }
182    
183 root 1.9 if (uch > 0x10FFFFUL)
184     croak ("out of range codepoint (0x%lx) encountered, unrepresentable in JSON", (unsigned long)uch);
185    
186 root 1.30 if (uch < 0x80 || enc->flags & F_ASCII || (enc->flags & F_LATIN1 && uch > 0xFF))
187 root 1.6 {
188     if (uch > 0xFFFFUL)
189     {
190     need (enc, len += 11);
191     sprintf (enc->cur, "\\u%04x\\u%04x",
192 root 1.10 (int)((uch - 0x10000) / 0x400 + 0xD800),
193     (int)((uch - 0x10000) % 0x400 + 0xDC00));
194 root 1.6 enc->cur += 12;
195     }
196     else
197     {
198     static char hexdigit [16] = "0123456789abcdef";
199     need (enc, len += 5);
200     *enc->cur++ = '\\';
201     *enc->cur++ = 'u';
202     *enc->cur++ = hexdigit [ uch >> 12 ];
203     *enc->cur++ = hexdigit [(uch >> 8) & 15];
204     *enc->cur++ = hexdigit [(uch >> 4) & 15];
205     *enc->cur++ = hexdigit [(uch >> 0) & 15];
206     }
207 root 1.4
208 root 1.6 str += clen;
209     }
210 root 1.30 else if (enc->flags & F_LATIN1)
211     {
212     *enc->cur++ = uch;
213     str += clen;
214     }
215 root 1.6 else if (is_utf8)
216     {
217     need (enc, len += clen);
218     do
219     {
220     *enc->cur++ = *str++;
221     }
222     while (--clen);
223     }
224     else
225     {
226 root 1.28 need (enc, len += UTF8_MAXBYTES - 1); // never more than 11 bytes needed
227 root 1.6 enc->cur = uvuni_to_utf8_flags (enc->cur, uch, 0);
228     ++str;
229     }
230 root 1.5 }
231 root 1.4 }
232 root 1.1 }
233    
234     --len;
235     }
236     }
237    
238 root 1.12 static void
239     encode_indent (enc_t *enc)
240     {
241     if (enc->flags & F_INDENT)
242     {
243     int spaces = enc->indent * INDENT_STEP;
244    
245     need (enc, spaces);
246     memset (enc->cur, ' ', spaces);
247     enc->cur += spaces;
248     }
249     }
250    
251     static void
252     encode_space (enc_t *enc)
253     {
254     need (enc, 1);
255     encode_ch (enc, ' ');
256     }
257    
258     static void
259     encode_nl (enc_t *enc)
260     {
261     if (enc->flags & F_INDENT)
262     {
263     need (enc, 1);
264     encode_ch (enc, '\n');
265     }
266     }
267    
268     static void
269     encode_comma (enc_t *enc)
270     {
271     encode_ch (enc, ',');
272 root 1.1
273 root 1.12 if (enc->flags & F_INDENT)
274     encode_nl (enc);
275     else if (enc->flags & F_SPACE_AFTER)
276     encode_space (enc);
277     }
278 root 1.1
279     static void encode_sv (enc_t *enc, SV *sv);
280    
281     static void
282     encode_av (enc_t *enc, AV *av)
283     {
284     int i, len = av_len (av);
285    
286 root 1.21 if (enc->indent >= enc->maxdepth)
287     croak ("data structure too deep (hit recursion limit)");
288    
289 root 1.12 encode_ch (enc, '['); encode_nl (enc);
290 root 1.1 ++enc->indent;
291    
292     for (i = 0; i <= len; ++i)
293     {
294 root 1.12 encode_indent (enc);
295 root 1.1 encode_sv (enc, *av_fetch (av, i, 0));
296    
297     if (i < len)
298 root 1.12 encode_comma (enc);
299 root 1.1 }
300    
301 root 1.12 encode_nl (enc);
302 root 1.1
303     --enc->indent;
304 root 1.12 encode_indent (enc); encode_ch (enc, ']');
305 root 1.1 }
306    
307     static void
308     encode_he (enc_t *enc, HE *he)
309     {
310     encode_ch (enc, '"');
311    
312     if (HeKLEN (he) == HEf_SVKEY)
313     {
314     SV *sv = HeSVKEY (he);
315     STRLEN len;
316 root 1.4 char *str;
317    
318     SvGETMAGIC (sv);
319     str = SvPV (sv, len);
320 root 1.1
321     encode_str (enc, str, len, SvUTF8 (sv));
322     }
323     else
324     encode_str (enc, HeKEY (he), HeKLEN (he), HeKUTF8 (he));
325    
326     encode_ch (enc, '"');
327    
328 root 1.12 if (enc->flags & F_SPACE_BEFORE) encode_space (enc);
329 root 1.1 encode_ch (enc, ':');
330 root 1.12 if (enc->flags & F_SPACE_AFTER ) encode_space (enc);
331 root 1.1 encode_sv (enc, HeVAL (he));
332     }
333    
334     // compare hash entries, used when all keys are bytestrings
335     static int
336     he_cmp_fast (const void *a_, const void *b_)
337     {
338     int cmp;
339    
340     HE *a = *(HE **)a_;
341     HE *b = *(HE **)b_;
342    
343     STRLEN la = HeKLEN (a);
344     STRLEN lb = HeKLEN (b);
345    
346 root 1.11 if (!(cmp = memcmp (HeKEY (a), HeKEY (b), la < lb ? la : lb)))
347     cmp = la - lb;
348 root 1.1
349     return cmp;
350     }
351    
352     // compare hash entries, used when some keys are sv's or utf-x
353     static int
354     he_cmp_slow (const void *a, const void *b)
355     {
356     return sv_cmp (HeSVKEY_force (*(HE **)a), HeSVKEY_force (*(HE **)b));
357     }
358    
359     static void
360     encode_hv (enc_t *enc, HV *hv)
361     {
362     int count, i;
363    
364 root 1.21 if (enc->indent >= enc->maxdepth)
365     croak ("data structure too deep (hit recursion limit)");
366    
367 root 1.12 encode_ch (enc, '{'); encode_nl (enc); ++enc->indent;
368 root 1.1
369     if ((count = hv_iterinit (hv)))
370     {
371     // for canonical output we have to sort by keys first
372     // actually, this is mostly due to the stupid so-called
373     // security workaround added somewhere in 5.8.x.
374     // that randomises hash orderings
375     if (enc->flags & F_CANONICAL)
376     {
377 root 1.12 HE *he, *hes [count]; // if your compiler dies here, you need to enable C99 mode
378 root 1.1 int fast = 1;
379    
380     i = 0;
381     while ((he = hv_iternext (hv)))
382     {
383     hes [i++] = he;
384     if (HeKLEN (he) < 0 || HeKUTF8 (he))
385     fast = 0;
386     }
387    
388     assert (i == count);
389    
390     if (fast)
391     qsort (hes, count, sizeof (HE *), he_cmp_fast);
392     else
393     {
394 root 1.8 // hack to forcefully disable "use bytes"
395     COP cop = *PL_curcop;
396 root 1.1 cop.op_private = 0;
397 root 1.8
398     ENTER;
399     SAVETMPS;
400    
401     SAVEVPTR (PL_curcop);
402 root 1.1 PL_curcop = &cop;
403    
404     qsort (hes, count, sizeof (HE *), he_cmp_slow);
405 root 1.8
406 root 1.1 FREETMPS;
407 root 1.8 LEAVE;
408 root 1.1 }
409    
410     for (i = 0; i < count; ++i)
411     {
412 root 1.12 encode_indent (enc);
413 root 1.1 encode_he (enc, hes [i]);
414    
415     if (i < count - 1)
416 root 1.12 encode_comma (enc);
417 root 1.1 }
418    
419 root 1.12 encode_nl (enc);
420 root 1.1 }
421     else
422     {
423     HE *he = hv_iternext (hv);
424    
425     for (;;)
426     {
427 root 1.12 encode_indent (enc);
428 root 1.1 encode_he (enc, he);
429    
430     if (!(he = hv_iternext (hv)))
431     break;
432    
433 root 1.12 encode_comma (enc);
434 root 1.1 }
435    
436 root 1.12 encode_nl (enc);
437 root 1.1 }
438     }
439    
440 root 1.12 --enc->indent; encode_indent (enc); encode_ch (enc, '}');
441 root 1.1 }
442    
443 root 1.21 // encode objects, arrays and special \0=false and \1=true values.
444     static void
445     encode_rv (enc_t *enc, SV *sv)
446     {
447 root 1.25 svtype svt;
448    
449 root 1.21 SvGETMAGIC (sv);
450 root 1.25 svt = SvTYPE (sv);
451 root 1.21
452     if (svt == SVt_PVHV)
453     encode_hv (enc, (HV *)sv);
454     else if (svt == SVt_PVAV)
455     encode_av (enc, (AV *)sv);
456     else if (svt < SVt_PVAV)
457     {
458     if (SvNIOK (sv) && SvIV (sv) == 0)
459     encode_str (enc, "false", 5, 0);
460     else if (SvNIOK (sv) && SvIV (sv) == 1)
461     encode_str (enc, "true", 4, 0);
462     else
463     croak ("cannot encode reference to scalar '%s' unless the scalar is 0 or 1",
464     SvPV_nolen (sv_2mortal (newRV_inc (sv))));
465     }
466     else
467     croak ("encountered %s, but JSON can only represent references to arrays or hashes",
468     SvPV_nolen (sv_2mortal (newRV_inc (sv))));
469     }
470    
471 root 1.1 static void
472     encode_sv (enc_t *enc, SV *sv)
473     {
474 root 1.4 SvGETMAGIC (sv);
475    
476 root 1.1 if (SvPOKp (sv))
477     {
478     STRLEN len;
479     char *str = SvPV (sv, len);
480     encode_ch (enc, '"');
481     encode_str (enc, str, len, SvUTF8 (sv));
482     encode_ch (enc, '"');
483     }
484     else if (SvNOKp (sv))
485     {
486     need (enc, NV_DIG + 32);
487     Gconvert (SvNVX (sv), NV_DIG, 0, enc->cur);
488     enc->cur += strlen (enc->cur);
489     }
490     else if (SvIOKp (sv))
491     {
492     need (enc, 64);
493     enc->cur +=
494     SvIsUV(sv)
495     ? snprintf (enc->cur, 64, "%"UVuf, (UV)SvUVX (sv))
496     : snprintf (enc->cur, 64, "%"IVdf, (IV)SvIVX (sv));
497     }
498     else if (SvROK (sv))
499 root 1.21 encode_rv (enc, SvRV (sv));
500 root 1.1 else if (!SvOK (sv))
501     encode_str (enc, "null", 4, 0);
502     else
503 root 1.9 croak ("encountered perl type (%s,0x%x) that JSON cannot handle, you might want to report this",
504     SvPV_nolen (sv), SvFLAGS (sv));
505 root 1.1 }
506    
507     static SV *
508 root 1.18 encode_json (SV *scalar, U32 flags)
509 root 1.1 {
510 root 1.25 enc_t enc;
511    
512 root 1.3 if (!(flags & F_ALLOW_NONREF) && !SvROK (scalar))
513 root 1.9 croak ("hash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)");
514 root 1.3
515 root 1.12 enc.flags = flags;
516     enc.sv = sv_2mortal (NEWSV (0, INIT_SIZE));
517     enc.cur = SvPVX (enc.sv);
518     enc.end = SvEND (enc.sv);
519     enc.indent = 0;
520 root 1.18 enc.maxdepth = DEC_DEPTH (flags);
521 root 1.1
522     SvPOK_only (enc.sv);
523     encode_sv (&enc, scalar);
524    
525     SvCUR_set (enc.sv, enc.cur - SvPVX (enc.sv));
526 root 1.27 *SvEND (enc.sv) = 0; // many xs functions expect a trailing 0 for text strings
527 root 1.6
528 root 1.30 if (!(flags & (F_ASCII | F_LATIN1 | F_UTF8)))
529     SvUTF8_on (enc.sv);
530    
531 root 1.6 if (enc.flags & F_SHRINK)
532 root 1.7 shrink (enc.sv);
533    
534 root 1.1 return enc.sv;
535     }
536    
537     /////////////////////////////////////////////////////////////////////////////
538 root 1.12 // decoder
539 root 1.1
540 root 1.12 // structure used for decoding JSON
541     typedef struct
542     {
543     char *cur; // current parser pointer
544     char *end; // end of input string
545     const char *err; // parse error, if != 0
546 root 1.18 U32 flags; // F_*
547     U32 depth; // recursion depth
548     U32 maxdepth; // recursion depth limit
549 root 1.12 } dec_t;
550    
551     static void
552     decode_ws (dec_t *dec)
553     {
554     for (;;)
555     {
556     char ch = *dec->cur;
557    
558     if (ch > 0x20
559     || (ch != 0x20 && ch != 0x0a && ch != 0x0d && ch != 0x09))
560     break;
561    
562     ++dec->cur;
563 root 1.1 }
564 root 1.12 }
565 root 1.1
566     #define ERR(reason) SB dec->err = reason; goto fail; SE
567 root 1.18
568 root 1.1 #define EXPECT_CH(ch) SB \
569     if (*dec->cur != ch) \
570     ERR (# ch " expected"); \
571     ++dec->cur; \
572     SE
573    
574 root 1.18 #define DEC_INC_DEPTH if (++dec->depth > dec->maxdepth) ERR ("json datastructure exceeds maximum nesting level (set a higher max_depth)")
575     #define DEC_DEC_DEPTH --dec->depth
576    
577 root 1.1 static SV *decode_sv (dec_t *dec);
578    
579     static signed char decode_hexdigit[256];
580    
581     static UV
582     decode_4hex (dec_t *dec)
583     {
584     signed char d1, d2, d3, d4;
585 root 1.12 unsigned char *cur = (unsigned char *)dec->cur;
586 root 1.1
587 root 1.12 d1 = decode_hexdigit [cur [0]]; if (d1 < 0) ERR ("four hexadecimal digits expected");
588     d2 = decode_hexdigit [cur [1]]; if (d2 < 0) ERR ("four hexadecimal digits expected");
589     d3 = decode_hexdigit [cur [2]]; if (d3 < 0) ERR ("four hexadecimal digits expected");
590     d4 = decode_hexdigit [cur [3]]; if (d4 < 0) ERR ("four hexadecimal digits expected");
591 root 1.1
592     dec->cur += 4;
593    
594     return ((UV)d1) << 12
595     | ((UV)d2) << 8
596     | ((UV)d3) << 4
597     | ((UV)d4);
598    
599     fail:
600     return (UV)-1;
601     }
602    
603     static SV *
604     decode_str (dec_t *dec)
605     {
606 root 1.12 SV *sv = 0;
607 root 1.1 int utf8 = 0;
608    
609 root 1.12 do
610 root 1.1 {
611 root 1.28 char buf [SHORT_STRING_LEN + UTF8_MAXBYTES];
612 root 1.12 char *cur = buf;
613 root 1.1
614 root 1.12 do
615 root 1.1 {
616 root 1.12 unsigned char ch = *(unsigned char *)dec->cur++;
617    
618     if (ch == '"')
619     {
620     --dec->cur;
621     break;
622     }
623     else if (ch == '\\')
624 root 1.1 {
625 root 1.12 switch (*dec->cur)
626 root 1.1 {
627 root 1.12 case '\\':
628     case '/':
629     case '"': *cur++ = *dec->cur++; break;
630    
631     case 'b': ++dec->cur; *cur++ = '\010'; break;
632     case 't': ++dec->cur; *cur++ = '\011'; break;
633     case 'n': ++dec->cur; *cur++ = '\012'; break;
634     case 'f': ++dec->cur; *cur++ = '\014'; break;
635     case 'r': ++dec->cur; *cur++ = '\015'; break;
636 root 1.1
637 root 1.12 case 'u':
638 root 1.1 {
639 root 1.12 UV lo, hi;
640     ++dec->cur;
641 root 1.1
642 root 1.12 hi = decode_4hex (dec);
643     if (hi == (UV)-1)
644     goto fail;
645 root 1.1
646 root 1.12 // possibly a surrogate pair
647     if (hi >= 0xd800)
648     if (hi < 0xdc00)
649     {
650     if (dec->cur [0] != '\\' || dec->cur [1] != 'u')
651     ERR ("missing low surrogate character in surrogate pair");
652    
653     dec->cur += 2;
654    
655     lo = decode_4hex (dec);
656     if (lo == (UV)-1)
657     goto fail;
658    
659     if (lo < 0xdc00 || lo >= 0xe000)
660     ERR ("surrogate pair expected");
661    
662     hi = (hi - 0xD800) * 0x400 + (lo - 0xDC00) + 0x10000;
663     }
664     else if (hi < 0xe000)
665     ERR ("missing high surrogate character in surrogate pair");
666 root 1.1
667 root 1.12 if (hi >= 0x80)
668     {
669     utf8 = 1;
670 root 1.1
671 root 1.12 cur = (char *)uvuni_to_utf8_flags (cur, hi, 0);
672     }
673     else
674     *cur++ = hi;
675 root 1.1 }
676 root 1.12 break;
677    
678     default:
679     --dec->cur;
680     ERR ("illegal backslash escape sequence in string");
681     }
682     }
683     else if (ch >= 0x20 && ch <= 0x7f)
684     *cur++ = ch;
685     else if (ch >= 0x80)
686     {
687 root 1.25 STRLEN clen;
688     UV uch;
689    
690 root 1.12 --dec->cur;
691 root 1.1
692 root 1.25 uch = decode_utf8 (dec->cur, dec->end - dec->cur, &clen);
693 root 1.12 if (clen == (STRLEN)-1)
694     ERR ("malformed UTF-8 character in JSON string");
695 root 1.1
696 root 1.12 do
697 root 1.23 *cur++ = *dec->cur++;
698 root 1.12 while (--clen);
699 root 1.5
700 root 1.12 utf8 = 1;
701 root 1.1 }
702 root 1.12 else
703 root 1.23 {
704     --dec->cur;
705 root 1.12
706 root 1.23 if (!ch)
707 root 1.24 ERR ("unexpected end of string while parsing JSON string");
708 root 1.23 else
709 root 1.24 ERR ("invalid character encountered while parsing JSON string");
710 root 1.23 }
711 root 1.1 }
712 root 1.12 while (cur < buf + SHORT_STRING_LEN);
713 root 1.1
714 root 1.25 {
715     STRLEN len = cur - buf;
716 root 1.5
717 root 1.25 if (sv)
718     {
719     SvGROW (sv, SvCUR (sv) + len + 1);
720     memcpy (SvPVX (sv) + SvCUR (sv), buf, len);
721     SvCUR_set (sv, SvCUR (sv) + len);
722     }
723     else
724     sv = newSVpvn (buf, len);
725     }
726 root 1.1 }
727 root 1.12 while (*dec->cur != '"');
728 root 1.1
729     ++dec->cur;
730    
731 root 1.12 if (sv)
732     {
733     SvPOK_only (sv);
734     *SvEND (sv) = 0;
735 root 1.4
736 root 1.12 if (utf8)
737     SvUTF8_on (sv);
738     }
739     else
740     sv = newSVpvn ("", 0);
741 root 1.6
742 root 1.1 return sv;
743    
744     fail:
745     return 0;
746     }
747    
748     static SV *
749     decode_num (dec_t *dec)
750     {
751     int is_nv = 0;
752     char *start = dec->cur;
753    
754     // [minus]
755     if (*dec->cur == '-')
756     ++dec->cur;
757    
758     if (*dec->cur == '0')
759     {
760     ++dec->cur;
761     if (*dec->cur >= '0' && *dec->cur <= '9')
762     ERR ("malformed number (leading zero must not be followed by another digit)");
763     }
764 root 1.5 else if (*dec->cur < '0' || *dec->cur > '9')
765     ERR ("malformed number (no digits after initial minus)");
766     else
767     do
768     {
769     ++dec->cur;
770     }
771     while (*dec->cur >= '0' && *dec->cur <= '9');
772 root 1.1
773     // [frac]
774     if (*dec->cur == '.')
775     {
776 root 1.5 ++dec->cur;
777    
778     if (*dec->cur < '0' || *dec->cur > '9')
779     ERR ("malformed number (no digits after decimal point)");
780 root 1.1
781     do
782     {
783     ++dec->cur;
784     }
785     while (*dec->cur >= '0' && *dec->cur <= '9');
786 root 1.5
787     is_nv = 1;
788 root 1.1 }
789    
790     // [exp]
791     if (*dec->cur == 'e' || *dec->cur == 'E')
792     {
793 root 1.5 ++dec->cur;
794 root 1.1
795     if (*dec->cur == '-' || *dec->cur == '+')
796     ++dec->cur;
797    
798 root 1.5 if (*dec->cur < '0' || *dec->cur > '9')
799     ERR ("malformed number (no digits after exp sign)");
800    
801     do
802     {
803     ++dec->cur;
804     }
805     while (*dec->cur >= '0' && *dec->cur <= '9');
806    
807     is_nv = 1;
808 root 1.1 }
809    
810     if (!is_nv)
811     {
812     UV uv;
813     int numtype = grok_number (start, dec->cur - start, &uv);
814     if (numtype & IS_NUMBER_IN_UV)
815     if (numtype & IS_NUMBER_NEG)
816     {
817     if (uv < (UV)IV_MIN)
818     return newSViv (-(IV)uv);
819     }
820     else
821     return newSVuv (uv);
822     }
823    
824     return newSVnv (Atof (start));
825    
826     fail:
827     return 0;
828     }
829    
830     static SV *
831     decode_av (dec_t *dec)
832     {
833     AV *av = newAV ();
834    
835 root 1.18 DEC_INC_DEPTH;
836 root 1.12 decode_ws (dec);
837 root 1.18
838 root 1.5 if (*dec->cur == ']')
839     ++dec->cur;
840     else
841     for (;;)
842     {
843     SV *value;
844 root 1.1
845 root 1.5 value = decode_sv (dec);
846     if (!value)
847     goto fail;
848 root 1.1
849 root 1.5 av_push (av, value);
850 root 1.1
851 root 1.12 decode_ws (dec);
852 root 1.1
853 root 1.5 if (*dec->cur == ']')
854     {
855     ++dec->cur;
856     break;
857     }
858    
859     if (*dec->cur != ',')
860     ERR (", or ] expected while parsing array");
861 root 1.1
862 root 1.5 ++dec->cur;
863     }
864 root 1.1
865 root 1.18 DEC_DEC_DEPTH;
866 root 1.1 return newRV_noinc ((SV *)av);
867    
868     fail:
869     SvREFCNT_dec (av);
870 root 1.18 DEC_DEC_DEPTH;
871 root 1.1 return 0;
872     }
873    
874     static SV *
875     decode_hv (dec_t *dec)
876     {
877     HV *hv = newHV ();
878    
879 root 1.18 DEC_INC_DEPTH;
880 root 1.12 decode_ws (dec);
881 root 1.18
882 root 1.5 if (*dec->cur == '}')
883     ++dec->cur;
884     else
885     for (;;)
886     {
887     SV *key, *value;
888 root 1.1
889 root 1.12 decode_ws (dec); EXPECT_CH ('"');
890 root 1.1
891 root 1.5 key = decode_str (dec);
892     if (!key)
893     goto fail;
894 root 1.1
895 root 1.12 decode_ws (dec); EXPECT_CH (':');
896 root 1.1
897 root 1.5 value = decode_sv (dec);
898     if (!value)
899     {
900     SvREFCNT_dec (key);
901     goto fail;
902     }
903 root 1.1
904 root 1.5 hv_store_ent (hv, key, value, 0);
905 root 1.18 SvREFCNT_dec (key);
906 root 1.1
907 root 1.12 decode_ws (dec);
908 root 1.1
909 root 1.5 if (*dec->cur == '}')
910     {
911     ++dec->cur;
912     break;
913     }
914 root 1.1
915 root 1.5 if (*dec->cur != ',')
916     ERR (", or } expected while parsing object/hash");
917 root 1.1
918 root 1.5 ++dec->cur;
919     }
920 root 1.1
921 root 1.18 DEC_DEC_DEPTH;
922 root 1.1 return newRV_noinc ((SV *)hv);
923    
924     fail:
925     SvREFCNT_dec (hv);
926 root 1.18 DEC_DEC_DEPTH;
927 root 1.1 return 0;
928     }
929    
930     static SV *
931     decode_sv (dec_t *dec)
932     {
933 root 1.12 decode_ws (dec);
934 root 1.1 switch (*dec->cur)
935     {
936     case '"': ++dec->cur; return decode_str (dec);
937     case '[': ++dec->cur; return decode_av (dec);
938     case '{': ++dec->cur; return decode_hv (dec);
939    
940     case '-':
941     case '0': case '1': case '2': case '3': case '4':
942     case '5': case '6': case '7': case '8': case '9':
943     return decode_num (dec);
944    
945     case 't':
946     if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "true", 4))
947     {
948     dec->cur += 4;
949     return newSViv (1);
950     }
951     else
952     ERR ("'true' expected");
953    
954     break;
955    
956     case 'f':
957     if (dec->end - dec->cur >= 5 && !memcmp (dec->cur, "false", 5))
958     {
959     dec->cur += 5;
960     return newSViv (0);
961     }
962     else
963     ERR ("'false' expected");
964    
965     break;
966    
967     case 'n':
968     if (dec->end - dec->cur >= 4 && !memcmp (dec->cur, "null", 4))
969     {
970     dec->cur += 4;
971 root 1.5 return newSVsv (&PL_sv_undef);
972 root 1.1 }
973     else
974     ERR ("'null' expected");
975    
976     break;
977    
978     default:
979 root 1.24 ERR ("malformed JSON string, neither array, object, number, string or atom");
980 root 1.1 break;
981     }
982    
983     fail:
984     return 0;
985     }
986    
987     static SV *
988 root 1.18 decode_json (SV *string, U32 flags)
989 root 1.1 {
990 root 1.25 dec_t dec;
991 root 1.1 SV *sv;
992    
993 root 1.29 SvGETMAGIC (string);
994 root 1.22 SvUPGRADE (string, SVt_PV);
995    
996 root 1.5 if (flags & F_UTF8)
997     sv_utf8_downgrade (string, 0);
998     else
999 root 1.1 sv_utf8_upgrade (string);
1000    
1001     SvGROW (string, SvCUR (string) + 1); // should basically be a NOP
1002    
1003 root 1.18 dec.flags = flags;
1004     dec.cur = SvPVX (string);
1005     dec.end = SvEND (string);
1006     dec.err = 0;
1007     dec.depth = 0;
1008     dec.maxdepth = DEC_DEPTH (dec.flags);
1009 root 1.1
1010 root 1.20 *dec.end = 0; // this should basically be a nop, too, but make sure its there
1011 root 1.1 sv = decode_sv (&dec);
1012    
1013     if (!sv)
1014     {
1015 root 1.7 IV offset = dec.flags & F_UTF8
1016     ? dec.cur - SvPVX (string)
1017     : utf8_distance (dec.cur, SvPVX (string));
1018 root 1.1 SV *uni = sv_newmortal ();
1019 root 1.8
1020 root 1.5 // horrible hack to silence warning inside pv_uni_display
1021 root 1.8 COP cop = *PL_curcop;
1022 root 1.5 cop.cop_warnings = pWARN_NONE;
1023 root 1.8 ENTER;
1024 root 1.5 SAVEVPTR (PL_curcop);
1025     PL_curcop = &cop;
1026 root 1.8 pv_uni_display (uni, dec.cur, dec.end - dec.cur, 20, UNI_DISPLAY_QQ);
1027     LEAVE;
1028 root 1.1
1029 root 1.23 croak ("%s, at character offset %d [\"%s\"]",
1030 root 1.1 dec.err,
1031     (int)offset,
1032     dec.cur != dec.end ? SvPV_nolen (uni) : "(end of string)");
1033     }
1034    
1035 root 1.3 sv = sv_2mortal (sv);
1036    
1037     if (!(dec.flags & F_ALLOW_NONREF) && !SvROK (sv))
1038 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)");
1039 root 1.3
1040     return sv;
1041 root 1.1 }
1042    
1043 root 1.12 /////////////////////////////////////////////////////////////////////////////
1044     // XS interface functions
1045    
1046 root 1.1 MODULE = JSON::XS PACKAGE = JSON::XS
1047    
1048     BOOT:
1049     {
1050     int i;
1051    
1052     memset (decode_hexdigit, 0xff, 256);
1053    
1054 root 1.18 for (i = 0; i < 256; ++i)
1055     decode_hexdigit [i] =
1056     i >= '0' && i <= '9' ? i - '0'
1057     : i >= 'a' && i <= 'f' ? i - 'a' + 10
1058     : i >= 'A' && i <= 'F' ? i - 'A' + 10
1059     : -1;
1060 root 1.1
1061     json_stash = gv_stashpv ("JSON::XS", 1);
1062     }
1063    
1064 root 1.4 PROTOTYPES: DISABLE
1065    
1066 root 1.1 SV *new (char *dummy)
1067     CODE:
1068     RETVAL = sv_bless (newRV_noinc (newSVuv (F_DEFAULT)), json_stash);
1069     OUTPUT:
1070     RETVAL
1071    
1072 root 1.6 SV *ascii (SV *self, int enable = 1)
1073 root 1.1 ALIAS:
1074     ascii = F_ASCII
1075 root 1.30 latin1 = F_LATIN1
1076 root 1.1 utf8 = F_UTF8
1077     indent = F_INDENT
1078     canonical = F_CANONICAL
1079     space_before = F_SPACE_BEFORE
1080     space_after = F_SPACE_AFTER
1081 root 1.2 pretty = F_PRETTY
1082 root 1.3 allow_nonref = F_ALLOW_NONREF
1083 root 1.6 shrink = F_SHRINK
1084 root 1.1 CODE:
1085     {
1086     UV *uv = SvJSON (self);
1087     if (enable)
1088     *uv |= ix;
1089     else
1090     *uv &= ~ix;
1091    
1092     RETVAL = newSVsv (self);
1093     }
1094     OUTPUT:
1095     RETVAL
1096    
1097 root 1.25 SV *max_depth (SV *self, UV max_depth = 0x80000000UL)
1098 root 1.18 CODE:
1099     {
1100     UV *uv = SvJSON (self);
1101     UV log2 = 0;
1102    
1103     if (max_depth > 0x80000000UL) max_depth = 0x80000000UL;
1104    
1105     while ((1UL << log2) < max_depth)
1106     ++log2;
1107    
1108     *uv = *uv & ~F_MAXDEPTH | (log2 << S_MAXDEPTH);
1109    
1110     RETVAL = newSVsv (self);
1111     }
1112     OUTPUT:
1113     RETVAL
1114    
1115 root 1.1 void encode (SV *self, SV *scalar)
1116     PPCODE:
1117     XPUSHs (encode_json (scalar, *SvJSON (self)));
1118    
1119 root 1.2 void decode (SV *self, SV *jsonstr)
1120 root 1.1 PPCODE:
1121 root 1.2 XPUSHs (decode_json (jsonstr, *SvJSON (self)));
1122    
1123 root 1.4 PROTOTYPES: ENABLE
1124    
1125 root 1.2 void to_json (SV *scalar)
1126 root 1.15 ALIAS:
1127     objToJson = 0
1128 root 1.2 PPCODE:
1129 root 1.18 XPUSHs (encode_json (scalar, F_DEFAULT | F_UTF8));
1130 root 1.2
1131     void from_json (SV *jsonstr)
1132 root 1.15 ALIAS:
1133     jsonToObj = 0
1134 root 1.2 PPCODE:
1135 root 1.18 XPUSHs (decode_json (jsonstr, F_DEFAULT | F_UTF8));
1136 root 1.1