os/persistentdata/persistentstorage/sql/SQLite364/hash.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2001 September 22
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This is the implementation of generic hash-tables
sl@0
    13
** used in SQLite.
sl@0
    14
**
sl@0
    15
** $Id: hash.c,v 1.31 2008/10/10 17:41:29 drh Exp $
sl@0
    16
*/
sl@0
    17
#include "sqliteInt.h"
sl@0
    18
#include <assert.h>
sl@0
    19
sl@0
    20
/* Turn bulk memory into a hash table object by initializing the
sl@0
    21
** fields of the Hash structure.
sl@0
    22
**
sl@0
    23
** "pNew" is a pointer to the hash table that is to be initialized.
sl@0
    24
** "copyKey" is true if the hash table should make its own private
sl@0
    25
** copy of keys and false if it should just use the supplied pointer.
sl@0
    26
*/
sl@0
    27
void sqlite3HashInit(Hash *pNew, int copyKey){
sl@0
    28
  assert( pNew!=0 );
sl@0
    29
  pNew->copyKey = copyKey!=0;
sl@0
    30
  pNew->first = 0;
sl@0
    31
  pNew->count = 0;
sl@0
    32
  pNew->htsize = 0;
sl@0
    33
  pNew->ht = 0;
sl@0
    34
}
sl@0
    35
sl@0
    36
/* Remove all entries from a hash table.  Reclaim all memory.
sl@0
    37
** Call this routine to delete a hash table or to reset a hash table
sl@0
    38
** to the empty state.
sl@0
    39
*/
sl@0
    40
void sqlite3HashClear(Hash *pH){
sl@0
    41
  HashElem *elem;         /* For looping over all elements of the table */
sl@0
    42
sl@0
    43
  assert( pH!=0 );
sl@0
    44
  elem = pH->first;
sl@0
    45
  pH->first = 0;
sl@0
    46
  sqlite3_free(pH->ht);
sl@0
    47
  pH->ht = 0;
sl@0
    48
  pH->htsize = 0;
sl@0
    49
  while( elem ){
sl@0
    50
    HashElem *next_elem = elem->next;
sl@0
    51
    if( pH->copyKey && elem->pKey ){
sl@0
    52
      sqlite3_free(elem->pKey);
sl@0
    53
    }
sl@0
    54
    sqlite3_free(elem);
sl@0
    55
    elem = next_elem;
sl@0
    56
  }
sl@0
    57
  pH->count = 0;
sl@0
    58
}
sl@0
    59
sl@0
    60
/*
sl@0
    61
** Hash and comparison functions when the mode is SQLITE_HASH_STRING
sl@0
    62
*/
sl@0
    63
static int strHash(const void *pKey, int nKey){
sl@0
    64
  const char *z = (const char *)pKey;
sl@0
    65
  int h = 0;
sl@0
    66
  if( nKey<=0 ) nKey = strlen(z);
sl@0
    67
  while( nKey > 0  ){
sl@0
    68
    h = (h<<3) ^ h ^ sqlite3UpperToLower[(unsigned char)*z++];
sl@0
    69
    nKey--;
sl@0
    70
  }
sl@0
    71
  return h & 0x7fffffff;
sl@0
    72
}
sl@0
    73
static int strCompare(const void *pKey1, int n1, const void *pKey2, int n2){
sl@0
    74
  if( n1!=n2 ) return 1;
sl@0
    75
  return sqlite3StrNICmp((const char*)pKey1,(const char*)pKey2,n1);
sl@0
    76
}
sl@0
    77
sl@0
    78
sl@0
    79
/* Link an element into the hash table
sl@0
    80
*/
sl@0
    81
static void insertElement(
sl@0
    82
  Hash *pH,              /* The complete hash table */
sl@0
    83
  struct _ht *pEntry,    /* The entry into which pNew is inserted */
sl@0
    84
  HashElem *pNew         /* The element to be inserted */
sl@0
    85
){
sl@0
    86
  HashElem *pHead;       /* First element already in pEntry */
sl@0
    87
  pHead = pEntry->chain;
sl@0
    88
  if( pHead ){
sl@0
    89
    pNew->next = pHead;
sl@0
    90
    pNew->prev = pHead->prev;
sl@0
    91
    if( pHead->prev ){ pHead->prev->next = pNew; }
sl@0
    92
    else             { pH->first = pNew; }
sl@0
    93
    pHead->prev = pNew;
sl@0
    94
  }else{
sl@0
    95
    pNew->next = pH->first;
sl@0
    96
    if( pH->first ){ pH->first->prev = pNew; }
sl@0
    97
    pNew->prev = 0;
sl@0
    98
    pH->first = pNew;
sl@0
    99
  }
sl@0
   100
  pEntry->count++;
sl@0
   101
  pEntry->chain = pNew;
sl@0
   102
}
sl@0
   103
sl@0
   104
sl@0
   105
/* Resize the hash table so that it cantains "new_size" buckets.
sl@0
   106
** "new_size" must be a power of 2.  The hash table might fail 
sl@0
   107
** to resize if sqlite3_malloc() fails.
sl@0
   108
*/
sl@0
   109
static void rehash(Hash *pH, int new_size){
sl@0
   110
  struct _ht *new_ht;            /* The new hash table */
sl@0
   111
  HashElem *elem, *next_elem;    /* For looping over existing elements */
sl@0
   112
sl@0
   113
#ifdef SQLITE_MALLOC_SOFT_LIMIT
sl@0
   114
  if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
sl@0
   115
    new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
sl@0
   116
  }
sl@0
   117
  if( new_size==pH->htsize ) return;
sl@0
   118
#endif
sl@0
   119
sl@0
   120
  /* There is a call to sqlite3_malloc() inside rehash(). If there is
sl@0
   121
  ** already an allocation at pH->ht, then if this malloc() fails it
sl@0
   122
  ** is benign (since failing to resize a hash table is a performance
sl@0
   123
  ** hit only, not a fatal error).
sl@0
   124
  */
sl@0
   125
  if( pH->htsize>0 ) sqlite3BeginBenignMalloc();
sl@0
   126
  new_ht = (struct _ht *)sqlite3MallocZero( new_size*sizeof(struct _ht) );
sl@0
   127
  if( pH->htsize>0 ) sqlite3EndBenignMalloc();
sl@0
   128
sl@0
   129
  if( new_ht==0 ) return;
sl@0
   130
  sqlite3_free(pH->ht);
sl@0
   131
  pH->ht = new_ht;
sl@0
   132
  pH->htsize = new_size;
sl@0
   133
  for(elem=pH->first, pH->first=0; elem; elem = next_elem){
sl@0
   134
    int h = strHash(elem->pKey, elem->nKey) & (new_size-1);
sl@0
   135
    next_elem = elem->next;
sl@0
   136
    insertElement(pH, &new_ht[h], elem);
sl@0
   137
  }
sl@0
   138
}
sl@0
   139
sl@0
   140
/* This function (for internal use only) locates an element in an
sl@0
   141
** hash table that matches the given key.  The hash for this key has
sl@0
   142
** already been computed and is passed as the 4th parameter.
sl@0
   143
*/
sl@0
   144
static HashElem *findElementGivenHash(
sl@0
   145
  const Hash *pH,     /* The pH to be searched */
sl@0
   146
  const void *pKey,   /* The key we are searching for */
sl@0
   147
  int nKey,
sl@0
   148
  int h               /* The hash for this key. */
sl@0
   149
){
sl@0
   150
  HashElem *elem;                /* Used to loop thru the element list */
sl@0
   151
  int count;                     /* Number of elements left to test */
sl@0
   152
sl@0
   153
  if( pH->ht ){
sl@0
   154
    struct _ht *pEntry = &pH->ht[h];
sl@0
   155
    elem = pEntry->chain;
sl@0
   156
    count = pEntry->count;
sl@0
   157
    while( count-- && elem ){
sl@0
   158
      if( strCompare(elem->pKey,elem->nKey,pKey,nKey)==0 ){ 
sl@0
   159
        return elem;
sl@0
   160
      }
sl@0
   161
      elem = elem->next;
sl@0
   162
    }
sl@0
   163
  }
sl@0
   164
  return 0;
sl@0
   165
}
sl@0
   166
sl@0
   167
/* Remove a single entry from the hash table given a pointer to that
sl@0
   168
** element and a hash on the element's key.
sl@0
   169
*/
sl@0
   170
static void removeElementGivenHash(
sl@0
   171
  Hash *pH,         /* The pH containing "elem" */
sl@0
   172
  HashElem* elem,   /* The element to be removed from the pH */
sl@0
   173
  int h             /* Hash value for the element */
sl@0
   174
){
sl@0
   175
  struct _ht *pEntry;
sl@0
   176
  if( elem->prev ){
sl@0
   177
    elem->prev->next = elem->next; 
sl@0
   178
  }else{
sl@0
   179
    pH->first = elem->next;
sl@0
   180
  }
sl@0
   181
  if( elem->next ){
sl@0
   182
    elem->next->prev = elem->prev;
sl@0
   183
  }
sl@0
   184
  pEntry = &pH->ht[h];
sl@0
   185
  if( pEntry->chain==elem ){
sl@0
   186
    pEntry->chain = elem->next;
sl@0
   187
  }
sl@0
   188
  pEntry->count--;
sl@0
   189
  if( pEntry->count<=0 ){
sl@0
   190
    pEntry->chain = 0;
sl@0
   191
  }
sl@0
   192
  if( pH->copyKey ){
sl@0
   193
    sqlite3_free(elem->pKey);
sl@0
   194
  }
sl@0
   195
  sqlite3_free( elem );
sl@0
   196
  pH->count--;
sl@0
   197
  if( pH->count<=0 ){
sl@0
   198
    assert( pH->first==0 );
sl@0
   199
    assert( pH->count==0 );
sl@0
   200
    sqlite3HashClear(pH);
sl@0
   201
  }
sl@0
   202
}
sl@0
   203
sl@0
   204
/* Attempt to locate an element of the hash table pH with a key
sl@0
   205
** that matches pKey,nKey.  Return a pointer to the corresponding 
sl@0
   206
** HashElem structure for this element if it is found, or NULL
sl@0
   207
** otherwise.
sl@0
   208
*/
sl@0
   209
HashElem *sqlite3HashFindElem(const Hash *pH, const void *pKey, int nKey){
sl@0
   210
  int h;             /* A hash on key */
sl@0
   211
  HashElem *elem;    /* The element that matches key */
sl@0
   212
sl@0
   213
  if( pH==0 || pH->ht==0 ) return 0;
sl@0
   214
  h = strHash(pKey,nKey);
sl@0
   215
  elem = findElementGivenHash(pH,pKey,nKey, h % pH->htsize);
sl@0
   216
  return elem;
sl@0
   217
}
sl@0
   218
sl@0
   219
/* Attempt to locate an element of the hash table pH with a key
sl@0
   220
** that matches pKey,nKey.  Return the data for this element if it is
sl@0
   221
** found, or NULL if there is no match.
sl@0
   222
*/
sl@0
   223
void *sqlite3HashFind(const Hash *pH, const void *pKey, int nKey){
sl@0
   224
  HashElem *elem;    /* The element that matches key */
sl@0
   225
  elem = sqlite3HashFindElem(pH, pKey, nKey);
sl@0
   226
  return elem ? elem->data : 0;
sl@0
   227
}
sl@0
   228
sl@0
   229
/* Insert an element into the hash table pH.  The key is pKey,nKey
sl@0
   230
** and the data is "data".
sl@0
   231
**
sl@0
   232
** If no element exists with a matching key, then a new
sl@0
   233
** element is created.  A copy of the key is made if the copyKey
sl@0
   234
** flag is set.  NULL is returned.
sl@0
   235
**
sl@0
   236
** If another element already exists with the same key, then the
sl@0
   237
** new data replaces the old data and the old data is returned.
sl@0
   238
** The key is not copied in this instance.  If a malloc fails, then
sl@0
   239
** the new data is returned and the hash table is unchanged.
sl@0
   240
**
sl@0
   241
** If the "data" parameter to this function is NULL, then the
sl@0
   242
** element corresponding to "key" is removed from the hash table.
sl@0
   243
*/
sl@0
   244
void *sqlite3HashInsert(Hash *pH, const void *pKey, int nKey, void *data){
sl@0
   245
  int hraw;             /* Raw hash value of the key */
sl@0
   246
  int h;                /* the hash of the key modulo hash table size */
sl@0
   247
  HashElem *elem;       /* Used to loop thru the element list */
sl@0
   248
  HashElem *new_elem;   /* New element added to the pH */
sl@0
   249
sl@0
   250
  assert( pH!=0 );
sl@0
   251
  hraw = strHash(pKey, nKey);
sl@0
   252
  if( pH->htsize ){
sl@0
   253
    h = hraw % pH->htsize;
sl@0
   254
    elem = findElementGivenHash(pH,pKey,nKey,h);
sl@0
   255
    if( elem ){
sl@0
   256
      void *old_data = elem->data;
sl@0
   257
      if( data==0 ){
sl@0
   258
        removeElementGivenHash(pH,elem,h);
sl@0
   259
      }else{
sl@0
   260
        elem->data = data;
sl@0
   261
        if( !pH->copyKey ){
sl@0
   262
          elem->pKey = (void *)pKey;
sl@0
   263
        }
sl@0
   264
        assert(nKey==elem->nKey);
sl@0
   265
      }
sl@0
   266
      return old_data;
sl@0
   267
    }
sl@0
   268
  }
sl@0
   269
  if( data==0 ) return 0;
sl@0
   270
  new_elem = (HashElem*)sqlite3Malloc( sizeof(HashElem) );
sl@0
   271
  if( new_elem==0 ) return data;
sl@0
   272
  if( pH->copyKey && pKey!=0 ){
sl@0
   273
    new_elem->pKey = sqlite3Malloc( nKey );
sl@0
   274
    if( new_elem->pKey==0 ){
sl@0
   275
      sqlite3_free(new_elem);
sl@0
   276
      return data;
sl@0
   277
    }
sl@0
   278
    memcpy((void*)new_elem->pKey, pKey, nKey);
sl@0
   279
  }else{
sl@0
   280
    new_elem->pKey = (void*)pKey;
sl@0
   281
  }
sl@0
   282
  new_elem->nKey = nKey;
sl@0
   283
  pH->count++;
sl@0
   284
  if( pH->htsize==0 ){
sl@0
   285
    rehash(pH, 128/sizeof(pH->ht[0]));
sl@0
   286
    if( pH->htsize==0 ){
sl@0
   287
      pH->count = 0;
sl@0
   288
      if( pH->copyKey ){
sl@0
   289
        sqlite3_free(new_elem->pKey);
sl@0
   290
      }
sl@0
   291
      sqlite3_free(new_elem);
sl@0
   292
      return data;
sl@0
   293
    }
sl@0
   294
  }
sl@0
   295
  if( pH->count > pH->htsize ){
sl@0
   296
    rehash(pH,pH->htsize*2);
sl@0
   297
  }
sl@0
   298
  assert( pH->htsize>0 );
sl@0
   299
  h = hraw % pH->htsize;
sl@0
   300
  insertElement(pH, &pH->ht[h], new_elem);
sl@0
   301
  new_elem->data = data;
sl@0
   302
  return 0;
sl@0
   303
}