Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** This is the implementation of generic hash-tables
15 ** $Id: hash.c,v 1.31 2008/10/10 17:41:29 drh Exp $
17 #include "sqliteInt.h"
20 /* Turn bulk memory into a hash table object by initializing the
21 ** fields of the Hash structure.
23 ** "pNew" is a pointer to the hash table that is to be initialized.
24 ** "copyKey" is true if the hash table should make its own private
25 ** copy of keys and false if it should just use the supplied pointer.
27 void sqlite3HashInit(Hash *pNew, int copyKey){
29 pNew->copyKey = copyKey!=0;
36 /* Remove all entries from a hash table. Reclaim all memory.
37 ** Call this routine to delete a hash table or to reset a hash table
38 ** to the empty state.
40 void sqlite3HashClear(Hash *pH){
41 HashElem *elem; /* For looping over all elements of the table */
50 HashElem *next_elem = elem->next;
51 if( pH->copyKey && elem->pKey ){
52 sqlite3_free(elem->pKey);
61 ** Hash and comparison functions when the mode is SQLITE_HASH_STRING
63 static int strHash(const void *pKey, int nKey){
64 const char *z = (const char *)pKey;
66 if( nKey<=0 ) nKey = strlen(z);
68 h = (h<<3) ^ h ^ sqlite3UpperToLower[(unsigned char)*z++];
71 return h & 0x7fffffff;
73 static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){
74 if( n1!=n2 ) return 1;
75 return sqlite3StrNICmp((const char*)pKey1,(const char*)pKey2,n1);
79 /* Link an element into the hash table
81 static void insertElement(
82 Hash *pH, /* The complete hash table */
83 struct _ht *pEntry, /* The entry into which pNew is inserted */
84 HashElem *pNew /* The element to be inserted */
86 HashElem *pHead; /* First element already in pEntry */
87 pHead = pEntry->chain;
90 pNew->prev = pHead->prev;
91 if( pHead->prev ){ pHead->prev->next = pNew; }
92 else { pH->first = pNew; }
95 pNew->next = pH->first;
96 if( pH->first ){ pH->first->prev = pNew; }
101 pEntry->chain = pNew;
105 /* Resize the hash table so that it cantains "new_size" buckets.
106 ** "new_size" must be a power of 2. The hash table might fail
107 ** to resize if sqlite3_malloc() fails.
109 static void rehash(Hash *pH, int new_size){
110 struct _ht *new_ht; /* The new hash table */
111 HashElem *elem, *next_elem; /* For looping over existing elements */
113 #ifdef SQLITE_MALLOC_SOFT_LIMIT
114 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
115 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
117 if( new_size==pH->htsize ) return;
120 /* There is a call to sqlite3_malloc() inside rehash(). If there is
121 ** already an allocation at pH->ht, then if this malloc() fails it
122 ** is benign (since failing to resize a hash table is a performance
123 ** hit only, not a fatal error).
125 if( pH->htsize>0 ) sqlite3BeginBenignMalloc();
126 new_ht = (struct _ht *)sqlite3MallocZero( new_size*sizeof(struct _ht) );
127 if( pH->htsize>0 ) sqlite3EndBenignMalloc();
129 if( new_ht==0 ) return;
130 sqlite3_free(pH->ht);
132 pH->htsize = new_size;
133 for(elem=pH->first, pH->first=0; elem; elem = next_elem){
134 int h = strHash(elem->pKey, elem->nKey) & (new_size-1);
135 next_elem = elem->next;
136 insertElement(pH, &new_ht[h], elem);
140 /* This function (for internal use only) locates an element in an
141 ** hash table that matches the given key. The hash for this key has
142 ** already been computed and is passed as the 4th parameter.
144 static HashElem *findElementGivenHash(
145 const Hash *pH, /* The pH to be searched */
146 const void *pKey, /* The key we are searching for */
148 int h /* The hash for this key. */
150 HashElem *elem; /* Used to loop thru the element list */
151 int count; /* Number of elements left to test */
154 struct _ht *pEntry = &pH->ht[h];
155 elem = pEntry->chain;
156 count = pEntry->count;
157 while( count-- && elem ){
158 if( strCompare(elem->pKey,elem->nKey,pKey,nKey)==0 ){
167 /* Remove a single entry from the hash table given a pointer to that
168 ** element and a hash on the element's key.
170 static void removeElementGivenHash(
171 Hash *pH, /* The pH containing "elem" */
172 HashElem* elem, /* The element to be removed from the pH */
173 int h /* Hash value for the element */
177 elem->prev->next = elem->next;
179 pH->first = elem->next;
182 elem->next->prev = elem->prev;
185 if( pEntry->chain==elem ){
186 pEntry->chain = elem->next;
189 if( pEntry->count<=0 ){
193 sqlite3_free(elem->pKey);
195 sqlite3_free( elem );
198 assert( pH->first==0 );
199 assert( pH->count==0 );
200 sqlite3HashClear(pH);
204 /* Attempt to locate an element of the hash table pH with a key
205 ** that matches pKey,nKey. Return a pointer to the corresponding
206 ** HashElem structure for this element if it is found, or NULL
209 HashElem *sqlite3HashFindElem(const Hash *pH, const void *pKey, int nKey){
210 int h; /* A hash on key */
211 HashElem *elem; /* The element that matches key */
213 if( pH==0 || pH->ht==0 ) return 0;
214 h = strHash(pKey,nKey);
215 elem = findElementGivenHash(pH,pKey,nKey, h % pH->htsize);
219 /* Attempt to locate an element of the hash table pH with a key
220 ** that matches pKey,nKey. Return the data for this element if it is
221 ** found, or NULL if there is no match.
223 void *sqlite3HashFind(const Hash *pH, const void *pKey, int nKey){
224 HashElem *elem; /* The element that matches key */
225 elem = sqlite3HashFindElem(pH, pKey, nKey);
226 return elem ? elem->data : 0;
229 /* Insert an element into the hash table pH. The key is pKey,nKey
230 ** and the data is "data".
232 ** If no element exists with a matching key, then a new
233 ** element is created. A copy of the key is made if the copyKey
234 ** flag is set. NULL is returned.
236 ** If another element already exists with the same key, then the
237 ** new data replaces the old data and the old data is returned.
238 ** The key is not copied in this instance. If a malloc fails, then
239 ** the new data is returned and the hash table is unchanged.
241 ** If the "data" parameter to this function is NULL, then the
242 ** element corresponding to "key" is removed from the hash table.
244 void *sqlite3HashInsert(Hash *pH, const void *pKey, int nKey, void *data){
245 int hraw; /* Raw hash value of the key */
246 int h; /* the hash of the key modulo hash table size */
247 HashElem *elem; /* Used to loop thru the element list */
248 HashElem *new_elem; /* New element added to the pH */
251 hraw = strHash(pKey, nKey);
253 h = hraw % pH->htsize;
254 elem = findElementGivenHash(pH,pKey,nKey,h);
256 void *old_data = elem->data;
258 removeElementGivenHash(pH,elem,h);
262 elem->pKey = (void *)pKey;
264 assert(nKey==elem->nKey);
269 if( data==0 ) return 0;
270 new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
271 if( new_elem==0 ) return data;
272 if( pH->copyKey && pKey!=0 ){
273 new_elem->pKey = sqlite3Malloc( nKey );
274 if( new_elem->pKey==0 ){
275 sqlite3_free(new_elem);
278 memcpy((void*)new_elem->pKey, pKey, nKey);
280 new_elem->pKey = (void*)pKey;
282 new_elem->nKey = nKey;
285 rehash(pH, 128/sizeof(pH->ht[0]));
289 sqlite3_free(new_elem->pKey);
291 sqlite3_free(new_elem);
295 if( pH->count > pH->htsize ){
296 rehash(pH,pH->htsize*2);
298 assert( pH->htsize>0 );
299 h = hraw % pH->htsize;
300 insertElement(pH, &pH->ht[h], new_elem);
301 new_elem->data = data;