2 * Store and retrieve mechanism.
4 * Copyright (c) 1995-2000, Raphael Manfredi
6 * You may redistribute only under the same terms as Perl 5, as specified
7 * in the README file that comes with the distribution.
11 #define PERL_NO_GET_CONTEXT /* we want efficiency */
17 #include <patchlevel.h> /* Perl's one, needed since 5.6 */
20 #if !defined(PERL_VERSION) || PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 9) || (PERL_VERSION == 10 && PERL_SUBVERSION < 1)
21 #define NEED_load_module
22 #define NEED_vload_module
23 #define NEED_newCONSTSUB
24 #define NEED_newSVpvn_flags
25 #define NEED_newRV_noinc
26 #include "ppport.h" /* handle old perls */
30 #define DEBUGME /* Debug mode, turns assertions on as well */
31 #define DASSERT /* Assertion mode */
35 * Pre PerlIO time when none of USE_PERLIO and PERLIO_IS_STDIO is defined
36 * Provide them with the necessary defines so they can build with pre-5.004.
39 #ifndef PERLIO_IS_STDIO
41 #define PerlIO_getc(x) getc(x)
42 #define PerlIO_putc(f,x) putc(x,f)
43 #define PerlIO_read(x,y,z) fread(y,1,z,x)
44 #define PerlIO_write(x,y,z) fwrite(y,1,z,x)
45 #define PerlIO_stdoutf printf
46 #endif /* PERLIO_IS_STDIO */
47 #endif /* USE_PERLIO */
50 * Earlier versions of perl might be used, we can't assume they have the latest!
53 #ifndef HvSHAREKEYS_off
54 #define HvSHAREKEYS_off(hv) /* Ignore */
57 /* perl <= 5.8.2 needs this */
59 # define SvIsCOW(sv) 0
63 # define HvRITER_set(hv,r) (HvRITER(hv) = r)
66 # define HvEITER_set(hv,r) (HvEITER(hv) = r)
70 # define HvRITER_get HvRITER
73 # define HvEITER_get HvEITER
76 #ifndef HvPLACEHOLDERS_get
77 # define HvPLACEHOLDERS_get HvPLACEHOLDERS
81 # define HvTOTALKEYS(hv) HvKEYS(hv)
91 * TRACEME() will only output things when the $Storable::DEBUGME is true.
96 if (SvTRUE(perl_get_sv("Storable::DEBUGME", GV_ADD))) \
97 { PerlIO_stdoutf x; PerlIO_stdoutf("\n"); } \
104 #define ASSERT(x,y) \
107 PerlIO_stdoutf("ASSERT FAILED (\"%s\", line %d): ", \
108 __FILE__, __LINE__); \
109 PerlIO_stdoutf y; PerlIO_stdoutf("\n"); \
120 #define C(x) ((char) (x)) /* For markers with dynamic retrieval handling */
122 #define SX_OBJECT C(0) /* Already stored object */
123 #define SX_LSCALAR C(1) /* Scalar (large binary) follows (length, data) */
124 #define SX_ARRAY C(2) /* Array forthcoming (size, item list) */
125 #define SX_HASH C(3) /* Hash forthcoming (size, key/value pair list) */
126 #define SX_REF C(4) /* Reference to object forthcoming */
127 #define SX_UNDEF C(5) /* Undefined scalar */
128 #define SX_INTEGER C(6) /* Integer forthcoming */
129 #define SX_DOUBLE C(7) /* Double forthcoming */
130 #define SX_BYTE C(8) /* (signed) byte forthcoming */
131 #define SX_NETINT C(9) /* Integer in network order forthcoming */
132 #define SX_SCALAR C(10) /* Scalar (binary, small) follows (length, data) */
133 #define SX_TIED_ARRAY C(11) /* Tied array forthcoming */
134 #define SX_TIED_HASH C(12) /* Tied hash forthcoming */
135 #define SX_TIED_SCALAR C(13) /* Tied scalar forthcoming */
136 #define SX_SV_UNDEF C(14) /* Perl's immortal PL_sv_undef */
137 #define SX_SV_YES C(15) /* Perl's immortal PL_sv_yes */
138 #define SX_SV_NO C(16) /* Perl's immortal PL_sv_no */
139 #define SX_BLESS C(17) /* Object is blessed */
140 #define SX_IX_BLESS C(18) /* Object is blessed, classname given by index */
141 #define SX_HOOK C(19) /* Stored via hook, user-defined */
142 #define SX_OVERLOAD C(20) /* Overloaded reference */
143 #define SX_TIED_KEY C(21) /* Tied magic key forthcoming */
144 #define SX_TIED_IDX C(22) /* Tied magic index forthcoming */
145 #define SX_UTF8STR C(23) /* UTF-8 string forthcoming (small) */
146 #define SX_LUTF8STR C(24) /* UTF-8 string forthcoming (large) */
147 #define SX_FLAG_HASH C(25) /* Hash with flags forthcoming (size, flags, key/flags/value triplet list) */
148 #define SX_CODE C(26) /* Code references as perl source code */
149 #define SX_WEAKREF C(27) /* Weak reference to object forthcoming */
150 #define SX_WEAKOVERLOAD C(28) /* Overloaded weak reference */
151 #define SX_ERROR C(29) /* Error */
154 * Those are only used to retrieve "old" pre-0.6 binary images.
156 #define SX_ITEM 'i' /* An array item introducer */
157 #define SX_IT_UNDEF 'I' /* Undefined array item */
158 #define SX_KEY 'k' /* A hash key introducer */
159 #define SX_VALUE 'v' /* A hash value introducer */
160 #define SX_VL_UNDEF 'V' /* Undefined hash value */
163 * Those are only used to retrieve "old" pre-0.7 binary images
166 #define SX_CLASS 'b' /* Object is blessed, class name length <255 */
167 #define SX_LG_CLASS 'B' /* Object is blessed, class name length >255 */
168 #define SX_STORED 'X' /* End of object */
171 * Limits between short/long length representation.
174 #define LG_SCALAR 255 /* Large scalar length limit */
175 #define LG_BLESS 127 /* Large classname bless limit */
181 #define ST_STORE 0x1 /* Store operation */
182 #define ST_RETRIEVE 0x2 /* Retrieval operation */
183 #define ST_CLONE 0x4 /* Deep cloning operation */
186 * The following structure is used for hash table key retrieval. Since, when
187 * retrieving objects, we'll be facing blessed hash references, it's best
188 * to pre-allocate that buffer once and resize it as the need arises, never
189 * freeing it (keys will be saved away someplace else anyway, so even large
190 * keys are not enough a motivation to reclaim that space).
192 * This structure is also used for memory store/retrieve operations which
193 * happen in a fixed place before being malloc'ed elsewhere if persistence
194 * is required. Hence the aptr pointer.
197 char *arena; /* Will hold hash key strings, resized as needed */
198 STRLEN asiz; /* Size of aforementioned buffer */
199 char *aptr; /* Arena pointer, for in-place read/write ops */
200 char *aend; /* First invalid address */
205 * A hash table records the objects which have already been stored.
206 * Those are referred to as SX_OBJECT in the file, and their "tag" (i.e.
207 * an arbitrary sequence number) is used to identify them.
210 * An array table records the objects which have already been retrieved,
211 * as seen by the tag determined by counting the objects themselves. The
212 * reference to that retrieved object is kept in the table, and is returned
213 * when an SX_OBJECT is found bearing that same tag.
215 * The same processing is used to record "classname" for blessed objects:
216 * indexing by a hash at store time, and via an array at retrieve time.
219 typedef unsigned long stag_t; /* Used by pre-0.6 binary format */
222 * The following "thread-safe" related defines were contributed by
223 * Murray Nesbitt <murray@activestate.com> and integrated by RAM, who
224 * only renamed things a little bit to ensure consistency with surrounding
225 * code. -- RAM, 14/09/1999
227 * The original patch suffered from the fact that the stcxt_t structure
228 * was global. Murray tried to minimize the impact on the code as much as
231 * Starting with 0.7, Storable can be re-entrant, via the STORABLE_xxx hooks
232 * on objects. Therefore, the notion of context needs to be generalized,
236 #define MY_VERSION "Storable(" XS_VERSION ")"
240 * Conditional UTF8 support.
244 #define STORE_UTF8STR(pv, len) STORE_PV_LEN(pv, len, SX_UTF8STR, SX_LUTF8STR)
245 #define HAS_UTF8_SCALARS
247 #define HAS_UTF8_HASHES
250 /* 5.6 perl has utf8 scalars but not hashes */
254 #define STORE_UTF8STR(pv, len) CROAK(("panic: storing UTF8 in non-UTF8 perl"))
257 #define UTF8_CROAK() CROAK(("Cannot retrieve UTF8 data in non-UTF8 perl"))
260 #define WEAKREF_CROAK() CROAK(("Cannot retrieve weak references in this perl"))
263 #ifdef HvPLACEHOLDERS
264 #define HAS_RESTRICTED_HASHES
266 #define HVhek_PLACEHOLD 0x200
267 #define RESTRICTED_HASH_CROAK() CROAK(("Cannot retrieve restricted hash"))
271 #define HAS_HASH_KEY_FLAGS
275 #define USE_PTR_TABLE
279 * Fields s_tainted and s_dirty are prefixed with s_ because Perl's include
280 * files remap tainted and dirty when threading is enabled. That's bad for
281 * perl to remap such common words. -- RAM, 29/09/00
285 typedef struct stcxt {
286 int entry; /* flags recursion */
287 int optype; /* type of traversal operation */
288 /* which objects have been seen, store time.
289 tags are numbers, which are cast to (SV *) and stored directly */
291 /* use pseen if we have ptr_tables. We have to store tag+1, because
292 tag numbers start at 0, and we can't store (SV *) 0 in a ptr_table
293 without it being confused for a fetch lookup failure. */
294 struct ptr_tbl *pseen;
295 /* Still need hseen for the 0.6 file format code. */
298 AV *hook_seen; /* which SVs were returned by STORABLE_freeze() */
299 AV *aseen; /* which objects have been seen, retrieve time */
300 IV where_is_undef; /* index in aseen of PL_sv_undef */
301 HV *hclass; /* which classnames have been seen, store time */
302 AV *aclass; /* which classnames have been seen, retrieve time */
303 HV *hook; /* cache for hook methods per class name */
304 IV tagnum; /* incremented at store time for each seen object */
305 IV classnum; /* incremented at store time for each seen classname */
306 int netorder; /* true if network order used */
307 int s_tainted; /* true if input source is tainted, at retrieve time */
308 int forgive_me; /* whether to be forgiving... */
309 int deparse; /* whether to deparse code refs */
310 SV *eval; /* whether to eval source code */
311 int canonical; /* whether to store hashes sorted by key */
312 #ifndef HAS_RESTRICTED_HASHES
313 int derestrict; /* whether to downgrade restricted hashes */
316 int use_bytes; /* whether to bytes-ify utf8 */
318 int accept_future_minor; /* croak immediately on future minor versions? */
319 int s_dirty; /* context is dirty due to CROAK() -- can be cleaned */
320 int membuf_ro; /* true means membuf is read-only and msaved is rw */
321 struct extendable keybuf; /* for hash key retrieval */
322 struct extendable membuf; /* for memory store/retrieve operations */
323 struct extendable msaved; /* where potentially valid mbuf is saved */
324 PerlIO *fio; /* where I/O are performed, NULL for memory */
325 int ver_major; /* major of version for retrieved object */
326 int ver_minor; /* minor of version for retrieved object */
327 SV *(**retrieve_vtbl)(pTHX_ struct stcxt *, const char *); /* retrieve dispatch table */
328 SV *prev; /* contexts chained backwards in real recursion */
329 SV *my_sv; /* the blessed scalar who's SvPVX() I am */
330 int in_retrieve_overloaded; /* performance hack for retrieving overloaded objects */
333 #define NEW_STORABLE_CXT_OBJ(cxt) \
335 SV *self = newSV(sizeof(stcxt_t) - 1); \
336 SV *my_sv = newRV_noinc(self); \
337 sv_bless(my_sv, gv_stashpv("Storable::Cxt", GV_ADD)); \
338 cxt = (stcxt_t *)SvPVX(self); \
339 Zero(cxt, 1, stcxt_t); \
340 cxt->my_sv = my_sv; \
343 #if defined(MULTIPLICITY) || defined(PERL_OBJECT) || defined(PERL_CAPI)
345 #if (PATCHLEVEL <= 4) && (SUBVERSION < 68)
347 SV *perinterp_sv = perl_get_sv(MY_VERSION, 0)
348 #else /* >= perl5.004_68 */
350 SV *perinterp_sv = *hv_fetch(PL_modglobal, \
351 MY_VERSION, sizeof(MY_VERSION)-1, TRUE)
352 #endif /* < perl5.004_68 */
354 #define dSTCXT_PTR(T,name) \
355 T name = ((perinterp_sv && SvIOK(perinterp_sv) && SvIVX(perinterp_sv) \
356 ? (T)SvPVX(SvRV(INT2PTR(SV*,SvIVX(perinterp_sv)))) : (T) 0))
359 dSTCXT_PTR(stcxt_t *, cxt)
363 NEW_STORABLE_CXT_OBJ(cxt); \
364 sv_setiv(perinterp_sv, PTR2IV(cxt->my_sv))
366 #define SET_STCXT(x) \
369 sv_setiv(perinterp_sv, PTR2IV(x->my_sv)); \
372 #else /* !MULTIPLICITY && !PERL_OBJECT && !PERL_CAPI */
374 static stcxt_t *Context_ptr = NULL;
375 #define dSTCXT stcxt_t *cxt = Context_ptr
376 #define SET_STCXT(x) Context_ptr = x
379 NEW_STORABLE_CXT_OBJ(cxt); \
383 #endif /* MULTIPLICITY || PERL_OBJECT || PERL_CAPI */
387 * Croaking implies a memory leak, since we don't use setjmp/longjmp
388 * to catch the exit and free memory used during store or retrieve
389 * operations. This is not too difficult to fix, but I need to understand
390 * how Perl does it, and croaking is exceptional anyway, so I lack the
391 * motivation to do it.
393 * The current workaround is to mark the context as dirty when croaking,
394 * so that data structures can be freed whenever we renter Storable code
395 * (but only *then*: it's a workaround, not a fix).
397 * This is also imperfect, because we don't really know how far they trapped
398 * the croak(), and when we were recursing, we won't be able to clean anything
399 * but the topmost context stacked.
402 #define CROAK(x) STMT_START { cxt->s_dirty = 1; croak x; } STMT_END
405 * End of "thread-safe" related definitions.
411 * Keep only the low 32 bits of a pointer (used for tags, which are not
416 #define LOW_32BITS(x) ((I32) (x))
418 #define LOW_32BITS(x) ((I32) ((unsigned long) (x) & 0xffffffffUL))
424 * Hack for Crays, where sizeof(I32) == 8, and which are big-endians.
425 * Used in the WLEN and RLEN macros.
429 #define oI(x) ((I32 *) ((char *) (x) + 4))
430 #define oS(x) ((x) - 4)
431 #define oC(x) (x = 0)
440 * key buffer handling
442 #define kbuf (cxt->keybuf).arena
443 #define ksiz (cxt->keybuf).asiz
447 TRACEME(("** allocating kbuf of 128 bytes")); \
448 New(10003, kbuf, 128, char); \
455 TRACEME(("** extending kbuf to %d bytes (had %d)", x+1, ksiz)); \
456 Renew(kbuf, x+1, char); \
462 * memory buffer handling
464 #define mbase (cxt->membuf).arena
465 #define msiz (cxt->membuf).asiz
466 #define mptr (cxt->membuf).aptr
467 #define mend (cxt->membuf).aend
469 #define MGROW (1 << 13)
470 #define MMASK (MGROW - 1)
472 #define round_mgrow(x) \
473 ((unsigned long) (((unsigned long) (x) + MMASK) & ~MMASK))
474 #define trunc_int(x) \
475 ((unsigned long) ((unsigned long) (x) & ~(sizeof(int)-1)))
476 #define int_aligned(x) \
477 ((unsigned long) (x) == trunc_int(x))
479 #define MBUF_INIT(x) \
482 TRACEME(("** allocating mbase of %d bytes", MGROW)); \
483 New(10003, mbase, MGROW, char); \
484 msiz = (STRLEN)MGROW; \
490 mend = mbase + msiz; \
493 #define MBUF_TRUNC(x) mptr = mbase + x
494 #define MBUF_SIZE() (mptr - mbase)
500 * Those macros are used in do_retrieve() to save the current memory
501 * buffer into cxt->msaved, before MBUF_LOAD() can be used to retrieve
502 * data from a string.
504 #define MBUF_SAVE_AND_LOAD(in) \
506 ASSERT(!cxt->membuf_ro, ("mbase not already saved")); \
507 cxt->membuf_ro = 1; \
508 TRACEME(("saving mbuf")); \
509 StructCopy(&cxt->membuf, &cxt->msaved, struct extendable); \
513 #define MBUF_RESTORE() \
515 ASSERT(cxt->membuf_ro, ("mbase is read-only")); \
516 cxt->membuf_ro = 0; \
517 TRACEME(("restoring mbuf")); \
518 StructCopy(&cxt->msaved, &cxt->membuf, struct extendable); \
522 * Use SvPOKp(), because SvPOK() fails on tainted scalars.
523 * See store_scalar() for other usage of this workaround.
525 #define MBUF_LOAD(v) \
527 ASSERT(cxt->membuf_ro, ("mbase is read-only")); \
529 CROAK(("Not a scalar string")); \
530 mptr = mbase = SvPV(v, msiz); \
531 mend = mbase + msiz; \
534 #define MBUF_XTEND(x) \
536 int nsz = (int) round_mgrow((x)+msiz); \
537 int offset = mptr - mbase; \
538 ASSERT(!cxt->membuf_ro, ("mbase is not read-only")); \
539 TRACEME(("** extending mbase from %d to %d bytes (wants %d new)", \
541 Renew(mbase, nsz, char); \
543 mptr = mbase + offset; \
544 mend = mbase + nsz; \
547 #define MBUF_CHK(x) \
549 if ((mptr + (x)) > mend) \
553 #define MBUF_GETC(x) \
556 x = (int) (unsigned char) *mptr++; \
562 #define MBUF_GETINT(x) \
565 if ((mptr + 4) <= mend) { \
566 memcpy(oI(&x), mptr, 4); \
572 #define MBUF_GETINT(x) \
574 if ((mptr + sizeof(int)) <= mend) { \
575 if (int_aligned(mptr)) \
578 memcpy(&x, mptr, sizeof(int)); \
579 mptr += sizeof(int); \
585 #define MBUF_READ(x,s) \
587 if ((mptr + (s)) <= mend) { \
588 memcpy(x, mptr, s); \
594 #define MBUF_SAFEREAD(x,s,z) \
596 if ((mptr + (s)) <= mend) { \
597 memcpy(x, mptr, s); \
605 #define MBUF_SAFEPVREAD(x,s,z) \
607 if ((mptr + (s)) <= mend) { \
608 memcpy(x, mptr, s); \
616 #define MBUF_PUTC(c) \
619 *mptr++ = (char) c; \
622 *mptr++ = (char) c; \
627 #define MBUF_PUTINT(i) \
630 memcpy(mptr, oI(&i), 4); \
634 #define MBUF_PUTINT(i) \
636 MBUF_CHK(sizeof(int)); \
637 if (int_aligned(mptr)) \
640 memcpy(mptr, &i, sizeof(int)); \
641 mptr += sizeof(int); \
645 #define MBUF_WRITE(x,s) \
648 memcpy(mptr, x, s); \
653 * Possible return values for sv_type().
657 #define svis_SCALAR 1
661 #define svis_TIED_ITEM 5
669 #define SHF_TYPE_MASK 0x03
670 #define SHF_LARGE_CLASSLEN 0x04
671 #define SHF_LARGE_STRLEN 0x08
672 #define SHF_LARGE_LISTLEN 0x10
673 #define SHF_IDX_CLASSNAME 0x20
674 #define SHF_NEED_RECURSE 0x40
675 #define SHF_HAS_LIST 0x80
678 * Types for SX_HOOK (last 2 bits in flags).
684 #define SHT_EXTRA 3 /* Read extra byte for type */
687 * The following are held in the "extra byte"...
690 #define SHT_TSCALAR 4 /* 4 + 0 -- tied scalar */
691 #define SHT_TARRAY 5 /* 4 + 1 -- tied array */
692 #define SHT_THASH 6 /* 4 + 2 -- tied hash */
695 * per hash flags for flagged hashes
698 #define SHV_RESTRICTED 0x01
701 * per key flags for flagged hashes
704 #define SHV_K_UTF8 0x01
705 #define SHV_K_WASUTF8 0x02
706 #define SHV_K_LOCKED 0x04
707 #define SHV_K_ISSV 0x08
708 #define SHV_K_PLACEHOLDER 0x10
711 * Before 0.6, the magic string was "perl-store" (binary version number 0).
713 * Since 0.6 introduced many binary incompatibilities, the magic string has
714 * been changed to "pst0" to allow an old image to be properly retrieved by
715 * a newer Storable, but ensure a newer image cannot be retrieved with an
718 * At 0.7, objects are given the ability to serialize themselves, and the
719 * set of markers is extended, backward compatibility is not jeopardized,
720 * so the binary version number could have remained unchanged. To correctly
721 * spot errors if a file making use of 0.7-specific extensions is given to
722 * 0.6 for retrieval, the binary version was moved to "2". And I'm introducing
723 * a "minor" version, to better track this kind of evolution from now on.
726 static const char old_magicstr[] = "perl-store"; /* Magic number before 0.6 */
727 static const char magicstr[] = "pst0"; /* Used as a magic number */
729 #define MAGICSTR_BYTES 'p','s','t','0'
730 #define OLDMAGICSTR_BYTES 'p','e','r','l','-','s','t','o','r','e'
732 /* 5.6.x introduced the ability to have IVs as long long.
733 However, Configure still defined BYTEORDER based on the size of a long.
734 Storable uses the BYTEORDER value as part of the header, but doesn't
735 explicitly store sizeof(IV) anywhere in the header. Hence on 5.6.x built
736 with IV as long long on a platform that uses Configure (ie most things
737 except VMS and Windows) headers are identical for the different IV sizes,
738 despite the files containing some fields based on sizeof(IV)
740 5.8 is consistent - the following redefinition kludge is only needed on
741 5.6.x, but the interwork is needed on 5.8 while data survives in files
746 #if defined (IVSIZE) && (IVSIZE == 8) && (LONGSIZE == 4)
747 #ifndef NO_56_INTERWORK_KLUDGE
748 #define USE_56_INTERWORK_KLUDGE
750 #if BYTEORDER == 0x1234
752 #define BYTEORDER 0x12345678
754 #if BYTEORDER == 0x4321
756 #define BYTEORDER 0x87654321
761 #if BYTEORDER == 0x1234
762 #define BYTEORDER_BYTES '1','2','3','4'
764 #if BYTEORDER == 0x12345678
765 #define BYTEORDER_BYTES '1','2','3','4','5','6','7','8'
766 #ifdef USE_56_INTERWORK_KLUDGE
767 #define BYTEORDER_BYTES_56 '1','2','3','4'
770 #if BYTEORDER == 0x87654321
771 #define BYTEORDER_BYTES '8','7','6','5','4','3','2','1'
772 #ifdef USE_56_INTERWORK_KLUDGE
773 #define BYTEORDER_BYTES_56 '4','3','2','1'
776 #if BYTEORDER == 0x4321
777 #define BYTEORDER_BYTES '4','3','2','1'
779 #error Unknown byteorder. Please append your byteorder to Storable.xs
785 static const char byteorderstr[] = {BYTEORDER_BYTES, 0};
786 #ifdef USE_56_INTERWORK_KLUDGE
787 static const char byteorderstr_56[] = {BYTEORDER_BYTES_56, 0};
790 #define STORABLE_BIN_MAJOR 2 /* Binary major "version" */
791 #define STORABLE_BIN_MINOR 8 /* Binary minor "version" */
793 #if (PATCHLEVEL <= 5)
794 #define STORABLE_BIN_WRITE_MINOR 4
797 * Perl 5.6.0 onwards can do weak references.
799 #define STORABLE_BIN_WRITE_MINOR 8
800 #endif /* (PATCHLEVEL <= 5) */
802 #if (PATCHLEVEL < 8 || (PATCHLEVEL == 8 && SUBVERSION < 1))
803 #define PL_sv_placeholder PL_sv_undef
807 * Useful store shortcuts...
811 * Note that if you put more than one mark for storing a particular
812 * type of thing, *and* in the retrieve_foo() function you mark both
813 * the thingy's you get off with SEEN(), you *must* increase the
814 * tagnum with cxt->tagnum++ along with this macro!
821 else if (PerlIO_putc(cxt->fio, x) == EOF) \
825 #define WRITE_I32(x) \
827 ASSERT(sizeof(x) == sizeof(I32), ("writing an I32")); \
830 else if (PerlIO_write(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
837 if (cxt->netorder) { \
838 int y = (int) htonl(x); \
841 else if (PerlIO_write(cxt->fio,oI(&y),oS(sizeof(y))) != oS(sizeof(y))) \
846 else if (PerlIO_write(cxt->fio,oI(&x),oS(sizeof(x))) != oS(sizeof(x))) \
851 #define WLEN(x) WRITE_I32(x)
858 else if (PerlIO_write(cxt->fio, x, y) != y) \
862 #define STORE_PV_LEN(pv, len, small, large) \
864 if (len <= LG_SCALAR) { \
865 unsigned char clen = (unsigned char) len; \
877 #define STORE_SCALAR(pv, len) STORE_PV_LEN(pv, len, SX_SCALAR, SX_LSCALAR)
880 * Store &PL_sv_undef in arrays without recursing through store().
882 #define STORE_SV_UNDEF() \
885 PUTMARK(SX_SV_UNDEF); \
889 * Useful retrieve shortcuts...
893 (cxt->fio ? PerlIO_getc(cxt->fio) : (mptr >= mend ? EOF : (int) *mptr++))
899 else if ((int) (x = PerlIO_getc(cxt->fio)) == EOF) \
903 #define READ_I32(x) \
905 ASSERT(sizeof(x) == sizeof(I32), ("reading an I32")); \
909 else if (PerlIO_read(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
919 else if (PerlIO_read(cxt->fio, oI(&x), oS(sizeof(x))) != oS(sizeof(x))) \
922 x = (int) ntohl(x); \
925 #define RLEN(x) READ_I32(x)
932 else if (PerlIO_read(cxt->fio, x, y) != y) \
936 #define SAFEREAD(x,y,z) \
939 MBUF_SAFEREAD(x,y,z); \
940 else if (PerlIO_read(cxt->fio, x, y) != y) { \
946 #define SAFEPVREAD(x,y,z) \
949 MBUF_SAFEPVREAD(x,y,z); \
950 else if (PerlIO_read(cxt->fio, x, y) != y) { \
957 * This macro is used at retrieve time, to remember where object 'y', bearing a
958 * given tag 'tagnum', has been retrieved. Next time we see an SX_OBJECT marker,
959 * we'll therefore know where it has been retrieved and will be able to
960 * share the same reference, as in the original stored memory image.
962 * We also need to bless objects ASAP for hooks (which may compute "ref $x"
963 * on the objects given to STORABLE_thaw and expect that to be defined), and
964 * also for overloaded objects (for which we might not find the stash if the
965 * object is not blessed yet--this might occur for overloaded objects that
966 * refer to themselves indirectly: if we blessed upon return from a sub
967 * retrieve(), the SX_OBJECT marker we'd found could not have overloading
968 * restored on it because the underlying object would not be blessed yet!).
970 * To achieve that, the class name of the last retrieved object is passed down
971 * recursively, and the first SEEN() call for which the class name is not NULL
972 * will bless the object.
974 * i should be true iff sv is immortal (ie PL_sv_yes, PL_sv_no or PL_sv_undef)
976 #define SEEN(y,c,i) \
980 if (av_store(cxt->aseen, cxt->tagnum++, i ? (SV*)(y) : SvREFCNT_inc(y)) == 0) \
982 TRACEME(("aseen(#%d) = 0x%"UVxf" (refcnt=%d)", cxt->tagnum-1, \
983 PTR2UV(y), SvREFCNT(y)-1)); \
985 BLESS((SV *) (y), c); \
989 * Bless `s' in `p', via a temporary reference, required by sv_bless().
990 * "A" magic is added before the sv_bless for overloaded classes, this avoids
991 * an expensive call to S_reset_amagic in sv_bless.
997 TRACEME(("blessing 0x%"UVxf" in %s", PTR2UV(s), (p))); \
998 stash = gv_stashpv((p), GV_ADD); \
999 ref = newRV_noinc(s); \
1000 if (cxt->in_retrieve_overloaded && Gv_AMG(stash)) \
1002 cxt->in_retrieve_overloaded = 0; \
1005 (void) sv_bless(ref, stash); \
1006 SvRV_set(ref, NULL); \
1007 SvREFCNT_dec(ref); \
1010 * sort (used in store_hash) - conditionally use qsort when
1011 * sortsv is not available ( <= 5.6.1 ).
1014 #if (PATCHLEVEL <= 6)
1016 #if defined(USE_ITHREADS)
1018 #define STORE_HASH_SORT \
1020 PerlInterpreter *orig_perl = PERL_GET_CONTEXT; \
1021 SAVESPTR(orig_perl); \
1022 PERL_SET_CONTEXT(aTHX); \
1023 qsort((char *) AvARRAY(av), len, sizeof(SV *), sortcmp); \
1026 #else /* ! USE_ITHREADS */
1028 #define STORE_HASH_SORT \
1029 qsort((char *) AvARRAY(av), len, sizeof(SV *), sortcmp);
1031 #endif /* USE_ITHREADS */
1033 #else /* PATCHLEVEL > 6 */
1035 #define STORE_HASH_SORT \
1036 sortsv(AvARRAY(av), len, Perl_sv_cmp);
1038 #endif /* PATCHLEVEL <= 6 */
1040 static int store(pTHX_ stcxt_t *cxt, SV *sv);
1041 static SV *retrieve(pTHX_ stcxt_t *cxt, const char *cname);
1044 * Dynamic dispatching table for SV store.
1047 static int store_ref(pTHX_ stcxt_t *cxt, SV *sv);
1048 static int store_scalar(pTHX_ stcxt_t *cxt, SV *sv);
1049 static int store_array(pTHX_ stcxt_t *cxt, AV *av);
1050 static int store_hash(pTHX_ stcxt_t *cxt, HV *hv);
1051 static int store_tied(pTHX_ stcxt_t *cxt, SV *sv);
1052 static int store_tied_item(pTHX_ stcxt_t *cxt, SV *sv);
1053 static int store_code(pTHX_ stcxt_t *cxt, CV *cv);
1054 static int store_other(pTHX_ stcxt_t *cxt, SV *sv);
1055 static int store_blessed(pTHX_ stcxt_t *cxt, SV *sv, int type, HV *pkg);
1057 typedef int (*sv_store_t)(pTHX_ stcxt_t *cxt, SV *sv);
1059 static const sv_store_t sv_store[] = {
1060 (sv_store_t)store_ref, /* svis_REF */
1061 (sv_store_t)store_scalar, /* svis_SCALAR */
1062 (sv_store_t)store_array, /* svis_ARRAY */
1063 (sv_store_t)store_hash, /* svis_HASH */
1064 (sv_store_t)store_tied, /* svis_TIED */
1065 (sv_store_t)store_tied_item, /* svis_TIED_ITEM */
1066 (sv_store_t)store_code, /* svis_CODE */
1067 (sv_store_t)store_other, /* svis_OTHER */
1070 #define SV_STORE(x) (*sv_store[x])
1073 * Dynamic dispatching tables for SV retrieval.
1076 static SV *retrieve_lscalar(pTHX_ stcxt_t *cxt, const char *cname);
1077 static SV *retrieve_lutf8str(pTHX_ stcxt_t *cxt, const char *cname);
1078 static SV *old_retrieve_array(pTHX_ stcxt_t *cxt, const char *cname);
1079 static SV *old_retrieve_hash(pTHX_ stcxt_t *cxt, const char *cname);
1080 static SV *retrieve_ref(pTHX_ stcxt_t *cxt, const char *cname);
1081 static SV *retrieve_undef(pTHX_ stcxt_t *cxt, const char *cname);
1082 static SV *retrieve_integer(pTHX_ stcxt_t *cxt, const char *cname);
1083 static SV *retrieve_double(pTHX_ stcxt_t *cxt, const char *cname);
1084 static SV *retrieve_byte(pTHX_ stcxt_t *cxt, const char *cname);
1085 static SV *retrieve_netint(pTHX_ stcxt_t *cxt, const char *cname);
1086 static SV *retrieve_scalar(pTHX_ stcxt_t *cxt, const char *cname);
1087 static SV *retrieve_utf8str(pTHX_ stcxt_t *cxt, const char *cname);
1088 static SV *retrieve_tied_array(pTHX_ stcxt_t *cxt, const char *cname);
1089 static SV *retrieve_tied_hash(pTHX_ stcxt_t *cxt, const char *cname);
1090 static SV *retrieve_tied_scalar(pTHX_ stcxt_t *cxt, const char *cname);
1091 static SV *retrieve_other(pTHX_ stcxt_t *cxt, const char *cname);
1093 typedef SV* (*sv_retrieve_t)(pTHX_ stcxt_t *cxt, const char *name);
1095 static const sv_retrieve_t sv_old_retrieve[] = {
1096 0, /* SX_OBJECT -- entry unused dynamically */
1097 (sv_retrieve_t)retrieve_lscalar, /* SX_LSCALAR */
1098 (sv_retrieve_t)old_retrieve_array, /* SX_ARRAY -- for pre-0.6 binaries */
1099 (sv_retrieve_t)old_retrieve_hash, /* SX_HASH -- for pre-0.6 binaries */
1100 (sv_retrieve_t)retrieve_ref, /* SX_REF */
1101 (sv_retrieve_t)retrieve_undef, /* SX_UNDEF */
1102 (sv_retrieve_t)retrieve_integer, /* SX_INTEGER */
1103 (sv_retrieve_t)retrieve_double, /* SX_DOUBLE */
1104 (sv_retrieve_t)retrieve_byte, /* SX_BYTE */
1105 (sv_retrieve_t)retrieve_netint, /* SX_NETINT */
1106 (sv_retrieve_t)retrieve_scalar, /* SX_SCALAR */
1107 (sv_retrieve_t)retrieve_tied_array, /* SX_ARRAY */
1108 (sv_retrieve_t)retrieve_tied_hash, /* SX_HASH */
1109 (sv_retrieve_t)retrieve_tied_scalar, /* SX_SCALAR */
1110 (sv_retrieve_t)retrieve_other, /* SX_SV_UNDEF not supported */
1111 (sv_retrieve_t)retrieve_other, /* SX_SV_YES not supported */
1112 (sv_retrieve_t)retrieve_other, /* SX_SV_NO not supported */
1113 (sv_retrieve_t)retrieve_other, /* SX_BLESS not supported */
1114 (sv_retrieve_t)retrieve_other, /* SX_IX_BLESS not supported */
1115 (sv_retrieve_t)retrieve_other, /* SX_HOOK not supported */
1116 (sv_retrieve_t)retrieve_other, /* SX_OVERLOADED not supported */
1117 (sv_retrieve_t)retrieve_other, /* SX_TIED_KEY not supported */
1118 (sv_retrieve_t)retrieve_other, /* SX_TIED_IDX not supported */
1119 (sv_retrieve_t)retrieve_other, /* SX_UTF8STR not supported */
1120 (sv_retrieve_t)retrieve_other, /* SX_LUTF8STR not supported */
1121 (sv_retrieve_t)retrieve_other, /* SX_FLAG_HASH not supported */
1122 (sv_retrieve_t)retrieve_other, /* SX_CODE not supported */
1123 (sv_retrieve_t)retrieve_other, /* SX_WEAKREF not supported */
1124 (sv_retrieve_t)retrieve_other, /* SX_WEAKOVERLOAD not supported */
1125 (sv_retrieve_t)retrieve_other, /* SX_ERROR */
1128 static SV *retrieve_array(pTHX_ stcxt_t *cxt, const char *cname);
1129 static SV *retrieve_hash(pTHX_ stcxt_t *cxt, const char *cname);
1130 static SV *retrieve_sv_undef(pTHX_ stcxt_t *cxt, const char *cname);
1131 static SV *retrieve_sv_yes(pTHX_ stcxt_t *cxt, const char *cname);
1132 static SV *retrieve_sv_no(pTHX_ stcxt_t *cxt, const char *cname);
1133 static SV *retrieve_blessed(pTHX_ stcxt_t *cxt, const char *cname);
1134 static SV *retrieve_idx_blessed(pTHX_ stcxt_t *cxt, const char *cname);
1135 static SV *retrieve_hook(pTHX_ stcxt_t *cxt, const char *cname);
1136 static SV *retrieve_overloaded(pTHX_ stcxt_t *cxt, const char *cname);
1137 static SV *retrieve_tied_key(pTHX_ stcxt_t *cxt, const char *cname);
1138 static SV *retrieve_tied_idx(pTHX_ stcxt_t *cxt, const char *cname);
1139 static SV *retrieve_flag_hash(pTHX_ stcxt_t *cxt, const char *cname);
1140 static SV *retrieve_code(pTHX_ stcxt_t *cxt, const char *cname);
1141 static SV *retrieve_weakref(pTHX_ stcxt_t *cxt, const char *cname);
1142 static SV *retrieve_weakoverloaded(pTHX_ stcxt_t *cxt, const char *cname);
1144 static const sv_retrieve_t sv_retrieve[] = {
1145 0, /* SX_OBJECT -- entry unused dynamically */
1146 (sv_retrieve_t)retrieve_lscalar, /* SX_LSCALAR */
1147 (sv_retrieve_t)retrieve_array, /* SX_ARRAY */
1148 (sv_retrieve_t)retrieve_hash, /* SX_HASH */
1149 (sv_retrieve_t)retrieve_ref, /* SX_REF */
1150 (sv_retrieve_t)retrieve_undef, /* SX_UNDEF */
1151 (sv_retrieve_t)retrieve_integer, /* SX_INTEGER */
1152 (sv_retrieve_t)retrieve_double, /* SX_DOUBLE */
1153 (sv_retrieve_t)retrieve_byte, /* SX_BYTE */
1154 (sv_retrieve_t)retrieve_netint, /* SX_NETINT */
1155 (sv_retrieve_t)retrieve_scalar, /* SX_SCALAR */
1156 (sv_retrieve_t)retrieve_tied_array, /* SX_ARRAY */
1157 (sv_retrieve_t)retrieve_tied_hash, /* SX_HASH */
1158 (sv_retrieve_t)retrieve_tied_scalar, /* SX_SCALAR */
1159 (sv_retrieve_t)retrieve_sv_undef, /* SX_SV_UNDEF */
1160 (sv_retrieve_t)retrieve_sv_yes, /* SX_SV_YES */
1161 (sv_retrieve_t)retrieve_sv_no, /* SX_SV_NO */
1162 (sv_retrieve_t)retrieve_blessed, /* SX_BLESS */
1163 (sv_retrieve_t)retrieve_idx_blessed, /* SX_IX_BLESS */
1164 (sv_retrieve_t)retrieve_hook, /* SX_HOOK */
1165 (sv_retrieve_t)retrieve_overloaded, /* SX_OVERLOAD */
1166 (sv_retrieve_t)retrieve_tied_key, /* SX_TIED_KEY */
1167 (sv_retrieve_t)retrieve_tied_idx, /* SX_TIED_IDX */
1168 (sv_retrieve_t)retrieve_utf8str, /* SX_UTF8STR */
1169 (sv_retrieve_t)retrieve_lutf8str, /* SX_LUTF8STR */
1170 (sv_retrieve_t)retrieve_flag_hash, /* SX_HASH */
1171 (sv_retrieve_t)retrieve_code, /* SX_CODE */
1172 (sv_retrieve_t)retrieve_weakref, /* SX_WEAKREF */
1173 (sv_retrieve_t)retrieve_weakoverloaded, /* SX_WEAKOVERLOAD */
1174 (sv_retrieve_t)retrieve_other, /* SX_ERROR */
1177 #define RETRIEVE(c,x) (*(c)->retrieve_vtbl[(x) >= SX_ERROR ? SX_ERROR : (x)])
1179 static SV *mbuf2sv(pTHX);
1182 *** Context management.
1188 * Called once per "thread" (interpreter) to initialize some global context.
1190 static void init_perinterp(pTHX)
1194 cxt->netorder = 0; /* true if network order used */
1195 cxt->forgive_me = -1; /* whether to be forgiving... */
1196 cxt->accept_future_minor = -1; /* would otherwise occur too late */
1202 * Called at the end of every context cleaning, to perform common reset
1205 static void reset_context(stcxt_t *cxt)
1209 cxt->optype &= ~(ST_STORE|ST_RETRIEVE); /* Leave ST_CLONE alone */
1213 * init_store_context
1215 * Initialize a new store context for real recursion.
1217 static void init_store_context(
1224 TRACEME(("init_store_context"));
1226 cxt->netorder = network_order;
1227 cxt->forgive_me = -1; /* Fetched from perl if needed */
1228 cxt->deparse = -1; /* Idem */
1229 cxt->eval = NULL; /* Idem */
1230 cxt->canonical = -1; /* Idem */
1231 cxt->tagnum = -1; /* Reset tag numbers */
1232 cxt->classnum = -1; /* Reset class numbers */
1233 cxt->fio = f; /* Where I/O are performed */
1234 cxt->optype = optype; /* A store, or a deep clone */
1235 cxt->entry = 1; /* No recursion yet */
1238 * The `hseen' table is used to keep track of each SV stored and their
1239 * associated tag numbers is special. It is "abused" because the
1240 * values stored are not real SV, just integers cast to (SV *),
1241 * which explains the freeing below.
1243 * It is also one possible bottleneck to achieve good storing speed,
1244 * so the "shared keys" optimization is turned off (unlikely to be
1245 * of any use here), and the hash table is "pre-extended". Together,
1246 * those optimizations increase the throughput by 12%.
1249 #ifdef USE_PTR_TABLE
1250 cxt->pseen = ptr_table_new();
1253 cxt->hseen = newHV(); /* Table where seen objects are stored */
1254 HvSHAREKEYS_off(cxt->hseen);
1257 * The following does not work well with perl5.004_04, and causes
1258 * a core dump later on, in a completely unrelated spot, which
1259 * makes me think there is a memory corruption going on.
1261 * Calling hv_ksplit(hseen, HBUCKETS) instead of manually hacking
1262 * it below does not make any difference. It seems to work fine
1263 * with perl5.004_68 but given the probable nature of the bug,
1264 * that does not prove anything.
1266 * It's a shame because increasing the amount of buckets raises
1267 * store() throughput by 5%, but until I figure this out, I can't
1268 * allow for this to go into production.
1270 * It is reported fixed in 5.005, hence the #if.
1272 #if PERL_VERSION >= 5
1273 #define HBUCKETS 4096 /* Buckets for %hseen */
1274 #ifndef USE_PTR_TABLE
1275 HvMAX(cxt->hseen) = HBUCKETS - 1; /* keys %hseen = $HBUCKETS; */
1280 * The `hclass' hash uses the same settings as `hseen' above, but it is
1281 * used to assign sequential tags (numbers) to class names for blessed
1284 * We turn the shared key optimization on.
1287 cxt->hclass = newHV(); /* Where seen classnames are stored */
1289 #if PERL_VERSION >= 5
1290 HvMAX(cxt->hclass) = HBUCKETS - 1; /* keys %hclass = $HBUCKETS; */
1294 * The `hook' hash table is used to keep track of the references on
1295 * the STORABLE_freeze hook routines, when found in some class name.
1297 * It is assumed that the inheritance tree will not be changed during
1298 * storing, and that no new method will be dynamically created by the
1302 cxt->hook = newHV(); /* Table where hooks are cached */
1305 * The `hook_seen' array keeps track of all the SVs returned by
1306 * STORABLE_freeze hooks for us to serialize, so that they are not
1307 * reclaimed until the end of the serialization process. Each SV is
1308 * only stored once, the first time it is seen.
1311 cxt->hook_seen = newAV(); /* Lists SVs returned by STORABLE_freeze */
1315 * clean_store_context
1317 * Clean store context by
1319 static void clean_store_context(pTHX_ stcxt_t *cxt)
1323 TRACEME(("clean_store_context"));
1325 ASSERT(cxt->optype & ST_STORE, ("was performing a store()"));
1328 * Insert real values into hashes where we stored faked pointers.
1331 #ifndef USE_PTR_TABLE
1333 hv_iterinit(cxt->hseen);
1334 while ((he = hv_iternext(cxt->hseen))) /* Extra () for -Wall, grr.. */
1335 HeVAL(he) = &PL_sv_undef;
1340 hv_iterinit(cxt->hclass);
1341 while ((he = hv_iternext(cxt->hclass))) /* Extra () for -Wall, grr.. */
1342 HeVAL(he) = &PL_sv_undef;
1346 * And now dispose of them...
1348 * The surrounding if() protection has been added because there might be
1349 * some cases where this routine is called more than once, during
1350 * exceptional events. This was reported by Marc Lehmann when Storable
1351 * is executed from mod_perl, and the fix was suggested by him.
1352 * -- RAM, 20/12/2000
1355 #ifdef USE_PTR_TABLE
1357 struct ptr_tbl *pseen = cxt->pseen;
1359 ptr_table_free(pseen);
1361 assert(!cxt->hseen);
1364 HV *hseen = cxt->hseen;
1367 sv_free((SV *) hseen);
1372 HV *hclass = cxt->hclass;
1375 sv_free((SV *) hclass);
1379 HV *hook = cxt->hook;
1382 sv_free((SV *) hook);
1385 if (cxt->hook_seen) {
1386 AV *hook_seen = cxt->hook_seen;
1388 av_undef(hook_seen);
1389 sv_free((SV *) hook_seen);
1392 cxt->forgive_me = -1; /* Fetched from perl if needed */
1393 cxt->deparse = -1; /* Idem */
1395 SvREFCNT_dec(cxt->eval);
1397 cxt->eval = NULL; /* Idem */
1398 cxt->canonical = -1; /* Idem */
1404 * init_retrieve_context
1406 * Initialize a new retrieve context for real recursion.
1408 static void init_retrieve_context(pTHX_ stcxt_t *cxt, int optype, int is_tainted)
1410 TRACEME(("init_retrieve_context"));
1413 * The hook hash table is used to keep track of the references on
1414 * the STORABLE_thaw hook routines, when found in some class name.
1416 * It is assumed that the inheritance tree will not be changed during
1417 * storing, and that no new method will be dynamically created by the
1421 cxt->hook = newHV(); /* Caches STORABLE_thaw */
1423 #ifdef USE_PTR_TABLE
1428 * If retrieving an old binary version, the cxt->retrieve_vtbl variable
1429 * was set to sv_old_retrieve. We'll need a hash table to keep track of
1430 * the correspondence between the tags and the tag number used by the
1431 * new retrieve routines.
1434 cxt->hseen = (((void*)cxt->retrieve_vtbl == (void*)sv_old_retrieve)
1437 cxt->aseen = newAV(); /* Where retrieved objects are kept */
1438 cxt->where_is_undef = -1; /* Special case for PL_sv_undef */
1439 cxt->aclass = newAV(); /* Where seen classnames are kept */
1440 cxt->tagnum = 0; /* Have to count objects... */
1441 cxt->classnum = 0; /* ...and class names as well */
1442 cxt->optype = optype;
1443 cxt->s_tainted = is_tainted;
1444 cxt->entry = 1; /* No recursion yet */
1445 #ifndef HAS_RESTRICTED_HASHES
1446 cxt->derestrict = -1; /* Fetched from perl if needed */
1448 #ifndef HAS_UTF8_ALL
1449 cxt->use_bytes = -1; /* Fetched from perl if needed */
1451 cxt->accept_future_minor = -1; /* Fetched from perl if needed */
1452 cxt->in_retrieve_overloaded = 0;
1456 * clean_retrieve_context
1458 * Clean retrieve context by
1460 static void clean_retrieve_context(pTHX_ stcxt_t *cxt)
1462 TRACEME(("clean_retrieve_context"));
1464 ASSERT(cxt->optype & ST_RETRIEVE, ("was performing a retrieve()"));
1467 AV *aseen = cxt->aseen;
1470 sv_free((SV *) aseen);
1472 cxt->where_is_undef = -1;
1475 AV *aclass = cxt->aclass;
1478 sv_free((SV *) aclass);
1482 HV *hook = cxt->hook;
1485 sv_free((SV *) hook);
1489 HV *hseen = cxt->hseen;
1492 sv_free((SV *) hseen); /* optional HV, for backward compat. */
1495 #ifndef HAS_RESTRICTED_HASHES
1496 cxt->derestrict = -1; /* Fetched from perl if needed */
1498 #ifndef HAS_UTF8_ALL
1499 cxt->use_bytes = -1; /* Fetched from perl if needed */
1501 cxt->accept_future_minor = -1; /* Fetched from perl if needed */
1503 cxt->in_retrieve_overloaded = 0;
1510 * A workaround for the CROAK bug: cleanup the last context.
1512 static void clean_context(pTHX_ stcxt_t *cxt)
1514 TRACEME(("clean_context"));
1516 ASSERT(cxt->s_dirty, ("dirty context"));
1521 ASSERT(!cxt->membuf_ro, ("mbase is not read-only"));
1523 if (cxt->optype & ST_RETRIEVE)
1524 clean_retrieve_context(aTHX_ cxt);
1525 else if (cxt->optype & ST_STORE)
1526 clean_store_context(aTHX_ cxt);
1530 ASSERT(!cxt->s_dirty, ("context is clean"));
1531 ASSERT(cxt->entry == 0, ("context is reset"));
1537 * Allocate a new context and push it on top of the parent one.
1538 * This new context is made globally visible via SET_STCXT().
1540 static stcxt_t *allocate_context(pTHX_ stcxt_t *parent_cxt)
1544 TRACEME(("allocate_context"));
1546 ASSERT(!parent_cxt->s_dirty, ("parent context clean"));
1548 NEW_STORABLE_CXT_OBJ(cxt);
1549 cxt->prev = parent_cxt->my_sv;
1552 ASSERT(!cxt->s_dirty, ("clean context"));
1560 * Free current context, which cannot be the "root" one.
1561 * Make the context underneath globally visible via SET_STCXT().
1563 static void free_context(pTHX_ stcxt_t *cxt)
1565 stcxt_t *prev = (stcxt_t *)(cxt->prev ? SvPVX(SvRV(cxt->prev)) : 0);
1567 TRACEME(("free_context"));
1569 ASSERT(!cxt->s_dirty, ("clean context"));
1570 ASSERT(prev, ("not freeing root context"));
1572 SvREFCNT_dec(cxt->my_sv);
1575 ASSERT(cxt, ("context not void"));
1585 * Tells whether we're in the middle of a store operation.
1587 static int is_storing(pTHX)
1591 return cxt->entry && (cxt->optype & ST_STORE);
1597 * Tells whether we're in the middle of a retrieve operation.
1599 static int is_retrieving(pTHX)
1603 return cxt->entry && (cxt->optype & ST_RETRIEVE);
1607 * last_op_in_netorder
1609 * Returns whether last operation was made using network order.
1611 * This is typically out-of-band information that might prove useful
1612 * to people wishing to convert native to network order data when used.
1614 static int last_op_in_netorder(pTHX)
1618 return cxt->netorder;
1622 *** Hook lookup and calling routines.
1628 * A wrapper on gv_fetchmethod_autoload() which caches results.
1630 * Returns the routine reference as an SV*, or null if neither the package
1631 * nor its ancestors know about the method.
1633 static SV *pkg_fetchmeth(
1641 const char *hvname = HvNAME_get(pkg);
1645 * The following code is the same as the one performed by UNIVERSAL::can
1649 gv = gv_fetchmethod_autoload(pkg, method, FALSE);
1650 if (gv && isGV(gv)) {
1651 sv = newRV((SV*) GvCV(gv));
1652 TRACEME(("%s->%s: 0x%"UVxf, hvname, method, PTR2UV(sv)));
1654 sv = newSVsv(&PL_sv_undef);
1655 TRACEME(("%s->%s: not found", hvname, method));
1659 * Cache the result, ignoring failure: if we can't store the value,
1660 * it just won't be cached.
1663 (void) hv_store(cache, hvname, strlen(hvname), sv, 0);
1665 return SvOK(sv) ? sv : (SV *) 0;
1671 * Force cached value to be undef: hook ignored even if present.
1673 static void pkg_hide(
1679 const char *hvname = HvNAME_get(pkg);
1680 PERL_UNUSED_ARG(method);
1681 (void) hv_store(cache,
1682 hvname, strlen(hvname), newSVsv(&PL_sv_undef), 0);
1688 * Discard cached value: a whole fetch loop will be retried at next lookup.
1690 static void pkg_uncache(
1696 const char *hvname = HvNAME_get(pkg);
1697 PERL_UNUSED_ARG(method);
1698 (void) hv_delete(cache, hvname, strlen(hvname), G_DISCARD);
1704 * Our own "UNIVERSAL::can", which caches results.
1706 * Returns the routine reference as an SV*, or null if the object does not
1707 * know about the method.
1717 const char *hvname = HvNAME_get(pkg);
1719 TRACEME(("pkg_can for %s->%s", hvname, method));
1722 * Look into the cache to see whether we already have determined
1723 * where the routine was, if any.
1725 * NOTA BENE: we don't use `method' at all in our lookup, since we know
1726 * that only one hook (i.e. always the same) is cached in a given cache.
1729 svh = hv_fetch(cache, hvname, strlen(hvname), FALSE);
1733 TRACEME(("cached %s->%s: not found", hvname, method));
1736 TRACEME(("cached %s->%s: 0x%"UVxf,
1737 hvname, method, PTR2UV(sv)));
1742 TRACEME(("not cached yet"));
1743 return pkg_fetchmeth(aTHX_ cache, pkg, method); /* Fetch and cache */
1749 * Call routine as obj->hook(av) in scalar context.
1750 * Propagates the single returned value if not called in void context.
1752 static SV *scalar_call(
1764 TRACEME(("scalar_call (cloning=%d)", cloning));
1771 XPUSHs(sv_2mortal(newSViv(cloning))); /* Cloning flag */
1773 SV **ary = AvARRAY(av);
1774 int cnt = AvFILLp(av) + 1;
1776 XPUSHs(ary[0]); /* Frozen string */
1777 for (i = 1; i < cnt; i++) {
1778 TRACEME(("pushing arg #%d (0x%"UVxf")...",
1779 i, PTR2UV(ary[i])));
1780 XPUSHs(sv_2mortal(newRV(ary[i])));
1785 TRACEME(("calling..."));
1786 count = perl_call_sv(hook, flags); /* Go back to Perl code */
1787 TRACEME(("count = %d", count));
1793 SvREFCNT_inc(sv); /* We're returning it, must stay alive! */
1806 * Call routine obj->hook(cloning) in list context.
1807 * Returns the list of returned values in an array.
1809 static AV *array_call(
1820 TRACEME(("array_call (cloning=%d)", cloning));
1826 XPUSHs(obj); /* Target object */
1827 XPUSHs(sv_2mortal(newSViv(cloning))); /* Cloning flag */
1830 count = perl_call_sv(hook, G_ARRAY); /* Go back to Perl code */
1835 for (i = count - 1; i >= 0; i--) {
1837 av_store(av, i, SvREFCNT_inc(sv));
1850 * Lookup the class name in the `hclass' table and either assign it a new ID
1851 * or return the existing one, by filling in `classnum'.
1853 * Return true if the class was known, false if the ID was just generated.
1855 static int known_class(
1858 char *name, /* Class name */
1859 int len, /* Name length */
1863 HV *hclass = cxt->hclass;
1865 TRACEME(("known_class (%s)", name));
1868 * Recall that we don't store pointers in this hash table, but tags.
1869 * Therefore, we need LOW_32BITS() to extract the relevant parts.
1872 svh = hv_fetch(hclass, name, len, FALSE);
1874 *classnum = LOW_32BITS(*svh);
1879 * Unknown classname, we need to record it.
1883 if (!hv_store(hclass, name, len, INT2PTR(SV*, cxt->classnum), 0))
1884 CROAK(("Unable to record new classname"));
1886 *classnum = cxt->classnum;
1891 *** Specific store routines.
1897 * Store a reference.
1898 * Layout is SX_REF <object> or SX_OVERLOAD <object>.
1900 static int store_ref(pTHX_ stcxt_t *cxt, SV *sv)
1903 TRACEME(("store_ref (0x%"UVxf")", PTR2UV(sv)));
1906 * Follow reference, and check if target is overloaded.
1912 TRACEME(("ref (0x%"UVxf") is%s weak", PTR2UV(sv), is_weak ? "" : "n't"));
1917 HV *stash = (HV *) SvSTASH(sv);
1918 if (stash && Gv_AMG(stash)) {
1919 TRACEME(("ref (0x%"UVxf") is overloaded", PTR2UV(sv)));
1920 PUTMARK(is_weak ? SX_WEAKOVERLOAD : SX_OVERLOAD);
1922 PUTMARK(is_weak ? SX_WEAKREF : SX_REF);
1924 PUTMARK(is_weak ? SX_WEAKREF : SX_REF);
1926 return store(aTHX_ cxt, sv);
1934 * Layout is SX_LSCALAR <length> <data>, SX_SCALAR <length> <data> or SX_UNDEF.
1935 * The <data> section is omitted if <length> is 0.
1937 * If integer or double, the layout is SX_INTEGER <data> or SX_DOUBLE <data>.
1938 * Small integers (within [-127, +127]) are stored as SX_BYTE <byte>.
1940 static int store_scalar(pTHX_ stcxt_t *cxt, SV *sv)
1945 U32 flags = SvFLAGS(sv); /* "cc -O" may put it in register */
1947 TRACEME(("store_scalar (0x%"UVxf")", PTR2UV(sv)));
1950 * For efficiency, break the SV encapsulation by peaking at the flags
1951 * directly without using the Perl macros to avoid dereferencing
1952 * sv->sv_flags each time we wish to check the flags.
1955 if (!(flags & SVf_OK)) { /* !SvOK(sv) */
1956 if (sv == &PL_sv_undef) {
1957 TRACEME(("immortal undef"));
1958 PUTMARK(SX_SV_UNDEF);
1960 TRACEME(("undef at 0x%"UVxf, PTR2UV(sv)));
1967 * Always store the string representation of a scalar if it exists.
1968 * Gisle Aas provided me with this test case, better than a long speach:
1970 * perl -MDevel::Peek -le '$a="abc"; $a+0; Dump($a)'
1971 * SV = PVNV(0x80c8520)
1973 * FLAGS = (NOK,POK,pNOK,pPOK)
1976 * PV = 0x80c83d0 "abc"\0
1980 * Write SX_SCALAR, length, followed by the actual data.
1982 * Otherwise, write an SX_BYTE, SX_INTEGER or an SX_DOUBLE as
1983 * appropriate, followed by the actual (binary) data. A double
1984 * is written as a string if network order, for portability.
1986 * NOTE: instead of using SvNOK(sv), we test for SvNOKp(sv).
1987 * The reason is that when the scalar value is tainted, the SvNOK(sv)
1990 * The test for a read-only scalar with both POK and NOK set is meant
1991 * to quickly detect &PL_sv_yes and &PL_sv_no without having to pay the
1992 * address comparison for each scalar we store.
1995 #define SV_MAYBE_IMMORTAL (SVf_READONLY|SVf_POK|SVf_NOK)
1997 if ((flags & SV_MAYBE_IMMORTAL) == SV_MAYBE_IMMORTAL) {
1998 if (sv == &PL_sv_yes) {
1999 TRACEME(("immortal yes"));
2001 } else if (sv == &PL_sv_no) {
2002 TRACEME(("immortal no"));
2005 pv = SvPV(sv, len); /* We know it's SvPOK */
2006 goto string; /* Share code below */
2008 } else if (flags & SVf_POK) {
2009 /* public string - go direct to string read. */
2010 goto string_readlen;
2012 #if (PATCHLEVEL <= 6)
2013 /* For 5.6 and earlier NV flag trumps IV flag, so only use integer
2014 direct if NV flag is off. */
2015 (flags & (SVf_NOK | SVf_IOK)) == SVf_IOK
2017 /* 5.7 rules are that if IV public flag is set, IV value is as
2018 good, if not better, than NV value. */
2024 * Will come here from below with iv set if double is an integer.
2028 /* Sorry. This isn't in 5.005_56 (IIRC) or earlier. */
2030 /* Need to do this out here, else 0xFFFFFFFF becomes iv of -1
2031 * (for example) and that ends up in the optimised small integer
2034 if ((flags & SVf_IVisUV) && SvUV(sv) > IV_MAX) {
2035 TRACEME(("large unsigned integer as string, value = %"UVuf, SvUV(sv)));
2036 goto string_readlen;
2040 * Optimize small integers into a single byte, otherwise store as
2041 * a real integer (converted into network order if they asked).
2044 if (iv >= -128 && iv <= 127) {
2045 unsigned char siv = (unsigned char) (iv + 128); /* [0,255] */
2048 TRACEME(("small integer stored as %d", siv));
2049 } else if (cxt->netorder) {
2051 TRACEME(("no htonl, fall back to string for integer"));
2052 goto string_readlen;
2060 /* Sorry. This isn't in 5.005_56 (IIRC) or earlier. */
2061 ((flags & SVf_IVisUV) && SvUV(sv) > (UV)0x7FFFFFFF) ||
2063 (iv > (IV)0x7FFFFFFF) || (iv < -(IV)0x80000000)) {
2064 /* Bigger than 32 bits. */
2065 TRACEME(("large network order integer as string, value = %"IVdf, iv));
2066 goto string_readlen;
2070 niv = (I32) htonl((I32) iv);
2071 TRACEME(("using network order"));
2076 PUTMARK(SX_INTEGER);
2077 WRITE(&iv, sizeof(iv));
2080 TRACEME(("ok (integer 0x%"UVxf", value = %"IVdf")", PTR2UV(sv), iv));
2081 } else if (flags & SVf_NOK) {
2083 #if (PATCHLEVEL <= 6)
2086 * Watch for number being an integer in disguise.
2088 if (nv == (NV) (iv = I_V(nv))) {
2089 TRACEME(("double %"NVff" is actually integer %"IVdf, nv, iv));
2090 goto integer; /* Share code above */
2095 if (SvIOK_notUV(sv)) {
2097 goto integer; /* Share code above */
2102 if (cxt->netorder) {
2103 TRACEME(("double %"NVff" stored as string", nv));
2104 goto string_readlen; /* Share code below */
2108 WRITE(&nv, sizeof(nv));
2110 TRACEME(("ok (double 0x%"UVxf", value = %"NVff")", PTR2UV(sv), nv));
2112 } else if (flags & (SVp_POK | SVp_NOK | SVp_IOK)) {
2113 I32 wlen; /* For 64-bit machines */
2119 * Will come here from above if it was readonly, POK and NOK but
2120 * neither &PL_sv_yes nor &PL_sv_no.
2124 wlen = (I32) len; /* WLEN via STORE_SCALAR expects I32 */
2126 STORE_UTF8STR(pv, wlen);
2128 STORE_SCALAR(pv, wlen);
2129 TRACEME(("ok (scalar 0x%"UVxf" '%s', length = %"IVdf")",
2130 PTR2UV(sv), SvPVX(sv), (IV)len));
2132 CROAK(("Can't determine type of %s(0x%"UVxf")",
2133 sv_reftype(sv, FALSE),
2135 return 0; /* Ok, no recursion on scalars */
2143 * Layout is SX_ARRAY <size> followed by each item, in increasing index order.
2144 * Each item is stored as <object>.
2146 static int store_array(pTHX_ stcxt_t *cxt, AV *av)
2149 I32 len = av_len(av) + 1;
2153 TRACEME(("store_array (0x%"UVxf")", PTR2UV(av)));
2156 * Signal array by emitting SX_ARRAY, followed by the array length.
2161 TRACEME(("size = %d", len));
2164 * Now store each item recursively.
2167 for (i = 0; i < len; i++) {
2168 sav = av_fetch(av, i, 0);
2170 TRACEME(("(#%d) undef item", i));
2174 TRACEME(("(#%d) item", i));
2175 if ((ret = store(aTHX_ cxt, *sav))) /* Extra () for -Wall, grr... */
2179 TRACEME(("ok (array)"));
2185 #if (PATCHLEVEL <= 6)
2191 * Borrowed from perl source file pp_ctl.c, where it is used by pp_sort.
2194 sortcmp(const void *a, const void *b)
2196 #if defined(USE_ITHREADS)
2198 #endif /* USE_ITHREADS */
2199 return sv_cmp(*(SV * const *) a, *(SV * const *) b);
2202 #endif /* PATCHLEVEL <= 6 */
2207 * Store a hash table.
2209 * For a "normal" hash (not restricted, no utf8 keys):
2211 * Layout is SX_HASH <size> followed by each key/value pair, in random order.
2212 * Values are stored as <object>.
2213 * Keys are stored as <length> <data>, the <data> section being omitted
2216 * For a "fancy" hash (restricted or utf8 keys):
2218 * Layout is SX_FLAG_HASH <size> <hash flags> followed by each key/value pair,
2220 * Values are stored as <object>.
2221 * Keys are stored as <flags> <length> <data>, the <data> section being omitted
2223 * Currently the only hash flag is "restricted"
2224 * Key flags are as for hv.h
2226 static int store_hash(pTHX_ stcxt_t *cxt, HV *hv)
2229 I32 len = HvTOTALKEYS(hv);
2234 int flagged_hash = ((SvREADONLY(hv)
2235 #ifdef HAS_HASH_KEY_FLAGS
2239 unsigned char hash_flags = (SvREADONLY(hv) ? SHV_RESTRICTED : 0);
2242 /* needs int cast for C++ compilers, doesn't it? */
2243 TRACEME(("store_hash (0x%"UVxf") (flags %x)", PTR2UV(hv),
2246 TRACEME(("store_hash (0x%"UVxf")", PTR2UV(hv)));
2250 * Signal hash by emitting SX_HASH, followed by the table length.
2254 PUTMARK(SX_FLAG_HASH);
2255 PUTMARK(hash_flags);
2260 TRACEME(("size = %d", len));
2263 * Save possible iteration state via each() on that table.
2266 riter = HvRITER_get(hv);
2267 eiter = HvEITER_get(hv);
2271 * Now store each item recursively.
2273 * If canonical is defined to some true value then store each
2274 * key/value pair in sorted order otherwise the order is random.
2275 * Canonical order is irrelevant when a deep clone operation is performed.
2277 * Fetch the value from perl only once per store() operation, and only
2282 !(cxt->optype & ST_CLONE) && (cxt->canonical == 1 ||
2283 (cxt->canonical < 0 && (cxt->canonical =
2284 (SvTRUE(perl_get_sv("Storable::canonical", GV_ADD)) ? 1 : 0))))
2287 * Storing in order, sorted by key.
2288 * Run through the hash, building up an array of keys in a
2289 * mortal array, sort the array and then run through the
2295 /*av_extend (av, len);*/
2297 TRACEME(("using canonical order"));
2299 for (i = 0; i < len; i++) {
2300 #ifdef HAS_RESTRICTED_HASHES
2301 HE *he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS);
2303 HE *he = hv_iternext(hv);
2308 CROAK(("Hash %p inconsistent - expected %d keys, %dth is NULL", hv, (int)len, (int)i));
2309 key = hv_iterkeysv(he);
2310 av_store(av, AvFILLp(av)+1, key); /* av_push(), really */
2315 for (i = 0; i < len; i++) {
2316 #ifdef HAS_RESTRICTED_HASHES
2317 int placeholders = (int)HvPLACEHOLDERS_get(hv);
2319 unsigned char flags = 0;
2323 SV *key = av_shift(av);
2324 /* This will fail if key is a placeholder.
2325 Track how many placeholders we have, and error if we
2327 HE *he = hv_fetch_ent(hv, key, 0, 0);
2331 if (!(val = HeVAL(he))) {
2332 /* Internal error, not I/O error */
2336 #ifdef HAS_RESTRICTED_HASHES
2337 /* Should be a placeholder. */
2338 if (placeholders-- < 0) {
2339 /* This should not happen - number of
2340 retrieves should be identical to
2341 number of placeholders. */
2344 /* Value is never needed, and PL_sv_undef is
2345 more space efficient to store. */
2348 ("Flags not 0 but %d", flags));
2349 flags = SHV_K_PLACEHOLDER;
2356 * Store value first.
2359 TRACEME(("(#%d) value 0x%"UVxf, i, PTR2UV(val)));
2361 if ((ret = store(aTHX_ cxt, val))) /* Extra () for -Wall, grr... */
2366 * Keys are written after values to make sure retrieval
2367 * can be optimal in terms of memory usage, where keys are
2368 * read into a fixed unique buffer called kbuf.
2369 * See retrieve_hash() for details.
2372 /* Implementation of restricted hashes isn't nicely
2374 if ((hash_flags & SHV_RESTRICTED)
2375 && SvREADONLY(val) && !SvIsCOW(val)) {
2376 flags |= SHV_K_LOCKED;
2379 keyval = SvPV(key, keylen_tmp);
2380 keylen = keylen_tmp;
2381 #ifdef HAS_UTF8_HASHES
2382 /* If you build without optimisation on pre 5.6
2383 then nothing spots that SvUTF8(key) is always 0,
2384 so the block isn't optimised away, at which point
2385 the linker dislikes the reference to
2388 const char *keysave = keyval;
2389 bool is_utf8 = TRUE;
2391 /* Just casting the &klen to (STRLEN) won't work
2392 well if STRLEN and I32 are of different widths.
2394 keyval = (char*)bytes_from_utf8((U8*)keyval,
2398 /* If we were able to downgrade here, then than
2399 means that we have a key which only had chars
2400 0-255, but was utf8 encoded. */
2402 if (keyval != keysave) {
2403 keylen = keylen_tmp;
2404 flags |= SHV_K_WASUTF8;
2406 /* keylen_tmp can't have changed, so no need
2407 to assign back to keylen. */
2408 flags |= SHV_K_UTF8;
2415 TRACEME(("(#%d) key '%s' flags %x %u", i, keyval, flags, *keyval));
2417 /* This is a workaround for a bug in 5.8.0
2418 that causes the HEK_WASUTF8 flag to be
2419 set on an HEK without the hash being
2420 marked as having key flags. We just
2421 cross our fingers and drop the flag.
2423 assert (flags == 0 || flags == SHV_K_WASUTF8);
2424 TRACEME(("(#%d) key '%s'", i, keyval));
2428 WRITE(keyval, keylen);
2429 if (flags & SHV_K_WASUTF8)
2434 * Free up the temporary array
2443 * Storing in "random" order (in the order the keys are stored
2444 * within the hash). This is the default and will be faster!
2447 for (i = 0; i < len; i++) {
2450 unsigned char flags;
2451 #ifdef HV_ITERNEXT_WANTPLACEHOLDERS
2452 HE *he = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS);
2454 HE *he = hv_iternext(hv);
2456 SV *val = (he ? hv_iterval(hv, he) : 0);
2461 return 1; /* Internal error, not I/O error */
2463 /* Implementation of restricted hashes isn't nicely
2466 = (((hash_flags & SHV_RESTRICTED)
2467 && SvREADONLY(val) && !SvIsCOW(val))
2468 ? SHV_K_LOCKED : 0);
2470 if (val == &PL_sv_placeholder) {
2471 flags |= SHV_K_PLACEHOLDER;
2476 * Store value first.
2479 TRACEME(("(#%d) value 0x%"UVxf, i, PTR2UV(val)));
2481 if ((ret = store(aTHX_ cxt, val))) /* Extra () for -Wall, grr... */
2485 hek = HeKEY_hek(he);
2487 if (len == HEf_SVKEY) {
2488 /* This is somewhat sick, but the internal APIs are
2489 * such that XS code could put one of these in in
2491 * Maybe we should be capable of storing one if
2494 key_sv = HeKEY_sv(he);
2495 flags |= SHV_K_ISSV;
2497 /* Regular string key. */
2498 #ifdef HAS_HASH_KEY_FLAGS
2500 flags |= SHV_K_UTF8;
2501 if (HEK_WASUTF8(hek))
2502 flags |= SHV_K_WASUTF8;
2508 * Keys are written after values to make sure retrieval
2509 * can be optimal in terms of memory usage, where keys are
2510 * read into a fixed unique buffer called kbuf.
2511 * See retrieve_hash() for details.
2516 TRACEME(("(#%d) key '%s' flags %x", i, key, flags));
2518 /* This is a workaround for a bug in 5.8.0
2519 that causes the HEK_WASUTF8 flag to be
2520 set on an HEK without the hash being
2521 marked as having key flags. We just
2522 cross our fingers and drop the flag.
2524 assert (flags == 0 || flags == SHV_K_WASUTF8);
2525 TRACEME(("(#%d) key '%s'", i, key));
2527 if (flags & SHV_K_ISSV) {
2528 store(aTHX_ cxt, key_sv);
2537 TRACEME(("ok (hash 0x%"UVxf")", PTR2UV(hv)));
2540 HvRITER_set(hv, riter); /* Restore hash iterator state */
2541 HvEITER_set(hv, eiter);
2549 * Store a code reference.
2551 * Layout is SX_CODE <length> followed by a scalar containing the perl
2552 * source code of the code reference.
2554 static int store_code(pTHX_ stcxt_t *cxt, CV *cv)
2556 #if PERL_VERSION < 6
2558 * retrieve_code does not work with perl 5.005 or less
2560 return store_other(aTHX_ cxt, (SV*)cv);
2565 SV *text, *bdeparse;
2567 TRACEME(("store_code (0x%"UVxf")", PTR2UV(cv)));
2570 cxt->deparse == 0 ||
2571 (cxt->deparse < 0 && !(cxt->deparse =
2572 SvTRUE(perl_get_sv("Storable::Deparse", GV_ADD)) ? 1 : 0))
2574 return store_other(aTHX_ cxt, (SV*)cv);
2578 * Require B::Deparse. At least B::Deparse 0.61 is needed for
2579 * blessed code references.
2581 /* Ownership of both SVs is passed to load_module, which frees them. */
2582 load_module(PERL_LOADMOD_NOIMPORT, newSVpvn("B::Deparse",10), newSVnv(0.61));
2589 * create the B::Deparse object
2593 XPUSHs(newSVpvs_flags("B::Deparse", SVs_TEMP));
2595 count = call_method("new", G_SCALAR);
2598 CROAK(("Unexpected return value from B::Deparse::new\n"));
2602 * call the coderef2text method
2606 XPUSHs(bdeparse); /* XXX is this already mortal? */
2607 XPUSHs(sv_2mortal(newRV_inc((SV*)cv)));
2609 count = call_method("coderef2text", G_SCALAR);
2612 CROAK(("Unexpected return value from B::Deparse::coderef2text\n"));
2616 reallen = strlen(SvPV_nolen(text));
2619 * Empty code references or XS functions are deparsed as
2620 * "(prototype) ;" or ";".
2623 if (len == 0 || *(SvPV_nolen(text)+reallen-1) == ';') {
2624 CROAK(("The result of B::Deparse::coderef2text was empty - maybe you're trying to serialize an XS function?\n"));
2628 * Signal code by emitting SX_CODE.
2632 cxt->tagnum++; /* necessary, as SX_CODE is a SEEN() candidate */
2633 TRACEME(("size = %d", len));
2634 TRACEME(("code = %s", SvPV_nolen(text)));
2637 * Now store the source code.
2641 STORE_UTF8STR(SvPV_nolen(text), len);
2643 STORE_SCALAR(SvPV_nolen(text), len);
2648 TRACEME(("ok (code)"));
2657 * When storing a tied object (be it a tied scalar, array or hash), we lay out
2658 * a special mark, followed by the underlying tied object. For instance, when
2659 * dealing with a tied hash, we store SX_TIED_HASH <hash object>, where
2660 * <hash object> stands for the serialization of the tied hash.
2662 static int store_tied(pTHX_ stcxt_t *cxt, SV *sv)
2667 int svt = SvTYPE(sv);
2670 TRACEME(("store_tied (0x%"UVxf")", PTR2UV(sv)));
2673 * We have a small run-time penalty here because we chose to factorise
2674 * all tieds objects into the same routine, and not have a store_tied_hash,
2675 * a store_tied_array, etc...
2677 * Don't use a switch() statement, as most compilers don't optimize that
2678 * well for 2/3 values. An if() else if() cascade is just fine. We put
2679 * tied hashes first, as they are the most likely beasts.
2682 if (svt == SVt_PVHV) {
2683 TRACEME(("tied hash"));
2684 PUTMARK(SX_TIED_HASH); /* Introduces tied hash */
2685 } else if (svt == SVt_PVAV) {
2686 TRACEME(("tied array"));
2687 PUTMARK(SX_TIED_ARRAY); /* Introduces tied array */
2689 TRACEME(("tied scalar"));
2690 PUTMARK(SX_TIED_SCALAR); /* Introduces tied scalar */
2694 if (!(mg = mg_find(sv, mtype)))
2695 CROAK(("No magic '%c' found while storing tied %s", mtype,
2696 (svt == SVt_PVHV) ? "hash" :
2697 (svt == SVt_PVAV) ? "array" : "scalar"));
2700 * The mg->mg_obj found by mg_find() above actually points to the
2701 * underlying tied Perl object implementation. For instance, if the
2702 * original SV was that of a tied array, then mg->mg_obj is an AV.
2704 * Note that we store the Perl object as-is. We don't call its FETCH
2705 * method along the way. At retrieval time, we won't call its STORE
2706 * method either, but the tieing magic will be re-installed. In itself,
2707 * that ensures that the tieing semantics are preserved since further
2708 * accesses on the retrieved object will indeed call the magic methods...
2711 /* [#17040] mg_obj is NULL for scalar self-ties. AMS 20030416 */
2712 obj = mg->mg_obj ? mg->mg_obj : newSV(0);
2713 if ((ret = store(aTHX_ cxt, obj)))
2716 TRACEME(("ok (tied)"));
2724 * Stores a reference to an item within a tied structure:
2726 * . \$h{key}, stores both the (tied %h) object and 'key'.
2727 * . \$a[idx], stores both the (tied @a) object and 'idx'.
2729 * Layout is therefore either:
2730 * SX_TIED_KEY <object> <key>
2731 * SX_TIED_IDX <object> <index>
2733 static int store_tied_item(pTHX_ stcxt_t *cxt, SV *sv)
2738 TRACEME(("store_tied_item (0x%"UVxf")", PTR2UV(sv)));
2740 if (!(mg = mg_find(sv, 'p')))
2741 CROAK(("No magic 'p' found while storing reference to tied item"));
2744 * We discriminate between \$h{key} and \$a[idx] via mg_ptr.
2748 TRACEME(("store_tied_item: storing a ref to a tied hash item"));
2749 PUTMARK(SX_TIED_KEY);
2750 TRACEME(("store_tied_item: storing OBJ 0x%"UVxf, PTR2UV(mg->mg_obj)));
2752 if ((ret = store(aTHX_ cxt, mg->mg_obj))) /* Extra () for -Wall, grr... */
2755 TRACEME(("store_tied_item: storing PTR 0x%"UVxf, PTR2UV(mg->mg_ptr)));
2757 if ((ret = store(aTHX_ cxt, (SV *) mg->mg_ptr))) /* Idem, for -Wall */
2760 I32 idx = mg->mg_len;
2762 TRACEME(("store_tied_item: storing a ref to a tied array item "));
2763 PUTMARK(SX_TIED_IDX);
2764 TRACEME(("store_tied_item: storing OBJ 0x%"UVxf, PTR2UV(mg->mg_obj)));
2766 if ((ret = store(aTHX_ cxt, mg->mg_obj))) /* Idem, for -Wall */
2769 TRACEME(("store_tied_item: storing IDX %d", idx));
2774 TRACEME(("ok (tied item)"));
2780 * store_hook -- dispatched manually, not via sv_store[]
2782 * The blessed SV is serialized by a hook.
2786 * SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
2788 * where <flags> indicates how long <len>, <len2> and <len3> are, whether
2789 * the trailing part [] is present, the type of object (scalar, array or hash).
2790 * There is also a bit which says how the classname is stored between:
2795 * and when the <index> form is used (classname already seen), the "large
2796 * classname" bit in <flags> indicates how large the <index> is.
2798 * The serialized string returned by the hook is of length <len2> and comes
2799 * next. It is an opaque string for us.
2801 * Those <len3> object IDs which are listed last represent the extra references
2802 * not directly serialized by the hook, but which are linked to the object.
2804 * When recursion is mandated to resolve object-IDs not yet seen, we have
2805 * instead, with <header> being flags with bits set to indicate the object type
2806 * and that recursion was indeed needed:
2808 * SX_HOOK <header> <object> <header> <object> <flags>
2810 * that same header being repeated between serialized objects obtained through
2811 * recursion, until we reach flags indicating no recursion, at which point
2812 * we know we've resynchronized with a single layout, after <flags>.
2814 * When storing a blessed ref to a tied variable, the following format is
2817 * SX_HOOK <flags> <extra> ... [<len3> <object-IDs>] <magic object>
2819 * The first <flags> indication carries an object of type SHT_EXTRA, and the
2820 * real object type is held in the <extra> flag. At the very end of the
2821 * serialization stream, the underlying magic object is serialized, just like
2822 * any other tied variable.
2824 static int store_hook(
2838 int count; /* really len3 + 1 */
2839 unsigned char flags;
2842 int recursed = 0; /* counts recursion */
2843 int obj_type; /* object type, on 2 bits */
2846 int clone = cxt->optype & ST_CLONE;
2847 char mtype = '\0'; /* for blessed ref to tied structures */
2848 unsigned char eflags = '\0'; /* used when object type is SHT_EXTRA */
2850 TRACEME(("store_hook, classname \"%s\", tagged #%d", HvNAME_get(pkg), cxt->tagnum));
2853 * Determine object type on 2 bits.
2858 obj_type = SHT_SCALAR;
2861 obj_type = SHT_ARRAY;
2864 obj_type = SHT_HASH;
2868 * Produced by a blessed ref to a tied data structure, $o in the
2869 * following Perl code.
2873 * my $o = bless \%h, 'BAR';
2875 * Signal the tie-ing magic by setting the object type as SHT_EXTRA
2876 * (since we have only 2 bits in <flags> to store the type), and an
2877 * <extra> byte flag will be emitted after the FIRST <flags> in the
2878 * stream, carrying what we put in `eflags'.
2880 obj_type = SHT_EXTRA;
2881 switch (SvTYPE(sv)) {
2883 eflags = (unsigned char) SHT_THASH;
2887 eflags = (unsigned char) SHT_TARRAY;
2891 eflags = (unsigned char) SHT_TSCALAR;
2897 CROAK(("Unexpected object type (%d) in store_hook()", type));
2899 flags = SHF_NEED_RECURSE | obj_type;
2901 classname = HvNAME_get(pkg);
2902 len = strlen(classname);
2905 * To call the hook, we need to fake a call like:
2907 * $object->STORABLE_freeze($cloning);
2909 * but we don't have the $object here. For instance, if $object is
2910 * a blessed array, what we have in `sv' is the array, and we can't
2911 * call a method on those.
2913 * Therefore, we need to create a temporary reference to the object and
2914 * make the call on that reference.
2917 TRACEME(("about to call STORABLE_freeze on class %s", classname));
2919 ref = newRV_noinc(sv); /* Temporary reference */
2920 av = array_call(aTHX_ ref, hook, clone); /* @a = $object->STORABLE_freeze($c) */
2921 SvRV_set(ref, NULL);
2922 SvREFCNT_dec(ref); /* Reclaim temporary reference */
2924 count = AvFILLp(av) + 1;
2925 TRACEME(("store_hook, array holds %d items", count));
2928 * If they return an empty list, it means they wish to ignore the
2929 * hook for this class (and not just this instance -- that's for them
2930 * to handle if they so wish).
2932 * Simply disable the cached entry for the hook (it won't be recomputed
2933 * since it's present in the cache) and recurse to store_blessed().
2938 * They must not change their mind in the middle of a serialization.
2941 if (hv_fetch(cxt->hclass, classname, len, FALSE))
2942 CROAK(("Too late to ignore hooks for %s class \"%s\"",
2943 (cxt->optype & ST_CLONE) ? "cloning" : "storing", classname));
2945 pkg_hide(aTHX_ cxt->hook, pkg, "STORABLE_freeze");
2947 ASSERT(!pkg_can(aTHX_ cxt->hook, pkg, "STORABLE_freeze"), ("hook invisible"));
2948 TRACEME(("ignoring STORABLE_freeze in class \"%s\"", classname));
2950 return store_blessed(aTHX_ cxt, sv, type, pkg);
2954 * Get frozen string.
2958 pv = SvPV(ary[0], len2);
2959 /* We can't use pkg_can here because it only caches one method per
2962 GV* gv = gv_fetchmethod_autoload(pkg, "STORABLE_attach", FALSE);
2963 if (gv && isGV(gv)) {
2965 CROAK(("Freeze cannot return references if %s class is using STORABLE_attach", classname));
2971 * If they returned more than one item, we need to serialize some
2972 * extra references if not already done.
2974 * Loop over the array, starting at position #1, and for each item,
2975 * ensure it is a reference, serialize it if not already done, and
2976 * replace the entry with the tag ID of the corresponding serialized
2979 * We CHEAT by not calling av_fetch() and read directly within the
2983 for (i = 1; i < count; i++) {
2984 #ifdef USE_PTR_TABLE
2992 AV *av_hook = cxt->hook_seen;
2995 CROAK(("Item #%d returned by STORABLE_freeze "
2996 "for %s is not a reference", i, classname));
2997 xsv = SvRV(rsv); /* Follow ref to know what to look for */
3000 * Look in hseen and see if we have a tag already.
3001 * Serialize entry if not done already, and get its tag.
3004 #ifdef USE_PTR_TABLE
3005 /* Fakery needed because ptr_table_fetch returns zero for a
3006 failure, whereas the existing code assumes that it can
3007 safely store a tag zero. So for ptr_tables we store tag+1
3009 if ((fake_tag = (char *)ptr_table_fetch(cxt->pseen, xsv)))
3010 goto sv_seen; /* Avoid moving code too far to the right */
3012 if ((svh = hv_fetch(cxt->hseen, (char *) &xsv, sizeof(xsv), FALSE)))
3013 goto sv_seen; /* Avoid moving code too far to the right */
3016 TRACEME(("listed object %d at 0x%"UVxf" is unknown", i-1, PTR2UV(xsv)));
3019 * We need to recurse to store that object and get it to be known
3020 * so that we can resolve the list of object-IDs at retrieve time.
3022 * The first time we do this, we need to emit the proper header
3023 * indicating that we recursed, and what the type of object is (the
3024 * object we're storing via a user-hook). Indeed, during retrieval,
3025 * we'll have to create the object before recursing to retrieve the
3026 * others, in case those would point back at that object.
3029 /* [SX_HOOK] <flags> [<extra>] <object>*/
3033 if (obj_type == SHT_EXTRA)
3038 if ((ret = store(aTHX_ cxt, xsv))) /* Given by hook for us to store */
3041 #ifdef USE_PTR_TABLE
3042 fake_tag = (char *)ptr_table_fetch(cxt->pseen, xsv);
3044 CROAK(("Could not serialize item #%d from hook in %s", i, classname));
3046 svh = hv_fetch(cxt->hseen, (char *) &xsv, sizeof(xsv), FALSE);
3048 CROAK(("Could not serialize item #%d from hook in %s", i, classname));
3051 * It was the first time we serialized `xsv'.
3053 * Keep this SV alive until the end of the serialization: if we
3054 * disposed of it right now by decrementing its refcount, and it was
3055 * a temporary value, some next temporary value allocated during
3056 * another STORABLE_freeze might take its place, and we'd wrongly
3057 * assume that new SV was already serialized, based on its presence
3060 * Therefore, push it away in cxt->hook_seen.
3063 av_store(av_hook, AvFILLp(av_hook)+1, SvREFCNT_inc(xsv));
3067 * Dispose of the REF they returned. If we saved the `xsv' away
3068 * in the array of returned SVs, that will not cause the underlying
3069 * referenced SV to be reclaimed.
3072 ASSERT(SvREFCNT(xsv) > 1, ("SV will survive disposal of its REF"));
3073 SvREFCNT_dec(rsv); /* Dispose of reference */
3076 * Replace entry with its tag (not a real SV, so no refcnt increment)
3079 #ifdef USE_PTR_TABLE
3080 tag = (SV *)--fake_tag;
3085 TRACEME(("listed object %d at 0x%"UVxf" is tag #%"UVuf,
3086 i-1, PTR2UV(xsv), PTR2UV(tag)));
3090 * Allocate a class ID if not already done.
3092 * This needs to be done after the recursion above, since at retrieval
3093 * time, we'll see the inner objects first. Many thanks to
3094 * Salvador Ortiz Garcia <sog@msg.com.mx> who spot that bug and
3095 * proposed the right fix. -- RAM, 15/09/2000
3099 if (!known_class(aTHX_ cxt, classname, len, &classnum)) {
3100 TRACEME(("first time we see class %s, ID = %d", classname, classnum));
3101 classnum = -1; /* Mark: we must store classname */
3103 TRACEME(("already seen class %s, ID = %d", classname, classnum));
3107 * Compute leading flags.
3111 if (((classnum == -1) ? len : classnum) > LG_SCALAR)
3112 flags |= SHF_LARGE_CLASSLEN;
3114 flags |= SHF_IDX_CLASSNAME;
3115 if (len2 > LG_SCALAR)
3116 flags |= SHF_LARGE_STRLEN;
3118 flags |= SHF_HAS_LIST;
3119 if (count > (LG_SCALAR + 1))
3120 flags |= SHF_LARGE_LISTLEN;
3123 * We're ready to emit either serialized form:
3125 * SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
3126 * SX_HOOK <flags> <index> <len2> <str> [<len3> <object-IDs>]
3128 * If we recursed, the SX_HOOK has already been emitted.
3131 TRACEME(("SX_HOOK (recursed=%d) flags=0x%x "
3132 "class=%"IVdf" len=%"IVdf" len2=%"IVdf" len3=%d",
3133 recursed, flags, (IV)classnum, (IV)len, (IV)len2, count-1));
3135 /* SX_HOOK <flags> [<extra>] */
3139 if (obj_type == SHT_EXTRA)
3144 /* <len> <classname> or <index> */
3145 if (flags & SHF_IDX_CLASSNAME) {
3146 if (flags & SHF_LARGE_CLASSLEN)
3149 unsigned char cnum = (unsigned char) classnum;
3153 if (flags & SHF_LARGE_CLASSLEN)
3156 unsigned char clen = (unsigned char) len;
3159 WRITE(classname, len); /* Final \0 is omitted */
3162 /* <len2> <frozen-str> */
3163 if (flags & SHF_LARGE_STRLEN) {
3164 I32 wlen2 = len2; /* STRLEN might be 8 bytes */
3165 WLEN(wlen2); /* Must write an I32 for 64-bit machines */
3167 unsigned char clen = (unsigned char) len2;
3171 WRITE(pv, (SSize_t)len2); /* Final \0 is omitted */
3173 /* [<len3> <object-IDs>] */
3174 if (flags & SHF_HAS_LIST) {
3175 int len3 = count - 1;
3176 if (flags & SHF_LARGE_LISTLEN)
3179 unsigned char clen = (unsigned char) len3;
3184 * NOTA BENE, for 64-bit machines: the ary[i] below does not yield a
3185 * real pointer, rather a tag number, well under the 32-bit limit.
3188 for (i = 1; i < count; i++) {
3189 I32 tagval = htonl(LOW_32BITS(ary[i]));
3191 TRACEME(("object %d, tag #%d", i-1, ntohl(tagval)));
3196 * Free the array. We need extra care for indices after 0, since they
3197 * don't hold real SVs but integers cast.
3201 AvFILLp(av) = 0; /* Cheat, nothing after 0 interests us */
3206 * If object was tied, need to insert serialization of the magic object.
3209 if (obj_type == SHT_EXTRA) {
3212 if (!(mg = mg_find(sv, mtype))) {
3213 int svt = SvTYPE(sv);
3214 CROAK(("No magic '%c' found while storing ref to tied %s with hook",
3215 mtype, (svt == SVt_PVHV) ? "hash" :
3216 (svt == SVt_PVAV) ? "array" : "scalar"));
3219 TRACEME(("handling the magic object 0x%"UVxf" part of 0x%"UVxf,
3220 PTR2UV(mg->mg_obj), PTR2UV(sv)));
3226 if ((ret = store(aTHX_ cxt, mg->mg_obj))) /* Extra () for -Wall, grr... */
3234 * store_blessed -- dispatched manually, not via sv_store[]
3236 * Check whether there is a STORABLE_xxx hook defined in the class or in one
3237 * of its ancestors. If there is, then redispatch to store_hook();
3239 * Otherwise, the blessed SV is stored using the following layout:
3241 * SX_BLESS <flag> <len> <classname> <object>
3243 * where <flag> indicates whether <len> is stored on 0 or 4 bytes, depending
3244 * on the high-order bit in flag: if 1, then length follows on 4 bytes.
3245 * Otherwise, the low order bits give the length, thereby giving a compact
3246 * representation for class names less than 127 chars long.
3248 * Each <classname> seen is remembered and indexed, so that the next time
3249 * an object in the blessed in the same <classname> is stored, the following
3252 * SX_IX_BLESS <flag> <index> <object>
3254 * where <index> is the classname index, stored on 0 or 4 bytes depending
3255 * on the high-order bit in flag (same encoding as above for <len>).
3257 static int store_blessed(
3269 TRACEME(("store_blessed, type %d, class \"%s\"", type, HvNAME_get(pkg)));
3272 * Look for a hook for this blessed SV and redirect to store_hook()
3276 hook = pkg_can(aTHX_ cxt->hook, pkg, "STORABLE_freeze");
3278 return store_hook(aTHX_ cxt, sv, type, pkg, hook);
3281 * This is a blessed SV without any serialization hook.
3284 classname = HvNAME_get(pkg);
3285 len = strlen(classname);
3287 TRACEME(("blessed 0x%"UVxf" in %s, no hook: tagged #%d",
3288 PTR2UV(sv), classname, cxt->tagnum));
3291 * Determine whether it is the first time we see that class name (in which
3292 * case it will be stored in the SX_BLESS form), or whether we already
3293 * saw that class name before (in which case the SX_IX_BLESS form will be
3297 if (known_class(aTHX_ cxt, classname, len, &classnum)) {
3298 TRACEME(("already seen class %s, ID = %d", classname, classnum));
3299 PUTMARK(SX_IX_BLESS);
3300 if (classnum <= LG_BLESS) {
3301 unsigned char cnum = (unsigned char) classnum;
3304 unsigned char flag = (unsigned char) 0x80;
3309 TRACEME(("first time we see class %s, ID = %d", classname, classnum));
3311 if (len <= LG_BLESS) {
3312 unsigned char clen = (unsigned char) len;
3315 unsigned char flag = (unsigned char) 0x80;
3317 WLEN(len); /* Don't BER-encode, this should be rare */
3319 WRITE(classname, len); /* Final \0 is omitted */
3323 * Now emit the <object> part.
3326 return SV_STORE(type)(aTHX_ cxt, sv);
3332 * We don't know how to store the item we reached, so return an error condition.
3333 * (it's probably a GLOB, some CODE reference, etc...)
3335 * If they defined the `forgive_me' variable at the Perl level to some
3336 * true value, then don't croak, just warn, and store a placeholder string
3339 static int store_other(pTHX_ stcxt_t *cxt, SV *sv)
3344 TRACEME(("store_other"));
3347 * Fetch the value from perl only once per store() operation.
3351 cxt->forgive_me == 0 ||
3352 (cxt->forgive_me < 0 && !(cxt->forgive_me =
3353 SvTRUE(perl_get_sv("Storable::forgive_me", GV_ADD)) ? 1 : 0))
3355 CROAK(("Can't store %s items", sv_reftype(sv, FALSE)));
3357 warn("Can't store item %s(0x%"UVxf")",
3358 sv_reftype(sv, FALSE), PTR2UV(sv));
3361 * Store placeholder string as a scalar instead...
3364 (void) sprintf(buf, "You lost %s(0x%"UVxf")%c", sv_reftype(sv, FALSE),
3365 PTR2UV(sv), (char) 0);
3368 STORE_SCALAR(buf, len);
3369 TRACEME(("ok (dummy \"%s\", length = %"IVdf")", buf, (IV) len));
3375 *** Store driving routines
3381 * WARNING: partially duplicates Perl's sv_reftype for speed.
3383 * Returns the type of the SV, identified by an integer. That integer
3384 * may then be used to index the dynamic routine dispatch table.
3386 static int sv_type(pTHX_ SV *sv)
3388 switch (SvTYPE(sv)) {
3390 #if PERL_VERSION <= 10
3395 * No need to check for ROK, that can't be set here since there
3396 * is no field capable of hodling the xrv_rv reference.
3400 #if PERL_VERSION <= 10
3408 * Starting from SVt_PV, it is possible to have the ROK flag
3409 * set, the pointer to the other SV being either stored in
3410 * the xrv_rv (in the case of a pure SVt_RV), or as the
3411 * xpv_pv field of an SVt_PV and its heirs.
3413 * However, those SV cannot be magical or they would be an
3414 * SVt_PVMG at least.
3416 return SvROK(sv) ? svis_REF : svis_SCALAR;
3418 case SVt_PVLV: /* Workaround for perl5.004_04 "LVALUE" bug */
3419 if (SvRMAGICAL(sv) && (mg_find(sv, 'p')))
3420 return svis_TIED_ITEM;
3422 #if PERL_VERSION < 9
3425 if (SvRMAGICAL(sv) && (mg_find(sv, 'q')))
3427 return SvROK(sv) ? svis_REF : svis_SCALAR;
3429 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3433 if (SvRMAGICAL(sv) && (mg_find(sv, 'P')))
3438 #if PERL_VERSION > 8
3439 /* case SVt_BIND: */
3451 * Recursively store objects pointed to by the sv to the specified file.
3453 * Layout is <content> or SX_OBJECT <tagnum> if we reach an already stored
3454 * object (one for which storage has started -- it may not be over if we have
3455 * a self-referenced structure). This data set forms a stored <object>.
3457 static int store(pTHX_ stcxt_t *cxt, SV *sv)
3462 #ifdef USE_PTR_TABLE
3463 struct ptr_tbl *pseen = cxt->pseen;
3465 HV *hseen = cxt->hseen;
3468 TRACEME(("store (0x%"UVxf")", PTR2UV(sv)));
3471 * If object has already been stored, do not duplicate data.
3472 * Simply emit the SX_OBJECT marker followed by its tag data.
3473 * The tag is always written in network order.
3475 * NOTA BENE, for 64-bit machines: the "*svh" below does not yield a
3476 * real pointer, rather a tag number (watch the insertion code below).
3477 * That means it probably safe to assume it is well under the 32-bit limit,
3478 * and makes the truncation safe.
3479 * -- RAM, 14/09/1999
3482 #ifdef USE_PTR_TABLE
3483 svh = (SV **)ptr_table_fetch(pseen, sv);
3485 svh = hv_fetch(hseen, (char *) &sv, sizeof(sv), FALSE);
3490 if (sv == &PL_sv_undef) {
3491 /* We have seen PL_sv_undef before, but fake it as
3494 Not the simplest solution to making restricted
3495 hashes work on 5.8.0, but it does mean that
3496 repeated references to the one true undef will
3497 take up less space in the output file.
3499 /* Need to jump past the next hv_store, because on the
3500 second store of undef the old hash value will be
3501 SvREFCNT_dec()ed, and as Storable cheats horribly
3502 by storing non-SVs in the hash a SEGV will ensure.
3503 Need to increase the tag number so that the
3504 receiver has no idea what games we're up to. This
3505 special casing doesn't affect hooks that store
3506 undef, as the hook routine does its own lookup into
3507 hseen. Also this means that any references back
3508 to PL_sv_undef (from the pathological case of hooks
3509 storing references to it) will find the seen hash
3510 entry for the first time, as if we didn't have this
3511 hackery here. (That hseen lookup works even on 5.8.0
3512 because it's a key of &PL_sv_undef and a value
3513 which is a tag number, not a value which is
3517 goto undef_special_case;
3520 #ifdef USE_PTR_TABLE
3521 tagval = htonl(LOW_32BITS(((char *)svh)-1));
3523 tagval = htonl(LOW_32BITS(*svh));
3526 TRACEME(("object 0x%"UVxf" seen as #%d", PTR2UV(sv), ntohl(tagval)));
3534 * Allocate a new tag and associate it with the address of the sv being
3535 * stored, before recursing...
3537 * In order to avoid creating new SvIVs to hold the tagnum we just
3538 * cast the tagnum to an SV pointer and store that in the hash. This
3539 * means that we must clean up the hash manually afterwards, but gives
3540 * us a 15% throughput increase.
3545 #ifdef USE_PTR_TABLE
3546 ptr_table_store(pseen, sv, INT2PTR(SV*, 1 + cxt->tagnum));
3548 if (!hv_store(hseen,
3549 (char *) &sv, sizeof(sv), INT2PTR(SV*, cxt->tagnum), 0))
3554 * Store `sv' and everything beneath it, using appropriate routine.
3555 * Abort immediately if we get a non-zero status back.
3558 type = sv_type(aTHX_ sv);
3561 TRACEME(("storing 0x%"UVxf" tag #%d, type %d...",
3562 PTR2UV(sv), cxt->tagnum, type));
3565 HV *pkg = SvSTASH(sv);
3566 ret = store_blessed(aTHX_ cxt, sv, type, pkg);
3568 ret = SV_STORE(type)(aTHX_ cxt, sv);
3570 TRACEME(("%s (stored 0x%"UVxf", refcnt=%d, %s)",
3571 ret ? "FAILED" : "ok", PTR2UV(sv),
3572 SvREFCNT(sv), sv_reftype(sv, FALSE)));
3580 * Write magic number and system information into the file.
3581 * Layout is <magic> <network> [<len> <byteorder> <sizeof int> <sizeof long>
3582 * <sizeof ptr>] where <len> is the length of the byteorder hexa string.
3583 * All size and lenghts are written as single characters here.
3585 * Note that no byte ordering info is emitted when <network> is true, since
3586 * integers will be emitted in network order in that case.
3588 static int magic_write(pTHX_ stcxt_t *cxt)
3591 * Starting with 0.6, the "use_network_order" byte flag is also used to
3592 * indicate the version number of the binary image, encoded in the upper
3593 * bits. The bit 0 is always used to indicate network order.
3596 * Starting with 0.7, a full byte is dedicated to the minor version of
3597 * the binary format, which is incremented only when new markers are
3598 * introduced, for instance, but when backward compatibility is preserved.
3601 /* Make these at compile time. The WRITE() macro is sufficiently complex
3602 that it saves about 200 bytes doing it this way and only using it
3604 static const unsigned char network_file_header[] = {
3606 (STORABLE_BIN_MAJOR << 1) | 1,
3607 STORABLE_BIN_WRITE_MINOR
3609 static const unsigned char file_header[] = {
3611 (STORABLE_BIN_MAJOR << 1) | 0,
3612 STORABLE_BIN_WRITE_MINOR,
3613 /* sizeof the array includes the 0 byte at the end: */
3614 (char) sizeof (byteorderstr) - 1,
3616 (unsigned char) sizeof(int),
3617 (unsigned char) sizeof(long),
3618 (unsigned char) sizeof(char *),
3619 (unsigned char) sizeof(NV)
3621 #ifdef USE_56_INTERWORK_KLUDGE
3622 static const unsigned char file_header_56[] = {
3624 (STORABLE_BIN_MAJOR << 1) | 0,
3625 STORABLE_BIN_WRITE_MINOR,
3626 /* sizeof the array includes the 0 byte at the end: */
3627 (char) sizeof (byteorderstr_56) - 1,
3629 (unsigned char) sizeof(int),
3630 (unsigned char) sizeof(long),
3631 (unsigned char) sizeof(char *),
3632 (unsigned char) sizeof(NV)
3635 const unsigned char *header;
3638 TRACEME(("magic_write on fd=%d", cxt->fio ? PerlIO_fileno(cxt->fio) : -1));
3640 if (cxt->netorder) {
3641 header = network_file_header;
3642 length = sizeof (network_file_header);
3644 #ifdef USE_56_INTERWORK_KLUDGE
3645 if (SvTRUE(perl_get_sv("Storable::interwork_56_64bit", GV_ADD))) {
3646 header = file_header_56;
3647 length = sizeof (file_header_56);
3651 header = file_header;
3652 length = sizeof (file_header);
3657 /* sizeof the array includes the 0 byte at the end. */
3658 header += sizeof (magicstr) - 1;
3659 length -= sizeof (magicstr) - 1;
3662 WRITE( (unsigned char*) header, length);
3664 if (!cxt->netorder) {
3665 TRACEME(("ok (magic_write byteorder = 0x%lx [%d], I%d L%d P%d D%d)",
3666 (unsigned long) BYTEORDER, (int) sizeof (byteorderstr) - 1,
3667 (int) sizeof(int), (int) sizeof(long),
3668 (int) sizeof(char *), (int) sizeof(NV)));
3676 * Common code for store operations.
3678 * When memory store is requested (f = NULL) and a non null SV* is given in
3679 * `res', it is filled with a new SV created out of the memory buffer.
3681 * It is required to provide a non-null `res' when the operation type is not
3682 * dclone() and store() is performed to memory.
3684 static int do_store(
3695 ASSERT(!(f == 0 && !(optype & ST_CLONE)) || res,
3696 ("must supply result SV pointer for real recursion to memory"));
3698 TRACEME(("do_store (optype=%d, netorder=%d)",
3699 optype, network_order));
3704 * Workaround for CROAK leak: if they enter with a "dirty" context,
3705 * free up memory for them now.
3709 clean_context(aTHX_ cxt);
3712 * Now that STORABLE_xxx hooks exist, it is possible that they try to
3713 * re-enter store() via the hooks. We need to stack contexts.
3717 cxt = allocate_context(aTHX_ cxt);
3721 ASSERT(cxt->entry == 1, ("starting new recursion"));
3722 ASSERT(!cxt->s_dirty, ("clean context"));
3725 * Ensure sv is actually a reference. From perl, we called something
3727 * pstore(aTHX_ FILE, \@array);
3728 * so we must get the scalar value behind that reference.
3732 CROAK(("Not a reference"));
3733 sv = SvRV(sv); /* So follow it to know what to store */
3736 * If we're going to store to memory, reset the buffer.
3743 * Prepare context and emit headers.
3746 init_store_context(aTHX_ cxt, f, optype, network_order);
3748 if (-1 == magic_write(aTHX_ cxt)) /* Emit magic and ILP info */
3749 return 0; /* Error */
3752 * Recursively store object...
3755 ASSERT(is_storing(aTHX), ("within store operation"));
3757 status = store(aTHX_ cxt, sv); /* Just do it! */
3760 * If they asked for a memory store and they provided an SV pointer,
3761 * make an SV string out of the buffer and fill their pointer.
3763 * When asking for ST_REAL, it's MANDATORY for the caller to provide
3764 * an SV, since context cleanup might free the buffer if we did recurse.
3765 * (unless caller is dclone(), which is aware of that).
3768 if (!cxt->fio && res)
3769 *res = mbuf2sv(aTHX);
3774 * The "root" context is never freed, since it is meant to be always
3775 * handy for the common case where no recursion occurs at all (i.e.
3776 * we enter store() outside of any Storable code and leave it, period).
3777 * We know it's the "root" context because there's nothing stacked
3782 * When deep cloning, we don't free the context: doing so would force
3783 * us to copy the data in the memory buffer. Sicne we know we're
3784 * about to enter do_retrieve...
3787 clean_store_context(aTHX_ cxt);
3788 if (cxt->prev && !(cxt->optype & ST_CLONE))
3789 free_context(aTHX_ cxt);
3791 TRACEME(("do_store returns %d", status));
3803 * Build a new SV out of the content of the internal memory buffer.
3805 static SV *mbuf2sv(pTHX)
3809 return newSVpv(mbase, MBUF_SIZE());
3813 *** Specific retrieve callbacks.
3819 * Return an error via croak, since it is not possible that we get here
3820 * under normal conditions, when facing a file produced via pstore().
3822 static SV *retrieve_other(pTHX_ stcxt_t *cxt, const char *cname)
3824 PERL_UNUSED_ARG(cname);
3826 cxt->ver_major != STORABLE_BIN_MAJOR &&
3827 cxt->ver_minor != STORABLE_BIN_MINOR
3829 CROAK(("Corrupted storable %s (binary v%d.%d), current is v%d.%d",
3830 cxt->fio ? "file" : "string",
3831 cxt->ver_major, cxt->ver_minor,
3832 STORABLE_BIN_MAJOR, STORABLE_BIN_MINOR));
3834 CROAK(("Corrupted storable %s (binary v%d.%d)",
3835 cxt->fio ? "file" : "string",
3836 cxt->ver_major, cxt->ver_minor));
3839 return (SV *) 0; /* Just in case */
3843 * retrieve_idx_blessed
3845 * Layout is SX_IX_BLESS <index> <object> with SX_IX_BLESS already read.
3846 * <index> can be coded on either 1 or 5 bytes.
3848 static SV *retrieve_idx_blessed(pTHX_ stcxt_t *cxt, const char *cname)
3851 const char *classname;
3855 PERL_UNUSED_ARG(cname);
3856 TRACEME(("retrieve_idx_blessed (#%d)", cxt->tagnum));
3857 ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3859 GETMARK(idx); /* Index coded on a single char? */
3864 * Fetch classname in `aclass'
3867 sva = av_fetch(cxt->aclass, idx, FALSE);
3869 CROAK(("Class name #%"IVdf" should have been seen already", (IV) idx));
3871 classname = SvPVX(*sva); /* We know it's a PV, by construction */
3873 TRACEME(("class ID %d => %s", idx, classname));
3876 * Retrieve object and bless it.
3879 sv = retrieve(aTHX_ cxt, classname); /* First SV which is SEEN will be blessed */
3887 * Layout is SX_BLESS <len> <classname> <object> with SX_BLESS already read.
3888 * <len> can be coded on either 1 or 5 bytes.
3890 static SV *retrieve_blessed(pTHX_ stcxt_t *cxt, const char *cname)
3894 char buf[LG_BLESS + 1]; /* Avoid malloc() if possible */
3895 char *classname = buf;
3896 char *malloced_classname = NULL;
3898 PERL_UNUSED_ARG(cname);
3899 TRACEME(("retrieve_blessed (#%d)", cxt->tagnum));
3900 ASSERT(!cname, ("no bless-into class given here, got %s", cname));
3903 * Decode class name length and read that name.
3905 * Short classnames have two advantages: their length is stored on one
3906 * single byte, and the string can be read on the stack.
3909 GETMARK(len); /* Length coded on a single char? */
3912 TRACEME(("** allocating %d bytes for class name", len+1));
3913 New(10003, classname, len+1, char);
3914 malloced_classname = classname;
3916 SAFEPVREAD(classname, len, malloced_classname);
3917 classname[len] = '\0'; /* Mark string end */
3920 * It's a new classname, otherwise it would have been an SX_IX_BLESS.
3923 TRACEME(("new class name \"%s\" will bear ID = %d", classname, cxt->classnum));
3925 if (!av_store(cxt->aclass, cxt->classnum++, newSVpvn(classname, len))) {
3926 Safefree(malloced_classname);
3931 * Retrieve object and bless it.
3934 sv = retrieve(aTHX_ cxt, classname); /* First SV which is SEEN will be blessed */
3935 if (malloced_classname)
3936 Safefree(malloced_classname);
3944 * Layout: SX_HOOK <flags> <len> <classname> <len2> <str> [<len3> <object-IDs>]
3945 * with leading mark already read, as usual.
3947 * When recursion was involved during serialization of the object, there
3948 * is an unknown amount of serialized objects after the SX_HOOK mark. Until
3949 * we reach a <flags> marker with the recursion bit cleared.