ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.xs
(Generate patch)

Comparing JSON-XS/XS.xs (file contents):
Revision 1.51 by root, Mon Jul 2 00:48:18 2007 UTC vs.
Revision 1.58 by root, Mon Aug 13 16:06:25 2007 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#include "assert.h" 5#include <assert.h>
6#include "string.h" 6#include <string.h>
7#include "stdlib.h" 7#include <stdlib.h>
8#include "stdio.h" 8#include <stdio.h>
9#include <float.h>
9 10
10#if defined(__BORLANDC__) || defined(_MSC_VER) 11#if defined(__BORLANDC__) || defined(_MSC_VER)
11# define snprintf _snprintf // C compilers have this in stdio.h 12# define snprintf _snprintf // C compilers have this in stdio.h
12#endif 13#endif
13 14
57#endif 58#endif
58 59
59#define expect_false(expr) expect ((expr) != 0, 0) 60#define expect_false(expr) expect ((expr) != 0, 0)
60#define expect_true(expr) expect ((expr) != 0, 1) 61#define expect_true(expr) expect ((expr) != 0, 1)
61 62
63#ifdef USE_ITHREADS
64# define JSON_SLOW 1
65#else
66# define JSON_SLOW 0
67#endif
68
62static HV *json_stash, *json_boolean_stash; // JSON::XS:: 69static HV *json_stash, *json_boolean_stash; // JSON::XS::
63static SV *json_true, *json_false; 70static SV *json_true, *json_false;
64 71
65typedef struct { 72typedef struct {
66 U32 flags; 73 U32 flags;
67 SV *cb_object, *cb_sk_object; 74 SV *cb_object;
75 HV *cb_sk_object;
68} JSON; 76} JSON;
69 77
70///////////////////////////////////////////////////////////////////////////// 78/////////////////////////////////////////////////////////////////////////////
71// utility functions 79// utility functions
72 80
305 encode_ch (enc, '['); encode_nl (enc); 313 encode_ch (enc, '['); encode_nl (enc);
306 ++enc->indent; 314 ++enc->indent;
307 315
308 for (i = 0; i <= len; ++i) 316 for (i = 0; i <= len; ++i)
309 { 317 {
318 SV **svp = av_fetch (av, i, 0);
319
310 encode_indent (enc); 320 encode_indent (enc);
311 encode_sv (enc, *av_fetch (av, i, 0)); 321
322 if (svp)
323 encode_sv (enc, *svp);
324 else
325 encode_str (enc, "null", 4, 0);
312 326
313 if (i < len) 327 if (i < len)
314 encode_comma (enc); 328 encode_comma (enc);
315 } 329 }
316 330
470 SvGETMAGIC (sv); 484 SvGETMAGIC (sv);
471 svt = SvTYPE (sv); 485 svt = SvTYPE (sv);
472 486
473 if (expect_false (SvOBJECT (sv))) 487 if (expect_false (SvOBJECT (sv)))
474 { 488 {
489 HV *stash = !JSON_SLOW || json_boolean_stash
490 ? json_boolean_stash
491 : gv_stashpv ("JSON::XS::Boolean", 1);
492
475 if (SvSTASH (sv) == json_boolean_stash) 493 if (SvSTASH (sv) == stash)
476 { 494 {
477 if (SvIV (sv)) 495 if (SvIV (sv))
478 encode_str (enc, "true", 4, 0); 496 encode_str (enc, "true", 4, 0);
479 else 497 else
480 encode_str (enc, "false", 5, 0); 498 encode_str (enc, "false", 5, 0);
488 } 506 }
489#endif 507#endif
490 if (enc->json.flags & F_CONV_BLESSED) 508 if (enc->json.flags & F_CONV_BLESSED)
491 { 509 {
492 // we re-bless the reference to get overload and other niceties right 510 // we re-bless the reference to get overload and other niceties right
493 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 1); 511 GV *to_json = gv_fetchmethod_autoload (SvSTASH (sv), "TO_JSON", 0);
494 512
495 if (to_json) 513 if (to_json)
496 { 514 {
515 dSP;
516
497 dSP; ENTER; SAVETMPS; PUSHMARK (SP); 517 ENTER; SAVETMPS; PUSHMARK (SP);
498 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv))); 518 XPUSHs (sv_bless (sv_2mortal (newRV_inc (sv)), SvSTASH (sv)));
499 519
500 // calling with G_SCALAR ensures that we always get a 1 reutrn value 520 // calling with G_SCALAR ensures that we always get a 1 return value
501 // check anyways.
502 PUTBACK; 521 PUTBACK;
503 assert (1 == call_sv ((SV *)GvCV (to_json), G_SCALAR)); 522 call_sv ((SV *)GvCV (to_json), G_SCALAR);
504 SPAGAIN; 523 SPAGAIN;
505 524
525 // catch this surprisingly common error
526 if (SvROK (TOPs) && SvRV (TOPs) == sv)
527 croak ("%s::TO_JSON method returned same object as was passed instead of a new one", HvNAME (SvSTASH (sv)));
528
529 sv = POPs;
530 PUTBACK;
531
506 encode_sv (enc, POPs); 532 encode_sv (enc, sv);
507 533
508 FREETMPS; LEAVE; 534 FREETMPS; LEAVE;
509 } 535 }
510 else if (enc->json.flags & F_ALLOW_BLESSED) 536 else if (enc->json.flags & F_ALLOW_BLESSED)
511 encode_str (enc, "null", 4, 0); 537 encode_str (enc, "null", 4, 0);
921 is_nv = 1; 947 is_nv = 1;
922 } 948 }
923 949
924 if (!is_nv) 950 if (!is_nv)
925 { 951 {
952 int len = dec->cur - start;
953
926 // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so 954 // special case the rather common 1..4-digit-int case, assumes 32 bit ints or so
927 if (*start == '-') 955 if (*start == '-')
928 switch (dec->cur - start) 956 switch (len)
929 { 957 {
930 case 2: return newSViv (-( start [1] - '0' * 1)); 958 case 2: return newSViv (-( start [1] - '0' * 1));
931 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11)); 959 case 3: return newSViv (-( start [1] * 10 + start [2] - '0' * 11));
932 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111)); 960 case 4: return newSViv (-( start [1] * 100 + start [2] * 10 + start [3] - '0' * 111));
933 case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111)); 961 case 5: return newSViv (-(start [1] * 1000 + start [2] * 100 + start [3] * 10 + start [4] - '0' * 1111));
934 } 962 }
935 else 963 else
936 switch (dec->cur - start) 964 switch (len)
937 { 965 {
938 case 1: return newSViv ( start [0] - '0' * 1); 966 case 1: return newSViv ( start [0] - '0' * 1);
939 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11); 967 case 2: return newSViv ( start [0] * 10 + start [1] - '0' * 11);
940 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111); 968 case 3: return newSViv ( start [0] * 100 + start [1] * 10 + start [2] - '0' * 111);
941 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111); 969 case 4: return newSViv ( start [0] * 1000 + start [1] * 100 + start [2] * 10 + start [3] - '0' * 1111);
942 } 970 }
943 971
944 { 972 {
945 UV uv; 973 UV uv;
946 int numtype = grok_number (start, dec->cur - start, &uv); 974 int numtype = grok_number (start, len, &uv);
947 if (numtype & IS_NUMBER_IN_UV) 975 if (numtype & IS_NUMBER_IN_UV)
948 if (numtype & IS_NUMBER_NEG) 976 if (numtype & IS_NUMBER_NEG)
949 { 977 {
950 if (uv < (UV)IV_MIN) 978 if (uv < (UV)IV_MIN)
951 return newSViv (-(IV)uv); 979 return newSViv (-(IV)uv);
952 } 980 }
953 else 981 else
954 return newSVuv (uv); 982 return newSVuv (uv);
955
956 // here would likely be the place for bigint support
957 } 983 }
958 }
959 984
960 // if we ever support bigint or bigfloat, this is the place for bigfloat 985 len -= *start == '-' ? 1 : 0;
986
987 // does not fit into IV or UV, try NV
988 if ((sizeof (NV) == sizeof (double) && DBL_DIG >= len)
989 #if defined (LDBL_DIG)
990 || (sizeof (NV) == sizeof (long double) && LDBL_DIG >= len)
991 #endif
992 )
993 // fits into NV without loss of precision
994 return newSVnv (Atof (start));
995
996 // everything else fails, convert it to a string
997 return newSVpvn (start, dec->cur - start);
998 }
999
1000 // loss of precision here
961 return newSVnv (Atof (start)); 1001 return newSVnv (Atof (start));
962 1002
963fail: 1003fail:
964 return 0; 1004 return 0;
965} 1005}
1098 sv = newRV_noinc ((SV *)hv); 1138 sv = newRV_noinc ((SV *)hv);
1099 1139
1100 // check filter callbacks 1140 // check filter callbacks
1101 if (dec->json.flags & F_HOOK) 1141 if (dec->json.flags & F_HOOK)
1102 { 1142 {
1103 ENTER; SAVETMPS;
1104
1105 if (dec->json.cb_sk_object && HvKEYS (hv) == 1) 1143 if (dec->json.cb_sk_object && HvKEYS (hv) == 1)
1106 { 1144 {
1145 HE *cb, *he;
1146
1147 hv_iterinit (hv);
1148 he = hv_iternext (hv);
1149 hv_iterinit (hv);
1150
1151 // the next line creates a mortal sv each time its called.
1152 // might want to optimise this for common cases.
1153 cb = hv_fetch_ent (dec->json.cb_sk_object, hv_iterkeysv (he), 0, 0);
1154
1155 if (cb)
1156 {
1157 dSP;
1107 int count; 1158 int count;
1108 1159
1109 dSP; PUSHMARK (SP); 1160 ENTER; SAVETMPS; PUSHMARK (SP);
1110 XPUSHs (sv_2mortal (sv)); 1161 XPUSHs (HeVAL (he));
1111 1162
1112 PUTBACK; count = call_sv (dec->json.cb_sk_object, G_ARRAY); SPAGAIN; 1163 PUTBACK; count = call_sv (HeVAL (cb), G_ARRAY); SPAGAIN;
1113 1164
1114 if (count == 1) 1165 if (count == 1)
1115 { 1166 {
1116 sv = newSVsv (POPs); 1167 sv = newSVsv (POPs);
1117 goto filter_ok; 1168 FREETMPS; LEAVE;
1169 return sv;
1118 } 1170 }
1119 1171
1120 SvREFCNT_inc (sv); 1172 FREETMPS; LEAVE;
1173 }
1121 } 1174 }
1122 1175
1123 if (dec->json.cb_object) 1176 if (dec->json.cb_object)
1124 { 1177 {
1178 dSP;
1125 int count; 1179 int count;
1126 1180
1127 dSP; ENTER; SAVETMPS; PUSHMARK (SP); 1181 ENTER; SAVETMPS; PUSHMARK (SP);
1128 XPUSHs (sv_2mortal (sv)); 1182 XPUSHs (sv_2mortal (sv));
1129 1183
1130 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN; 1184 PUTBACK; count = call_sv (dec->json.cb_object, G_ARRAY); SPAGAIN;
1131 1185
1132 if (count == 1) 1186 if (count == 1)
1133 { 1187 {
1134 sv = newSVsv (POPs); 1188 sv = newSVsv (POPs);
1135 goto filter_ok; 1189 FREETMPS; LEAVE;
1190 return sv;
1136 } 1191 }
1137 1192
1138 SvREFCNT_inc (sv); 1193 SvREFCNT_inc (sv);
1194 FREETMPS; LEAVE;
1139 } 1195 }
1140
1141filter_ok:
1142 FREETMPS; LEAVE;
1143 } 1196 }
1144 1197
1145 return sv; 1198 return sv;
1146 1199
1147fail: 1200fail:
1317 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false); 1370 json_false = get_sv ("JSON::XS::false", 1); SvREADONLY_on (json_false);
1318} 1371}
1319 1372
1320PROTOTYPES: DISABLE 1373PROTOTYPES: DISABLE
1321 1374
1375void CLONE (...)
1376 CODE:
1377 json_stash = 0;
1378 json_boolean_stash = 0;
1379
1322void new (char *klass) 1380void new (char *klass)
1323 PPCODE: 1381 PPCODE:
1324{ 1382{
1383 HV *stash = !JSON_SLOW || json_stash
1384 ? json_stash
1385 : gv_stashpv ("JSON::XS", 1);
1325 SV *pv = NEWSV (0, sizeof (JSON)); 1386 SV *pv = NEWSV (0, sizeof (JSON));
1326 SvPOK_only (pv); 1387 SvPOK_only (pv);
1327 Zero (SvPVX (pv), 1, JSON); 1388 Zero (SvPVX (pv), 1, JSON);
1328 ((JSON *)SvPVX (pv))->flags = F_DEFAULT; 1389 ((JSON *)SvPVX (pv))->flags = F_DEFAULT;
1329 XPUSHs (sv_2mortal (sv_bless (newRV_noinc (pv), json_stash))); 1390 XPUSHs (sv_2mortal (sv_bless (newRV_noinc (pv), stash)));
1330} 1391}
1331 1392
1332void ascii (JSON *self, int enable = 1) 1393void ascii (JSON *self, int enable = 1)
1333 ALIAS: 1394 ALIAS:
1334 ascii = F_ASCII 1395 ascii = F_ASCII
1383 1444
1384 XPUSHs (ST (0)); 1445 XPUSHs (ST (0));
1385} 1446}
1386 1447
1387void filter_json_object (JSON *self, SV *cb = &PL_sv_undef) 1448void filter_json_object (JSON *self, SV *cb = &PL_sv_undef)
1388 ALIAS:
1389 filter_json_single_key_object = 1
1390 PPCODE: 1449 PPCODE:
1391{ 1450{
1392 SV **svp; 1451 SvREFCNT_dec (self->cb_object);
1452 self->cb_object = SvOK (cb) ? newSVsv (cb) : 0;
1393 1453
1454 XPUSHs (ST (0));
1455}
1456
1457void filter_json_single_key_object (JSON *self, SV *key, SV *cb = &PL_sv_undef)
1458 PPCODE:
1459{
1460 if (!self->cb_sk_object)
1461 self->cb_sk_object = newHV ();
1462
1394 if (!SvOK (cb)) 1463 if (SvOK (cb))
1395 cb = 0; 1464 hv_store_ent (self->cb_sk_object, key, newSVsv (cb), 0);
1396 else 1465 else
1397 cb = newSVsv (cb);
1398
1399 switch (ix)
1400 { 1466 {
1401 case 0: svp = &self->cb_object ; break; 1467 hv_delete_ent (self->cb_sk_object, key, G_DISCARD, 0);
1402 case 1: svp = &self->cb_sk_object; break; 1468
1469 if (!HvKEYS (self->cb_sk_object))
1470 {
1471 SvREFCNT_dec (self->cb_sk_object);
1472 self->cb_sk_object = 0;
1473 }
1403 } 1474 }
1404
1405 if (*svp)
1406 SvREFCNT_dec (*svp);
1407
1408 *svp = cb;
1409 1475
1410 XPUSHs (ST (0)); 1476 XPUSHs (ST (0));
1411} 1477}
1412 1478
1413void encode (JSON *self, SV *scalar) 1479void encode (JSON *self, SV *scalar)
1425 EXTEND (SP, 2); 1491 EXTEND (SP, 2);
1426 PUSHs (decode_json (jsonstr, self, &offset)); 1492 PUSHs (decode_json (jsonstr, self, &offset));
1427 PUSHs (sv_2mortal (newSVuv (offset))); 1493 PUSHs (sv_2mortal (newSVuv (offset)));
1428} 1494}
1429 1495
1496void DESTROY (JSON *self)
1497 CODE:
1498 SvREFCNT_dec (self->cb_sk_object);
1499 SvREFCNT_dec (self->cb_object);
1500
1430PROTOTYPES: ENABLE 1501PROTOTYPES: ENABLE
1431 1502
1432void to_json (SV *scalar) 1503void to_json (SV *scalar)
1433 PPCODE: 1504 PPCODE:
1434{ 1505{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines