3 * Copyright (c) 1991-2002, Larry Wall
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.
10 /* typedefs to eliminate some typing */
12 typedef struct hek HEK;
14 /* entry in hash value chain */
16 HE *hent_next; /* next entry in chain */
17 HEK *hent_hek; /* hash key */
18 SV *hent_val; /* scalar value that was hashed */
21 /* hash key -- defined separately for use as shared pointer */
23 U32 hek_hash; /* hash of key */
24 I32 hek_len; /* length of hash key */
25 char hek_key[1]; /* variable-length hash key */
26 /* the hash-key is \0-terminated */
27 /* after the \0 there is a byte telling whether the key is UTF8 */
31 /* This structure must match the beginning of struct xpvmg in sv.h. */
33 char * xhv_array; /* pointer to malloced string */
34 STRLEN xhv_fill; /* how full xhv_array currently is */
35 STRLEN xhv_max; /* subscript of last element of xhv_array */
36 IV xhv_keys; /* how many elements in the array */
37 NV xnv_nv; /* numeric value, if any */
38 #define xhv_placeholders xnv_nv
39 MAGIC* xmg_magic; /* magic for scalar array */
40 HV* xmg_stash; /* class package */
42 I32 xhv_riter; /* current root of iterator */
43 HE *xhv_eiter; /* current entry of iterator */
44 PMOP *xhv_pmroot; /* list of pm's for this package */
45 char *xhv_name; /* name, if a symbol table */
49 /* FYI: This is the "One-at-a-Time" algorithm by Bob Jenkins */
50 /* from requirements by Colin Plumb. */
51 /* (http://burtleburtle.net/bob/hash/doobs.html) */
52 #define PERL_HASH(hash,str,len) \
54 register const char *s_PeRlHaSh = str; \
55 register I32 i_PeRlHaSh = len; \
56 register U32 hash_PeRlHaSh = 0; \
57 while (i_PeRlHaSh--) { \
58 hash_PeRlHaSh += *s_PeRlHaSh++; \
59 hash_PeRlHaSh += (hash_PeRlHaSh << 10); \
60 hash_PeRlHaSh ^= (hash_PeRlHaSh >> 6); \
62 hash_PeRlHaSh += (hash_PeRlHaSh << 3); \
63 hash_PeRlHaSh ^= (hash_PeRlHaSh >> 11); \
64 (hash) = (hash_PeRlHaSh + (hash_PeRlHaSh << 15)); \
68 =head1 Hash Manipulation Functions
70 =for apidoc AmU||HEf_SVKEY
71 This flag, used in the length slot of hash entries and magic structures,
72 specifies the structure contains an C<SV*> pointer where a C<char*> pointer
73 is to be expected. (For information only--not to be used).
77 =for apidoc AmU||Nullhv
80 =head1 Hash Manipulation Functions
82 =for apidoc Am|char*|HvNAME|HV* stash
83 Returns the package name of a stash. See C<SvSTASH>, C<CvSTASH>.
85 =for apidoc Am|void*|HeKEY|HE* he
86 Returns the actual pointer stored in the key slot of the hash entry. The
87 pointer may be either C<char*> or C<SV*>, depending on the value of
88 C<HeKLEN()>. Can be assigned to. The C<HePV()> or C<HeSVKEY()> macros are
89 usually preferable for finding the value of a key.
91 =for apidoc Am|STRLEN|HeKLEN|HE* he
92 If this is negative, and amounts to C<HEf_SVKEY>, it indicates the entry
93 holds an C<SV*> key. Otherwise, holds the actual length of the key. Can
94 be assigned to. The C<HePV()> macro is usually preferable for finding key
97 =for apidoc Am|SV*|HeVAL|HE* he
98 Returns the value slot (type C<SV*>) stored in the hash entry.
100 =for apidoc Am|U32|HeHASH|HE* he
101 Returns the computed hash stored in the hash entry.
103 =for apidoc Am|char*|HePV|HE* he|STRLEN len
104 Returns the key slot of the hash entry as a C<char*> value, doing any
105 necessary dereferencing of possibly C<SV*> keys. The length of the string
106 is placed in C<len> (this is a macro, so do I<not> use C<&len>). If you do
107 not care about what the length of the key is, you may use the global
108 variable C<PL_na>, though this is rather less efficient than using a local
109 variable. Remember though, that hash keys in perl are free to contain
110 embedded nulls, so using C<strlen()> or similar is not a good way to find
111 the length of hash keys. This is very similar to the C<SvPV()> macro
112 described elsewhere in this document.
114 =for apidoc Am|SV*|HeSVKEY|HE* he
115 Returns the key as an C<SV*>, or C<Nullsv> if the hash entry does not
116 contain an C<SV*> key.
118 =for apidoc Am|SV*|HeSVKEY_force|HE* he
119 Returns the key as an C<SV*>. Will create and return a temporary mortal
120 C<SV*> if the hash entry contains only a C<char*> key.
122 =for apidoc Am|SV*|HeSVKEY_set|HE* he|SV* sv
123 Sets the key to a given C<SV*>, taking care to set the appropriate flags to
124 indicate the presence of an C<SV*> key, and returns the same
130 /* these hash entry flags ride on hent_klen (for use only in magic/tied HVs) */
131 #define HEf_SVKEY -2 /* hent_key is an SV* */
134 #define Nullhv Null(HV*)
135 #define HvARRAY(hv) (*(HE***)&((XPVHV*) SvANY(hv))->xhv_array)
136 #define HvFILL(hv) ((XPVHV*) SvANY(hv))->xhv_fill
137 #define HvMAX(hv) ((XPVHV*) SvANY(hv))->xhv_max
138 #define HvRITER(hv) ((XPVHV*) SvANY(hv))->xhv_riter
139 #define HvEITER(hv) ((XPVHV*) SvANY(hv))->xhv_eiter
140 #define HvPMROOT(hv) ((XPVHV*) SvANY(hv))->xhv_pmroot
141 #define HvNAME(hv) ((XPVHV*) SvANY(hv))->xhv_name
143 /* the number of keys (including any placeholers) */
144 #define XHvTOTALKEYS(xhv) ((xhv)->xhv_keys)
146 /* The number of placeholders in the enumerated-keys hash */
147 #define XHvPLACEHOLDERS(xhv) ((xhv)->xhv_placeholders)
149 /* the number of keys that exist() (i.e. excluding placeholders) */
150 #define XHvUSEDKEYS(xhv) (XHvTOTALKEYS(xhv) - (IV)XHvPLACEHOLDERS(xhv))
153 * HvKEYS gets the number of keys that actually exist(), and is provided
154 * for backwards compatibility with old XS code. The core uses HvUSEDKEYS
155 * (keys, excluding placeholdes) and HvTOTALKEYS (including placeholders)
157 #define HvKEYS(hv) XHvUSEDKEYS((XPVHV*) SvANY(hv))
158 #define HvUSEDKEYS(hv) XHvUSEDKEYS((XPVHV*) SvANY(hv))
159 #define HvTOTALKEYS(hv) XHvTOTALKEYS((XPVHV*) SvANY(hv))
160 #define HvPLACEHOLDERS(hv) XHvPLACEHOLDERS((XPVHV*) SvANY(hv))
163 #define HvSHAREKEYS(hv) (SvFLAGS(hv) & SVphv_SHAREKEYS)
164 #define HvSHAREKEYS_on(hv) (SvFLAGS(hv) |= SVphv_SHAREKEYS)
165 #define HvSHAREKEYS_off(hv) (SvFLAGS(hv) &= ~SVphv_SHAREKEYS)
167 #define HvLAZYDEL(hv) (SvFLAGS(hv) & SVphv_LAZYDEL)
168 #define HvLAZYDEL_on(hv) (SvFLAGS(hv) |= SVphv_LAZYDEL)
169 #define HvLAZYDEL_off(hv) (SvFLAGS(hv) &= ~SVphv_LAZYDEL)
171 /* Maybe amagical: */
172 /* #define HV_AMAGICmb(hv) (SvFLAGS(hv) & (SVpgv_badAM | SVpgv_AM)) */
174 #define HV_AMAGIC(hv) (SvFLAGS(hv) & SVpgv_AM)
175 #define HV_AMAGIC_on(hv) (SvFLAGS(hv) |= SVpgv_AM)
176 #define HV_AMAGIC_off(hv) (SvFLAGS(hv) &= ~SVpgv_AM)
179 #define HV_AMAGICbad(hv) (SvFLAGS(hv) & SVpgv_badAM)
180 #define HV_badAMAGIC_on(hv) (SvFLAGS(hv) |= SVpgv_badAM)
181 #define HV_badAMAGIC_off(hv) (SvFLAGS(hv) &= ~SVpgv_badAM)
184 #define Nullhe Null(HE*)
185 #define HeNEXT(he) (he)->hent_next
186 #define HeKEY_hek(he) (he)->hent_hek
187 #define HeKEY(he) HEK_KEY(HeKEY_hek(he))
188 #define HeKEY_sv(he) (*(SV**)HeKEY(he))
189 #define HeKLEN(he) HEK_LEN(HeKEY_hek(he))
190 #define HeKUTF8(he) HEK_UTF8(HeKEY_hek(he))
191 #define HeKLEN_UTF8(he) (HeKUTF8(he) ? -HeKLEN(he) : HeKLEN(he))
192 #define HeVAL(he) (he)->hent_val
193 #define HeHASH(he) HEK_HASH(HeKEY_hek(he))
194 #define HePV(he,lp) ((HeKLEN(he) == HEf_SVKEY) ? \
195 SvPV(HeKEY_sv(he),lp) : \
196 (((lp = HeKLEN(he)) >= 0) ? \
199 #define HeSVKEY(he) ((HeKEY(he) && \
200 HeKLEN(he) == HEf_SVKEY) ? \
201 HeKEY_sv(he) : Nullsv)
203 #define HeSVKEY_force(he) (HeKEY(he) ? \
204 ((HeKLEN(he) == HEf_SVKEY) ? \
206 sv_2mortal(newSVpvn(HeKEY(he), \
209 #define HeSVKEY_set(he,sv) ((HeKLEN(he) = HEf_SVKEY), (HeKEY_sv(he) = sv))
211 #define Nullhek Null(HEK*)
212 #define HEK_BASESIZE STRUCT_OFFSET(HEK, hek_key[0])
213 #define HEK_HASH(hek) (hek)->hek_hash
214 #define HEK_LEN(hek) (hek)->hek_len
215 #define HEK_KEY(hek) (hek)->hek_key
216 #define HEK_UTF8(hek) (*(HEK_KEY(hek)+HEK_LEN(hek)+1))
218 /* calculate HV array allocation */
219 #if defined(STRANGE_MALLOC) || defined(MYMALLOC)
220 # define PERL_HV_ARRAY_ALLOC_BYTES(size) ((size) * sizeof(HE*))
222 # define MALLOC_OVERHEAD 16
223 # define PERL_HV_ARRAY_ALLOC_BYTES(size) \
225 ? (size) * sizeof(HE*) \
226 : (size) * sizeof(HE*) * 2 - MALLOC_OVERHEAD)
229 /* available as a function in hv.c */
230 #define Perl_sharepvn(sv, len, hash) HEK_KEY(share_hek(sv, len, hash))
231 #define sharepvn(sv, len, hash) Perl_sharepvn(sv, len, hash)