Rewrite t/op/getppid.t to remove the assumption that init has PID of 1.
[p5sagit/p5-mst-13.2.git] / hv.c
CommitLineData
a0d0e21e 1/* hv.c
79072805 2 *
4bb101f2 3 * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
b94e2f88 4 * 2000, 2001, 2002, 2003, 2004, 2005, 2006, by Larry Wall and others
79072805 5 *
6 * You may distribute under the terms of either the GNU General Public
7 * License or the Artistic License, as specified in the README file.
8 *
a0d0e21e 9 */
10
11/*
12 * "I sit beside the fire and think of all that I have seen." --Bilbo
79072805 13 */
14
d5afce77 15/*
16=head1 Hash Manipulation Functions
166f8a29 17
18A HV structure represents a Perl hash. It consists mainly of an array
19of pointers, each of which points to a linked list of HE structures. The
20array is indexed by the hash function of the key, so each linked list
21represents all the hash entries with the same hash value. Each HE contains
22a pointer to the actual value, plus a pointer to a HEK structure which
23holds the key and hash value.
24
25=cut
26
d5afce77 27*/
28
79072805 29#include "EXTERN.h"
864dbfa3 30#define PERL_IN_HV_C
3d78eb94 31#define PERL_HASH_INTERNAL_ACCESS
79072805 32#include "perl.h"
33
d8012aaf 34#define HV_MAX_LENGTH_BEFORE_SPLIT 14
fdcd69b6 35
d75ce684 36static const char S_strtab_error[]
5d2b1485 37 = "Cannot modify shared string table in hv_%s";
38
cac9b346 39STATIC void
40S_more_he(pTHX)
41{
97aff369 42 dVAR;
cac9b346 43 HE* he;
44 HE* heend;
5e258f8c 45
46 he = (HE*) Perl_get_arena(aTHX_ PERL_ARENA_SIZE);
cac9b346 47
48 heend = &he[PERL_ARENA_SIZE / sizeof(HE) - 1];
d2a0f284 49 PL_body_roots[HE_SVSLOT] = he;
cac9b346 50 while (he < heend) {
51 HeNEXT(he) = (HE*)(he + 1);
52 he++;
53 }
54 HeNEXT(he) = 0;
55}
56
c941fb51 57#ifdef PURIFY
58
59#define new_HE() (HE*)safemalloc(sizeof(HE))
60#define del_HE(p) safefree((char*)p)
61
62#else
63
76e3520e 64STATIC HE*
cea2e8a9 65S_new_he(pTHX)
4633a7c4 66{
97aff369 67 dVAR;
4633a7c4 68 HE* he;
0bd48802 69 void ** const root = &PL_body_roots[HE_SVSLOT];
6a93a7e5 70
333f433b 71 LOCK_SV_MUTEX;
6a93a7e5 72 if (!*root)
cac9b346 73 S_more_he(aTHX);
6a93a7e5 74 he = *root;
75 *root = HeNEXT(he);
333f433b 76 UNLOCK_SV_MUTEX;
77 return he;
4633a7c4 78}
79
c941fb51 80#define new_HE() new_he()
81#define del_HE(p) \
82 STMT_START { \
83 LOCK_SV_MUTEX; \
6a93a7e5 84 HeNEXT(p) = (HE*)(PL_body_roots[HE_SVSLOT]); \
85 PL_body_roots[HE_SVSLOT] = p; \
c941fb51 86 UNLOCK_SV_MUTEX; \
87 } STMT_END
d33b2eba 88
d33b2eba 89
d33b2eba 90
91#endif
92
76e3520e 93STATIC HEK *
5f66b61c 94S_save_hek_flags(const char *str, I32 len, U32 hash, int flags)
bbce6d69 95{
35a4481c 96 const int flags_masked = flags & HVhek_MASK;
bbce6d69 97 char *k;
98 register HEK *hek;
1c846c1f 99
a02a5408 100 Newx(k, HEK_BASESIZE + len + 2, char);
bbce6d69 101 hek = (HEK*)k;
ff68c719 102 Copy(str, HEK_KEY(hek), len, char);
e05949c7 103 HEK_KEY(hek)[len] = 0;
ff68c719 104 HEK_LEN(hek) = len;
105 HEK_HASH(hek) = hash;
dcf933a4 106 HEK_FLAGS(hek) = (unsigned char)flags_masked;
107
108 if (flags & HVhek_FREEKEY)
109 Safefree(str);
bbce6d69 110 return hek;
111}
112
4a31713e 113/* free the pool of temporary HE/HEK pairs returned by hv_fetch_ent
dd28f7bb 114 * for tied hashes */
115
116void
117Perl_free_tied_hv_pool(pTHX)
118{
97aff369 119 dVAR;
dd28f7bb 120 HE *he = PL_hv_fetch_ent_mh;
121 while (he) {
9d4ba2ae 122 HE * const ohe = he;
dd28f7bb 123 Safefree(HeKEY_hek(he));
dd28f7bb 124 he = HeNEXT(he);
125 del_HE(ohe);
126 }
4608196e 127 PL_hv_fetch_ent_mh = NULL;
dd28f7bb 128}
129
d18c6117 130#if defined(USE_ITHREADS)
0bff533c 131HEK *
132Perl_hek_dup(pTHX_ HEK *source, CLONE_PARAMS* param)
133{
658b4a4a 134 HEK *shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
9d4ba2ae 135
136 PERL_UNUSED_ARG(param);
0bff533c 137
138 if (shared) {
139 /* We already shared this hash key. */
454f1e26 140 (void)share_hek_hek(shared);
0bff533c 141 }
142 else {
658b4a4a 143 shared
6e838c70 144 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
145 HEK_HASH(source), HEK_FLAGS(source));
658b4a4a 146 ptr_table_store(PL_ptr_table, source, shared);
0bff533c 147 }
658b4a4a 148 return shared;
0bff533c 149}
150
d18c6117 151HE *
5c4138a0 152Perl_he_dup(pTHX_ const HE *e, bool shared, CLONE_PARAMS* param)
d18c6117 153{
154 HE *ret;
155
156 if (!e)
4608196e 157 return NULL;
7766f137 158 /* look for it in the table first */
159 ret = (HE*)ptr_table_fetch(PL_ptr_table, e);
160 if (ret)
161 return ret;
162
163 /* create anew and remember what it is */
d33b2eba 164 ret = new_HE();
7766f137 165 ptr_table_store(PL_ptr_table, e, ret);
166
d2d73c3e 167 HeNEXT(ret) = he_dup(HeNEXT(e),shared, param);
dd28f7bb 168 if (HeKLEN(e) == HEf_SVKEY) {
169 char *k;
a02a5408 170 Newx(k, HEK_BASESIZE + sizeof(SV*), char);
dd28f7bb 171 HeKEY_hek(ret) = (HEK*)k;
d2d73c3e 172 HeKEY_sv(ret) = SvREFCNT_inc(sv_dup(HeKEY_sv(e), param));
dd28f7bb 173 }
c21d1a0f 174 else if (shared) {
0bff533c 175 /* This is hek_dup inlined, which seems to be important for speed
176 reasons. */
1b6737cc 177 HEK * const source = HeKEY_hek(e);
658b4a4a 178 HEK *shared = (HEK*)ptr_table_fetch(PL_ptr_table, source);
c21d1a0f 179
180 if (shared) {
181 /* We already shared this hash key. */
454f1e26 182 (void)share_hek_hek(shared);
c21d1a0f 183 }
184 else {
658b4a4a 185 shared
6e838c70 186 = share_hek_flags(HEK_KEY(source), HEK_LEN(source),
187 HEK_HASH(source), HEK_FLAGS(source));
658b4a4a 188 ptr_table_store(PL_ptr_table, source, shared);
c21d1a0f 189 }
658b4a4a 190 HeKEY_hek(ret) = shared;
c21d1a0f 191 }
d18c6117 192 else
19692e8d 193 HeKEY_hek(ret) = save_hek_flags(HeKEY(e), HeKLEN(e), HeHASH(e),
194 HeKFLAGS(e));
d2d73c3e 195 HeVAL(ret) = SvREFCNT_inc(sv_dup(HeVAL(e), param));
d18c6117 196 return ret;
197}
198#endif /* USE_ITHREADS */
199
1b1f1335 200static void
2393f1b9 201S_hv_notallowed(pTHX_ int flags, const char *key, I32 klen,
202 const char *msg)
1b1f1335 203{
1b6737cc 204 SV * const sv = sv_newmortal();
19692e8d 205 if (!(flags & HVhek_FREEKEY)) {
1b1f1335 206 sv_setpvn(sv, key, klen);
207 }
208 else {
209 /* Need to free saved eventually assign to mortal SV */
34c3c4e3 210 /* XXX is this line an error ???: SV *sv = sv_newmortal(); */
1b1f1335 211 sv_usepvn(sv, (char *) key, klen);
212 }
19692e8d 213 if (flags & HVhek_UTF8) {
1b1f1335 214 SvUTF8_on(sv);
215 }
c8cd6465 216 Perl_croak(aTHX_ msg, sv);
1b1f1335 217}
218
fde52b5c 219/* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
220 * contains an SV* */
221
34a6f7b4 222#define HV_FETCH_ISSTORE 0x01
223#define HV_FETCH_ISEXISTS 0x02
224#define HV_FETCH_LVALUE 0x04
225#define HV_FETCH_JUST_SV 0x08
226
227/*
228=for apidoc hv_store
229
230Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
231the length of the key. The C<hash> parameter is the precomputed hash
232value; if it is zero then Perl will compute it. The return value will be
233NULL if the operation failed or if the value did not need to be actually
234stored within the hash (as in the case of tied hashes). Otherwise it can
235be dereferenced to get the original C<SV*>. Note that the caller is
236responsible for suitably incrementing the reference count of C<val> before
237the call, and decrementing it if the function returned NULL. Effectively
238a successful hv_store takes ownership of one reference to C<val>. This is
239usually what you want; a newly created SV has a reference count of one, so
240if all your code does is create SVs then store them in a hash, hv_store
241will own the only reference to the new SV, and your code doesn't need to do
242anything further to tidy up. hv_store is not implemented as a call to
243hv_store_ent, and does not create a temporary SV for the key, so if your
244key data is not already in SV form then use hv_store in preference to
245hv_store_ent.
246
247See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
248information on how to use this function on tied hashes.
249
250=cut
251*/
252
253SV**
254Perl_hv_store(pTHX_ HV *hv, const char *key, I32 klen_i32, SV *val, U32 hash)
255{
256 HE *hek;
257 STRLEN klen;
258 int flags;
259
260 if (klen_i32 < 0) {
261 klen = -klen_i32;
262 flags = HVhek_UTF8;
263 } else {
264 klen = klen_i32;
265 flags = 0;
266 }
267 hek = hv_fetch_common (hv, NULL, key, klen, flags,
52d01cc2 268 (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
34a6f7b4 269 return hek ? &HeVAL(hek) : NULL;
270}
271
fabdb6c0 272/* XXX This looks like an ideal candidate to inline */
34a6f7b4 273SV**
274Perl_hv_store_flags(pTHX_ HV *hv, const char *key, I32 klen, SV *val,
275 register U32 hash, int flags)
276{
9d4ba2ae 277 HE * const hek = hv_fetch_common (hv, NULL, key, klen, flags,
34a6f7b4 278 (HV_FETCH_ISSTORE|HV_FETCH_JUST_SV), val, hash);
279 return hek ? &HeVAL(hek) : NULL;
280}
281
282/*
283=for apidoc hv_store_ent
284
285Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
286parameter is the precomputed hash value; if it is zero then Perl will
287compute it. The return value is the new hash entry so created. It will be
288NULL if the operation failed or if the value did not need to be actually
289stored within the hash (as in the case of tied hashes). Otherwise the
290contents of the return value can be accessed using the C<He?> macros
291described here. Note that the caller is responsible for suitably
292incrementing the reference count of C<val> before the call, and
293decrementing it if the function returned NULL. Effectively a successful
294hv_store_ent takes ownership of one reference to C<val>. This is
295usually what you want; a newly created SV has a reference count of one, so
296if all your code does is create SVs then store them in a hash, hv_store
297will own the only reference to the new SV, and your code doesn't need to do
298anything further to tidy up. Note that hv_store_ent only reads the C<key>;
299unlike C<val> it does not take ownership of it, so maintaining the correct
300reference count on C<key> is entirely the caller's responsibility. hv_store
301is not implemented as a call to hv_store_ent, and does not create a temporary
302SV for the key, so if your key data is not already in SV form then use
303hv_store in preference to hv_store_ent.
304
305See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
306information on how to use this function on tied hashes.
307
308=cut
309*/
310
fabdb6c0 311/* XXX This looks like an ideal candidate to inline */
34a6f7b4 312HE *
313Perl_hv_store_ent(pTHX_ HV *hv, SV *keysv, SV *val, U32 hash)
314{
315 return hv_fetch_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISSTORE, val, hash);
316}
317
318/*
319=for apidoc hv_exists
320
321Returns a boolean indicating whether the specified hash key exists. The
322C<klen> is the length of the key.
323
324=cut
325*/
326
327bool
328Perl_hv_exists(pTHX_ HV *hv, const char *key, I32 klen_i32)
329{
330 STRLEN klen;
331 int flags;
332
333 if (klen_i32 < 0) {
334 klen = -klen_i32;
335 flags = HVhek_UTF8;
336 } else {
337 klen = klen_i32;
338 flags = 0;
339 }
340 return hv_fetch_common(hv, NULL, key, klen, flags, HV_FETCH_ISEXISTS, 0, 0)
341 ? TRUE : FALSE;
342}
343
954c1994 344/*
345=for apidoc hv_fetch
346
347Returns the SV which corresponds to the specified key in the hash. The
348C<klen> is the length of the key. If C<lval> is set then the fetch will be
349part of a store. Check that the return value is non-null before
d1be9408 350dereferencing it to an C<SV*>.
954c1994 351
96f1132b 352See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994 353information on how to use this function on tied hashes.
354
355=cut
356*/
357
79072805 358SV**
c1fe5510 359Perl_hv_fetch(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 lval)
79072805 360{
c1fe5510 361 HE *hek;
362 STRLEN klen;
363 int flags;
364
365 if (klen_i32 < 0) {
366 klen = -klen_i32;
367 flags = HVhek_UTF8;
368 } else {
369 klen = klen_i32;
370 flags = 0;
371 }
372 hek = hv_fetch_common (hv, NULL, key, klen, flags,
c445ea15 373 lval ? (HV_FETCH_JUST_SV | HV_FETCH_LVALUE) : HV_FETCH_JUST_SV,
a0714e2c 374 NULL, 0);
113738bb 375 return hek ? &HeVAL(hek) : NULL;
79072805 376}
377
34a6f7b4 378/*
379=for apidoc hv_exists_ent
380
381Returns a boolean indicating whether the specified hash key exists. C<hash>
382can be a valid precomputed hash value, or 0 to ask for it to be
383computed.
384
385=cut
386*/
387
fabdb6c0 388/* XXX This looks like an ideal candidate to inline */
34a6f7b4 389bool
390Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash)
391{
392 return hv_fetch_common(hv, keysv, NULL, 0, 0, HV_FETCH_ISEXISTS, 0, hash)
393 ? TRUE : FALSE;
394}
395
d1be9408 396/* returns an HE * structure with the all fields set */
fde52b5c 397/* note that hent_val will be a mortal sv for MAGICAL hashes */
954c1994 398/*
399=for apidoc hv_fetch_ent
400
401Returns the hash entry which corresponds to the specified key in the hash.
402C<hash> must be a valid precomputed hash number for the given C<key>, or 0
403if you want the function to compute it. IF C<lval> is set then the fetch
404will be part of a store. Make sure the return value is non-null before
405accessing it. The return value when C<tb> is a tied hash is a pointer to a
406static location, so be sure to make a copy of the structure if you need to
1c846c1f 407store it somewhere.
954c1994 408
96f1132b 409See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994 410information on how to use this function on tied hashes.
411
412=cut
413*/
414
fde52b5c 415HE *
864dbfa3 416Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, register U32 hash)
fde52b5c 417{
7f66fda2 418 return hv_fetch_common(hv, keysv, NULL, 0, 0,
a0714e2c 419 (lval ? HV_FETCH_LVALUE : 0), NULL, hash);
113738bb 420}
421
8f8d40ab 422STATIC HE *
c1fe5510 423S_hv_fetch_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
b2c64049 424 int flags, int action, SV *val, register U32 hash)
113738bb 425{
27da23d5 426 dVAR;
b2c64049 427 XPVHV* xhv;
b2c64049 428 HE *entry;
429 HE **oentry;
fde52b5c 430 SV *sv;
da58a35d 431 bool is_utf8;
113738bb 432 int masked_flags;
fde52b5c 433
434 if (!hv)
a4fc7abc 435 return NULL;
fde52b5c 436
113738bb 437 if (keysv) {
e593d2fe 438 if (flags & HVhek_FREEKEY)
439 Safefree(key);
5c144d81 440 key = SvPV_const(keysv, klen);
c1fe5510 441 flags = 0;
113738bb 442 is_utf8 = (SvUTF8(keysv) != 0);
443 } else {
c1fe5510 444 is_utf8 = ((flags & HVhek_UTF8) ? TRUE : FALSE);
113738bb 445 }
113738bb 446
b2c64049 447 xhv = (XPVHV*)SvANY(hv);
7f66fda2 448 if (SvMAGICAL(hv)) {
6136c704 449 if (SvRMAGICAL(hv) && !(action & (HV_FETCH_ISSTORE|HV_FETCH_ISEXISTS))) {
7f66fda2 450 if (mg_find((SV*)hv, PERL_MAGIC_tied) || SvGMAGICAL((SV*)hv)) {
451 sv = sv_newmortal();
113738bb 452
7f66fda2 453 /* XXX should be able to skimp on the HE/HEK here when
454 HV_FETCH_JUST_SV is true. */
113738bb 455
7f66fda2 456 if (!keysv) {
457 keysv = newSVpvn(key, klen);
458 if (is_utf8) {
459 SvUTF8_on(keysv);
460 }
461 } else {
462 keysv = newSVsv(keysv);
113738bb 463 }
7f66fda2 464 mg_copy((SV*)hv, sv, (char *)keysv, HEf_SVKEY);
465
466 /* grab a fake HE/HEK pair from the pool or make a new one */
467 entry = PL_hv_fetch_ent_mh;
468 if (entry)
469 PL_hv_fetch_ent_mh = HeNEXT(entry);
470 else {
471 char *k;
472 entry = new_HE();
a02a5408 473 Newx(k, HEK_BASESIZE + sizeof(SV*), char);
7f66fda2 474 HeKEY_hek(entry) = (HEK*)k;
475 }
4608196e 476 HeNEXT(entry) = NULL;
7f66fda2 477 HeSVKEY_set(entry, keysv);
478 HeVAL(entry) = sv;
479 sv_upgrade(sv, SVt_PVLV);
480 LvTYPE(sv) = 'T';
481 /* so we can free entry when freeing sv */
482 LvTARG(sv) = (SV*)entry;
483
484 /* XXX remove at some point? */
485 if (flags & HVhek_FREEKEY)
486 Safefree(key);
487
488 return entry;
113738bb 489 }
7f66fda2 490#ifdef ENV_IS_CASELESS
491 else if (mg_find((SV*)hv, PERL_MAGIC_env)) {
492 U32 i;
493 for (i = 0; i < klen; ++i)
494 if (isLOWER(key[i])) {
086cb327 495 /* Would be nice if we had a routine to do the
496 copy and upercase in a single pass through. */
0bd48802 497 const char * const nkey = strupr(savepvn(key,klen));
086cb327 498 /* Note that this fetch is for nkey (the uppercased
499 key) whereas the store is for key (the original) */
a0714e2c 500 entry = hv_fetch_common(hv, NULL, nkey, klen,
086cb327 501 HVhek_FREEKEY, /* free nkey */
502 0 /* non-LVAL fetch */,
a0714e2c 503 NULL /* no value */,
086cb327 504 0 /* compute hash */);
505 if (!entry && (action & HV_FETCH_LVALUE)) {
506 /* This call will free key if necessary.
507 Do it this way to encourage compiler to tail
508 call optimise. */
509 entry = hv_fetch_common(hv, keysv, key, klen,
510 flags, HV_FETCH_ISSTORE,
561b68a9 511 newSV(0), hash);
086cb327 512 } else {
513 if (flags & HVhek_FREEKEY)
514 Safefree(key);
515 }
516 return entry;
7f66fda2 517 }
902173a3 518 }
7f66fda2 519#endif
520 } /* ISFETCH */
521 else if (SvRMAGICAL(hv) && (action & HV_FETCH_ISEXISTS)) {
522 if (mg_find((SV*)hv, PERL_MAGIC_tied) || SvGMAGICAL((SV*)hv)) {
b2c64049 523 /* I don't understand why hv_exists_ent has svret and sv,
524 whereas hv_exists only had one. */
9d4ba2ae 525 SV * const svret = sv_newmortal();
b2c64049 526 sv = sv_newmortal();
7f66fda2 527
528 if (keysv || is_utf8) {
529 if (!keysv) {
530 keysv = newSVpvn(key, klen);
531 SvUTF8_on(keysv);
532 } else {
533 keysv = newSVsv(keysv);
534 }
b2c64049 535 mg_copy((SV*)hv, sv, (char *)sv_2mortal(keysv), HEf_SVKEY);
536 } else {
537 mg_copy((SV*)hv, sv, key, klen);
7f66fda2 538 }
b2c64049 539 if (flags & HVhek_FREEKEY)
540 Safefree(key);
7f66fda2 541 magic_existspack(svret, mg_find(sv, PERL_MAGIC_tiedelem));
542 /* This cast somewhat evil, but I'm merely using NULL/
543 not NULL to return the boolean exists.
544 And I know hv is not NULL. */
545 return SvTRUE(svret) ? (HE *)hv : NULL;
e7152ba2 546 }
7f66fda2 547#ifdef ENV_IS_CASELESS
548 else if (mg_find((SV*)hv, PERL_MAGIC_env)) {
549 /* XXX This code isn't UTF8 clean. */
a15d23f8 550 char * const keysave = (char * const)key;
b2c64049 551 /* Will need to free this, so set FREEKEY flag. */
552 key = savepvn(key,klen);
553 key = (const char*)strupr((char*)key);
6136c704 554 is_utf8 = FALSE;
7f66fda2 555 hash = 0;
8b4f7dd5 556 keysv = 0;
b2c64049 557
558 if (flags & HVhek_FREEKEY) {
559 Safefree(keysave);
560 }
561 flags |= HVhek_FREEKEY;
7f66fda2 562 }
902173a3 563#endif
7f66fda2 564 } /* ISEXISTS */
b2c64049 565 else if (action & HV_FETCH_ISSTORE) {
566 bool needs_copy;
567 bool needs_store;
568 hv_magic_check (hv, &needs_copy, &needs_store);
569 if (needs_copy) {
a3b680e6 570 const bool save_taint = PL_tainted;
b2c64049 571 if (keysv || is_utf8) {
572 if (!keysv) {
573 keysv = newSVpvn(key, klen);
574 SvUTF8_on(keysv);
575 }
576 if (PL_tainting)
577 PL_tainted = SvTAINTED(keysv);
578 keysv = sv_2mortal(newSVsv(keysv));
579 mg_copy((SV*)hv, val, (char*)keysv, HEf_SVKEY);
580 } else {
581 mg_copy((SV*)hv, val, key, klen);
582 }
583
584 TAINT_IF(save_taint);
1baaf5d7 585 if (!needs_store) {
b2c64049 586 if (flags & HVhek_FREEKEY)
587 Safefree(key);
4608196e 588 return NULL;
b2c64049 589 }
590#ifdef ENV_IS_CASELESS
591 else if (mg_find((SV*)hv, PERL_MAGIC_env)) {
592 /* XXX This code isn't UTF8 clean. */
593 const char *keysave = key;
594 /* Will need to free this, so set FREEKEY flag. */
595 key = savepvn(key,klen);
596 key = (const char*)strupr((char*)key);
6136c704 597 is_utf8 = FALSE;
b2c64049 598 hash = 0;
8b4f7dd5 599 keysv = 0;
b2c64049 600
601 if (flags & HVhek_FREEKEY) {
602 Safefree(keysave);
603 }
604 flags |= HVhek_FREEKEY;
605 }
606#endif
607 }
608 } /* ISSTORE */
7f66fda2 609 } /* SvMAGICAL */
fde52b5c 610
7b2c381c 611 if (!HvARRAY(hv)) {
b2c64049 612 if ((action & (HV_FETCH_LVALUE | HV_FETCH_ISSTORE))
fde52b5c 613#ifdef DYNAMIC_ENV_FETCH /* if it's an %ENV lookup, we may get it on the fly */
8aacddc1 614 || (SvRMAGICAL((SV*)hv) && mg_find((SV*)hv, PERL_MAGIC_env))
fde52b5c 615#endif
d58e6666 616 ) {
617 char *array;
a02a5408 618 Newxz(array,
cbec9347 619 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
d58e6666 620 char);
621 HvARRAY(hv) = (HE**)array;
622 }
7f66fda2 623#ifdef DYNAMIC_ENV_FETCH
624 else if (action & HV_FETCH_ISEXISTS) {
625 /* for an %ENV exists, if we do an insert it's by a recursive
626 store call, so avoid creating HvARRAY(hv) right now. */
627 }
628#endif
113738bb 629 else {
630 /* XXX remove at some point? */
631 if (flags & HVhek_FREEKEY)
632 Safefree(key);
633
fde52b5c 634 return 0;
113738bb 635 }
fde52b5c 636 }
637
19692e8d 638 if (is_utf8) {
41d88b63 639 char * const keysave = (char *)key;
f9a63242 640 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
19692e8d 641 if (is_utf8)
c1fe5510 642 flags |= HVhek_UTF8;
643 else
644 flags &= ~HVhek_UTF8;
7f66fda2 645 if (key != keysave) {
646 if (flags & HVhek_FREEKEY)
647 Safefree(keysave);
19692e8d 648 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
7f66fda2 649 }
19692e8d 650 }
f9a63242 651
4b5190b5 652 if (HvREHASH(hv)) {
653 PERL_HASH_INTERNAL(hash, key, klen);
b2c64049 654 /* We don't have a pointer to the hv, so we have to replicate the
655 flag into every HEK, so that hv_iterkeysv can see it. */
656 /* And yes, you do need this even though you are not "storing" because
fdcd69b6 657 you can flip the flags below if doing an lval lookup. (And that
658 was put in to give the semantics Andreas was expecting.) */
659 flags |= HVhek_REHASH;
4b5190b5 660 } else if (!hash) {
113738bb 661 if (keysv && (SvIsCOW_shared_hash(keysv))) {
c158a4fd 662 hash = SvSHARED_HASH(keysv);
46187eeb 663 } else {
664 PERL_HASH(hash, key, klen);
665 }
666 }
effa1e2d 667
113738bb 668 masked_flags = (flags & HVhek_MASK);
669
7f66fda2 670#ifdef DYNAMIC_ENV_FETCH
4608196e 671 if (!HvARRAY(hv)) entry = NULL;
7f66fda2 672 else
673#endif
b2c64049 674 {
7b2c381c 675 entry = (HvARRAY(hv))[hash & (I32) HvMAX(hv)];
b2c64049 676 }
0298d7b9 677 for (; entry; entry = HeNEXT(entry)) {
fde52b5c 678 if (HeHASH(entry) != hash) /* strings can't be equal */
679 continue;
eb160463 680 if (HeKLEN(entry) != (I32)klen)
fde52b5c 681 continue;
1c846c1f 682 if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 683 continue;
113738bb 684 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
c3654f1a 685 continue;
b2c64049 686
687 if (action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE)) {
688 if (HeKFLAGS(entry) != masked_flags) {
689 /* We match if HVhek_UTF8 bit in our flags and hash key's
690 match. But if entry was set previously with HVhek_WASUTF8
691 and key now doesn't (or vice versa) then we should change
692 the key's flag, as this is assignment. */
693 if (HvSHAREKEYS(hv)) {
694 /* Need to swap the key we have for a key with the flags we
695 need. As keys are shared we can't just write to the
696 flag, so we share the new one, unshare the old one. */
6136c704 697 HEK * const new_hek = share_hek_flags(key, klen, hash,
6e838c70 698 masked_flags);
b2c64049 699 unshare_hek (HeKEY_hek(entry));
700 HeKEY_hek(entry) = new_hek;
701 }
5d2b1485 702 else if (hv == PL_strtab) {
703 /* PL_strtab is usually the only hash without HvSHAREKEYS,
704 so putting this test here is cheap */
705 if (flags & HVhek_FREEKEY)
706 Safefree(key);
707 Perl_croak(aTHX_ S_strtab_error,
708 action & HV_FETCH_LVALUE ? "fetch" : "store");
709 }
b2c64049 710 else
711 HeKFLAGS(entry) = masked_flags;
712 if (masked_flags & HVhek_ENABLEHVKFLAGS)
713 HvHASKFLAGS_on(hv);
714 }
715 if (HeVAL(entry) == &PL_sv_placeholder) {
716 /* yes, can store into placeholder slot */
717 if (action & HV_FETCH_LVALUE) {
718 if (SvMAGICAL(hv)) {
719 /* This preserves behaviour with the old hv_fetch
720 implementation which at this point would bail out
721 with a break; (at "if we find a placeholder, we
722 pretend we haven't found anything")
723
724 That break mean that if a placeholder were found, it
725 caused a call into hv_store, which in turn would
726 check magic, and if there is no magic end up pretty
727 much back at this point (in hv_store's code). */
728 break;
729 }
730 /* LVAL fetch which actaully needs a store. */
561b68a9 731 val = newSV(0);
ca732855 732 HvPLACEHOLDERS(hv)--;
b2c64049 733 } else {
734 /* store */
735 if (val != &PL_sv_placeholder)
ca732855 736 HvPLACEHOLDERS(hv)--;
b2c64049 737 }
738 HeVAL(entry) = val;
739 } else if (action & HV_FETCH_ISSTORE) {
740 SvREFCNT_dec(HeVAL(entry));
741 HeVAL(entry) = val;
742 }
27bcc0a7 743 } else if (HeVAL(entry) == &PL_sv_placeholder) {
b2c64049 744 /* if we find a placeholder, we pretend we haven't found
745 anything */
8aacddc1 746 break;
b2c64049 747 }
113738bb 748 if (flags & HVhek_FREEKEY)
749 Safefree(key);
fde52b5c 750 return entry;
751 }
752#ifdef DYNAMIC_ENV_FETCH /* %ENV lookup? If so, try to fetch the value now */
0ed29950 753 if (!(action & HV_FETCH_ISSTORE)
754 && SvRMAGICAL((SV*)hv) && mg_find((SV*)hv, PERL_MAGIC_env)) {
a6c40364 755 unsigned long len;
9d4ba2ae 756 const char * const env = PerlEnv_ENVgetenv_len(key,&len);
a6c40364 757 if (env) {
758 sv = newSVpvn(env,len);
759 SvTAINTED_on(sv);
7fd3d16e 760 return hv_fetch_common(hv,keysv,key,klen,flags,HV_FETCH_ISSTORE,sv,
b2c64049 761 hash);
a6c40364 762 }
fde52b5c 763 }
764#endif
7f66fda2 765
766 if (!entry && SvREADONLY(hv) && !(action & HV_FETCH_ISEXISTS)) {
c445ea15 767 hv_notallowed(flags, key, klen,
c8cd6465 768 "Attempt to access disallowed key '%"SVf"' in"
769 " a restricted hash");
1b1f1335 770 }
b2c64049 771 if (!(action & (HV_FETCH_LVALUE|HV_FETCH_ISSTORE))) {
772 /* Not doing some form of store, so return failure. */
773 if (flags & HVhek_FREEKEY)
774 Safefree(key);
775 return 0;
776 }
113738bb 777 if (action & HV_FETCH_LVALUE) {
561b68a9 778 val = newSV(0);
b2c64049 779 if (SvMAGICAL(hv)) {
780 /* At this point the old hv_fetch code would call to hv_store,
781 which in turn might do some tied magic. So we need to make that
782 magic check happen. */
783 /* gonna assign to this, so it better be there */
784 return hv_fetch_common(hv, keysv, key, klen, flags,
785 HV_FETCH_ISSTORE, val, hash);
786 /* XXX Surely that could leak if the fetch-was-store fails?
787 Just like the hv_fetch. */
113738bb 788 }
789 }
790
b2c64049 791 /* Welcome to hv_store... */
792
7b2c381c 793 if (!HvARRAY(hv)) {
b2c64049 794 /* Not sure if we can get here. I think the only case of oentry being
795 NULL is for %ENV with dynamic env fetch. But that should disappear
796 with magic in the previous code. */
d58e6666 797 char *array;
a02a5408 798 Newxz(array,
b2c64049 799 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max+1 /* HvMAX(hv)+1 */),
d58e6666 800 char);
801 HvARRAY(hv) = (HE**)array;
b2c64049 802 }
803
7b2c381c 804 oentry = &(HvARRAY(hv))[hash & (I32) xhv->xhv_max];
ab4af705 805
b2c64049 806 entry = new_HE();
807 /* share_hek_flags will do the free for us. This might be considered
808 bad API design. */
809 if (HvSHAREKEYS(hv))
6e838c70 810 HeKEY_hek(entry) = share_hek_flags(key, klen, hash, flags);
5d2b1485 811 else if (hv == PL_strtab) {
812 /* PL_strtab is usually the only hash without HvSHAREKEYS, so putting
813 this test here is cheap */
814 if (flags & HVhek_FREEKEY)
815 Safefree(key);
816 Perl_croak(aTHX_ S_strtab_error,
817 action & HV_FETCH_LVALUE ? "fetch" : "store");
818 }
b2c64049 819 else /* gotta do the real thing */
820 HeKEY_hek(entry) = save_hek_flags(key, klen, hash, flags);
821 HeVAL(entry) = val;
822 HeNEXT(entry) = *oentry;
823 *oentry = entry;
824
825 if (val == &PL_sv_placeholder)
ca732855 826 HvPLACEHOLDERS(hv)++;
b2c64049 827 if (masked_flags & HVhek_ENABLEHVKFLAGS)
828 HvHASKFLAGS_on(hv);
829
0298d7b9 830 {
831 const HE *counter = HeNEXT(entry);
832
4c7185a0 833 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
0298d7b9 834 if (!counter) { /* initial entry? */
835 xhv->xhv_fill++; /* HvFILL(hv)++ */
836 } else if (xhv->xhv_keys > (IV)xhv->xhv_max) {
837 hsplit(hv);
838 } else if(!HvREHASH(hv)) {
839 U32 n_links = 1;
840
841 while ((counter = HeNEXT(counter)))
842 n_links++;
843
844 if (n_links > HV_MAX_LENGTH_BEFORE_SPLIT) {
845 /* Use only the old HvKEYS(hv) > HvMAX(hv) condition to limit
846 bucket splits on a rehashed hash, as we're not going to
847 split it again, and if someone is lucky (evil) enough to
848 get all the keys in one list they could exhaust our memory
849 as we repeatedly double the number of buckets on every
850 entry. Linear search feels a less worse thing to do. */
851 hsplit(hv);
852 }
853 }
fde52b5c 854 }
b2c64049 855
856 return entry;
fde52b5c 857}
858
864dbfa3 859STATIC void
b0e6ae5b 860S_hv_magic_check(HV *hv, bool *needs_copy, bool *needs_store)
d0066dc7 861{
a3b680e6 862 const MAGIC *mg = SvMAGIC(hv);
d0066dc7 863 *needs_copy = FALSE;
864 *needs_store = TRUE;
865 while (mg) {
866 if (isUPPER(mg->mg_type)) {
867 *needs_copy = TRUE;
d60c5a05 868 if (mg->mg_type == PERL_MAGIC_tied) {
d0066dc7 869 *needs_store = FALSE;
4ab2a30b 870 return; /* We've set all there is to set. */
d0066dc7 871 }
872 }
873 mg = mg->mg_moremagic;
874 }
875}
876
954c1994 877/*
a3bcc51e 878=for apidoc hv_scalar
879
880Evaluates the hash in scalar context and returns the result. Handles magic when the hash is tied.
881
882=cut
883*/
884
885SV *
886Perl_hv_scalar(pTHX_ HV *hv)
887{
a3bcc51e 888 SV *sv;
823a54a3 889
890 if (SvRMAGICAL(hv)) {
891 MAGIC * const mg = mg_find((SV*)hv, PERL_MAGIC_tied);
892 if (mg)
893 return magic_scalarpack(hv, mg);
894 }
a3bcc51e 895
896 sv = sv_newmortal();
897 if (HvFILL((HV*)hv))
898 Perl_sv_setpvf(aTHX_ sv, "%ld/%ld",
899 (long)HvFILL(hv), (long)HvMAX(hv) + 1);
900 else
901 sv_setiv(sv, 0);
902
903 return sv;
904}
905
906/*
954c1994 907=for apidoc hv_delete
908
909Deletes a key/value pair in the hash. The value SV is removed from the
1c846c1f 910hash and returned to the caller. The C<klen> is the length of the key.
954c1994 911The C<flags> value will normally be zero; if set to G_DISCARD then NULL
912will be returned.
913
914=cut
915*/
916
79072805 917SV *
cd6d36ac 918Perl_hv_delete(pTHX_ HV *hv, const char *key, I32 klen_i32, I32 flags)
79072805 919{
cd6d36ac 920 STRLEN klen;
6136c704 921 int k_flags;
cd6d36ac 922
923 if (klen_i32 < 0) {
924 klen = -klen_i32;
6136c704 925 k_flags = HVhek_UTF8;
cd6d36ac 926 } else {
927 klen = klen_i32;
6136c704 928 k_flags = 0;
cd6d36ac 929 }
930 return hv_delete_common(hv, NULL, key, klen, k_flags, flags, 0);
fde52b5c 931}
932
954c1994 933/*
934=for apidoc hv_delete_ent
935
936Deletes a key/value pair in the hash. The value SV is removed from the
937hash and returned to the caller. The C<flags> value will normally be zero;
938if set to G_DISCARD then NULL will be returned. C<hash> can be a valid
939precomputed hash value, or 0 to ask for it to be computed.
940
941=cut
942*/
943
fabdb6c0 944/* XXX This looks like an ideal candidate to inline */
fde52b5c 945SV *
864dbfa3 946Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash)
fde52b5c 947{
cd6d36ac 948 return hv_delete_common(hv, keysv, NULL, 0, 0, flags, hash);
f1317c8d 949}
950
8f8d40ab 951STATIC SV *
cd6d36ac 952S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
953 int k_flags, I32 d_flags, U32 hash)
f1317c8d 954{
27da23d5 955 dVAR;
cbec9347 956 register XPVHV* xhv;
fde52b5c 957 register HE *entry;
958 register HE **oentry;
9e720f71 959 HE *const *first_entry;
da58a35d 960 bool is_utf8;
7a9669ca 961 int masked_flags;
1c846c1f 962
fde52b5c 963 if (!hv)
a0714e2c 964 return NULL;
f1317c8d 965
966 if (keysv) {
e593d2fe 967 if (k_flags & HVhek_FREEKEY)
968 Safefree(key);
5c144d81 969 key = SvPV_const(keysv, klen);
cd6d36ac 970 k_flags = 0;
f1317c8d 971 is_utf8 = (SvUTF8(keysv) != 0);
972 } else {
cd6d36ac 973 is_utf8 = ((k_flags & HVhek_UTF8) ? TRUE : FALSE);
f1317c8d 974 }
f1317c8d 975
fde52b5c 976 if (SvRMAGICAL(hv)) {
0a0bb7c7 977 bool needs_copy;
978 bool needs_store;
979 hv_magic_check (hv, &needs_copy, &needs_store);
980
f1317c8d 981 if (needs_copy) {
6136c704 982 SV *sv;
7a9669ca 983 entry = hv_fetch_common(hv, keysv, key, klen,
984 k_flags & ~HVhek_FREEKEY, HV_FETCH_LVALUE,
a0714e2c 985 NULL, hash);
7a9669ca 986 sv = entry ? HeVAL(entry) : NULL;
f1317c8d 987 if (sv) {
988 if (SvMAGICAL(sv)) {
989 mg_clear(sv);
990 }
991 if (!needs_store) {
992 if (mg_find(sv, PERL_MAGIC_tiedelem)) {
993 /* No longer an element */
994 sv_unmagic(sv, PERL_MAGIC_tiedelem);
995 return sv;
996 }
a0714e2c 997 return NULL; /* element cannot be deleted */
f1317c8d 998 }
902173a3 999#ifdef ENV_IS_CASELESS
8167a60a 1000 else if (mg_find((SV*)hv, PERL_MAGIC_env)) {
1001 /* XXX This code isn't UTF8 clean. */
1002 keysv = sv_2mortal(newSVpvn(key,klen));
1003 if (k_flags & HVhek_FREEKEY) {
1004 Safefree(key);
1005 }
1006 key = strupr(SvPVX(keysv));
1007 is_utf8 = 0;
1008 k_flags = 0;
1009 hash = 0;
7f66fda2 1010 }
510ac311 1011#endif
2fd1c6b8 1012 }
2fd1c6b8 1013 }
fde52b5c 1014 }
cbec9347 1015 xhv = (XPVHV*)SvANY(hv);
7b2c381c 1016 if (!HvARRAY(hv))
a0714e2c 1017 return NULL;
fde52b5c 1018
19692e8d 1019 if (is_utf8) {
c445ea15 1020 const char * const keysave = key;
b464bac0 1021 key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
cd6d36ac 1022
19692e8d 1023 if (is_utf8)
cd6d36ac 1024 k_flags |= HVhek_UTF8;
1025 else
1026 k_flags &= ~HVhek_UTF8;
7f66fda2 1027 if (key != keysave) {
1028 if (k_flags & HVhek_FREEKEY) {
1029 /* This shouldn't happen if our caller does what we expect,
1030 but strictly the API allows it. */
1031 Safefree(keysave);
1032 }
1033 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
1034 }
cd6d36ac 1035 HvHASKFLAGS_on((SV*)hv);
19692e8d 1036 }
f9a63242 1037
4b5190b5 1038 if (HvREHASH(hv)) {
1039 PERL_HASH_INTERNAL(hash, key, klen);
1040 } else if (!hash) {
7a9669ca 1041 if (keysv && (SvIsCOW_shared_hash(keysv))) {
c158a4fd 1042 hash = SvSHARED_HASH(keysv);
7a9669ca 1043 } else {
1044 PERL_HASH(hash, key, klen);
1045 }
4b5190b5 1046 }
fde52b5c 1047
7a9669ca 1048 masked_flags = (k_flags & HVhek_MASK);
1049
9e720f71 1050 first_entry = oentry = &(HvARRAY(hv))[hash & (I32) HvMAX(hv)];
fde52b5c 1051 entry = *oentry;
9e720f71 1052 for (; entry; oentry = &HeNEXT(entry), entry = *oentry) {
6136c704 1053 SV *sv;
fde52b5c 1054 if (HeHASH(entry) != hash) /* strings can't be equal */
1055 continue;
eb160463 1056 if (HeKLEN(entry) != (I32)klen)
fde52b5c 1057 continue;
1c846c1f 1058 if (HeKEY(entry) != key && memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 1059 continue;
7a9669ca 1060 if ((HeKFLAGS(entry) ^ masked_flags) & HVhek_UTF8)
c3654f1a 1061 continue;
8aacddc1 1062
5d2b1485 1063 if (hv == PL_strtab) {
1064 if (k_flags & HVhek_FREEKEY)
1065 Safefree(key);
1066 Perl_croak(aTHX_ S_strtab_error, "delete");
1067 }
1068
8aacddc1 1069 /* if placeholder is here, it's already been deleted.... */
6136c704 1070 if (HeVAL(entry) == &PL_sv_placeholder) {
1071 if (k_flags & HVhek_FREEKEY)
1072 Safefree(key);
1073 return NULL;
8aacddc1 1074 }
6136c704 1075 if (SvREADONLY(hv) && HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
d4c19fe8 1076 hv_notallowed(k_flags, key, klen,
c8cd6465 1077 "Attempt to delete readonly key '%"SVf"' from"
1078 " a restricted hash");
8aacddc1 1079 }
b84d0860 1080 if (k_flags & HVhek_FREEKEY)
1081 Safefree(key);
8aacddc1 1082
cd6d36ac 1083 if (d_flags & G_DISCARD)
a0714e2c 1084 sv = NULL;
94f7643d 1085 else {
79d01fbf 1086 sv = sv_2mortal(HeVAL(entry));
7996736c 1087 HeVAL(entry) = &PL_sv_placeholder;
94f7643d 1088 }
8aacddc1 1089
1090 /*
1091 * If a restricted hash, rather than really deleting the entry, put
1092 * a placeholder there. This marks the key as being "approved", so
1093 * we can still access via not-really-existing key without raising
1094 * an error.
1095 */
1096 if (SvREADONLY(hv)) {
754604c4 1097 SvREFCNT_dec(HeVAL(entry));
7996736c 1098 HeVAL(entry) = &PL_sv_placeholder;
8aacddc1 1099 /* We'll be saving this slot, so the number of allocated keys
1100 * doesn't go down, but the number placeholders goes up */
ca732855 1101 HvPLACEHOLDERS(hv)++;
8aacddc1 1102 } else {
a26e96df 1103 *oentry = HeNEXT(entry);
9e720f71 1104 if(!*first_entry) {
a26e96df 1105 xhv->xhv_fill--; /* HvFILL(hv)-- */
9e720f71 1106 }
b79f7545 1107 if (SvOOK(hv) && entry == HvAUX(hv)->xhv_eiter /* HvEITER(hv) */)
8aacddc1 1108 HvLAZYDEL_on(hv);
1109 else
1110 hv_free_ent(hv, entry);
4c7185a0 1111 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
574c8022 1112 if (xhv->xhv_keys == 0)
19692e8d 1113 HvHASKFLAGS_off(hv);
8aacddc1 1114 }
79072805 1115 return sv;
1116 }
8aacddc1 1117 if (SvREADONLY(hv)) {
d4c19fe8 1118 hv_notallowed(k_flags, key, klen,
c8cd6465 1119 "Attempt to delete disallowed key '%"SVf"' from"
1120 " a restricted hash");
8aacddc1 1121 }
1122
19692e8d 1123 if (k_flags & HVhek_FREEKEY)
f9a63242 1124 Safefree(key);
a0714e2c 1125 return NULL;
79072805 1126}
1127
76e3520e 1128STATIC void
cea2e8a9 1129S_hsplit(pTHX_ HV *hv)
79072805 1130{
97aff369 1131 dVAR;
cbec9347 1132 register XPVHV* xhv = (XPVHV*)SvANY(hv);
a3b680e6 1133 const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 (sick) */
79072805 1134 register I32 newsize = oldsize * 2;
1135 register I32 i;
7b2c381c 1136 char *a = (char*) HvARRAY(hv);
72311751 1137 register HE **aep;
79072805 1138 register HE **oentry;
4b5190b5 1139 int longest_chain = 0;
1140 int was_shared;
79072805 1141
18026298 1142 /*PerlIO_printf(PerlIO_stderr(), "hsplit called for %p which had %d\n",
1143 hv, (int) oldsize);*/
1144
5d88ecd7 1145 if (HvPLACEHOLDERS_get(hv) && !SvREADONLY(hv)) {
18026298 1146 /* Can make this clear any placeholders first for non-restricted hashes,
1147 even though Storable rebuilds restricted hashes by putting in all the
1148 placeholders (first) before turning on the readonly flag, because
1149 Storable always pre-splits the hash. */
1150 hv_clear_placeholders(hv);
1151 }
1152
3280af22 1153 PL_nomemok = TRUE;
8d6dde3e 1154#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
b79f7545 1155 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1156 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
422a93e5 1157 if (!a) {
4a33f861 1158 PL_nomemok = FALSE;
422a93e5 1159 return;
1160 }
b79f7545 1161 if (SvOOK(hv)) {
7a9b70e9 1162 Copy(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
b79f7545 1163 }
4633a7c4 1164#else
a02a5408 1165 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
b79f7545 1166 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
422a93e5 1167 if (!a) {
3280af22 1168 PL_nomemok = FALSE;
422a93e5 1169 return;
1170 }
7b2c381c 1171 Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
b79f7545 1172 if (SvOOK(hv)) {
1173 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1174 }
fba3b22e 1175 if (oldsize >= 64) {
7b2c381c 1176 offer_nice_chunk(HvARRAY(hv),
b79f7545 1177 PERL_HV_ARRAY_ALLOC_BYTES(oldsize)
1178 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0));
4633a7c4 1179 }
1180 else
7b2c381c 1181 Safefree(HvARRAY(hv));
4633a7c4 1182#endif
1183
3280af22 1184 PL_nomemok = FALSE;
72311751 1185 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
cbec9347 1186 xhv->xhv_max = --newsize; /* HvMAX(hv) = --newsize */
7b2c381c 1187 HvARRAY(hv) = (HE**) a;
72311751 1188 aep = (HE**)a;
79072805 1189
72311751 1190 for (i=0; i<oldsize; i++,aep++) {
4b5190b5 1191 int left_length = 0;
1192 int right_length = 0;
a3b680e6 1193 register HE *entry;
1194 register HE **bep;
4b5190b5 1195
72311751 1196 if (!*aep) /* non-existent */
79072805 1197 continue;
72311751 1198 bep = aep+oldsize;
1199 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
eb160463 1200 if ((HeHASH(entry) & newsize) != (U32)i) {
fde52b5c 1201 *oentry = HeNEXT(entry);
72311751 1202 HeNEXT(entry) = *bep;
1203 if (!*bep)
cbec9347 1204 xhv->xhv_fill++; /* HvFILL(hv)++ */
72311751 1205 *bep = entry;
4b5190b5 1206 right_length++;
79072805 1207 continue;
1208 }
4b5190b5 1209 else {
fde52b5c 1210 oentry = &HeNEXT(entry);
4b5190b5 1211 left_length++;
1212 }
79072805 1213 }
72311751 1214 if (!*aep) /* everything moved */
cbec9347 1215 xhv->xhv_fill--; /* HvFILL(hv)-- */
4b5190b5 1216 /* I think we don't actually need to keep track of the longest length,
1217 merely flag if anything is too long. But for the moment while
1218 developing this code I'll track it. */
1219 if (left_length > longest_chain)
1220 longest_chain = left_length;
1221 if (right_length > longest_chain)
1222 longest_chain = right_length;
1223 }
1224
1225
1226 /* Pick your policy for "hashing isn't working" here: */
fdcd69b6 1227 if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked? */
4b5190b5 1228 || HvREHASH(hv)) {
1229 return;
79072805 1230 }
4b5190b5 1231
1232 if (hv == PL_strtab) {
1233 /* Urg. Someone is doing something nasty to the string table.
1234 Can't win. */
1235 return;
1236 }
1237
1238 /* Awooga. Awooga. Pathological data. */
fdcd69b6 1239 /*PerlIO_printf(PerlIO_stderr(), "%p %d of %d with %d/%d buckets\n", hv,
4b5190b5 1240 longest_chain, HvTOTALKEYS(hv), HvFILL(hv), 1+HvMAX(hv));*/
1241
1242 ++newsize;
a02a5408 1243 Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
b79f7545 1244 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
1245 if (SvOOK(hv)) {
1246 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1247 }
1248
4b5190b5 1249 was_shared = HvSHAREKEYS(hv);
1250
1251 xhv->xhv_fill = 0;
1252 HvSHAREKEYS_off(hv);
1253 HvREHASH_on(hv);
1254
7b2c381c 1255 aep = HvARRAY(hv);
4b5190b5 1256
1257 for (i=0; i<newsize; i++,aep++) {
a3b680e6 1258 register HE *entry = *aep;
4b5190b5 1259 while (entry) {
1260 /* We're going to trash this HE's next pointer when we chain it
1261 into the new hash below, so store where we go next. */
9d4ba2ae 1262 HE * const next = HeNEXT(entry);
4b5190b5 1263 UV hash;
a3b680e6 1264 HE **bep;
4b5190b5 1265
1266 /* Rehash it */
1267 PERL_HASH_INTERNAL(hash, HeKEY(entry), HeKLEN(entry));
1268
1269 if (was_shared) {
1270 /* Unshare it. */
aec46f14 1271 HEK * const new_hek
4b5190b5 1272 = save_hek_flags(HeKEY(entry), HeKLEN(entry),
1273 hash, HeKFLAGS(entry));
1274 unshare_hek (HeKEY_hek(entry));
1275 HeKEY_hek(entry) = new_hek;
1276 } else {
1277 /* Not shared, so simply write the new hash in. */
1278 HeHASH(entry) = hash;
1279 }
1280 /*PerlIO_printf(PerlIO_stderr(), "%d ", HeKFLAGS(entry));*/
1281 HEK_REHASH_on(HeKEY_hek(entry));
1282 /*PerlIO_printf(PerlIO_stderr(), "%d\n", HeKFLAGS(entry));*/
1283
1284 /* Copy oentry to the correct new chain. */
1285 bep = ((HE**)a) + (hash & (I32) xhv->xhv_max);
1286 if (!*bep)
1287 xhv->xhv_fill++; /* HvFILL(hv)++ */
1288 HeNEXT(entry) = *bep;
1289 *bep = entry;
1290
1291 entry = next;
1292 }
1293 }
7b2c381c 1294 Safefree (HvARRAY(hv));
1295 HvARRAY(hv) = (HE **)a;
79072805 1296}
1297
72940dca 1298void
864dbfa3 1299Perl_hv_ksplit(pTHX_ HV *hv, IV newmax)
72940dca 1300{
97aff369 1301 dVAR;
cbec9347 1302 register XPVHV* xhv = (XPVHV*)SvANY(hv);
a3b680e6 1303 const I32 oldsize = (I32) xhv->xhv_max+1; /* HvMAX(hv)+1 (sick) */
72940dca 1304 register I32 newsize;
1305 register I32 i;
72311751 1306 register char *a;
1307 register HE **aep;
72940dca 1308 register HE *entry;
1309 register HE **oentry;
1310
1311 newsize = (I32) newmax; /* possible truncation here */
1312 if (newsize != newmax || newmax <= oldsize)
1313 return;
1314 while ((newsize & (1 + ~newsize)) != newsize) {
1315 newsize &= ~(newsize & (1 + ~newsize)); /* get proper power of 2 */
1316 }
1317 if (newsize < newmax)
1318 newsize *= 2;
1319 if (newsize < newmax)
1320 return; /* overflow detection */
1321
7b2c381c 1322 a = (char *) HvARRAY(hv);
72940dca 1323 if (a) {
3280af22 1324 PL_nomemok = TRUE;
8d6dde3e 1325#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
b79f7545 1326 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
1327 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
8aacddc1 1328 if (!a) {
4a33f861 1329 PL_nomemok = FALSE;
422a93e5 1330 return;
1331 }
b79f7545 1332 if (SvOOK(hv)) {
7a9b70e9 1333 Copy(&a[oldsize * sizeof(HE*)], &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
b79f7545 1334 }
72940dca 1335#else
a02a5408 1336 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize)
b79f7545 1337 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0), char);
8aacddc1 1338 if (!a) {
3280af22 1339 PL_nomemok = FALSE;
422a93e5 1340 return;
1341 }
7b2c381c 1342 Copy(HvARRAY(hv), a, oldsize * sizeof(HE*), char);
b79f7545 1343 if (SvOOK(hv)) {
1344 Copy(HvAUX(hv), &a[newsize * sizeof(HE*)], 1, struct xpvhv_aux);
1345 }
fba3b22e 1346 if (oldsize >= 64) {
7b2c381c 1347 offer_nice_chunk(HvARRAY(hv),
b79f7545 1348 PERL_HV_ARRAY_ALLOC_BYTES(oldsize)
1349 + (SvOOK(hv) ? sizeof(struct xpvhv_aux) : 0));
72940dca 1350 }
1351 else
7b2c381c 1352 Safefree(HvARRAY(hv));
72940dca 1353#endif
3280af22 1354 PL_nomemok = FALSE;
72311751 1355 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
72940dca 1356 }
1357 else {
a02a5408 1358 Newxz(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
72940dca 1359 }
cbec9347 1360 xhv->xhv_max = --newsize; /* HvMAX(hv) = --newsize */
7b2c381c 1361 HvARRAY(hv) = (HE **) a;
cbec9347 1362 if (!xhv->xhv_fill /* !HvFILL(hv) */) /* skip rest if no entries */
72940dca 1363 return;
1364
72311751 1365 aep = (HE**)a;
1366 for (i=0; i<oldsize; i++,aep++) {
1367 if (!*aep) /* non-existent */
72940dca 1368 continue;
72311751 1369 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
6136c704 1370 register I32 j = (HeHASH(entry) & newsize);
1371
1372 if (j != i) {
72940dca 1373 j -= i;
1374 *oentry = HeNEXT(entry);
72311751 1375 if (!(HeNEXT(entry) = aep[j]))
cbec9347 1376 xhv->xhv_fill++; /* HvFILL(hv)++ */
72311751 1377 aep[j] = entry;
72940dca 1378 continue;
1379 }
1380 else
1381 oentry = &HeNEXT(entry);
1382 }
72311751 1383 if (!*aep) /* everything moved */
cbec9347 1384 xhv->xhv_fill--; /* HvFILL(hv)-- */
72940dca 1385 }
1386}
1387
954c1994 1388/*
1389=for apidoc newHV
1390
1391Creates a new HV. The reference count is set to 1.
1392
1393=cut
1394*/
1395
79072805 1396HV *
864dbfa3 1397Perl_newHV(pTHX)
79072805 1398{
cbec9347 1399 register XPVHV* xhv;
561b68a9 1400 HV * const hv = (HV*)newSV(0);
79072805 1401
a0d0e21e 1402 sv_upgrade((SV *)hv, SVt_PVHV);
cbec9347 1403 xhv = (XPVHV*)SvANY(hv);
79072805 1404 SvPOK_off(hv);
1405 SvNOK_off(hv);
1c846c1f 1406#ifndef NODEFAULT_SHAREKEYS
fde52b5c 1407 HvSHAREKEYS_on(hv); /* key-sharing on by default */
1c846c1f 1408#endif
4b5190b5 1409
cbec9347 1410 xhv->xhv_max = 7; /* HvMAX(hv) = 7 (start with 8 buckets) */
1411 xhv->xhv_fill = 0; /* HvFILL(hv) = 0 */
79072805 1412 return hv;
1413}
1414
b3ac6de7 1415HV *
864dbfa3 1416Perl_newHVhv(pTHX_ HV *ohv)
b3ac6de7 1417{
9d4ba2ae 1418 HV * const hv = newHV();
4beac62f 1419 STRLEN hv_max, hv_fill;
4beac62f 1420
1421 if (!ohv || (hv_fill = HvFILL(ohv)) == 0)
1422 return hv;
4beac62f 1423 hv_max = HvMAX(ohv);
b3ac6de7 1424
b56ba0bf 1425 if (!SvMAGICAL((SV *)ohv)) {
1426 /* It's an ordinary hash, so copy it fast. AMS 20010804 */
eb160463 1427 STRLEN i;
a3b680e6 1428 const bool shared = !!HvSHAREKEYS(ohv);
aec46f14 1429 HE **ents, ** const oents = (HE **)HvARRAY(ohv);
ff875642 1430 char *a;
a02a5408 1431 Newx(a, PERL_HV_ARRAY_ALLOC_BYTES(hv_max+1), char);
ff875642 1432 ents = (HE**)a;
b56ba0bf 1433
1434 /* In each bucket... */
1435 for (i = 0; i <= hv_max; i++) {
6136c704 1436 HE *prev = NULL;
aec46f14 1437 HE *oent = oents[i];
b56ba0bf 1438
1439 if (!oent) {
1440 ents[i] = NULL;
1441 continue;
1442 }
1443
1444 /* Copy the linked list of entries. */
aec46f14 1445 for (; oent; oent = HeNEXT(oent)) {
a3b680e6 1446 const U32 hash = HeHASH(oent);
1447 const char * const key = HeKEY(oent);
1448 const STRLEN len = HeKLEN(oent);
1449 const int flags = HeKFLAGS(oent);
6136c704 1450 HE * const ent = new_HE();
b56ba0bf 1451
45dea987 1452 HeVAL(ent) = newSVsv(HeVAL(oent));
19692e8d 1453 HeKEY_hek(ent)
6e838c70 1454 = shared ? share_hek_flags(key, len, hash, flags)
19692e8d 1455 : save_hek_flags(key, len, hash, flags);
b56ba0bf 1456 if (prev)
1457 HeNEXT(prev) = ent;
1458 else
1459 ents[i] = ent;
1460 prev = ent;
1461 HeNEXT(ent) = NULL;
1462 }
1463 }
1464
1465 HvMAX(hv) = hv_max;
1466 HvFILL(hv) = hv_fill;
8aacddc1 1467 HvTOTALKEYS(hv) = HvTOTALKEYS(ohv);
b56ba0bf 1468 HvARRAY(hv) = ents;
aec46f14 1469 } /* not magical */
b56ba0bf 1470 else {
1471 /* Iterate over ohv, copying keys and values one at a time. */
b3ac6de7 1472 HE *entry;
bfcb3514 1473 const I32 riter = HvRITER_get(ohv);
1474 HE * const eiter = HvEITER_get(ohv);
b56ba0bf 1475
1476 /* Can we use fewer buckets? (hv_max is always 2^n-1) */
1477 while (hv_max && hv_max + 1 >= hv_fill * 2)
1478 hv_max = hv_max / 2;
1479 HvMAX(hv) = hv_max;
1480
4a76a316 1481 hv_iterinit(ohv);
e16e2ff8 1482 while ((entry = hv_iternext_flags(ohv, 0))) {
19692e8d 1483 hv_store_flags(hv, HeKEY(entry), HeKLEN(entry),
1484 newSVsv(HeVAL(entry)), HeHASH(entry),
1485 HeKFLAGS(entry));
b3ac6de7 1486 }
bfcb3514 1487 HvRITER_set(ohv, riter);
1488 HvEITER_set(ohv, eiter);
b3ac6de7 1489 }
1c846c1f 1490
b3ac6de7 1491 return hv;
1492}
1493
79072805 1494void
864dbfa3 1495Perl_hv_free_ent(pTHX_ HV *hv, register HE *entry)
79072805 1496{
97aff369 1497 dVAR;
16bdeea2 1498 SV *val;
1499
68dc0745 1500 if (!entry)
79072805 1501 return;
16bdeea2 1502 val = HeVAL(entry);
bfcb3514 1503 if (val && isGV(val) && GvCVu(val) && HvNAME_get(hv))
3280af22 1504 PL_sub_generation++; /* may be deletion of method from stash */
16bdeea2 1505 SvREFCNT_dec(val);
68dc0745 1506 if (HeKLEN(entry) == HEf_SVKEY) {
1507 SvREFCNT_dec(HeKEY_sv(entry));
8aacddc1 1508 Safefree(HeKEY_hek(entry));
44a8e56a 1509 }
1510 else if (HvSHAREKEYS(hv))
68dc0745 1511 unshare_hek(HeKEY_hek(entry));
fde52b5c 1512 else
68dc0745 1513 Safefree(HeKEY_hek(entry));
d33b2eba 1514 del_HE(entry);
79072805 1515}
1516
1517void
864dbfa3 1518Perl_hv_delayfree_ent(pTHX_ HV *hv, register HE *entry)
79072805 1519{
97aff369 1520 dVAR;
68dc0745 1521 if (!entry)
79072805 1522 return;
bc4947fc 1523 /* SvREFCNT_inc to counter the SvREFCNT_dec in hv_free_ent */
1524 sv_2mortal(SvREFCNT_inc(HeVAL(entry))); /* free between statements */
68dc0745 1525 if (HeKLEN(entry) == HEf_SVKEY) {
bc4947fc 1526 sv_2mortal(SvREFCNT_inc(HeKEY_sv(entry)));
44a8e56a 1527 }
bc4947fc 1528 hv_free_ent(hv, entry);
79072805 1529}
1530
954c1994 1531/*
1532=for apidoc hv_clear
1533
1534Clears a hash, making it empty.
1535
1536=cut
1537*/
1538
79072805 1539void
864dbfa3 1540Perl_hv_clear(pTHX_ HV *hv)
79072805 1541{
27da23d5 1542 dVAR;
cbec9347 1543 register XPVHV* xhv;
79072805 1544 if (!hv)
1545 return;
49293501 1546
ecae49c0 1547 DEBUG_A(Perl_hv_assert(aTHX_ hv));
1548
34c3c4e3 1549 xhv = (XPVHV*)SvANY(hv);
1550
7b2c381c 1551 if (SvREADONLY(hv) && HvARRAY(hv) != NULL) {
34c3c4e3 1552 /* restricted hash: convert all keys to placeholders */
b464bac0 1553 STRLEN i;
1554 for (i = 0; i <= xhv->xhv_max; i++) {
7b2c381c 1555 HE *entry = (HvARRAY(hv))[i];
3a676441 1556 for (; entry; entry = HeNEXT(entry)) {
1557 /* not already placeholder */
7996736c 1558 if (HeVAL(entry) != &PL_sv_placeholder) {
3a676441 1559 if (HeVAL(entry) && SvREADONLY(HeVAL(entry))) {
6136c704 1560 SV* const keysv = hv_iterkeysv(entry);
3a676441 1561 Perl_croak(aTHX_
1562 "Attempt to delete readonly key '%"SVf"' from a restricted hash",
1563 keysv);
1564 }
1565 SvREFCNT_dec(HeVAL(entry));
7996736c 1566 HeVAL(entry) = &PL_sv_placeholder;
ca732855 1567 HvPLACEHOLDERS(hv)++;
3a676441 1568 }
34c3c4e3 1569 }
1570 }
df8c6964 1571 goto reset;
49293501 1572 }
1573
463ee0b2 1574 hfreeentries(hv);
ca732855 1575 HvPLACEHOLDERS_set(hv, 0);
7b2c381c 1576 if (HvARRAY(hv))
1577 (void)memzero(HvARRAY(hv),
cbec9347 1578 (xhv->xhv_max+1 /* HvMAX(hv)+1 */) * sizeof(HE*));
a0d0e21e 1579
1580 if (SvRMAGICAL(hv))
1c846c1f 1581 mg_clear((SV*)hv);
574c8022 1582
19692e8d 1583 HvHASKFLAGS_off(hv);
bb443f97 1584 HvREHASH_off(hv);
df8c6964 1585 reset:
b79f7545 1586 if (SvOOK(hv)) {
bfcb3514 1587 HvEITER_set(hv, NULL);
1588 }
79072805 1589}
1590
3540d4ce 1591/*
1592=for apidoc hv_clear_placeholders
1593
1594Clears any placeholders from a hash. If a restricted hash has any of its keys
1595marked as readonly and the key is subsequently deleted, the key is not actually
1596deleted but is marked by assigning it a value of &PL_sv_placeholder. This tags
1597it so it will be ignored by future operations such as iterating over the hash,
4cdaeff7 1598but will still allow the hash to have a value reassigned to the key at some
3540d4ce 1599future point. This function clears any such placeholder keys from the hash.
1600See Hash::Util::lock_keys() for an example of its use.
1601
1602=cut
1603*/
1604
1605void
1606Perl_hv_clear_placeholders(pTHX_ HV *hv)
1607{
27da23d5 1608 dVAR;
b3ca2e83 1609 const U32 items = (U32)HvPLACEHOLDERS_get(hv);
1610
1611 if (items)
1612 clear_placeholders(hv, items);
1613}
1614
1615static void
1616S_clear_placeholders(pTHX_ HV *hv, U32 items)
1617{
1618 dVAR;
b464bac0 1619 I32 i;
d3677389 1620
1621 if (items == 0)
1622 return;
1623
b464bac0 1624 i = HvMAX(hv);
d3677389 1625 do {
1626 /* Loop down the linked list heads */
6136c704 1627 bool first = TRUE;
d3677389 1628 HE **oentry = &(HvARRAY(hv))[i];
cf6db12b 1629 HE *entry;
d3677389 1630
cf6db12b 1631 while ((entry = *oentry)) {
d3677389 1632 if (HeVAL(entry) == &PL_sv_placeholder) {
1633 *oentry = HeNEXT(entry);
1634 if (first && !*oentry)
1635 HvFILL(hv)--; /* This linked list is now empty. */
2e58978b 1636 if (entry == HvEITER_get(hv))
d3677389 1637 HvLAZYDEL_on(hv);
1638 else
1639 hv_free_ent(hv, entry);
1640
1641 if (--items == 0) {
1642 /* Finished. */
5d88ecd7 1643 HvTOTALKEYS(hv) -= (IV)HvPLACEHOLDERS_get(hv);
d3677389 1644 if (HvKEYS(hv) == 0)
1645 HvHASKFLAGS_off(hv);
5d88ecd7 1646 HvPLACEHOLDERS_set(hv, 0);
d3677389 1647 return;
1648 }
213ce8b3 1649 } else {
1650 oentry = &HeNEXT(entry);
6136c704 1651 first = FALSE;
d3677389 1652 }
1653 }
1654 } while (--i >= 0);
1655 /* You can't get here, hence assertion should always fail. */
1656 assert (items == 0);
1657 assert (0);
3540d4ce 1658}
1659
76e3520e 1660STATIC void
cea2e8a9 1661S_hfreeentries(pTHX_ HV *hv)
79072805 1662{
23976bdd 1663 /* This is the array that we're going to restore */
1664 HE **orig_array;
1665 HEK *name;
1666 int attempts = 100;
3abe233e 1667
a0d0e21e 1668 if (!HvARRAY(hv))
79072805 1669 return;
a0d0e21e 1670
23976bdd 1671 if (SvOOK(hv)) {
1672 /* If the hash is actually a symbol table with a name, look after the
1673 name. */
1674 struct xpvhv_aux *iter = HvAUX(hv);
1675
1676 name = iter->xhv_name;
1677 iter->xhv_name = NULL;
1678 } else {
1679 name = NULL;
1680 }
1681
1682 orig_array = HvARRAY(hv);
1683 /* orig_array remains unchanged throughout the loop. If after freeing all
1684 the entries it turns out that one of the little blighters has triggered
1685 an action that has caused HvARRAY to be re-allocated, then we set
1686 array to the new HvARRAY, and try again. */
1687
1688 while (1) {
1689 /* This is the one we're going to try to empty. First time round
1690 it's the original array. (Hopefully there will only be 1 time
1691 round) */
6136c704 1692 HE ** const array = HvARRAY(hv);
7440661e 1693 I32 i = HvMAX(hv);
23976bdd 1694
1695 /* Because we have taken xhv_name out, the only allocated pointer
1696 in the aux structure that might exist is the backreference array.
1697 */
1698
1699 if (SvOOK(hv)) {
7440661e 1700 HE *entry;
23976bdd 1701 struct xpvhv_aux *iter = HvAUX(hv);
1702 /* If there are weak references to this HV, we need to avoid
1703 freeing them up here. In particular we need to keep the AV
1704 visible as what we're deleting might well have weak references
1705 back to this HV, so the for loop below may well trigger
1706 the removal of backreferences from this array. */
1707
1708 if (iter->xhv_backreferences) {
1709 /* So donate them to regular backref magic to keep them safe.
1710 The sv_magic will increase the reference count of the AV,
1711 so we need to drop it first. */
5b285ea4 1712 SvREFCNT_dec(iter->xhv_backreferences);
23976bdd 1713 if (AvFILLp(iter->xhv_backreferences) == -1) {
1714 /* Turns out that the array is empty. Just free it. */
1715 SvREFCNT_dec(iter->xhv_backreferences);
1b8791d1 1716
23976bdd 1717 } else {
1718 sv_magic((SV*)hv, (SV*)iter->xhv_backreferences,
1719 PERL_MAGIC_backref, NULL, 0);
1720 }
1721 iter->xhv_backreferences = NULL;
5b285ea4 1722 }
86f55936 1723
23976bdd 1724 entry = iter->xhv_eiter; /* HvEITER(hv) */
1725 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1726 HvLAZYDEL_off(hv);
1727 hv_free_ent(hv, entry);
1728 }
1729 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
4608196e 1730 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
b79f7545 1731
23976bdd 1732 /* There are now no allocated pointers in the aux structure. */
2f86008e 1733
23976bdd 1734 SvFLAGS(hv) &= ~SVf_OOK; /* Goodbye, aux structure. */
1735 /* What aux structure? */
a0d0e21e 1736 }
bfcb3514 1737
23976bdd 1738 /* make everyone else think the array is empty, so that the destructors
1739 * called for freed entries can't recusively mess with us */
1740 HvARRAY(hv) = NULL;
1741 HvFILL(hv) = 0;
1742 ((XPVHV*) SvANY(hv))->xhv_keys = 0;
1743
7440661e 1744
1745 do {
1746 /* Loop down the linked list heads */
1747 HE *entry = array[i];
1748
1749 while (entry) {
23976bdd 1750 register HE * const oentry = entry;
1751 entry = HeNEXT(entry);
1752 hv_free_ent(hv, oentry);
1753 }
7440661e 1754 } while (--i >= 0);
b79f7545 1755
23976bdd 1756 /* As there are no allocated pointers in the aux structure, it's now
1757 safe to free the array we just cleaned up, if it's not the one we're
1758 going to put back. */
1759 if (array != orig_array) {
1760 Safefree(array);
1761 }
b79f7545 1762
23976bdd 1763 if (!HvARRAY(hv)) {
1764 /* Good. No-one added anything this time round. */
1765 break;
bfcb3514 1766 }
b79f7545 1767
23976bdd 1768 if (SvOOK(hv)) {
1769 /* Someone attempted to iterate or set the hash name while we had
1770 the array set to 0. We'll catch backferences on the next time
1771 round the while loop. */
1772 assert(HvARRAY(hv));
1b8791d1 1773
23976bdd 1774 if (HvAUX(hv)->xhv_name) {
1775 unshare_hek_or_pvn(HvAUX(hv)->xhv_name, 0, 0, 0);
1776 }
1777 }
1778
1779 if (--attempts == 0) {
1780 Perl_die(aTHX_ "panic: hfreeentries failed to free hash - something is repeatedly re-creating entries");
1781 }
6136c704 1782 }
23976bdd 1783
1784 HvARRAY(hv) = orig_array;
1785
1786 /* If the hash was actually a symbol table, put the name back. */
1787 if (name) {
1788 /* We have restored the original array. If name is non-NULL, then
1789 the original array had an aux structure at the end. So this is
1790 valid: */
1791 SvFLAGS(hv) |= SVf_OOK;
1792 HvAUX(hv)->xhv_name = name;
1b8791d1 1793 }
79072805 1794}
1795
954c1994 1796/*
1797=for apidoc hv_undef
1798
1799Undefines the hash.
1800
1801=cut
1802*/
1803
79072805 1804void
864dbfa3 1805Perl_hv_undef(pTHX_ HV *hv)
79072805 1806{
97aff369 1807 dVAR;
cbec9347 1808 register XPVHV* xhv;
bfcb3514 1809 const char *name;
86f55936 1810
79072805 1811 if (!hv)
1812 return;
ecae49c0 1813 DEBUG_A(Perl_hv_assert(aTHX_ hv));
cbec9347 1814 xhv = (XPVHV*)SvANY(hv);
463ee0b2 1815 hfreeentries(hv);
bfcb3514 1816 if ((name = HvNAME_get(hv))) {
7e8961ec 1817 if(PL_stashcache)
7423f6db 1818 hv_delete(PL_stashcache, name, HvNAMELEN_get(hv), G_DISCARD);
bd61b366 1819 hv_name_set(hv, NULL, 0, 0);
85e6fe83 1820 }
b79f7545 1821 SvFLAGS(hv) &= ~SVf_OOK;
1822 Safefree(HvARRAY(hv));
cbec9347 1823 xhv->xhv_max = 7; /* HvMAX(hv) = 7 (it's a normal hash) */
7b2c381c 1824 HvARRAY(hv) = 0;
ca732855 1825 HvPLACEHOLDERS_set(hv, 0);
a0d0e21e 1826
1827 if (SvRMAGICAL(hv))
1c846c1f 1828 mg_clear((SV*)hv);
79072805 1829}
1830
b464bac0 1831static struct xpvhv_aux*
5f66b61c 1832S_hv_auxinit(HV *hv) {
bfcb3514 1833 struct xpvhv_aux *iter;
b79f7545 1834 char *array;
bfcb3514 1835
b79f7545 1836 if (!HvARRAY(hv)) {
a02a5408 1837 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
b79f7545 1838 + sizeof(struct xpvhv_aux), char);
1839 } else {
1840 array = (char *) HvARRAY(hv);
1841 Renew(array, PERL_HV_ARRAY_ALLOC_BYTES(HvMAX(hv) + 1)
1842 + sizeof(struct xpvhv_aux), char);
1843 }
1844 HvARRAY(hv) = (HE**) array;
1845 /* SvOOK_on(hv) attacks the IV flags. */
1846 SvFLAGS(hv) |= SVf_OOK;
1847 iter = HvAUX(hv);
bfcb3514 1848
1849 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
4608196e 1850 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
bfcb3514 1851 iter->xhv_name = 0;
86f55936 1852 iter->xhv_backreferences = 0;
bfcb3514 1853 return iter;
1854}
1855
954c1994 1856/*
1857=for apidoc hv_iterinit
1858
1859Prepares a starting point to traverse a hash table. Returns the number of
1860keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is
1c846c1f 1861currently only meaningful for hashes without tie magic.
954c1994 1862
1863NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1864hash buckets that happen to be in use. If you still need that esoteric
1865value, you can get it through the macro C<HvFILL(tb)>.
1866
e16e2ff8 1867
954c1994 1868=cut
1869*/
1870
79072805 1871I32
864dbfa3 1872Perl_hv_iterinit(pTHX_ HV *hv)
79072805 1873{
aa689395 1874 if (!hv)
cea2e8a9 1875 Perl_croak(aTHX_ "Bad hash");
bfcb3514 1876
b79f7545 1877 if (SvOOK(hv)) {
6136c704 1878 struct xpvhv_aux * const iter = HvAUX(hv);
0bd48802 1879 HE * const entry = iter->xhv_eiter; /* HvEITER(hv) */
bfcb3514 1880 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1881 HvLAZYDEL_off(hv);
1882 hv_free_ent(hv, entry);
1883 }
1884 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
4608196e 1885 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
bfcb3514 1886 } else {
6136c704 1887 hv_auxinit(hv);
72940dca 1888 }
bfcb3514 1889
cbec9347 1890 /* used to be xhv->xhv_fill before 5.004_65 */
5d88ecd7 1891 return HvTOTALKEYS(hv);
79072805 1892}
bfcb3514 1893
1894I32 *
1895Perl_hv_riter_p(pTHX_ HV *hv) {
1896 struct xpvhv_aux *iter;
1897
1898 if (!hv)
1899 Perl_croak(aTHX_ "Bad hash");
1900
6136c704 1901 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
bfcb3514 1902 return &(iter->xhv_riter);
1903}
1904
1905HE **
1906Perl_hv_eiter_p(pTHX_ HV *hv) {
1907 struct xpvhv_aux *iter;
1908
1909 if (!hv)
1910 Perl_croak(aTHX_ "Bad hash");
1911
6136c704 1912 iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
bfcb3514 1913 return &(iter->xhv_eiter);
1914}
1915
1916void
1917Perl_hv_riter_set(pTHX_ HV *hv, I32 riter) {
1918 struct xpvhv_aux *iter;
1919
1920 if (!hv)
1921 Perl_croak(aTHX_ "Bad hash");
1922
b79f7545 1923 if (SvOOK(hv)) {
1924 iter = HvAUX(hv);
1925 } else {
bfcb3514 1926 if (riter == -1)
1927 return;
1928
6136c704 1929 iter = hv_auxinit(hv);
bfcb3514 1930 }
1931 iter->xhv_riter = riter;
1932}
1933
1934void
1935Perl_hv_eiter_set(pTHX_ HV *hv, HE *eiter) {
1936 struct xpvhv_aux *iter;
1937
1938 if (!hv)
1939 Perl_croak(aTHX_ "Bad hash");
1940
b79f7545 1941 if (SvOOK(hv)) {
1942 iter = HvAUX(hv);
1943 } else {
bfcb3514 1944 /* 0 is the default so don't go malloc()ing a new structure just to
1945 hold 0. */
1946 if (!eiter)
1947 return;
1948
6136c704 1949 iter = hv_auxinit(hv);
bfcb3514 1950 }
1951 iter->xhv_eiter = eiter;
1952}
1953
bfcb3514 1954void
4164be69 1955Perl_hv_name_set(pTHX_ HV *hv, const char *name, U32 len, U32 flags)
bfcb3514 1956{
97aff369 1957 dVAR;
b79f7545 1958 struct xpvhv_aux *iter;
7423f6db 1959 U32 hash;
46c461b5 1960
1961 PERL_UNUSED_ARG(flags);
bfcb3514 1962
4164be69 1963 if (len > I32_MAX)
1964 Perl_croak(aTHX_ "panic: hv name too long (%"UVuf")", (UV) len);
1965
b79f7545 1966 if (SvOOK(hv)) {
1967 iter = HvAUX(hv);
7423f6db 1968 if (iter->xhv_name) {
1969 unshare_hek_or_pvn(iter->xhv_name, 0, 0, 0);
1970 }
16580ff5 1971 } else {
bfcb3514 1972 if (name == 0)
1973 return;
1974
6136c704 1975 iter = hv_auxinit(hv);
bfcb3514 1976 }
7423f6db 1977 PERL_HASH(hash, name, len);
1978 iter->xhv_name = name ? share_hek(name, len, hash) : 0;
bfcb3514 1979}
1980
86f55936 1981AV **
1982Perl_hv_backreferences_p(pTHX_ HV *hv) {
6136c704 1983 struct xpvhv_aux * const iter = SvOOK(hv) ? HvAUX(hv) : hv_auxinit(hv);
96a5add6 1984 PERL_UNUSED_CONTEXT;
86f55936 1985 return &(iter->xhv_backreferences);
1986}
1987
1988void
1989Perl_hv_kill_backrefs(pTHX_ HV *hv) {
1990 AV *av;
1991
1992 if (!SvOOK(hv))
1993 return;
1994
1995 av = HvAUX(hv)->xhv_backreferences;
1996
1997 if (av) {
1998 HvAUX(hv)->xhv_backreferences = 0;
1999 Perl_sv_kill_backrefs(aTHX_ (SV*) hv, av);
2000 }
2001}
2002
954c1994 2003/*
7a7b9979 2004hv_iternext is implemented as a macro in hv.h
2005
954c1994 2006=for apidoc hv_iternext
2007
2008Returns entries from a hash iterator. See C<hv_iterinit>.
2009
fe7bca90 2010You may call C<hv_delete> or C<hv_delete_ent> on the hash entry that the
2011iterator currently points to, without losing your place or invalidating your
2012iterator. Note that in this case the current entry is deleted from the hash
2013with your iterator holding the last reference to it. Your iterator is flagged
2014to free the entry on the next call to C<hv_iternext>, so you must not discard
2015your iterator immediately else the entry will leak - call C<hv_iternext> to
2016trigger the resource deallocation.
2017
fe7bca90 2018=for apidoc hv_iternext_flags
2019
2020Returns entries from a hash iterator. See C<hv_iterinit> and C<hv_iternext>.
2021The C<flags> value will normally be zero; if HV_ITERNEXT_WANTPLACEHOLDERS is
2022set the placeholders keys (for restricted hashes) will be returned in addition
2023to normal keys. By default placeholders are automatically skipped over.
7996736c 2024Currently a placeholder is implemented with a value that is
2025C<&Perl_sv_placeholder>. Note that the implementation of placeholders and
fe7bca90 2026restricted hashes may change, and the implementation currently is
2027insufficiently abstracted for any change to be tidy.
e16e2ff8 2028
fe7bca90 2029=cut
e16e2ff8 2030*/
2031
2032HE *
2033Perl_hv_iternext_flags(pTHX_ HV *hv, I32 flags)
2034{
27da23d5 2035 dVAR;
cbec9347 2036 register XPVHV* xhv;
79072805 2037 register HE *entry;
a0d0e21e 2038 HE *oldentry;
463ee0b2 2039 MAGIC* mg;
bfcb3514 2040 struct xpvhv_aux *iter;
79072805 2041
2042 if (!hv)
cea2e8a9 2043 Perl_croak(aTHX_ "Bad hash");
cbec9347 2044 xhv = (XPVHV*)SvANY(hv);
bfcb3514 2045
b79f7545 2046 if (!SvOOK(hv)) {
bfcb3514 2047 /* Too many things (well, pp_each at least) merrily assume that you can
2048 call iv_iternext without calling hv_iterinit, so we'll have to deal
2049 with it. */
2050 hv_iterinit(hv);
bfcb3514 2051 }
b79f7545 2052 iter = HvAUX(hv);
bfcb3514 2053
2054 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
463ee0b2 2055
14befaf4 2056 if ((mg = SvTIED_mg((SV*)hv, PERL_MAGIC_tied))) {
c4420975 2057 SV * const key = sv_newmortal();
cd1469e6 2058 if (entry) {
fde52b5c 2059 sv_setsv(key, HeSVKEY_force(entry));
cd1469e6 2060 SvREFCNT_dec(HeSVKEY(entry)); /* get rid of previous key */
2061 }
a0d0e21e 2062 else {
ff68c719 2063 char *k;
bbce6d69 2064 HEK *hek;
ff68c719 2065
cbec9347 2066 /* one HE per MAGICAL hash */
bfcb3514 2067 iter->xhv_eiter = entry = new_HE(); /* HvEITER(hv) = new_HE() */
4633a7c4 2068 Zero(entry, 1, HE);
a02a5408 2069 Newxz(k, HEK_BASESIZE + sizeof(SV*), char);
ff68c719 2070 hek = (HEK*)k;
2071 HeKEY_hek(entry) = hek;
fde52b5c 2072 HeKLEN(entry) = HEf_SVKEY;
a0d0e21e 2073 }
2074 magic_nextpack((SV*) hv,mg,key);
8aacddc1 2075 if (SvOK(key)) {
cd1469e6 2076 /* force key to stay around until next time */
b37c2d43 2077 HeSVKEY_set(entry, SvREFCNT_inc_simple_NN(key));
bbce6d69 2078 return entry; /* beware, hent_val is not set */
8aacddc1 2079 }
fde52b5c 2080 if (HeVAL(entry))
2081 SvREFCNT_dec(HeVAL(entry));
ff68c719 2082 Safefree(HeKEY_hek(entry));
d33b2eba 2083 del_HE(entry);
4608196e 2084 iter->xhv_eiter = NULL; /* HvEITER(hv) = NULL */
2085 return NULL;
79072805 2086 }
f675dbe5 2087#ifdef DYNAMIC_ENV_FETCH /* set up %ENV for iteration */
03026e68 2088 if (!entry && SvRMAGICAL((SV*)hv) && mg_find((SV*)hv, PERL_MAGIC_env)) {
f675dbe5 2089 prime_env_iter();
03026e68 2090#ifdef VMS
2091 /* The prime_env_iter() on VMS just loaded up new hash values
2092 * so the iteration count needs to be reset back to the beginning
2093 */
2094 hv_iterinit(hv);
2095 iter = HvAUX(hv);
2096 oldentry = entry = iter->xhv_eiter; /* HvEITER(hv) */
2097#endif
2098 }
f675dbe5 2099#endif
463ee0b2 2100
b79f7545 2101 /* hv_iterint now ensures this. */
2102 assert (HvARRAY(hv));
2103
015a5f36 2104 /* At start of hash, entry is NULL. */
fde52b5c 2105 if (entry)
8aacddc1 2106 {
fde52b5c 2107 entry = HeNEXT(entry);
e16e2ff8 2108 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
2109 /*
2110 * Skip past any placeholders -- don't want to include them in
2111 * any iteration.
2112 */
7996736c 2113 while (entry && HeVAL(entry) == &PL_sv_placeholder) {
e16e2ff8 2114 entry = HeNEXT(entry);
2115 }
8aacddc1 2116 }
2117 }
fde52b5c 2118 while (!entry) {
015a5f36 2119 /* OK. Come to the end of the current list. Grab the next one. */
2120
bfcb3514 2121 iter->xhv_riter++; /* HvRITER(hv)++ */
2122 if (iter->xhv_riter > (I32)xhv->xhv_max /* HvRITER(hv) > HvMAX(hv) */) {
015a5f36 2123 /* There is no next one. End of the hash. */
bfcb3514 2124 iter->xhv_riter = -1; /* HvRITER(hv) = -1 */
fde52b5c 2125 break;
79072805 2126 }
7b2c381c 2127 entry = (HvARRAY(hv))[iter->xhv_riter];
8aacddc1 2128
e16e2ff8 2129 if (!(flags & HV_ITERNEXT_WANTPLACEHOLDERS)) {
015a5f36 2130 /* If we have an entry, but it's a placeholder, don't count it.
2131 Try the next. */
7996736c 2132 while (entry && HeVAL(entry) == &PL_sv_placeholder)
015a5f36 2133 entry = HeNEXT(entry);
2134 }
2135 /* Will loop again if this linked list starts NULL
2136 (for HV_ITERNEXT_WANTPLACEHOLDERS)
2137 or if we run through it and find only placeholders. */
fde52b5c 2138 }
79072805 2139
72940dca 2140 if (oldentry && HvLAZYDEL(hv)) { /* was deleted earlier? */
2141 HvLAZYDEL_off(hv);
68dc0745 2142 hv_free_ent(hv, oldentry);
72940dca 2143 }
a0d0e21e 2144
fdcd69b6 2145 /*if (HvREHASH(hv) && entry && !HeKREHASH(entry))
2146 PerlIO_printf(PerlIO_stderr(), "Awooga %p %p\n", hv, entry);*/
2147
bfcb3514 2148 iter->xhv_eiter = entry; /* HvEITER(hv) = entry */
79072805 2149 return entry;
2150}
2151
954c1994 2152/*
2153=for apidoc hv_iterkey
2154
2155Returns the key from the current position of the hash iterator. See
2156C<hv_iterinit>.
2157
2158=cut
2159*/
2160
79072805 2161char *
864dbfa3 2162Perl_hv_iterkey(pTHX_ register HE *entry, I32 *retlen)
79072805 2163{
fde52b5c 2164 if (HeKLEN(entry) == HEf_SVKEY) {
fb73857a 2165 STRLEN len;
0bd48802 2166 char * const p = SvPV(HeKEY_sv(entry), len);
fb73857a 2167 *retlen = len;
2168 return p;
fde52b5c 2169 }
2170 else {
2171 *retlen = HeKLEN(entry);
2172 return HeKEY(entry);
2173 }
2174}
2175
2176/* unlike hv_iterval(), this always returns a mortal copy of the key */
954c1994 2177/*
2178=for apidoc hv_iterkeysv
2179
2180Returns the key as an C<SV*> from the current position of the hash
2181iterator. The return value will always be a mortal copy of the key. Also
2182see C<hv_iterinit>.
2183
2184=cut
2185*/
2186
fde52b5c 2187SV *
864dbfa3 2188Perl_hv_iterkeysv(pTHX_ register HE *entry)
fde52b5c 2189{
c1b02ed8 2190 return sv_2mortal(newSVhek(HeKEY_hek(entry)));
79072805 2191}
2192
954c1994 2193/*
2194=for apidoc hv_iterval
2195
2196Returns the value from the current position of the hash iterator. See
2197C<hv_iterkey>.
2198
2199=cut
2200*/
2201
79072805 2202SV *
864dbfa3 2203Perl_hv_iterval(pTHX_ HV *hv, register HE *entry)
79072805 2204{
8990e307 2205 if (SvRMAGICAL(hv)) {
14befaf4 2206 if (mg_find((SV*)hv, PERL_MAGIC_tied)) {
c4420975 2207 SV* const sv = sv_newmortal();
bbce6d69 2208 if (HeKLEN(entry) == HEf_SVKEY)
2209 mg_copy((SV*)hv, sv, (char*)HeKEY_sv(entry), HEf_SVKEY);
a3b680e6 2210 else
2211 mg_copy((SV*)hv, sv, HeKEY(entry), HeKLEN(entry));
463ee0b2 2212 return sv;
2213 }
79072805 2214 }
fde52b5c 2215 return HeVAL(entry);
79072805 2216}
2217
954c1994 2218/*
2219=for apidoc hv_iternextsv
2220
2221Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
2222operation.
2223
2224=cut
2225*/
2226
a0d0e21e 2227SV *
864dbfa3 2228Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
a0d0e21e 2229{
0bd48802 2230 HE * const he = hv_iternext_flags(hv, 0);
2231
2232 if (!he)
a0d0e21e 2233 return NULL;
2234 *key = hv_iterkey(he, retlen);
2235 return hv_iterval(hv, he);
2236}
2237
954c1994 2238/*
bc5cdc23 2239
2240Now a macro in hv.h
2241
954c1994 2242=for apidoc hv_magic
2243
2244Adds magic to a hash. See C<sv_magic>.
2245
2246=cut
2247*/
2248
bbce6d69 2249/* possibly free a shared string if no one has access to it
fde52b5c 2250 * len and hash must both be valid for str.
2251 */
bbce6d69 2252void
864dbfa3 2253Perl_unsharepvn(pTHX_ const char *str, I32 len, U32 hash)
fde52b5c 2254{
19692e8d 2255 unshare_hek_or_pvn (NULL, str, len, hash);
2256}
2257
2258
2259void
2260Perl_unshare_hek(pTHX_ HEK *hek)
2261{
2262 unshare_hek_or_pvn(hek, NULL, 0, 0);
2263}
2264
2265/* possibly free a shared string if no one has access to it
2266 hek if non-NULL takes priority over the other 3, else str, len and hash
2267 are used. If so, len and hash must both be valid for str.
2268 */
df132699 2269STATIC void
97ddebaf 2270S_unshare_hek_or_pvn(pTHX_ const HEK *hek, const char *str, I32 len, U32 hash)
19692e8d 2271{
97aff369 2272 dVAR;
cbec9347 2273 register XPVHV* xhv;
20454177 2274 HE *entry;
fde52b5c 2275 register HE **oentry;
45d1cc86 2276 HE **first;
a3b680e6 2277 bool found = 0;
c3654f1a 2278 bool is_utf8 = FALSE;
19692e8d 2279 int k_flags = 0;
aec46f14 2280 const char * const save = str;
cbbf8932 2281 struct shared_he *he = NULL;
c3654f1a 2282
19692e8d 2283 if (hek) {
cbae3960 2284 /* Find the shared he which is just before us in memory. */
2285 he = (struct shared_he *)(((char *)hek)
2286 - STRUCT_OFFSET(struct shared_he,
2287 shared_he_hek));
2288
2289 /* Assert that the caller passed us a genuine (or at least consistent)
2290 shared hek */
2291 assert (he->shared_he_he.hent_hek == hek);
29404ae0 2292
2293 LOCK_STRTAB_MUTEX;
de616631 2294 if (he->shared_he_he.he_valu.hent_refcount - 1) {
2295 --he->shared_he_he.he_valu.hent_refcount;
29404ae0 2296 UNLOCK_STRTAB_MUTEX;
2297 return;
2298 }
2299 UNLOCK_STRTAB_MUTEX;
2300
19692e8d 2301 hash = HEK_HASH(hek);
2302 } else if (len < 0) {
2303 STRLEN tmplen = -len;
2304 is_utf8 = TRUE;
2305 /* See the note in hv_fetch(). --jhi */
2306 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2307 len = tmplen;
2308 if (is_utf8)
2309 k_flags = HVhek_UTF8;
2310 if (str != save)
2311 k_flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
c3654f1a 2312 }
1c846c1f 2313
de616631 2314 /* what follows was the moral equivalent of:
6b88bc9c 2315 if ((Svp = hv_fetch(PL_strtab, tmpsv, FALSE, hash))) {
a0714e2c 2316 if (--*Svp == NULL)
6b88bc9c 2317 hv_delete(PL_strtab, str, len, G_DISCARD, hash);
bbce6d69 2318 } */
cbec9347 2319 xhv = (XPVHV*)SvANY(PL_strtab);
fde52b5c 2320 /* assert(xhv_array != 0) */
5f08fbcd 2321 LOCK_STRTAB_MUTEX;
45d1cc86 2322 first = oentry = &(HvARRAY(PL_strtab))[hash & (I32) HvMAX(PL_strtab)];
6c1b96a1 2323 if (he) {
2324 const HE *const he_he = &(he->shared_he_he);
45d1cc86 2325 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
6c1b96a1 2326 if (entry != he_he)
19692e8d 2327 continue;
2328 found = 1;
2329 break;
2330 }
2331 } else {
35a4481c 2332 const int flags_masked = k_flags & HVhek_MASK;
45d1cc86 2333 for (entry = *oentry; entry; oentry = &HeNEXT(entry), entry = *oentry) {
19692e8d 2334 if (HeHASH(entry) != hash) /* strings can't be equal */
2335 continue;
2336 if (HeKLEN(entry) != len)
2337 continue;
2338 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
2339 continue;
2340 if (HeKFLAGS(entry) != flags_masked)
2341 continue;
2342 found = 1;
2343 break;
2344 }
2345 }
2346
2347 if (found) {
de616631 2348 if (--he->shared_he_he.he_valu.hent_refcount == 0) {
19692e8d 2349 *oentry = HeNEXT(entry);
45d1cc86 2350 if (!*first) {
2351 /* There are now no entries in our slot. */
19692e8d 2352 xhv->xhv_fill--; /* HvFILL(hv)-- */
45d1cc86 2353 }
cbae3960 2354 Safefree(entry);
4c7185a0 2355 xhv->xhv_keys--; /* HvTOTALKEYS(hv)-- */
19692e8d 2356 }
fde52b5c 2357 }
19692e8d 2358
333f433b 2359 UNLOCK_STRTAB_MUTEX;
411caa50 2360 if (!found && ckWARN_d(WARN_INTERNAL))
19692e8d 2361 Perl_warner(aTHX_ packWARN(WARN_INTERNAL),
472d47bc 2362 "Attempt to free non-existent shared string '%s'%s"
2363 pTHX__FORMAT,
19692e8d 2364 hek ? HEK_KEY(hek) : str,
472d47bc 2365 ((k_flags & HVhek_UTF8) ? " (utf8)" : "") pTHX__VALUE);
19692e8d 2366 if (k_flags & HVhek_FREEKEY)
2367 Safefree(str);
fde52b5c 2368}
2369
bbce6d69 2370/* get a (constant) string ptr from the global string table
2371 * string will get added if it is not already there.
fde52b5c 2372 * len and hash must both be valid for str.
2373 */
bbce6d69 2374HEK *
864dbfa3 2375Perl_share_hek(pTHX_ const char *str, I32 len, register U32 hash)
fde52b5c 2376{
da58a35d 2377 bool is_utf8 = FALSE;
19692e8d 2378 int flags = 0;
aec46f14 2379 const char * const save = str;
da58a35d 2380
2381 if (len < 0) {
77caf834 2382 STRLEN tmplen = -len;
da58a35d 2383 is_utf8 = TRUE;
77caf834 2384 /* See the note in hv_fetch(). --jhi */
2385 str = (char*)bytes_from_utf8((U8*)str, &tmplen, &is_utf8);
2386 len = tmplen;
19692e8d 2387 /* If we were able to downgrade here, then than means that we were passed
2388 in a key which only had chars 0-255, but was utf8 encoded. */
2389 if (is_utf8)
2390 flags = HVhek_UTF8;
2391 /* If we found we were able to downgrade the string to bytes, then
2392 we should flag that it needs upgrading on keys or each. Also flag
2393 that we need share_hek_flags to free the string. */
2394 if (str != save)
2395 flags |= HVhek_WASUTF8 | HVhek_FREEKEY;
2396 }
2397
6e838c70 2398 return share_hek_flags (str, len, hash, flags);
19692e8d 2399}
2400
6e838c70 2401STATIC HEK *
19692e8d 2402S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags)
2403{
97aff369 2404 dVAR;
19692e8d 2405 register HE *entry;
35a4481c 2406 const int flags_masked = flags & HVhek_MASK;
263cb4a6 2407 const U32 hindex = hash & (I32) HvMAX(PL_strtab);
bbce6d69 2408
fde52b5c 2409 /* what follows is the moral equivalent of:
1c846c1f 2410
6b88bc9c 2411 if (!(Svp = hv_fetch(PL_strtab, str, len, FALSE)))
a0714e2c 2412 hv_store(PL_strtab, str, len, NULL, hash);
fdcd69b6 2413
2414 Can't rehash the shared string table, so not sure if it's worth
2415 counting the number of entries in the linked list
bbce6d69 2416 */
1b6737cc 2417 register XPVHV * const xhv = (XPVHV*)SvANY(PL_strtab);
fde52b5c 2418 /* assert(xhv_array != 0) */
5f08fbcd 2419 LOCK_STRTAB_MUTEX;
263cb4a6 2420 entry = (HvARRAY(PL_strtab))[hindex];
2421 for (;entry; entry = HeNEXT(entry)) {
fde52b5c 2422 if (HeHASH(entry) != hash) /* strings can't be equal */
2423 continue;
2424 if (HeKLEN(entry) != len)
2425 continue;
1c846c1f 2426 if (HeKEY(entry) != str && memNE(HeKEY(entry),str,len)) /* is this it? */
fde52b5c 2427 continue;
19692e8d 2428 if (HeKFLAGS(entry) != flags_masked)
c3654f1a 2429 continue;
fde52b5c 2430 break;
2431 }
263cb4a6 2432
2433 if (!entry) {
45d1cc86 2434 /* What used to be head of the list.
2435 If this is NULL, then we're the first entry for this slot, which
2436 means we need to increate fill. */
cbae3960 2437 struct shared_he *new_entry;
2438 HEK *hek;
2439 char *k;
263cb4a6 2440 HE **const head = &HvARRAY(PL_strtab)[hindex];
2441 HE *const next = *head;
cbae3960 2442
2443 /* We don't actually store a HE from the arena and a regular HEK.
2444 Instead we allocate one chunk of memory big enough for both,
2445 and put the HEK straight after the HE. This way we can find the
2446 HEK directly from the HE.
2447 */
2448
a02a5408 2449 Newx(k, STRUCT_OFFSET(struct shared_he,
cbae3960 2450 shared_he_hek.hek_key[0]) + len + 2, char);
2451 new_entry = (struct shared_he *)k;
2452 entry = &(new_entry->shared_he_he);
2453 hek = &(new_entry->shared_he_hek);
2454
2455 Copy(str, HEK_KEY(hek), len, char);
2456 HEK_KEY(hek)[len] = 0;
2457 HEK_LEN(hek) = len;
2458 HEK_HASH(hek) = hash;
2459 HEK_FLAGS(hek) = (unsigned char)flags_masked;
2460
2461 /* Still "point" to the HEK, so that other code need not know what
2462 we're up to. */
2463 HeKEY_hek(entry) = hek;
de616631 2464 entry->he_valu.hent_refcount = 0;
263cb4a6 2465 HeNEXT(entry) = next;
2466 *head = entry;
cbae3960 2467
4c7185a0 2468 xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */
263cb4a6 2469 if (!next) { /* initial entry? */
cbec9347 2470 xhv->xhv_fill++; /* HvFILL(hv)++ */
4c9cc595 2471 } else if (xhv->xhv_keys > (IV)xhv->xhv_max /* HvKEYS(hv) > HvMAX(hv) */) {
cbec9347 2472 hsplit(PL_strtab);
bbce6d69 2473 }
2474 }
2475
de616631 2476 ++entry->he_valu.hent_refcount;
5f08fbcd 2477 UNLOCK_STRTAB_MUTEX;
19692e8d 2478
2479 if (flags & HVhek_FREEKEY)
f9a63242 2480 Safefree(str);
19692e8d 2481
6e838c70 2482 return HeKEY_hek(entry);
fde52b5c 2483}
ecae49c0 2484
ca732855 2485I32 *
2486Perl_hv_placeholders_p(pTHX_ HV *hv)
2487{
2488 dVAR;
2489 MAGIC *mg = mg_find((SV*)hv, PERL_MAGIC_rhash);
2490
2491 if (!mg) {
2492 mg = sv_magicext((SV*)hv, 0, PERL_MAGIC_rhash, 0, 0, 0);
2493
2494 if (!mg) {
2495 Perl_die(aTHX_ "panic: hv_placeholders_p");
2496 }
2497 }
2498 return &(mg->mg_len);
2499}
2500
2501
2502I32
2503Perl_hv_placeholders_get(pTHX_ HV *hv)
2504{
2505 dVAR;
b464bac0 2506 MAGIC * const mg = mg_find((SV*)hv, PERL_MAGIC_rhash);
ca732855 2507
2508 return mg ? mg->mg_len : 0;
2509}
2510
2511void
ac1e784a 2512Perl_hv_placeholders_set(pTHX_ HV *hv, I32 ph)
ca732855 2513{
2514 dVAR;
b464bac0 2515 MAGIC * const mg = mg_find((SV*)hv, PERL_MAGIC_rhash);
ca732855 2516
2517 if (mg) {
2518 mg->mg_len = ph;
2519 } else if (ph) {
2520 if (!sv_magicext((SV*)hv, 0, PERL_MAGIC_rhash, 0, 0, ph))
2521 Perl_die(aTHX_ "panic: hv_placeholders_set");
2522 }
2523 /* else we don't need to add magic to record 0 placeholders. */
2524}
ecae49c0 2525
2526/*
b3ca2e83 2527=for apidoc refcounted_he_chain_2hv
2528
2529Generates an returns a C<HV *> by walking up the tree starting at the passed
2530in C<struct refcounted_he *>.
2531
2532=cut
2533*/
2534HV *
2535Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *chain)
2536{
2537 HV *hv = newHV();
2538 U32 placeholders = 0;
2539 /* We could chase the chain once to get an idea of the number of keys,
2540 and call ksplit. But for now we'll make a potentially inefficient
2541 hash with only 8 entries in its array. */
2542 const U32 max = HvMAX(hv);
2543
2544 if (!HvARRAY(hv)) {
2545 char *array;
2546 Newxz(array, PERL_HV_ARRAY_ALLOC_BYTES(max + 1), char);
2547 HvARRAY(hv) = (HE**)array;
2548 }
2549
2550 while (chain) {
2551 const U32 hash = HEK_HASH(chain->refcounted_he_he.hent_hek);
2552 HE **oentry = &((HvARRAY(hv))[hash & max]);
2553 HE *entry = *oentry;
2554
2555 for (; entry; entry = HeNEXT(entry)) {
2556 if (HeHASH(entry) == hash) {
2557 goto next_please;
2558 }
2559 }
2560 assert (!entry);
2561 entry = new_HE();
2562
2563 HeKEY_hek(entry) = share_hek_hek(chain->refcounted_he_he.hent_hek);
2564
2565 HeVAL(entry) = chain->refcounted_he_he.he_valu.hent_val;
2566 if (HeVAL(entry) == &PL_sv_placeholder)
2567 placeholders++;
2568 SvREFCNT_inc_void_NN(HeVAL(entry));
2569
2570 /* Link it into the chain. */
2571 HeNEXT(entry) = *oentry;
2572 if (!HeNEXT(entry)) {
2573 /* initial entry. */
2574 HvFILL(hv)++;
2575 }
2576 *oentry = entry;
2577
2578 HvTOTALKEYS(hv)++;
2579
2580 next_please:
2581 chain = (struct refcounted_he *) chain->refcounted_he_he.hent_next;
2582 }
2583
2584 if (placeholders) {
2585 clear_placeholders(hv, placeholders);
2586 HvTOTALKEYS(hv) -= placeholders;
2587 }
2588
2589 /* We could check in the loop to see if we encounter any keys with key
2590 flags, but it's probably not worth it, as this per-hash flag is only
2591 really meant as an optimisation for things like Storable. */
2592 HvHASKFLAGS_on(hv);
2593#ifdef DEBUGGING
2594 Perl_hv_assert(aTHX_ hv);
2595#endif
2596
2597 return hv;
2598}
2599
2600/*
2601=for apidoc refcounted_he_new
2602
2603Creates a new C<struct refcounted_he>. Assumes ownership of one reference
2604to I<value>. As S<key> is copied into a shared hash key, all references remain
2605the property of the caller. The C<struct refcounted_he> is returned with a
2606reference count of 1.
2607
2608=cut
2609*/
2610
2611struct refcounted_he *
2612Perl_refcounted_he_new(pTHX_ struct refcounted_he *const parent,
2613 SV *const key, SV *const value) {
2614 struct refcounted_he *he;
2615 U32 hash;
2616 STRLEN len;
2617 const char *p = SvPV_const(key, len);
2618
2619 PERL_HASH(hash, p, len);
2620
2621 Newx(he, 1, struct refcounted_he);
2622
2623 he->refcounted_he_he.hent_next = (HE *)parent;
2624 he->refcounted_he_he.he_valu.hent_val = value;
2625 he->refcounted_he_he.hent_hek
2626 = share_hek(p, SvUTF8(key) ? -(I32)len : len, hash);
2627 he->refcounted_he_refcnt = 1;
2628
2629 return he;
2630}
2631
2632/*
2633=for apidoc refcounted_he_free
2634
2635Decrements the reference count of the passed in C<struct refcounted_he *>
2636by one. If the reference count reaches zero the structure's memory is freed,
2637and C<refcounted_he_free> iterates onto the parent node.
2638
2639=cut
2640*/
2641
2642void
2643Perl_refcounted_he_free(pTHX_ struct refcounted_he *he) {
2644 while (he) {
2645 struct refcounted_he *copy;
2646
2647 if (--he->refcounted_he_refcnt)
2648 return;
2649
2650 unshare_hek_or_pvn (he->refcounted_he_he.hent_hek, 0, 0, 0);
2651 SvREFCNT_dec(he->refcounted_he_he.he_valu.hent_val);
2652 copy = he;
2653 he = (struct refcounted_he *) he->refcounted_he_he.hent_next;
2654 Safefree(copy);
2655 }
2656}
2657
2658
2659/*
2660=for apidoc refcounted_he_dup
2661
2662Duplicates the C<struct refcounted_he *> for a new thread.
2663
2664=cut
2665*/
2666
2667#if defined(USE_ITHREADS)
2668struct refcounted_he *
2669Perl_refcounted_he_dup(pTHX_ const struct refcounted_he *const he,
2670 CLONE_PARAMS* param)
2671{
2672 struct refcounted_he *copy;
2673
2674 if (!he)
2675 return NULL;
2676
2677 /* look for it in the table first */
2678 copy = (struct refcounted_he *)ptr_table_fetch(PL_ptr_table, he);
2679 if (copy)
2680 return copy;
2681
2682 /* create anew and remember what it is */
2683 Newx(copy, 1, struct refcounted_he);
2684 ptr_table_store(PL_ptr_table, he, copy);
2685
2686 copy->refcounted_he_he.hent_next
2687 = (HE *)Perl_refcounted_he_dup(aTHX_
2688 (struct refcounted_he *)
2689 he->refcounted_he_he.hent_next,
2690 param);
2691 copy->refcounted_he_he.he_valu.hent_val
2692 = SvREFCNT_inc(sv_dup(he->refcounted_he_he.he_valu.hent_val, param));
2693 copy->refcounted_he_he.hent_hek
2694 = hek_dup(he->refcounted_he_he.hent_hek, param);
2695 copy->refcounted_he_refcnt = he->refcounted_he_refcnt;
2696 return copy;
2697}
a24d89c9 2698
2699/*
2700=for apidoc refcounted_he_copy
2701
2702Copies a chain of C<struct refcounted_he *>. Used by C<pp_entereval>.
2703
2704=cut
2705*/
2706
2707struct refcounted_he *
2708Perl_refcounted_he_copy(pTHX_ const struct refcounted_he * he)
2709{
2710 struct refcounted_he *copy;
2711 HEK *hek;
2712 /* This is much easier to express recursively than iteratively. */
2713 if (!he)
2714 return NULL;
2715
2716 Newx(copy, 1, struct refcounted_he);
2717 copy->refcounted_he_he.hent_next
2718 = (HE *)Perl_refcounted_he_copy(aTHX_
2719 (struct refcounted_he *)
2720 he->refcounted_he_he.hent_next);
2721 copy->refcounted_he_he.he_valu.hent_val
2722 = newSVsv(he->refcounted_he_he.he_valu.hent_val);
2723 hek = he->refcounted_he_he.hent_hek;
2724 copy->refcounted_he_he.hent_hek
2725 = share_hek(HEK_KEY(hek),
2726 HEK_UTF8(hek) ? -(I32)HEK_LEN(hek) : HEK_LEN(hek),
2727 HEK_HASH(hek));
2728 copy->refcounted_he_refcnt = 1;
2729 return copy;
2730}
b3ca2e83 2731#endif
2732
2733/*
ecae49c0 2734=for apidoc hv_assert
2735
2736Check that a hash is in an internally consistent state.
2737
2738=cut
2739*/
2740
943795c2 2741#ifdef DEBUGGING
2742
ecae49c0 2743void
2744Perl_hv_assert(pTHX_ HV *hv)
2745{
27da23d5 2746 dVAR;
ecae49c0 2747 HE* entry;
2748 int withflags = 0;
2749 int placeholders = 0;
2750 int real = 0;
2751 int bad = 0;
bfcb3514 2752 const I32 riter = HvRITER_get(hv);
2753 HE *eiter = HvEITER_get(hv);
ecae49c0 2754
2755 (void)hv_iterinit(hv);
2756
2757 while ((entry = hv_iternext_flags(hv, HV_ITERNEXT_WANTPLACEHOLDERS))) {
2758 /* sanity check the values */
2759 if (HeVAL(entry) == &PL_sv_placeholder) {
2760 placeholders++;
2761 } else {
2762 real++;
2763 }
2764 /* sanity check the keys */
2765 if (HeSVKEY(entry)) {
bb263b4e 2766 /*EMPTY*/ /* Don't know what to check on SV keys. */
ecae49c0 2767 } else if (HeKUTF8(entry)) {
2768 withflags++;
2769 if (HeKWASUTF8(entry)) {
2770 PerlIO_printf(Perl_debug_log,
2771 "hash key has both WASUFT8 and UTF8: '%.*s'\n",
2772 (int) HeKLEN(entry), HeKEY(entry));
2773 bad = 1;
2774 }
2775 } else if (HeKWASUTF8(entry)) {
2776 withflags++;
2777 }
2778 }
2779 if (!SvTIED_mg((SV*)hv, PERL_MAGIC_tied)) {
2780 if (HvUSEDKEYS(hv) != real) {
2781 PerlIO_printf(Perl_debug_log, "Count %d key(s), but hash reports %d\n",
2782 (int) real, (int) HvUSEDKEYS(hv));
2783 bad = 1;
2784 }
5d88ecd7 2785 if (HvPLACEHOLDERS_get(hv) != placeholders) {
ecae49c0 2786 PerlIO_printf(Perl_debug_log,
2787 "Count %d placeholder(s), but hash reports %d\n",
5d88ecd7 2788 (int) placeholders, (int) HvPLACEHOLDERS_get(hv));
ecae49c0 2789 bad = 1;
2790 }
2791 }
2792 if (withflags && ! HvHASKFLAGS(hv)) {
2793 PerlIO_printf(Perl_debug_log,
2794 "Hash has HASKFLAGS off but I count %d key(s) with flags\n",
2795 withflags);
2796 bad = 1;
2797 }
2798 if (bad) {
2799 sv_dump((SV *)hv);
2800 }
bfcb3514 2801 HvRITER_set(hv, riter); /* Restore hash iterator state */
2802 HvEITER_set(hv, eiter);
ecae49c0 2803}
af3babe4 2804
943795c2 2805#endif
2806
af3babe4 2807/*
2808 * Local variables:
2809 * c-indentation-style: bsd
2810 * c-basic-offset: 4
2811 * indent-tabs-mode: t
2812 * End:
2813 *
37442d52 2814 * ex: set ts=8 sts=4 sw=4 noet:
2815 */