VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/nsprpub/lib/ds/plhash.h@ 8107

最後變更 在這個檔案從8107是 1,由 vboxsync 提交於 55 年 前

import

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 6.4 KB
 
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#ifndef plhash_h___
39#define plhash_h___
40/*
41 * API to portable hash table code.
42 */
43#include <stdio.h>
44#include "prtypes.h"
45
46PR_BEGIN_EXTERN_C
47
48typedef struct PLHashEntry PLHashEntry;
49typedef struct PLHashTable PLHashTable;
50typedef PRUint32 PLHashNumber;
51#define PL_HASH_BITS 32 /* Number of bits in PLHashNumber */
52typedef PLHashNumber (PR_CALLBACK *PLHashFunction)(const void *key);
53typedef PRIntn (PR_CALLBACK *PLHashComparator)(const void *v1, const void *v2);
54
55#if defined(XP_OS2_VACPP) && defined(VACPP_FLIP) /* for nsSpaceManager.cpp */
56PR_END_EXTERN_C /* and nsHTMLDocument.cpp */
57#endif
58typedef PRIntn (PR_CALLBACK *PLHashEnumerator)(PLHashEntry *he, PRIntn i, void *arg);
59
60#if defined(XP_OS2_VACPP) && defined(VACPP_FLIP)
61PR_BEGIN_EXTERN_C
62#endif
63
64/* Flag bits in PLHashEnumerator's return value */
65#define HT_ENUMERATE_NEXT 0 /* continue enumerating entries */
66#define HT_ENUMERATE_STOP 1 /* stop enumerating entries */
67#define HT_ENUMERATE_REMOVE 2 /* remove and free the current entry */
68#define HT_ENUMERATE_UNHASH 4 /* just unhash the current entry */
69
70typedef struct PLHashAllocOps {
71 void * (PR_CALLBACK *allocTable)(void *pool, PRSize size);
72 void (PR_CALLBACK *freeTable)(void *pool, void *item);
73 PLHashEntry * (PR_CALLBACK *allocEntry)(void *pool, const void *key);
74 void (PR_CALLBACK *freeEntry)(void *pool, PLHashEntry *he, PRUintn flag);
75} PLHashAllocOps;
76
77#define HT_FREE_VALUE 0 /* just free the entry's value */
78#define HT_FREE_ENTRY 1 /* free value and entire entry */
79
80struct PLHashEntry {
81 PLHashEntry *next; /* hash chain linkage */
82 PLHashNumber keyHash; /* key hash function result */
83 const void *key; /* ptr to opaque key */
84 void *value; /* ptr to opaque value */
85};
86
87struct PLHashTable {
88 PLHashEntry **buckets; /* vector of hash buckets */
89 PRUint32 nentries; /* number of entries in table */
90 PRUint32 shift; /* multiplicative hash shift */
91 PLHashFunction keyHash; /* key hash function */
92 PLHashComparator keyCompare; /* key comparison function */
93 PLHashComparator valueCompare; /* value comparison function */
94 const PLHashAllocOps *allocOps; /* allocation operations */
95 void *allocPriv; /* allocation private data */
96#ifdef HASHMETER
97 PRUint32 nlookups; /* total number of lookups */
98 PRUint32 nsteps; /* number of hash chains traversed */
99 PRUint32 ngrows; /* number of table expansions */
100 PRUint32 nshrinks; /* number of table contractions */
101#endif
102};
103
104/*
105 * Create a new hash table.
106 * If allocOps is null, use default allocator ops built on top of malloc().
107 */
108PR_EXTERN(PLHashTable *)
109PL_NewHashTable(PRUint32 numBuckets, PLHashFunction keyHash,
110 PLHashComparator keyCompare, PLHashComparator valueCompare,
111 const PLHashAllocOps *allocOps, void *allocPriv);
112
113PR_EXTERN(void)
114PL_HashTableDestroy(PLHashTable *ht);
115
116/* Higher level access methods */
117PR_EXTERN(PLHashEntry *)
118PL_HashTableAdd(PLHashTable *ht, const void *key, void *value);
119
120PR_EXTERN(PRBool)
121PL_HashTableRemove(PLHashTable *ht, const void *key);
122
123PR_EXTERN(void *)
124PL_HashTableLookup(PLHashTable *ht, const void *key);
125
126PR_EXTERN(void *)
127PL_HashTableLookupConst(PLHashTable *ht, const void *key);
128
129PR_EXTERN(PRIntn)
130PL_HashTableEnumerateEntries(PLHashTable *ht, PLHashEnumerator f, void *arg);
131
132/* General-purpose C string hash function. */
133PR_EXTERN(PLHashNumber)
134PL_HashString(const void *key);
135
136/* Compare strings using strcmp(), return true if equal. */
137PR_EXTERN(PRIntn)
138PL_CompareStrings(const void *v1, const void *v2);
139
140/* Stub function just returns v1 == v2 */
141PR_EXTERN(PRIntn)
142PL_CompareValues(const void *v1, const void *v2);
143
144/* Low level access methods */
145PR_EXTERN(PLHashEntry **)
146PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key);
147
148PR_EXTERN(PLHashEntry **)
149PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash,
150 const void *key);
151
152PR_EXTERN(PLHashEntry *)
153PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash,
154 const void *key, void *value);
155
156PR_EXTERN(void)
157PL_HashTableRawRemove(PLHashTable *ht, PLHashEntry **hep, PLHashEntry *he);
158
159/* This can be trivially implemented using PL_HashTableEnumerateEntries. */
160PR_EXTERN(PRIntn)
161PL_HashTableDump(PLHashTable *ht, PLHashEnumerator dump, FILE *fp);
162
163PR_END_EXTERN_C
164
165#endif /* plhash_h___ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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