VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/lib/ds/plhash.c@ 102300

Last change on this file since 102300 was 101999, checked in by vboxsync, 17 months ago

libs/xpcom/nsprpub/lib: Convert from PR_ASSERT to IPRT assertions, bugref:10545

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.8 KB
Line 
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2/* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 *
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
9 *
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
14 *
15 * The Original Code is the Netscape Portable Runtime (NSPR).
16 *
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
21 *
22 * Contributor(s):
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38/*
39 * PL hash table package.
40 */
41#include "plhash.h"
42#include "prbit.h"
43#include "prmem.h"
44#include "prtypes.h"
45#include <stdlib.h>
46#include <string.h>
47
48#include <iprt/assert.h>
49
50/* Compute the number of buckets in ht */
51#define NBUCKETS(ht) (1 << (PL_HASH_BITS - (ht)->shift))
52
53/* The smallest table has 16 buckets */
54#define MINBUCKETSLOG2 4
55#define MINBUCKETS (1 << MINBUCKETSLOG2)
56
57/* Compute the maximum entries given n buckets that we will tolerate, ~90% */
58#define OVERLOADED(n) ((n) - ((n) >> 3))
59
60/* Compute the number of entries below which we shrink the table by half */
61#define UNDERLOADED(n) (((n) > MINBUCKETS) ? ((n) >> 2) : 0)
62
63/*
64** Stubs for default hash allocator ops.
65*/
66static void * PR_CALLBACK
67DefaultAllocTable(void *pool, PRSize size)
68{
69 return PR_MALLOC(size);
70}
71
72static void PR_CALLBACK
73DefaultFreeTable(void *pool, void *item)
74{
75 PR_Free(item);
76}
77
78static PLHashEntry * PR_CALLBACK
79DefaultAllocEntry(void *pool, const void *key)
80{
81 return PR_NEW(PLHashEntry);
82}
83
84static void PR_CALLBACK
85DefaultFreeEntry(void *pool, PLHashEntry *he, PRUintn flag)
86{
87 if (flag == HT_FREE_ENTRY)
88 PR_Free(he);
89}
90
91static PLHashAllocOps defaultHashAllocOps = {
92 DefaultAllocTable, DefaultFreeTable,
93 DefaultAllocEntry, DefaultFreeEntry
94};
95
96PR_IMPLEMENT(PLHashTable *)
97PL_NewHashTable(PRUint32 n, PLHashFunction keyHash,
98 PLHashComparator keyCompare, PLHashComparator valueCompare,
99 const PLHashAllocOps *allocOps, void *allocPriv)
100{
101 PLHashTable *ht;
102 PRSize nb;
103
104 if (n <= MINBUCKETS) {
105 n = MINBUCKETSLOG2;
106 } else {
107 n = PR_CeilingLog2(n);
108 if ((PRInt32)n < 0)
109 return 0;
110 }
111
112 if (!allocOps) allocOps = &defaultHashAllocOps;
113
114 ht = (PLHashTable*)((*allocOps->allocTable)(allocPriv, sizeof *ht));
115 if (!ht)
116 return 0;
117 memset(ht, 0, sizeof *ht);
118 ht->shift = PL_HASH_BITS - n;
119 n = 1 << n;
120
121 nb = n * sizeof(PLHashEntry *);
122 ht->buckets = (PLHashEntry**)((*allocOps->allocTable)(allocPriv, nb));
123 if (!ht->buckets) {
124 (*allocOps->freeTable)(allocPriv, ht);
125 return 0;
126 }
127 memset(ht->buckets, 0, nb);
128
129 ht->keyHash = keyHash;
130 ht->keyCompare = keyCompare;
131 ht->valueCompare = valueCompare;
132 ht->allocOps = allocOps;
133 ht->allocPriv = allocPriv;
134 return ht;
135}
136
137PR_IMPLEMENT(void)
138PL_HashTableDestroy(PLHashTable *ht)
139{
140 PRUint32 i, n;
141 PLHashEntry *he, *next;
142 const PLHashAllocOps *allocOps = ht->allocOps;
143 void *allocPriv = ht->allocPriv;
144
145 n = NBUCKETS(ht);
146 for (i = 0; i < n; i++) {
147 for (he = ht->buckets[i]; he; he = next) {
148 next = he->next;
149 (*allocOps->freeEntry)(allocPriv, he, HT_FREE_ENTRY);
150 }
151 }
152#ifdef DEBUG
153 memset(ht->buckets, 0xDB, n * sizeof ht->buckets[0]);
154#endif
155 (*allocOps->freeTable)(allocPriv, ht->buckets);
156#ifdef DEBUG
157 memset(ht, 0xDB, sizeof *ht);
158#endif
159 (*allocOps->freeTable)(allocPriv, ht);
160}
161
162/*
163** Multiplicative hash, from Knuth 6.4.
164*/
165#define GOLDEN_RATIO 0x9E3779B9U /* 2/(1+sqrt(5))*(2^32) */
166
167PR_IMPLEMENT(PLHashEntry **)
168PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key)
169{
170 PLHashEntry *he, **hep, **hep0;
171 PLHashNumber h;
172
173 h = keyHash * GOLDEN_RATIO;
174 h >>= ht->shift;
175 hep = hep0 = &ht->buckets[h];
176 while ((he = *hep) != 0) {
177 if (he->keyHash == keyHash && (*ht->keyCompare)(key, he->key)) {
178 /* Move to front of chain if not already there */
179 if (hep != hep0) {
180 *hep = he->next;
181 he->next = *hep0;
182 *hep0 = he;
183 }
184 return hep0;
185 }
186 hep = &he->next;
187 }
188 return hep;
189}
190
191/*
192** Same as PL_HashTableRawLookup but doesn't reorder the hash entries.
193*/
194PR_IMPLEMENT(PLHashEntry **)
195PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash,
196 const void *key)
197{
198 PLHashEntry *he, **hep;
199 PLHashNumber h;
200
201 h = keyHash * GOLDEN_RATIO;
202 h >>= ht->shift;
203 hep = &ht->buckets[h];
204 while ((he = *hep) != 0) {
205 if (he->keyHash == keyHash && (*ht->keyCompare)(key, he->key)) {
206 break;
207 }
208 hep = &he->next;
209 }
210 return hep;
211}
212
213PR_IMPLEMENT(PLHashEntry *)
214PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep,
215 PLHashNumber keyHash, const void *key, void *value)
216{
217 PRUint32 i, n;
218 PLHashEntry *he, *next, **oldbuckets;
219 PRSize nb;
220
221 /* Grow the table if it is overloaded */
222 n = NBUCKETS(ht);
223 if (ht->nentries >= OVERLOADED(n)) {
224 oldbuckets = ht->buckets;
225
226 nb = 2 * n * sizeof(PLHashEntry *);
227 ht->buckets = (PLHashEntry**)
228 ((*ht->allocOps->allocTable)(ht->allocPriv, nb));
229 if (!ht->buckets) {
230 ht->buckets = oldbuckets;
231 return 0;
232 }
233 memset(ht->buckets, 0, nb);
234 ht->shift--;
235
236 for (i = 0; i < n; i++) {
237 for (he = oldbuckets[i]; he; he = next) {
238 next = he->next;
239 hep = PL_HashTableRawLookup(ht, he->keyHash, he->key);
240 Assert(*hep == 0);
241 he->next = 0;
242 *hep = he;
243 }
244 }
245#ifdef DEBUG
246 memset(oldbuckets, 0xDB, n * sizeof oldbuckets[0]);
247#endif
248 (*ht->allocOps->freeTable)(ht->allocPriv, oldbuckets);
249 hep = PL_HashTableRawLookup(ht, keyHash, key);
250 }
251
252 /* Make a new key value entry */
253 he = (*ht->allocOps->allocEntry)(ht->allocPriv, key);
254 if (!he)
255 return 0;
256 he->keyHash = keyHash;
257 he->key = key;
258 he->value = value;
259 he->next = *hep;
260 *hep = he;
261 ht->nentries++;
262 return he;
263}
264
265PR_IMPLEMENT(PLHashEntry *)
266PL_HashTableAdd(PLHashTable *ht, const void *key, void *value)
267{
268 PLHashNumber keyHash;
269 PLHashEntry *he, **hep;
270
271 keyHash = (*ht->keyHash)(key);
272 hep = PL_HashTableRawLookup(ht, keyHash, key);
273 if ((he = *hep) != 0) {
274 /* Hit; see if values match */
275 if ((*ht->valueCompare)(he->value, value)) {
276 /* key,value pair is already present in table */
277 return he;
278 }
279 if (he->value)
280 (*ht->allocOps->freeEntry)(ht->allocPriv, he, HT_FREE_VALUE);
281 he->value = value;
282 return he;
283 }
284 return PL_HashTableRawAdd(ht, hep, keyHash, key, value);
285}
286
287PR_IMPLEMENT(void)
288PL_HashTableRawRemove(PLHashTable *ht, PLHashEntry **hep, PLHashEntry *he)
289{
290 PRUint32 i, n;
291 PLHashEntry *next, **oldbuckets;
292 PRSize nb;
293
294 *hep = he->next;
295 (*ht->allocOps->freeEntry)(ht->allocPriv, he, HT_FREE_ENTRY);
296
297 /* Shrink table if it's underloaded */
298 n = NBUCKETS(ht);
299 if (--ht->nentries < UNDERLOADED(n)) {
300 oldbuckets = ht->buckets;
301 nb = n * sizeof(PLHashEntry*) / 2;
302 ht->buckets = (PLHashEntry**)(
303 (*ht->allocOps->allocTable)(ht->allocPriv, nb));
304 if (!ht->buckets) {
305 ht->buckets = oldbuckets;
306 return;
307 }
308 memset(ht->buckets, 0, nb);
309 ht->shift++;
310
311 for (i = 0; i < n; i++) {
312 for (he = oldbuckets[i]; he; he = next) {
313 next = he->next;
314 hep = PL_HashTableRawLookup(ht, he->keyHash, he->key);
315 Assert(*hep == 0);
316 he->next = 0;
317 *hep = he;
318 }
319 }
320#ifdef DEBUG
321 memset(oldbuckets, 0xDB, n * sizeof oldbuckets[0]);
322#endif
323 (*ht->allocOps->freeTable)(ht->allocPriv, oldbuckets);
324 }
325}
326
327PR_IMPLEMENT(PRBool)
328PL_HashTableRemove(PLHashTable *ht, const void *key)
329{
330 PLHashNumber keyHash;
331 PLHashEntry *he, **hep;
332
333 keyHash = (*ht->keyHash)(key);
334 hep = PL_HashTableRawLookup(ht, keyHash, key);
335 if ((he = *hep) == 0)
336 return PR_FALSE;
337
338 /* Hit; remove element */
339 PL_HashTableRawRemove(ht, hep, he);
340 return PR_TRUE;
341}
342
343PR_IMPLEMENT(void *)
344PL_HashTableLookup(PLHashTable *ht, const void *key)
345{
346 PLHashNumber keyHash;
347 PLHashEntry *he, **hep;
348
349 keyHash = (*ht->keyHash)(key);
350 hep = PL_HashTableRawLookup(ht, keyHash, key);
351 if ((he = *hep) != 0) {
352 return he->value;
353 }
354 return 0;
355}
356
357/*
358** Same as PL_HashTableLookup but doesn't reorder the hash entries.
359*/
360PR_IMPLEMENT(void *)
361PL_HashTableLookupConst(PLHashTable *ht, const void *key)
362{
363 PLHashNumber keyHash;
364 PLHashEntry *he, **hep;
365
366 keyHash = (*ht->keyHash)(key);
367 hep = PL_HashTableRawLookupConst(ht, keyHash, key);
368 if ((he = *hep) != 0) {
369 return he->value;
370 }
371 return 0;
372}
373
374/*
375** Iterate over the entries in the hash table calling func for each
376** entry found. Stop if "f" says to (return value & PR_ENUMERATE_STOP).
377** Return a count of the number of elements scanned.
378*/
379PR_IMPLEMENT(int)
380PL_HashTableEnumerateEntries(PLHashTable *ht, PLHashEnumerator f, void *arg)
381{
382 PLHashEntry *he, **hep;
383 PRUint32 i, nbuckets;
384 int rv, n = 0;
385 PLHashEntry *todo = 0;
386
387 nbuckets = NBUCKETS(ht);
388 for (i = 0; i < nbuckets; i++) {
389 hep = &ht->buckets[i];
390 while ((he = *hep) != 0) {
391 rv = (*f)(he, n, arg);
392 n++;
393 if (rv & (HT_ENUMERATE_REMOVE | HT_ENUMERATE_UNHASH)) {
394 *hep = he->next;
395 if (rv & HT_ENUMERATE_REMOVE) {
396 he->next = todo;
397 todo = he;
398 }
399 } else {
400 hep = &he->next;
401 }
402 if (rv & HT_ENUMERATE_STOP) {
403 goto out;
404 }
405 }
406 }
407
408out:
409 hep = &todo;
410 while ((he = *hep) != 0) {
411 PL_HashTableRawRemove(ht, hep, he);
412 }
413 return n;
414}
415
416PR_IMPLEMENT(int)
417PL_HashTableDump(PLHashTable *ht, PLHashEnumerator dump, FILE *fp)
418{
419 int count;
420
421 count = PL_HashTableEnumerateEntries(ht, dump, fp);
422 return count;
423}
424
425PR_IMPLEMENT(PLHashNumber)
426PL_HashString(const void *key)
427{
428 PLHashNumber h;
429 const PRUint8 *s;
430
431 h = 0;
432 for (s = (const PRUint8*)key; *s; s++)
433 h = (h >> 28) ^ (h << 4) ^ *s;
434 return h;
435}
436
437PR_IMPLEMENT(int)
438PL_CompareStrings(const void *v1, const void *v2)
439{
440 return strcmp((const char*)v1, (const char*)v2) == 0;
441}
442
443PR_IMPLEMENT(int)
444PL_CompareValues(const void *v1, const void *v2)
445{
446 return v1 == v2;
447}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette