This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
documentation fixes from p5p
[perl5.git] / hv.c
CommitLineData
a0d0e21e 1/* hv.c
79072805 2 *
3818b22b 3 * Copyright (c) 1991-2000, Larry Wall
79072805
LW
4 *
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
7 *
a0d0e21e
LW
8 */
9
10/*
11 * "I sit beside the fire and think of all that I have seen." --Bilbo
79072805
LW
12 */
13
14#include "EXTERN.h"
864dbfa3 15#define PERL_IN_HV_C
79072805
LW
16#include "perl.h"
17
76e3520e 18STATIC HE*
cea2e8a9 19S_new_he(pTHX)
4633a7c4
LW
20{
21 HE* he;
333f433b
DG
22 LOCK_SV_MUTEX;
23 if (!PL_he_root)
24 more_he();
25 he = PL_he_root;
26 PL_he_root = HeNEXT(he);
27 UNLOCK_SV_MUTEX;
28 return he;
4633a7c4
LW
29}
30
76e3520e 31STATIC void
cea2e8a9 32S_del_he(pTHX_ HE *p)
4633a7c4 33{
333f433b 34 LOCK_SV_MUTEX;
3280af22
NIS
35 HeNEXT(p) = (HE*)PL_he_root;
36 PL_he_root = p;
333f433b 37 UNLOCK_SV_MUTEX;
4633a7c4
LW
38}
39
333f433b 40STATIC void
cea2e8a9 41S_more_he(pTHX)
4633a7c4
LW
42{
43 register HE* he;
44 register HE* heend;
3280af22
NIS
45 New(54, PL_he_root, 1008/sizeof(HE), HE);
46 he = PL_he_root;
4633a7c4
LW
47 heend = &he[1008 / sizeof(HE) - 1];
48 while (he < heend) {
fde52b5c 49 HeNEXT(he) = (HE*)(he + 1);
4633a7c4
LW
50 he++;
51 }
fde52b5c 52 HeNEXT(he) = 0;
4633a7c4
LW
53}
54
d33b2eba
GS
55#ifdef PURIFY
56
57#define new_HE() (HE*)safemalloc(sizeof(HE))
58#define del_HE(p) safefree((char*)p)
59
60#else
61
62#define new_HE() new_he()
63#define del_HE(p) del_he(p)
64
65#endif
66
76e3520e 67STATIC HEK *
cea2e8a9 68S_save_hek(pTHX_ const char *str, I32 len, U32 hash)
bbce6d69 69{
70 char *k;
71 register HEK *hek;
72
ff68c719 73 New(54, k, HEK_BASESIZE + len + 1, char);
bbce6d69 74 hek = (HEK*)k;
ff68c719 75 Copy(str, HEK_KEY(hek), len, char);
76 *(HEK_KEY(hek) + len) = '\0';
77 HEK_LEN(hek) = len;
78 HEK_HASH(hek) = hash;
bbce6d69 79 return hek;
80}
81
82void
864dbfa3 83Perl_unshare_hek(pTHX_ HEK *hek)
bbce6d69 84{
ff68c719 85 unsharepvn(HEK_KEY(hek),HEK_LEN(hek),HEK_HASH(hek));
bbce6d69 86}
87
d18c6117
GS
88#if defined(USE_ITHREADS)
89HE *
90Perl_he_dup(pTHX_ HE *e, bool shared)
91{
92 HE *ret;
93
94 if (!e)
95 return Nullhe;
7766f137
GS
96 /* look for it in the table first */
97 ret = (HE*)ptr_table_fetch(PL_ptr_table, e);
98 if (ret)
99 return ret;
100
101 /* create anew and remember what it is */
d33b2eba 102 ret = new_HE();
7766f137
GS
103 ptr_table_store(PL_ptr_table, e, ret);
104
105 HeNEXT(ret) = he_dup(HeNEXT(e),shared);
d18c6117
GS
106 if (HeKLEN(e) == HEf_SVKEY)
107 HeKEY_sv(ret) = SvREFCNT_inc(sv_dup(HeKEY_sv(e)));
108 else if (shared)
109 HeKEY_hek(ret) = share_hek(HeKEY(e), HeKLEN(e), HeHASH(e));
110 else
111 HeKEY_hek(ret) = save_hek(HeKEY(e), HeKLEN(e), HeHASH(e));
112 HeVAL(ret) = SvREFCNT_inc(sv_dup(HeVAL(e)));
113 return ret;
114}
115#endif /* USE_ITHREADS */
116
fde52b5c 117/* (klen == HEf_SVKEY) is special for MAGICAL hv entries, meaning key slot
118 * contains an SV* */
119
954c1994
GS
120/*
121=for apidoc hv_fetch
122
123Returns the SV which corresponds to the specified key in the hash. The
124C<klen> is the length of the key. If C<lval> is set then the fetch will be
125part of a store. Check that the return value is non-null before
126dereferencing it to a C<SV*>.
127
96f1132b 128See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
129information on how to use this function on tied hashes.
130
131=cut
132*/
133
79072805 134SV**
864dbfa3 135Perl_hv_fetch(pTHX_ HV *hv, const char *key, U32 klen, I32 lval)
79072805
LW
136{
137 register XPVHV* xhv;
fde52b5c 138 register U32 hash;
79072805 139 register HE *entry;
79072805 140 SV *sv;
79072805
LW
141
142 if (!hv)
143 return 0;
463ee0b2 144
8990e307 145 if (SvRMAGICAL(hv)) {
463ee0b2 146 if (mg_find((SV*)hv,'P')) {
11343788 147 dTHR;
8990e307 148 sv = sv_newmortal();
463ee0b2 149 mg_copy((SV*)hv, sv, key, klen);
3280af22
NIS
150 PL_hv_fetch_sv = sv;
151 return &PL_hv_fetch_sv;
463ee0b2 152 }
902173a3
GS
153#ifdef ENV_IS_CASELESS
154 else if (mg_find((SV*)hv,'E')) {
e7152ba2
GS
155 U32 i;
156 for (i = 0; i < klen; ++i)
157 if (isLOWER(key[i])) {
79cb57f6 158 char *nkey = strupr(SvPVX(sv_2mortal(newSVpvn(key,klen))));
e7152ba2
GS
159 SV **ret = hv_fetch(hv, nkey, klen, 0);
160 if (!ret && lval)
161 ret = hv_store(hv, key, klen, NEWSV(61,0), 0);
162 return ret;
163 }
902173a3
GS
164 }
165#endif
463ee0b2
LW
166 }
167
79072805
LW
168 xhv = (XPVHV*)SvANY(hv);
169 if (!xhv->xhv_array) {
a0d0e21e
LW
170 if (lval
171#ifdef DYNAMIC_ENV_FETCH /* if it's an %ENV lookup, we may get it on the fly */
172 || (HvNAME(hv) && strEQ(HvNAME(hv),ENV_HV_NAME))
173#endif
174 )
d18c6117
GS
175 Newz(503, xhv->xhv_array,
176 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max + 1), char);
79072805
LW
177 else
178 return 0;
179 }
180
fde52b5c 181 PERL_HASH(hash, key, klen);
79072805 182
a0d0e21e 183 entry = ((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
fde52b5c 184 for (; entry; entry = HeNEXT(entry)) {
185 if (HeHASH(entry) != hash) /* strings can't be equal */
79072805 186 continue;
fde52b5c 187 if (HeKLEN(entry) != klen)
79072805 188 continue;
36477c24 189 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
79072805 190 continue;
fde52b5c 191 return &HeVAL(entry);
79072805 192 }
a0d0e21e
LW
193#ifdef DYNAMIC_ENV_FETCH /* %ENV lookup? If so, try to fetch the value now */
194 if (HvNAME(hv) && strEQ(HvNAME(hv),ENV_HV_NAME)) {
a6c40364
GS
195 unsigned long len;
196 char *env = PerlEnv_ENVgetenv_len(key,&len);
197 if (env) {
198 sv = newSVpvn(env,len);
199 SvTAINTED_on(sv);
200 return hv_store(hv,key,klen,sv,hash);
201 }
a0d0e21e
LW
202 }
203#endif
79072805
LW
204 if (lval) { /* gonna assign to this, so it better be there */
205 sv = NEWSV(61,0);
e7152ba2 206 return hv_store(hv,key,klen,sv,hash);
79072805
LW
207 }
208 return 0;
209}
210
fde52b5c 211/* returns a HE * structure with the all fields set */
212/* note that hent_val will be a mortal sv for MAGICAL hashes */
954c1994
GS
213/*
214=for apidoc hv_fetch_ent
215
216Returns the hash entry which corresponds to the specified key in the hash.
217C<hash> must be a valid precomputed hash number for the given C<key>, or 0
218if you want the function to compute it. IF C<lval> is set then the fetch
219will be part of a store. Make sure the return value is non-null before
220accessing it. The return value when C<tb> is a tied hash is a pointer to a
221static location, so be sure to make a copy of the structure if you need to
222store it somewhere.
223
96f1132b 224See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
225information on how to use this function on tied hashes.
226
227=cut
228*/
229
fde52b5c 230HE *
864dbfa3 231Perl_hv_fetch_ent(pTHX_ HV *hv, SV *keysv, I32 lval, register U32 hash)
fde52b5c 232{
233 register XPVHV* xhv;
234 register char *key;
235 STRLEN klen;
236 register HE *entry;
237 SV *sv;
238
239 if (!hv)
240 return 0;
241
902173a3
GS
242 if (SvRMAGICAL(hv)) {
243 if (mg_find((SV*)hv,'P')) {
6ff68fdd 244 dTHR;
902173a3
GS
245 sv = sv_newmortal();
246 keysv = sv_2mortal(newSVsv(keysv));
247 mg_copy((SV*)hv, sv, (char*)keysv, HEf_SVKEY);
3280af22 248 if (!HeKEY_hek(&PL_hv_fetch_ent_mh)) {
902173a3
GS
249 char *k;
250 New(54, k, HEK_BASESIZE + sizeof(SV*), char);
3280af22 251 HeKEY_hek(&PL_hv_fetch_ent_mh) = (HEK*)k;
902173a3 252 }
3280af22
NIS
253 HeSVKEY_set(&PL_hv_fetch_ent_mh, keysv);
254 HeVAL(&PL_hv_fetch_ent_mh) = sv;
255 return &PL_hv_fetch_ent_mh;
1cf368ac 256 }
902173a3
GS
257#ifdef ENV_IS_CASELESS
258 else if (mg_find((SV*)hv,'E')) {
e7152ba2 259 U32 i;
902173a3 260 key = SvPV(keysv, klen);
e7152ba2
GS
261 for (i = 0; i < klen; ++i)
262 if (isLOWER(key[i])) {
79cb57f6 263 SV *nkeysv = sv_2mortal(newSVpvn(key,klen));
e7152ba2
GS
264 (void)strupr(SvPVX(nkeysv));
265 entry = hv_fetch_ent(hv, nkeysv, 0, 0);
266 if (!entry && lval)
267 entry = hv_store_ent(hv, keysv, NEWSV(61,0), hash);
268 return entry;
269 }
902173a3
GS
270 }
271#endif
fde52b5c 272 }
273
effa1e2d 274 xhv = (XPVHV*)SvANY(hv);
fde52b5c 275 if (!xhv->xhv_array) {
276 if (lval
277#ifdef DYNAMIC_ENV_FETCH /* if it's an %ENV lookup, we may get it on the fly */
278 || (HvNAME(hv) && strEQ(HvNAME(hv),ENV_HV_NAME))
279#endif
280 )
d18c6117
GS
281 Newz(503, xhv->xhv_array,
282 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max + 1), char);
fde52b5c 283 else
284 return 0;
285 }
286
effa1e2d 287 key = SvPV(keysv, klen);
288
289 if (!hash)
290 PERL_HASH(hash, key, klen);
291
fde52b5c 292 entry = ((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
293 for (; entry; entry = HeNEXT(entry)) {
294 if (HeHASH(entry) != hash) /* strings can't be equal */
295 continue;
296 if (HeKLEN(entry) != klen)
297 continue;
36477c24 298 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 299 continue;
300 return entry;
301 }
302#ifdef DYNAMIC_ENV_FETCH /* %ENV lookup? If so, try to fetch the value now */
303 if (HvNAME(hv) && strEQ(HvNAME(hv),ENV_HV_NAME)) {
a6c40364
GS
304 unsigned long len;
305 char *env = PerlEnv_ENVgetenv_len(key,&len);
306 if (env) {
307 sv = newSVpvn(env,len);
308 SvTAINTED_on(sv);
309 return hv_store_ent(hv,keysv,sv,hash);
310 }
fde52b5c 311 }
312#endif
313 if (lval) { /* gonna assign to this, so it better be there */
314 sv = NEWSV(61,0);
e7152ba2 315 return hv_store_ent(hv,keysv,sv,hash);
fde52b5c 316 }
317 return 0;
318}
319
864dbfa3 320STATIC void
cea2e8a9 321S_hv_magic_check(pTHX_ HV *hv, bool *needs_copy, bool *needs_store)
d0066dc7
OT
322{
323 MAGIC *mg = SvMAGIC(hv);
324 *needs_copy = FALSE;
325 *needs_store = TRUE;
326 while (mg) {
327 if (isUPPER(mg->mg_type)) {
328 *needs_copy = TRUE;
329 switch (mg->mg_type) {
330 case 'P':
d0066dc7
OT
331 case 'S':
332 *needs_store = FALSE;
d0066dc7
OT
333 }
334 }
335 mg = mg->mg_moremagic;
336 }
337}
338
954c1994
GS
339/*
340=for apidoc hv_store
341
342Stores an SV in a hash. The hash key is specified as C<key> and C<klen> is
343the length of the key. The C<hash> parameter is the precomputed hash
344value; if it is zero then Perl will compute it. The return value will be
345NULL if the operation failed or if the value did not need to be actually
346stored within the hash (as in the case of tied hashes). Otherwise it can
347be dereferenced to get the original C<SV*>. Note that the caller is
348responsible for suitably incrementing the reference count of C<val> before
349the call, and decrementing it if the function returned NULL.
350
96f1132b 351See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
352information on how to use this function on tied hashes.
353
354=cut
355*/
356
79072805 357SV**
864dbfa3 358Perl_hv_store(pTHX_ HV *hv, const char *key, U32 klen, SV *val, register U32 hash)
79072805
LW
359{
360 register XPVHV* xhv;
79072805
LW
361 register I32 i;
362 register HE *entry;
363 register HE **oentry;
79072805
LW
364
365 if (!hv)
366 return 0;
367
368 xhv = (XPVHV*)SvANY(hv);
463ee0b2 369 if (SvMAGICAL(hv)) {
d0066dc7
OT
370 bool needs_copy;
371 bool needs_store;
372 hv_magic_check (hv, &needs_copy, &needs_store);
373 if (needs_copy) {
374 mg_copy((SV*)hv, val, key, klen);
375 if (!xhv->xhv_array && !needs_store)
376 return 0;
902173a3
GS
377#ifdef ENV_IS_CASELESS
378 else if (mg_find((SV*)hv,'E')) {
79cb57f6 379 SV *sv = sv_2mortal(newSVpvn(key,klen));
902173a3
GS
380 key = strupr(SvPVX(sv));
381 hash = 0;
382 }
383#endif
d0066dc7 384 }
463ee0b2 385 }
fde52b5c 386 if (!hash)
387 PERL_HASH(hash, key, klen);
388
389 if (!xhv->xhv_array)
d18c6117
GS
390 Newz(505, xhv->xhv_array,
391 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max + 1), char);
fde52b5c 392
393 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
394 i = 1;
395
396 for (entry = *oentry; entry; i=0, entry = HeNEXT(entry)) {
397 if (HeHASH(entry) != hash) /* strings can't be equal */
398 continue;
399 if (HeKLEN(entry) != klen)
400 continue;
36477c24 401 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 402 continue;
403 SvREFCNT_dec(HeVAL(entry));
404 HeVAL(entry) = val;
405 return &HeVAL(entry);
406 }
407
d33b2eba 408 entry = new_HE();
fde52b5c 409 if (HvSHAREKEYS(hv))
ff68c719 410 HeKEY_hek(entry) = share_hek(key, klen, hash);
fde52b5c 411 else /* gotta do the real thing */
ff68c719 412 HeKEY_hek(entry) = save_hek(key, klen, hash);
fde52b5c 413 HeVAL(entry) = val;
fde52b5c 414 HeNEXT(entry) = *oentry;
415 *oentry = entry;
416
417 xhv->xhv_keys++;
418 if (i) { /* initial entry? */
419 ++xhv->xhv_fill;
420 if (xhv->xhv_keys > xhv->xhv_max)
421 hsplit(hv);
79072805
LW
422 }
423
fde52b5c 424 return &HeVAL(entry);
425}
426
954c1994
GS
427/*
428=for apidoc hv_store_ent
429
430Stores C<val> in a hash. The hash key is specified as C<key>. The C<hash>
431parameter is the precomputed hash value; if it is zero then Perl will
432compute it. The return value is the new hash entry so created. It will be
433NULL if the operation failed or if the value did not need to be actually
434stored within the hash (as in the case of tied hashes). Otherwise the
435contents of the return value can be accessed using the C<He???> macros
436described here. Note that the caller is responsible for suitably
437incrementing the reference count of C<val> before the call, and
438decrementing it if the function returned NULL.
439
96f1132b 440See L<perlguts/"Understanding the Magic of Tied Hashes and Arrays"> for more
954c1994
GS
441information on how to use this function on tied hashes.
442
443=cut
444*/
445
fde52b5c 446HE *
864dbfa3 447Perl_hv_store_ent(pTHX_ HV *hv, SV *keysv, SV *val, register U32 hash)
fde52b5c 448{
449 register XPVHV* xhv;
450 register char *key;
451 STRLEN klen;
452 register I32 i;
453 register HE *entry;
454 register HE **oentry;
455
456 if (!hv)
457 return 0;
458
459 xhv = (XPVHV*)SvANY(hv);
460 if (SvMAGICAL(hv)) {
aeea060c 461 dTHR;
d0066dc7
OT
462 bool needs_copy;
463 bool needs_store;
464 hv_magic_check (hv, &needs_copy, &needs_store);
465 if (needs_copy) {
3280af22
NIS
466 bool save_taint = PL_tainted;
467 if (PL_tainting)
468 PL_tainted = SvTAINTED(keysv);
d0066dc7
OT
469 keysv = sv_2mortal(newSVsv(keysv));
470 mg_copy((SV*)hv, val, (char*)keysv, HEf_SVKEY);
471 TAINT_IF(save_taint);
472 if (!xhv->xhv_array && !needs_store)
473 return Nullhe;
902173a3
GS
474#ifdef ENV_IS_CASELESS
475 else if (mg_find((SV*)hv,'E')) {
476 key = SvPV(keysv, klen);
79cb57f6 477 keysv = sv_2mortal(newSVpvn(key,klen));
902173a3
GS
478 (void)strupr(SvPVX(keysv));
479 hash = 0;
480 }
481#endif
482 }
fde52b5c 483 }
484
485 key = SvPV(keysv, klen);
902173a3 486
fde52b5c 487 if (!hash)
488 PERL_HASH(hash, key, klen);
489
79072805 490 if (!xhv->xhv_array)
d18c6117
GS
491 Newz(505, xhv->xhv_array,
492 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max + 1), char);
79072805 493
a0d0e21e 494 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
79072805
LW
495 i = 1;
496
fde52b5c 497 for (entry = *oentry; entry; i=0, entry = HeNEXT(entry)) {
498 if (HeHASH(entry) != hash) /* strings can't be equal */
79072805 499 continue;
fde52b5c 500 if (HeKLEN(entry) != klen)
79072805 501 continue;
36477c24 502 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
79072805 503 continue;
fde52b5c 504 SvREFCNT_dec(HeVAL(entry));
505 HeVAL(entry) = val;
506 return entry;
79072805 507 }
79072805 508
d33b2eba 509 entry = new_HE();
fde52b5c 510 if (HvSHAREKEYS(hv))
ff68c719 511 HeKEY_hek(entry) = share_hek(key, klen, hash);
fde52b5c 512 else /* gotta do the real thing */
ff68c719 513 HeKEY_hek(entry) = save_hek(key, klen, hash);
fde52b5c 514 HeVAL(entry) = val;
fde52b5c 515 HeNEXT(entry) = *oentry;
79072805
LW
516 *oentry = entry;
517
463ee0b2 518 xhv->xhv_keys++;
79072805 519 if (i) { /* initial entry? */
463ee0b2
LW
520 ++xhv->xhv_fill;
521 if (xhv->xhv_keys > xhv->xhv_max)
79072805
LW
522 hsplit(hv);
523 }
79072805 524
fde52b5c 525 return entry;
79072805
LW
526}
527
954c1994
GS
528/*
529=for apidoc hv_delete
530
531Deletes a key/value pair in the hash. The value SV is removed from the
532hash and returned to the caller. The C<klen> is the length of the key.
533The C<flags> value will normally be zero; if set to G_DISCARD then NULL
534will be returned.
535
536=cut
537*/
538
79072805 539SV *
864dbfa3 540Perl_hv_delete(pTHX_ HV *hv, const char *key, U32 klen, I32 flags)
79072805
LW
541{
542 register XPVHV* xhv;
79072805 543 register I32 i;
fde52b5c 544 register U32 hash;
79072805
LW
545 register HE *entry;
546 register HE **oentry;
67a38de0 547 SV **svp;
79072805 548 SV *sv;
79072805
LW
549
550 if (!hv)
551 return Nullsv;
8990e307 552 if (SvRMAGICAL(hv)) {
0a0bb7c7
OT
553 bool needs_copy;
554 bool needs_store;
555 hv_magic_check (hv, &needs_copy, &needs_store);
556
67a38de0
NIS
557 if (needs_copy && (svp = hv_fetch(hv, key, klen, TRUE))) {
558 sv = *svp;
0a0bb7c7
OT
559 mg_clear(sv);
560 if (!needs_store) {
561 if (mg_find(sv, 'p')) {
562 sv_unmagic(sv, 'p'); /* No longer an element */
563 return sv;
564 }
565 return Nullsv; /* element cannot be deleted */
566 }
902173a3 567#ifdef ENV_IS_CASELESS
2fd1c6b8 568 else if (mg_find((SV*)hv,'E')) {
79cb57f6 569 sv = sv_2mortal(newSVpvn(key,klen));
2fd1c6b8
GS
570 key = strupr(SvPVX(sv));
571 }
902173a3 572#endif
2fd1c6b8 573 }
463ee0b2 574 }
79072805
LW
575 xhv = (XPVHV*)SvANY(hv);
576 if (!xhv->xhv_array)
577 return Nullsv;
fde52b5c 578
579 PERL_HASH(hash, key, klen);
79072805 580
a0d0e21e 581 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
79072805
LW
582 entry = *oentry;
583 i = 1;
fde52b5c 584 for (; entry; i=0, oentry = &HeNEXT(entry), entry = *oentry) {
585 if (HeHASH(entry) != hash) /* strings can't be equal */
79072805 586 continue;
fde52b5c 587 if (HeKLEN(entry) != klen)
79072805 588 continue;
36477c24 589 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
79072805 590 continue;
fde52b5c 591 *oentry = HeNEXT(entry);
79072805
LW
592 if (i && !*oentry)
593 xhv->xhv_fill--;
748a9306
LW
594 if (flags & G_DISCARD)
595 sv = Nullsv;
94f7643d 596 else {
79d01fbf 597 sv = sv_2mortal(HeVAL(entry));
94f7643d
GS
598 HeVAL(entry) = &PL_sv_undef;
599 }
a0d0e21e 600 if (entry == xhv->xhv_eiter)
72940dca 601 HvLAZYDEL_on(hv);
a0d0e21e 602 else
68dc0745 603 hv_free_ent(hv, entry);
fde52b5c 604 --xhv->xhv_keys;
605 return sv;
606 }
607 return Nullsv;
608}
609
954c1994
GS
610/*
611=for apidoc hv_delete_ent
612
613Deletes a key/value pair in the hash. The value SV is removed from the
614hash and returned to the caller. The C<flags> value will normally be zero;
615if set to G_DISCARD then NULL will be returned. C<hash> can be a valid
616precomputed hash value, or 0 to ask for it to be computed.
617
618=cut
619*/
620
fde52b5c 621SV *
864dbfa3 622Perl_hv_delete_ent(pTHX_ HV *hv, SV *keysv, I32 flags, U32 hash)
fde52b5c 623{
624 register XPVHV* xhv;
625 register I32 i;
626 register char *key;
627 STRLEN klen;
628 register HE *entry;
629 register HE **oentry;
630 SV *sv;
631
632 if (!hv)
633 return Nullsv;
634 if (SvRMAGICAL(hv)) {
0a0bb7c7
OT
635 bool needs_copy;
636 bool needs_store;
637 hv_magic_check (hv, &needs_copy, &needs_store);
638
67a38de0 639 if (needs_copy && (entry = hv_fetch_ent(hv, keysv, TRUE, hash))) {
0a0bb7c7
OT
640 sv = HeVAL(entry);
641 mg_clear(sv);
642 if (!needs_store) {
643 if (mg_find(sv, 'p')) {
644 sv_unmagic(sv, 'p'); /* No longer an element */
645 return sv;
646 }
647 return Nullsv; /* element cannot be deleted */
648 }
902173a3 649#ifdef ENV_IS_CASELESS
2fd1c6b8
GS
650 else if (mg_find((SV*)hv,'E')) {
651 key = SvPV(keysv, klen);
79cb57f6 652 keysv = sv_2mortal(newSVpvn(key,klen));
2fd1c6b8
GS
653 (void)strupr(SvPVX(keysv));
654 hash = 0;
655 }
902173a3 656#endif
2fd1c6b8 657 }
fde52b5c 658 }
659 xhv = (XPVHV*)SvANY(hv);
660 if (!xhv->xhv_array)
661 return Nullsv;
662
663 key = SvPV(keysv, klen);
664
665 if (!hash)
666 PERL_HASH(hash, key, klen);
667
668 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
669 entry = *oentry;
670 i = 1;
671 for (; entry; i=0, oentry = &HeNEXT(entry), entry = *oentry) {
672 if (HeHASH(entry) != hash) /* strings can't be equal */
673 continue;
674 if (HeKLEN(entry) != klen)
675 continue;
36477c24 676 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 677 continue;
678 *oentry = HeNEXT(entry);
679 if (i && !*oentry)
680 xhv->xhv_fill--;
681 if (flags & G_DISCARD)
682 sv = Nullsv;
94f7643d 683 else {
79d01fbf 684 sv = sv_2mortal(HeVAL(entry));
94f7643d
GS
685 HeVAL(entry) = &PL_sv_undef;
686 }
fde52b5c 687 if (entry == xhv->xhv_eiter)
72940dca 688 HvLAZYDEL_on(hv);
fde52b5c 689 else
68dc0745 690 hv_free_ent(hv, entry);
463ee0b2 691 --xhv->xhv_keys;
79072805
LW
692 return sv;
693 }
79072805 694 return Nullsv;
79072805
LW
695}
696
954c1994
GS
697/*
698=for apidoc hv_exists
699
700Returns a boolean indicating whether the specified hash key exists. The
701C<klen> is the length of the key.
702
703=cut
704*/
705
a0d0e21e 706bool
864dbfa3 707Perl_hv_exists(pTHX_ HV *hv, const char *key, U32 klen)
a0d0e21e
LW
708{
709 register XPVHV* xhv;
fde52b5c 710 register U32 hash;
a0d0e21e
LW
711 register HE *entry;
712 SV *sv;
713
714 if (!hv)
715 return 0;
716
717 if (SvRMAGICAL(hv)) {
718 if (mg_find((SV*)hv,'P')) {
11343788 719 dTHR;
a0d0e21e
LW
720 sv = sv_newmortal();
721 mg_copy((SV*)hv, sv, key, klen);
722 magic_existspack(sv, mg_find(sv, 'p'));
723 return SvTRUE(sv);
724 }
902173a3
GS
725#ifdef ENV_IS_CASELESS
726 else if (mg_find((SV*)hv,'E')) {
79cb57f6 727 sv = sv_2mortal(newSVpvn(key,klen));
902173a3
GS
728 key = strupr(SvPVX(sv));
729 }
730#endif
a0d0e21e
LW
731 }
732
733 xhv = (XPVHV*)SvANY(hv);
f675dbe5 734#ifndef DYNAMIC_ENV_FETCH
a0d0e21e
LW
735 if (!xhv->xhv_array)
736 return 0;
f675dbe5 737#endif
a0d0e21e 738
fde52b5c 739 PERL_HASH(hash, key, klen);
a0d0e21e 740
f675dbe5
CB
741#ifdef DYNAMIC_ENV_FETCH
742 if (!xhv->xhv_array) entry = Null(HE*);
743 else
744#endif
a0d0e21e 745 entry = ((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
fde52b5c 746 for (; entry; entry = HeNEXT(entry)) {
747 if (HeHASH(entry) != hash) /* strings can't be equal */
a0d0e21e 748 continue;
fde52b5c 749 if (HeKLEN(entry) != klen)
a0d0e21e 750 continue;
36477c24 751 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
fde52b5c 752 continue;
753 return TRUE;
754 }
f675dbe5 755#ifdef DYNAMIC_ENV_FETCH /* is it out there? */
a6c40364
GS
756 if (HvNAME(hv) && strEQ(HvNAME(hv), ENV_HV_NAME)) {
757 unsigned long len;
758 char *env = PerlEnv_ENVgetenv_len(key,&len);
759 if (env) {
760 sv = newSVpvn(env,len);
761 SvTAINTED_on(sv);
762 (void)hv_store(hv,key,klen,sv,hash);
763 return TRUE;
764 }
f675dbe5
CB
765 }
766#endif
fde52b5c 767 return FALSE;
768}
769
770
954c1994
GS
771/*
772=for apidoc hv_exists_ent
773
774Returns a boolean indicating whether the specified hash key exists. C<hash>
775can be a valid precomputed hash value, or 0 to ask for it to be
776computed.
777
778=cut
779*/
780
fde52b5c 781bool
864dbfa3 782Perl_hv_exists_ent(pTHX_ HV *hv, SV *keysv, U32 hash)
fde52b5c 783{
784 register XPVHV* xhv;
785 register char *key;
786 STRLEN klen;
787 register HE *entry;
788 SV *sv;
789
790 if (!hv)
791 return 0;
792
793 if (SvRMAGICAL(hv)) {
794 if (mg_find((SV*)hv,'P')) {
e858de61 795 dTHR; /* just for SvTRUE */
fde52b5c 796 sv = sv_newmortal();
effa1e2d 797 keysv = sv_2mortal(newSVsv(keysv));
fde52b5c 798 mg_copy((SV*)hv, sv, (char*)keysv, HEf_SVKEY);
799 magic_existspack(sv, mg_find(sv, 'p'));
800 return SvTRUE(sv);
801 }
902173a3
GS
802#ifdef ENV_IS_CASELESS
803 else if (mg_find((SV*)hv,'E')) {
804 key = SvPV(keysv, klen);
79cb57f6 805 keysv = sv_2mortal(newSVpvn(key,klen));
902173a3
GS
806 (void)strupr(SvPVX(keysv));
807 hash = 0;
808 }
809#endif
fde52b5c 810 }
811
812 xhv = (XPVHV*)SvANY(hv);
f675dbe5 813#ifndef DYNAMIC_ENV_FETCH
fde52b5c 814 if (!xhv->xhv_array)
815 return 0;
f675dbe5 816#endif
fde52b5c 817
818 key = SvPV(keysv, klen);
819 if (!hash)
820 PERL_HASH(hash, key, klen);
821
f675dbe5
CB
822#ifdef DYNAMIC_ENV_FETCH
823 if (!xhv->xhv_array) entry = Null(HE*);
824 else
825#endif
fde52b5c 826 entry = ((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
827 for (; entry; entry = HeNEXT(entry)) {
828 if (HeHASH(entry) != hash) /* strings can't be equal */
829 continue;
830 if (HeKLEN(entry) != klen)
831 continue;
36477c24 832 if (memNE(HeKEY(entry),key,klen)) /* is this it? */
a0d0e21e
LW
833 continue;
834 return TRUE;
835 }
f675dbe5 836#ifdef DYNAMIC_ENV_FETCH /* is it out there? */
a6c40364
GS
837 if (HvNAME(hv) && strEQ(HvNAME(hv), ENV_HV_NAME)) {
838 unsigned long len;
839 char *env = PerlEnv_ENVgetenv_len(key,&len);
840 if (env) {
841 sv = newSVpvn(env,len);
842 SvTAINTED_on(sv);
843 (void)hv_store_ent(hv,keysv,sv,hash);
844 return TRUE;
845 }
f675dbe5
CB
846 }
847#endif
a0d0e21e
LW
848 return FALSE;
849}
850
76e3520e 851STATIC void
cea2e8a9 852S_hsplit(pTHX_ HV *hv)
79072805
LW
853{
854 register XPVHV* xhv = (XPVHV*)SvANY(hv);
a0d0e21e 855 I32 oldsize = (I32) xhv->xhv_max + 1; /* sic(k) */
79072805
LW
856 register I32 newsize = oldsize * 2;
857 register I32 i;
72311751
GS
858 register char *a = xhv->xhv_array;
859 register HE **aep;
860 register HE **bep;
79072805
LW
861 register HE *entry;
862 register HE **oentry;
863
3280af22 864 PL_nomemok = TRUE;
8d6dde3e 865#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
d18c6117 866 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
422a93e5 867 if (!a) {
4a33f861 868 PL_nomemok = FALSE;
422a93e5
GA
869 return;
870 }
4633a7c4 871#else
4633a7c4 872#define MALLOC_OVERHEAD 16
d18c6117 873 New(2, a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
422a93e5 874 if (!a) {
3280af22 875 PL_nomemok = FALSE;
422a93e5
GA
876 return;
877 }
72311751 878 Copy(xhv->xhv_array, a, oldsize * sizeof(HE*), char);
fba3b22e 879 if (oldsize >= 64) {
d18c6117 880 offer_nice_chunk(xhv->xhv_array, PERL_HV_ARRAY_ALLOC_BYTES(oldsize));
4633a7c4
LW
881 }
882 else
883 Safefree(xhv->xhv_array);
884#endif
885
3280af22 886 PL_nomemok = FALSE;
72311751 887 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
79072805 888 xhv->xhv_max = --newsize;
72311751
GS
889 xhv->xhv_array = a;
890 aep = (HE**)a;
79072805 891
72311751
GS
892 for (i=0; i<oldsize; i++,aep++) {
893 if (!*aep) /* non-existent */
79072805 894 continue;
72311751
GS
895 bep = aep+oldsize;
896 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
fde52b5c 897 if ((HeHASH(entry) & newsize) != i) {
898 *oentry = HeNEXT(entry);
72311751
GS
899 HeNEXT(entry) = *bep;
900 if (!*bep)
79072805 901 xhv->xhv_fill++;
72311751 902 *bep = entry;
79072805
LW
903 continue;
904 }
905 else
fde52b5c 906 oentry = &HeNEXT(entry);
79072805 907 }
72311751 908 if (!*aep) /* everything moved */
79072805
LW
909 xhv->xhv_fill--;
910 }
911}
912
72940dca 913void
864dbfa3 914Perl_hv_ksplit(pTHX_ HV *hv, IV newmax)
72940dca 915{
916 register XPVHV* xhv = (XPVHV*)SvANY(hv);
917 I32 oldsize = (I32) xhv->xhv_max + 1; /* sic(k) */
918 register I32 newsize;
919 register I32 i;
920 register I32 j;
72311751
GS
921 register char *a;
922 register HE **aep;
72940dca 923 register HE *entry;
924 register HE **oentry;
925
926 newsize = (I32) newmax; /* possible truncation here */
927 if (newsize != newmax || newmax <= oldsize)
928 return;
929 while ((newsize & (1 + ~newsize)) != newsize) {
930 newsize &= ~(newsize & (1 + ~newsize)); /* get proper power of 2 */
931 }
932 if (newsize < newmax)
933 newsize *= 2;
934 if (newsize < newmax)
935 return; /* overflow detection */
936
72311751 937 a = xhv->xhv_array;
72940dca 938 if (a) {
3280af22 939 PL_nomemok = TRUE;
8d6dde3e 940#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
d18c6117 941 Renew(a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
422a93e5 942 if (!a) {
4a33f861 943 PL_nomemok = FALSE;
422a93e5
GA
944 return;
945 }
72940dca 946#else
d18c6117 947 New(2, a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
422a93e5 948 if (!a) {
3280af22 949 PL_nomemok = FALSE;
422a93e5
GA
950 return;
951 }
72311751 952 Copy(xhv->xhv_array, a, oldsize * sizeof(HE*), char);
fba3b22e 953 if (oldsize >= 64) {
d18c6117 954 offer_nice_chunk(xhv->xhv_array, PERL_HV_ARRAY_ALLOC_BYTES(oldsize));
72940dca 955 }
956 else
957 Safefree(xhv->xhv_array);
958#endif
3280af22 959 PL_nomemok = FALSE;
72311751 960 Zero(&a[oldsize * sizeof(HE*)], (newsize-oldsize) * sizeof(HE*), char); /* zero 2nd half*/
72940dca 961 }
962 else {
d18c6117 963 Newz(0, a, PERL_HV_ARRAY_ALLOC_BYTES(newsize), char);
72940dca 964 }
965 xhv->xhv_max = --newsize;
72311751 966 xhv->xhv_array = a;
72940dca 967 if (!xhv->xhv_fill) /* skip rest if no entries */
968 return;
969
72311751
GS
970 aep = (HE**)a;
971 for (i=0; i<oldsize; i++,aep++) {
972 if (!*aep) /* non-existent */
72940dca 973 continue;
72311751 974 for (oentry = aep, entry = *aep; entry; entry = *oentry) {
72940dca 975 if ((j = (HeHASH(entry) & newsize)) != i) {
976 j -= i;
977 *oentry = HeNEXT(entry);
72311751 978 if (!(HeNEXT(entry) = aep[j]))
72940dca 979 xhv->xhv_fill++;
72311751 980 aep[j] = entry;
72940dca 981 continue;
982 }
983 else
984 oentry = &HeNEXT(entry);
985 }
72311751 986 if (!*aep) /* everything moved */
72940dca 987 xhv->xhv_fill--;
988 }
989}
990
954c1994
GS
991/*
992=for apidoc newHV
993
994Creates a new HV. The reference count is set to 1.
995
996=cut
997*/
998
79072805 999HV *
864dbfa3 1000Perl_newHV(pTHX)
79072805
LW
1001{
1002 register HV *hv;
1003 register XPVHV* xhv;
1004
a0d0e21e
LW
1005 hv = (HV*)NEWSV(502,0);
1006 sv_upgrade((SV *)hv, SVt_PVHV);
79072805
LW
1007 xhv = (XPVHV*)SvANY(hv);
1008 SvPOK_off(hv);
1009 SvNOK_off(hv);
fde52b5c 1010#ifndef NODEFAULT_SHAREKEYS
1011 HvSHAREKEYS_on(hv); /* key-sharing on by default */
1012#endif
463ee0b2 1013 xhv->xhv_max = 7; /* start with 8 buckets */
79072805
LW
1014 xhv->xhv_fill = 0;
1015 xhv->xhv_pmroot = 0;
79072805
LW
1016 (void)hv_iterinit(hv); /* so each() will start off right */
1017 return hv;
1018}
1019
b3ac6de7 1020HV *
864dbfa3 1021Perl_newHVhv(pTHX_ HV *ohv)
b3ac6de7
IZ
1022{
1023 register HV *hv;
b3ac6de7
IZ
1024 STRLEN hv_max = ohv ? HvMAX(ohv) : 0;
1025 STRLEN hv_fill = ohv ? HvFILL(ohv) : 0;
1026
1027 hv = newHV();
1028 while (hv_max && hv_max + 1 >= hv_fill * 2)
1029 hv_max = hv_max / 2; /* Is always 2^n-1 */
4a76a316 1030 HvMAX(hv) = hv_max;
b3ac6de7
IZ
1031 if (!hv_fill)
1032 return hv;
1033
1034#if 0
33c27489 1035 if (! SvTIED_mg((SV*)ohv, 'P')) {
b3ac6de7
IZ
1036 /* Quick way ???*/
1037 }
1038 else
1039#endif
1040 {
1041 HE *entry;
1042 I32 hv_riter = HvRITER(ohv); /* current root of iterator */
1043 HE *hv_eiter = HvEITER(ohv); /* current entry of iterator */
1044
1045 /* Slow way */
4a76a316 1046 hv_iterinit(ohv);
155aba94 1047 while ((entry = hv_iternext(ohv))) {
b3ac6de7
IZ
1048 hv_store(hv, HeKEY(entry), HeKLEN(entry),
1049 SvREFCNT_inc(HeVAL(entry)), HeHASH(entry));
1050 }
1051 HvRITER(ohv) = hv_riter;
1052 HvEITER(ohv) = hv_eiter;
1053 }
1054
1055 return hv;
1056}
1057
79072805 1058void
864dbfa3 1059Perl_hv_free_ent(pTHX_ HV *hv, register HE *entry)
79072805 1060{
16bdeea2
GS
1061 SV *val;
1062
68dc0745 1063 if (!entry)
79072805 1064 return;
16bdeea2 1065 val = HeVAL(entry);
257c9e5b 1066 if (val && isGV(val) && GvCVu(val) && HvNAME(hv))
3280af22 1067 PL_sub_generation++; /* may be deletion of method from stash */
16bdeea2 1068 SvREFCNT_dec(val);
68dc0745 1069 if (HeKLEN(entry) == HEf_SVKEY) {
1070 SvREFCNT_dec(HeKEY_sv(entry));
1071 Safefree(HeKEY_hek(entry));
44a8e56a 1072 }
1073 else if (HvSHAREKEYS(hv))
68dc0745 1074 unshare_hek(HeKEY_hek(entry));
fde52b5c 1075 else
68dc0745 1076 Safefree(HeKEY_hek(entry));
d33b2eba 1077 del_HE(entry);
79072805
LW
1078}
1079
1080void
864dbfa3 1081Perl_hv_delayfree_ent(pTHX_ HV *hv, register HE *entry)
79072805 1082{
68dc0745 1083 if (!entry)
79072805 1084 return;
68dc0745 1085 if (isGV(HeVAL(entry)) && GvCVu(HeVAL(entry)) && HvNAME(hv))
3280af22 1086 PL_sub_generation++; /* may be deletion of method from stash */
68dc0745 1087 sv_2mortal(HeVAL(entry)); /* free between statements */
1088 if (HeKLEN(entry) == HEf_SVKEY) {
1089 sv_2mortal(HeKEY_sv(entry));
1090 Safefree(HeKEY_hek(entry));
44a8e56a 1091 }
1092 else if (HvSHAREKEYS(hv))
68dc0745 1093 unshare_hek(HeKEY_hek(entry));
fde52b5c 1094 else
68dc0745 1095 Safefree(HeKEY_hek(entry));
d33b2eba 1096 del_HE(entry);
79072805
LW
1097}
1098
954c1994
GS
1099/*
1100=for apidoc hv_clear
1101
1102Clears a hash, making it empty.
1103
1104=cut
1105*/
1106
79072805 1107void
864dbfa3 1108Perl_hv_clear(pTHX_ HV *hv)
79072805
LW
1109{
1110 register XPVHV* xhv;
1111 if (!hv)
1112 return;
1113 xhv = (XPVHV*)SvANY(hv);
463ee0b2 1114 hfreeentries(hv);
79072805 1115 xhv->xhv_fill = 0;
a0d0e21e 1116 xhv->xhv_keys = 0;
79072805 1117 if (xhv->xhv_array)
463ee0b2 1118 (void)memzero(xhv->xhv_array, (xhv->xhv_max + 1) * sizeof(HE*));
a0d0e21e
LW
1119
1120 if (SvRMAGICAL(hv))
1121 mg_clear((SV*)hv);
79072805
LW
1122}
1123
76e3520e 1124STATIC void
cea2e8a9 1125S_hfreeentries(pTHX_ HV *hv)
79072805 1126{
a0d0e21e 1127 register HE **array;
68dc0745 1128 register HE *entry;
1129 register HE *oentry = Null(HE*);
a0d0e21e
LW
1130 I32 riter;
1131 I32 max;
79072805
LW
1132
1133 if (!hv)
1134 return;
a0d0e21e 1135 if (!HvARRAY(hv))
79072805 1136 return;
a0d0e21e
LW
1137
1138 riter = 0;
1139 max = HvMAX(hv);
1140 array = HvARRAY(hv);
68dc0745 1141 entry = array[0];
a0d0e21e 1142 for (;;) {
68dc0745 1143 if (entry) {
1144 oentry = entry;
1145 entry = HeNEXT(entry);
1146 hv_free_ent(hv, oentry);
a0d0e21e 1147 }
68dc0745 1148 if (!entry) {
a0d0e21e
LW
1149 if (++riter > max)
1150 break;
68dc0745 1151 entry = array[riter];
a0d0e21e 1152 }
79072805 1153 }
a0d0e21e 1154 (void)hv_iterinit(hv);
79072805
LW
1155}
1156
954c1994
GS
1157/*
1158=for apidoc hv_undef
1159
1160Undefines the hash.
1161
1162=cut
1163*/
1164
79072805 1165void
864dbfa3 1166Perl_hv_undef(pTHX_ HV *hv)
79072805
LW
1167{
1168 register XPVHV* xhv;
1169 if (!hv)
1170 return;
1171 xhv = (XPVHV*)SvANY(hv);
463ee0b2 1172 hfreeentries(hv);
79072805 1173 Safefree(xhv->xhv_array);
85e6fe83
LW
1174 if (HvNAME(hv)) {
1175 Safefree(HvNAME(hv));
1176 HvNAME(hv) = 0;
1177 }
79072805 1178 xhv->xhv_array = 0;
aa689395 1179 xhv->xhv_max = 7; /* it's a normal hash */
79072805 1180 xhv->xhv_fill = 0;
a0d0e21e
LW
1181 xhv->xhv_keys = 0;
1182
1183 if (SvRMAGICAL(hv))
1184 mg_clear((SV*)hv);
79072805
LW
1185}
1186
954c1994
GS
1187/*
1188=for apidoc hv_iterinit
1189
1190Prepares a starting point to traverse a hash table. Returns the number of
1191keys in the hash (i.e. the same as C<HvKEYS(tb)>). The return value is
1192currently only meaningful for hashes without tie magic.
1193
1194NOTE: Before version 5.004_65, C<hv_iterinit> used to return the number of
1195hash buckets that happen to be in use. If you still need that esoteric
1196value, you can get it through the macro C<HvFILL(tb)>.
1197
1198=cut
1199*/
1200
79072805 1201I32
864dbfa3 1202Perl_hv_iterinit(pTHX_ HV *hv)
79072805 1203{
aa689395 1204 register XPVHV* xhv;
1205 HE *entry;
1206
1207 if (!hv)
cea2e8a9 1208 Perl_croak(aTHX_ "Bad hash");
aa689395 1209 xhv = (XPVHV*)SvANY(hv);
1210 entry = xhv->xhv_eiter;
72940dca 1211 if (entry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1212 HvLAZYDEL_off(hv);
68dc0745 1213 hv_free_ent(hv, entry);
72940dca 1214 }
79072805
LW
1215 xhv->xhv_riter = -1;
1216 xhv->xhv_eiter = Null(HE*);
c6601927 1217 return xhv->xhv_keys; /* used to be xhv->xhv_fill before 5.004_65 */
79072805
LW
1218}
1219
954c1994
GS
1220/*
1221=for apidoc hv_iternext
1222
1223Returns entries from a hash iterator. See C<hv_iterinit>.
1224
1225=cut
1226*/
1227
79072805 1228HE *
864dbfa3 1229Perl_hv_iternext(pTHX_ HV *hv)
79072805
LW
1230{
1231 register XPVHV* xhv;
1232 register HE *entry;
a0d0e21e 1233 HE *oldentry;
463ee0b2 1234 MAGIC* mg;
79072805
LW
1235
1236 if (!hv)
cea2e8a9 1237 Perl_croak(aTHX_ "Bad hash");
79072805 1238 xhv = (XPVHV*)SvANY(hv);
a0d0e21e 1239 oldentry = entry = xhv->xhv_eiter;
463ee0b2 1240
155aba94 1241 if ((mg = SvTIED_mg((SV*)hv, 'P'))) {
8990e307 1242 SV *key = sv_newmortal();
cd1469e6 1243 if (entry) {
fde52b5c 1244 sv_setsv(key, HeSVKEY_force(entry));
cd1469e6 1245 SvREFCNT_dec(HeSVKEY(entry)); /* get rid of previous key */
1246 }
a0d0e21e 1247 else {
ff68c719 1248 char *k;
bbce6d69 1249 HEK *hek;
ff68c719 1250
d33b2eba 1251 xhv->xhv_eiter = entry = new_HE(); /* one HE per MAGICAL hash */
4633a7c4 1252 Zero(entry, 1, HE);
ff68c719 1253 Newz(54, k, HEK_BASESIZE + sizeof(SV*), char);
1254 hek = (HEK*)k;
1255 HeKEY_hek(entry) = hek;
fde52b5c 1256 HeKLEN(entry) = HEf_SVKEY;
a0d0e21e
LW
1257 }
1258 magic_nextpack((SV*) hv,mg,key);
463ee0b2 1259 if (SvOK(key)) {
cd1469e6 1260 /* force key to stay around until next time */
bbce6d69 1261 HeSVKEY_set(entry, SvREFCNT_inc(key));
1262 return entry; /* beware, hent_val is not set */
463ee0b2 1263 }
fde52b5c 1264 if (HeVAL(entry))
1265 SvREFCNT_dec(HeVAL(entry));
ff68c719 1266 Safefree(HeKEY_hek(entry));
d33b2eba 1267 del_HE(entry);
463ee0b2
LW
1268 xhv->xhv_eiter = Null(HE*);
1269 return Null(HE*);
79072805 1270 }
f675dbe5
CB
1271#ifdef DYNAMIC_ENV_FETCH /* set up %ENV for iteration */
1272 if (!entry && HvNAME(hv) && strEQ(HvNAME(hv), ENV_HV_NAME))
1273 prime_env_iter();
1274#endif
463ee0b2 1275
79072805 1276 if (!xhv->xhv_array)
d18c6117
GS
1277 Newz(506, xhv->xhv_array,
1278 PERL_HV_ARRAY_ALLOC_BYTES(xhv->xhv_max + 1), char);
fde52b5c 1279 if (entry)
1280 entry = HeNEXT(entry);
1281 while (!entry) {
1282 ++xhv->xhv_riter;
1283 if (xhv->xhv_riter > xhv->xhv_max) {
1284 xhv->xhv_riter = -1;
1285 break;
79072805 1286 }
fde52b5c 1287 entry = ((HE**)xhv->xhv_array)[xhv->xhv_riter];
1288 }
79072805 1289
72940dca 1290 if (oldentry && HvLAZYDEL(hv)) { /* was deleted earlier? */
1291 HvLAZYDEL_off(hv);
68dc0745 1292 hv_free_ent(hv, oldentry);
72940dca 1293 }
a0d0e21e 1294
79072805
LW
1295 xhv->xhv_eiter = entry;
1296 return entry;
1297}
1298
954c1994
GS
1299/*
1300=for apidoc hv_iterkey
1301
1302Returns the key from the current position of the hash iterator. See
1303C<hv_iterinit>.
1304
1305=cut
1306*/
1307
79072805 1308char *
864dbfa3 1309Perl_hv_iterkey(pTHX_ register HE *entry, I32 *retlen)
79072805 1310{
fde52b5c 1311 if (HeKLEN(entry) == HEf_SVKEY) {
fb73857a 1312 STRLEN len;
1313 char *p = SvPV(HeKEY_sv(entry), len);
1314 *retlen = len;
1315 return p;
fde52b5c 1316 }
1317 else {
1318 *retlen = HeKLEN(entry);
1319 return HeKEY(entry);
1320 }
1321}
1322
1323/* unlike hv_iterval(), this always returns a mortal copy of the key */
954c1994
GS
1324/*
1325=for apidoc hv_iterkeysv
1326
1327Returns the key as an C<SV*> from the current position of the hash
1328iterator. The return value will always be a mortal copy of the key. Also
1329see C<hv_iterinit>.
1330
1331=cut
1332*/
1333
fde52b5c 1334SV *
864dbfa3 1335Perl_hv_iterkeysv(pTHX_ register HE *entry)
fde52b5c 1336{
1337 if (HeKLEN(entry) == HEf_SVKEY)
bbce6d69 1338 return sv_mortalcopy(HeKEY_sv(entry));
fde52b5c 1339 else
79cb57f6 1340 return sv_2mortal(newSVpvn((HeKLEN(entry) ? HeKEY(entry) : ""),
fde52b5c 1341 HeKLEN(entry)));
79072805
LW
1342}
1343
954c1994
GS
1344/*
1345=for apidoc hv_iterval
1346
1347Returns the value from the current position of the hash iterator. See
1348C<hv_iterkey>.
1349
1350=cut
1351*/
1352
79072805 1353SV *
864dbfa3 1354Perl_hv_iterval(pTHX_ HV *hv, register HE *entry)
79072805 1355{
8990e307 1356 if (SvRMAGICAL(hv)) {
463ee0b2 1357 if (mg_find((SV*)hv,'P')) {
8990e307 1358 SV* sv = sv_newmortal();
bbce6d69 1359 if (HeKLEN(entry) == HEf_SVKEY)
1360 mg_copy((SV*)hv, sv, (char*)HeKEY_sv(entry), HEf_SVKEY);
1361 else mg_copy((SV*)hv, sv, HeKEY(entry), HeKLEN(entry));
463ee0b2
LW
1362 return sv;
1363 }
79072805 1364 }
fde52b5c 1365 return HeVAL(entry);
79072805
LW
1366}
1367
954c1994
GS
1368/*
1369=for apidoc hv_iternextsv
1370
1371Performs an C<hv_iternext>, C<hv_iterkey>, and C<hv_iterval> in one
1372operation.
1373
1374=cut
1375*/
1376
a0d0e21e 1377SV *
864dbfa3 1378Perl_hv_iternextsv(pTHX_ HV *hv, char **key, I32 *retlen)
a0d0e21e
LW
1379{
1380 HE *he;
1381 if ( (he = hv_iternext(hv)) == NULL)
1382 return NULL;
1383 *key = hv_iterkey(he, retlen);
1384 return hv_iterval(hv, he);
1385}
1386
954c1994
GS
1387/*
1388=for apidoc hv_magic
1389
1390Adds magic to a hash. See C<sv_magic>.
1391
1392=cut
1393*/
1394
79072805 1395void
864dbfa3 1396Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
79072805 1397{
a0d0e21e 1398 sv_magic((SV*)hv, (SV*)gv, how, Nullch, 0);
79072805 1399}
fde52b5c 1400
bbce6d69 1401char*
864dbfa3 1402Perl_sharepvn(pTHX_ const char *sv, I32 len, U32 hash)
bbce6d69 1403{
ff68c719 1404 return HEK_KEY(share_hek(sv, len, hash));
bbce6d69 1405}
1406
1407/* possibly free a shared string if no one has access to it
fde52b5c 1408 * len and hash must both be valid for str.
1409 */
bbce6d69 1410void
864dbfa3 1411Perl_unsharepvn(pTHX_ const char *str, I32 len, U32 hash)
fde52b5c 1412{
1413 register XPVHV* xhv;
1414 register HE *entry;
1415 register HE **oentry;
1416 register I32 i = 1;
1417 I32 found = 0;
bbce6d69 1418
fde52b5c 1419 /* what follows is the moral equivalent of:
6b88bc9c 1420 if ((Svp = hv_fetch(PL_strtab, tmpsv, FALSE, hash))) {
bbce6d69 1421 if (--*Svp == Nullsv)
6b88bc9c 1422 hv_delete(PL_strtab, str, len, G_DISCARD, hash);
bbce6d69 1423 } */
3280af22 1424 xhv = (XPVHV*)SvANY(PL_strtab);
fde52b5c 1425 /* assert(xhv_array != 0) */
5f08fbcd 1426 LOCK_STRTAB_MUTEX;
fde52b5c 1427 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
bbce6d69 1428 for (entry = *oentry; entry; i=0, oentry = &HeNEXT(entry), entry = *oentry) {
fde52b5c 1429 if (HeHASH(entry) != hash) /* strings can't be equal */
1430 continue;
1431 if (HeKLEN(entry) != len)
1432 continue;
36477c24 1433 if (memNE(HeKEY(entry),str,len)) /* is this it? */
fde52b5c 1434 continue;
1435 found = 1;
bbce6d69 1436 if (--HeVAL(entry) == Nullsv) {
1437 *oentry = HeNEXT(entry);
1438 if (i && !*oentry)
1439 xhv->xhv_fill--;
ff68c719 1440 Safefree(HeKEY_hek(entry));
d33b2eba 1441 del_HE(entry);
bbce6d69 1442 --xhv->xhv_keys;
fde52b5c 1443 }
bbce6d69 1444 break;
fde52b5c 1445 }
333f433b 1446 UNLOCK_STRTAB_MUTEX;
bbce6d69 1447
0453d815
PM
1448 {
1449 dTHR;
1450 if (!found && ckWARN_d(WARN_INTERNAL))
1451 Perl_warner(aTHX_ WARN_INTERNAL, "Attempt to free non-existent shared string");
1452 }
fde52b5c 1453}
1454
bbce6d69 1455/* get a (constant) string ptr from the global string table
1456 * string will get added if it is not already there.
fde52b5c 1457 * len and hash must both be valid for str.
1458 */
bbce6d69 1459HEK *
864dbfa3 1460Perl_share_hek(pTHX_ const char *str, I32 len, register U32 hash)
fde52b5c 1461{
1462 register XPVHV* xhv;
1463 register HE *entry;
1464 register HE **oentry;
1465 register I32 i = 1;
1466 I32 found = 0;
bbce6d69 1467
fde52b5c 1468 /* what follows is the moral equivalent of:
bbce6d69 1469
6b88bc9c
GS
1470 if (!(Svp = hv_fetch(PL_strtab, str, len, FALSE)))
1471 hv_store(PL_strtab, str, len, Nullsv, hash);
bbce6d69 1472 */
3280af22 1473 xhv = (XPVHV*)SvANY(PL_strtab);
fde52b5c 1474 /* assert(xhv_array != 0) */
5f08fbcd 1475 LOCK_STRTAB_MUTEX;
fde52b5c 1476 oentry = &((HE**)xhv->xhv_array)[hash & (I32) xhv->xhv_max];
bbce6d69 1477 for (entry = *oentry; entry; i=0, entry = HeNEXT(entry)) {
fde52b5c 1478 if (HeHASH(entry) != hash) /* strings can't be equal */
1479 continue;
1480 if (HeKLEN(entry) != len)
1481 continue;
36477c24 1482 if (memNE(HeKEY(entry),str,len)) /* is this it? */
fde52b5c 1483 continue;
1484 found = 1;
fde52b5c 1485 break;
1486 }
bbce6d69 1487 if (!found) {
d33b2eba 1488 entry = new_HE();
ff68c719 1489 HeKEY_hek(entry) = save_hek(str, len, hash);
bbce6d69 1490 HeVAL(entry) = Nullsv;
1491 HeNEXT(entry) = *oentry;
1492 *oentry = entry;
1493 xhv->xhv_keys++;
1494 if (i) { /* initial entry? */
1495 ++xhv->xhv_fill;
1496 if (xhv->xhv_keys > xhv->xhv_max)
3280af22 1497 hsplit(PL_strtab);
bbce6d69 1498 }
1499 }
1500
1501 ++HeVAL(entry); /* use value slot as REFCNT */
5f08fbcd 1502 UNLOCK_STRTAB_MUTEX;
ff68c719 1503 return HeKEY_hek(entry);
fde52b5c 1504}
1505
bbce6d69 1506
61c8b479 1507