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