forked from garu/Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Clone.xs
392 lines (343 loc) · 10.9 KB
/
Clone.xs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#include <assert.h>
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#define CLONE_KEY(x) ((char *) &x)
#define CLONE_STORE(x,y) \
do { \
if (!hv_store(hseen, CLONE_KEY(x), PTRSIZE, SvREFCNT_inc(y), 0)) { \
SvREFCNT_dec(y); /* Restore the refcount */ \
croak("Can't store clone in seen hash (hseen)"); \
} \
else { \
TRACEME(("storing ref = 0x%x clone = 0x%x\n", ref, clone)); \
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone))); \
TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref))); \
} \
} while (0)
#define CLONE_FETCH(x) (hv_fetch(hseen, CLONE_KEY(x), PTRSIZE, 0))
static SV *hv_clone (SV *, SV *, HV *, int);
static SV *av_clone (SV *, SV *, HV *, int);
static SV *sv_clone (SV *, HV *, int);
static SV *rv_clone (SV *, HV *, int);
#ifdef DEBUG_CLONE
#define TRACEME(a) printf("%s:%d: ",__FUNCTION__, __LINE__) && printf a;
#else
#define TRACEME(a)
#endif
static SV *
hv_clone (SV * ref, SV * target, HV* hseen, int depth)
{
HV *clone = (HV *) target;
HV *self = (HV *) ref;
HE *next = NULL;
int recur = depth ? depth - 1 : 0;
assert(SvTYPE(ref) == SVt_PVHV);
TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref)));
hv_iterinit (self);
while ((next = hv_iternext (self)))
{
SV *key = hv_iterkeysv (next);
TRACEME(("clone item %s\n", SvPV_nolen(key) ));
hv_store_ent (clone, key,
sv_clone (hv_iterval (self, next), hseen, recur), 0);
}
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone)));
return (SV *) clone;
}
static SV *
av_clone (SV * ref, SV * target, HV* hseen, int depth)
{
AV *clone = (AV *) target;
AV *self = (AV *) ref;
SV **svp;
SV *val = NULL;
I32 arrlen = 0;
int i = 0;
int recur = depth ? depth - 1 : 0;
assert(SvTYPE(ref) == SVt_PVAV);
TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref)));
/* The following is a holdover from a very old version */
/* possible cause of memory leaks */
/* if ( (SvREFCNT(ref) > 1) ) */
/* CLONE_STORE(ref, (SV *)clone); */
arrlen = av_len (self);
av_extend (clone, arrlen);
for (i = 0; i <= arrlen; i++)
{
svp = av_fetch (self, i, 0);
if (svp)
av_store (clone, i, sv_clone (*svp, hseen, recur));
}
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone)));
return (SV *) clone;
}
static SV *
rv_clone (SV * ref, HV* hseen, int depth)
{
SV *clone = NULL;
SV *rv = NULL;
assert(SvROK(ref));
TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref)));
if (!SvROK (ref))
return NULL;
if (sv_isobject (ref))
{
clone = newRV_noinc(sv_clone (SvRV(ref), hseen, depth));
sv_2mortal (sv_bless (clone, SvSTASH (SvRV (ref))));
}
else
clone = newRV_inc(sv_clone (SvRV(ref), hseen, depth));
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone)));
return clone;
}
static SV *
sv_clone (SV * ref, HV* hseen, int depth)
{
SV *clone = ref;
SV **seen = NULL;
UV visible;
int magic_ref = 0;
if (!ref)
{
TRACEME(("NULL\n"));
return NULL;
}
#if PERL_REVISION >= 5 && PERL_VERSION > 8
/* This is a hack for perl 5.9.*, save everything */
/* until I find out why mg_find is no longer working */
visible = 1;
#else
visible = (SvREFCNT(ref) > 1) || (SvMAGICAL(ref) && mg_find(ref, '<'));
#endif
TRACEME(("ref = 0x%x(%d)\n", ref, SvREFCNT(ref)));
if (depth == 0)
return SvREFCNT_inc(ref);
if (visible && (seen = CLONE_FETCH(ref)))
{
TRACEME(("fetch ref (0x%x)\n", ref));
return SvREFCNT_inc(*seen);
}
TRACEME(("switch: (0x%x)\n", ref));
switch (SvTYPE (ref))
{
case SVt_NULL: /* 0 */
TRACEME(("sv_null\n"));
clone = newSVsv (ref);
break;
case SVt_IV: /* 1 */
TRACEME(("int scalar\n"));
case SVt_NV: /* 2 */
TRACEME(("double scalar\n"));
clone = newSVsv (ref);
break;
#if PERL_VERSION <= 10
case SVt_RV: /* 3 */
TRACEME(("ref scalar\n"));
clone = newSVsv (ref);
break;
#endif
case SVt_PV: /* 4 */
TRACEME(("string scalar\n"));
/*
* Note: when using a Debug Perl with READONLY_COW
* we cannot do 'sv_buf_to_rw + sv_buf_to_ro' as these APIs calls are not exported
*/
#if defined(SV_COW_REFCNT_MAX) && !defined(PERL_DEBUG_READONLY_COW)
/* only for simple PVs unblessed */
if ( SvIsCOW(ref) && !SvOOK(ref) && SvLEN(ref) > 0 ) {
if ( CowREFCNT(ref) < (SV_COW_REFCNT_MAX - 1) ) {
/* cannot use newSVpv_share as this going to use a new PV we do not want to clone it */
/* create a fresh new PV */
clone = newSV(0);
sv_upgrade(clone, SVt_PV);
SvPOK_on(clone);
SvIsCOW_on(clone);
/* points the str slot to the COWed one */
SvPV_set(clone, SvPVX(ref) );
CowREFCNT(ref)++;
/* preserve cur, len, flags and utf8 flag */
SvCUR_set(clone, SvCUR(ref));
SvLEN_set(clone, SvLEN(ref));
SvFLAGS(clone) = SvFLAGS(ref); /* preserve all the flags from the original SV */
if (SvUTF8(ref))
SvUTF8_on(clone);
} else {
/* we are above SV_COW_REFCNT_MAX, create a new SvPV but preserve the COW */
clone = newSVsv (ref);
SvIsCOW_on(clone);
CowREFCNT(clone) = 0; /* set the CowREFCNT to 0 */
}
} else {
clone = newSVsv (ref);
}
#else
clone = newSVsv (ref);
#endif
break;
case SVt_PVIV: /* 5 */
TRACEME (("PVIV double-type\n"));
case SVt_PVNV: /* 6 */
TRACEME (("PVNV double-type\n"));
clone = newSVsv (ref);
break;
case SVt_PVMG: /* 7 */
TRACEME(("magic scalar\n"));
clone = newSVsv (ref);
break;
case SVt_PVAV: /* 10 */
clone = (SV *) newAV();
break;
case SVt_PVHV: /* 11 */
clone = (SV *) newHV();
break;
#if PERL_VERSION <= 8
case SVt_PVBM: /* 8 */
#elif PERL_VERSION >= 11
case SVt_REGEXP: /* 8 */
#endif
case SVt_PVLV: /* 9 */
case SVt_PVCV: /* 12 */
case SVt_PVGV: /* 13 */
case SVt_PVFM: /* 14 */
case SVt_PVIO: /* 15 */
TRACEME(("default: type = 0x%x\n", SvTYPE (ref)));
clone = SvREFCNT_inc(ref); /* just return the ref */
break;
default:
croak("unknown type: 0x%x", SvTYPE(ref));
}
/**
* It is *vital* that this is performed *before* recursion,
* to properly handle circular references. cb 2001-02-06
*/
if ( visible && ref != clone )
CLONE_STORE(ref,clone);
/*
* We'll assume (in the absence of evidence to the contrary) that A) a
* tied hash/array doesn't store its elements in the usual way (i.e.
* the mg->mg_object(s) take full responsibility for them) and B) that
* references aren't tied.
*
* If theses assumptions hold, the three options below are mutually
* exclusive.
*
* More precisely: 1 & 2 are probably mutually exclusive; 2 & 3 are
* definitely mutually exclusive; we have to test 1 before giving 2
* a chance; and we'll assume that 1 & 3 are mutually exclusive unless
* and until we can be test-cased out of our delusion.
*
* chocolateboy: 2001-05-29
*/
/* 1: TIED */
if (SvMAGICAL(ref) )
{
MAGIC* mg;
MGVTBL *vtable = 0;
for (mg = SvMAGIC(ref); mg; mg = mg->mg_moremagic)
{
SV *obj = (SV *) NULL;
/* we don't want to clone a qr (regexp) object */
/* there are probably other types as well ... */
TRACEME(("magic type: %c\n", mg->mg_type));
/* Some mg_obj's can be null, don't bother cloning */
if ( mg->mg_obj != NULL )
{
switch (mg->mg_type)
{
case 'r': /* PERL_MAGIC_qr */
obj = mg->mg_obj;
break;
case 't': /* PERL_MAGIC_taint */
case '<': /* PERL_MAGIC_backref */
case '@': /* PERL_MAGIC_arylen_p */
continue;
break;
case 'P': /* PERL_MAGIC_tied */
case 'p': /* PERL_MAGIC_tiedelem */
case 'q': /* PERL_MAGIC_tiedscalar */
magic_ref++;
/* fall through */
default:
obj = sv_clone(mg->mg_obj, hseen, -1);
}
} else {
TRACEME(("magic object for type %c in NULL\n", mg->mg_type));
}
{ /* clone the mg_ptr pv */
char *mg_ptr = mg->mg_ptr; /* default */
if (mg->mg_len >= 0) { /* copy the pv */
if (mg_ptr) {
Newxz(mg_ptr, mg->mg_len+1, char); /* add +1 for the NULL at the end? */
Copy(mg->mg_ptr, mg_ptr, mg->mg_len, char);
}
} else if (mg->mg_len == HEf_SVKEY) {
/* let's share the SV for now */
SvREFCNT_inc((SV*)mg->mg_ptr);
/* maybe we also want to clone the SV... */
//if (mg_ptr) mg->mg_ptr = (char*) sv_clone((SV*)mg->mg_ptr, hseen, -1);
} else if (mg->mg_len == -1 && mg->mg_type == PERL_MAGIC_utf8) { /* copy the cache */
if (mg->mg_ptr) {
STRLEN *cache;
Newxz(cache, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
mg_ptr = (char *) cache;
Copy(mg->mg_ptr, mg_ptr, PERL_MAGIC_UTF8_CACHESIZE * 2, STRLEN);
}
} else if ( mg->mg_ptr != NULL) {
croak("Unsupported magic_ptr clone");
}
/* this is plain old magic, so do the same thing */
sv_magic(clone,
obj,
mg->mg_type,
mg_ptr,
mg->mg_len);
}
}
/* major kludge - why does the vtable for a qr type need to be null? */
if ( (mg = mg_find(clone, 'r')) )
mg->mg_virtual = (MGVTBL *) NULL;
}
/* 2: HASH/ARRAY - (with 'internal' elements) */
if ( magic_ref )
{
;;
}
else if ( SvTYPE(ref) == SVt_PVHV )
clone = hv_clone (ref, clone, hseen, depth);
else if ( SvTYPE(ref) == SVt_PVAV )
clone = av_clone (ref, clone, hseen, depth);
/* 3: REFERENCE (inlined for speed) */
else if (SvROK (ref))
{
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone)));
SvREFCNT_dec(SvRV(clone));
SvRV(clone) = sv_clone (SvRV(ref), hseen, depth); /* Clone the referent */
if (sv_isobject (ref))
{
sv_bless (clone, SvSTASH (SvRV (ref)));
}
if (SvWEAKREF(ref)) {
sv_rvweaken(clone);
}
}
TRACEME(("clone = 0x%x(%d)\n", clone, SvREFCNT(clone)));
return clone;
}
MODULE = Clone PACKAGE = Clone
PROTOTYPES: ENABLE
void
clone(self, depth=-1)
SV *self
int depth
PREINIT:
SV *clone = &PL_sv_undef;
HV *hseen = newHV();
PPCODE:
TRACEME(("ref = 0x%x\n", self));
clone = sv_clone(self, hseen, depth);
hv_clear(hseen); /* Free HV */
SvREFCNT_dec((SV *)hseen);
EXTEND(SP,1);
PUSHs(sv_2mortal(clone));