os/persistentdata/persistentstorage/sql/SQLite/hash.h
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 header file for the generic hash-table implemenation
sl@0
    13
** used in SQLite.
sl@0
    14
**
sl@0
    15
** $Id: hash.h,v 1.11 2007/09/04 14:31:47 danielk1977 Exp $
sl@0
    16
*/
sl@0
    17
#ifndef _SQLITE_HASH_H_
sl@0
    18
#define _SQLITE_HASH_H_
sl@0
    19
sl@0
    20
/* Forward declarations of structures. */
sl@0
    21
typedef struct Hash Hash;
sl@0
    22
typedef struct HashElem HashElem;
sl@0
    23
sl@0
    24
/* A complete hash table is an instance of the following structure.
sl@0
    25
** The internals of this structure are intended to be opaque -- client
sl@0
    26
** code should not attempt to access or modify the fields of this structure
sl@0
    27
** directly.  Change this structure only by using the routines below.
sl@0
    28
** However, many of the "procedures" and "functions" for modifying and
sl@0
    29
** accessing this structure are really macros, so we can't really make
sl@0
    30
** this structure opaque.
sl@0
    31
*/
sl@0
    32
struct Hash {
sl@0
    33
  char keyClass;          /* SQLITE_HASH_INT, _POINTER, _STRING, _BINARY */
sl@0
    34
  char copyKey;           /* True if copy of key made on insert */
sl@0
    35
  int count;              /* Number of entries in this table */
sl@0
    36
  int htsize;             /* Number of buckets in the hash table */
sl@0
    37
  HashElem *first;        /* The first element of the array */
sl@0
    38
  struct _ht {            /* the hash table */
sl@0
    39
    int count;               /* Number of entries with this hash */
sl@0
    40
    HashElem *chain;         /* Pointer to first entry with this hash */
sl@0
    41
  } *ht;
sl@0
    42
};
sl@0
    43
sl@0
    44
/* Each element in the hash table is an instance of the following 
sl@0
    45
** structure.  All elements are stored on a single doubly-linked list.
sl@0
    46
**
sl@0
    47
** Again, this structure is intended to be opaque, but it can't really
sl@0
    48
** be opaque because it is used by macros.
sl@0
    49
*/
sl@0
    50
struct HashElem {
sl@0
    51
  HashElem *next, *prev;   /* Next and previous elements in the table */
sl@0
    52
  void *data;              /* Data associated with this element */
sl@0
    53
  void *pKey; int nKey;    /* Key associated with this element */
sl@0
    54
};
sl@0
    55
sl@0
    56
/*
sl@0
    57
** There are 4 different modes of operation for a hash table:
sl@0
    58
**
sl@0
    59
**   SQLITE_HASH_INT         nKey is used as the key and pKey is ignored.
sl@0
    60
**
sl@0
    61
**   SQLITE_HASH_POINTER     pKey is used as the key and nKey is ignored.
sl@0
    62
**
sl@0
    63
**   SQLITE_HASH_STRING      pKey points to a string that is nKey bytes long
sl@0
    64
**                           (including the null-terminator, if any).  Case
sl@0
    65
**                           is ignored in comparisons.
sl@0
    66
**
sl@0
    67
**   SQLITE_HASH_BINARY      pKey points to binary data nKey bytes long. 
sl@0
    68
**                           memcmp() is used to compare keys.
sl@0
    69
**
sl@0
    70
** A copy of the key is made for SQLITE_HASH_STRING and SQLITE_HASH_BINARY
sl@0
    71
** if the copyKey parameter to HashInit is 1.  
sl@0
    72
*/
sl@0
    73
/* #define SQLITE_HASH_INT       1 // NOT USED */
sl@0
    74
/* #define SQLITE_HASH_POINTER   2 // NOT USED */
sl@0
    75
#define SQLITE_HASH_STRING    3
sl@0
    76
#define SQLITE_HASH_BINARY    4
sl@0
    77
sl@0
    78
/*
sl@0
    79
** Access routines.  To delete, insert a NULL pointer.
sl@0
    80
*/
sl@0
    81
void sqlite3HashInit(Hash*, int keytype, int copyKey);
sl@0
    82
void *sqlite3HashInsert(Hash*, const void *pKey, int nKey, void *pData);
sl@0
    83
void *sqlite3HashFind(const Hash*, const void *pKey, int nKey);
sl@0
    84
HashElem *sqlite3HashFindElem(const Hash*, const void *pKey, int nKey);
sl@0
    85
void sqlite3HashClear(Hash*);
sl@0
    86
sl@0
    87
/*
sl@0
    88
** Macros for looping over all elements of a hash table.  The idiom is
sl@0
    89
** like this:
sl@0
    90
**
sl@0
    91
**   Hash h;
sl@0
    92
**   HashElem *p;
sl@0
    93
**   ...
sl@0
    94
**   for(p=sqliteHashFirst(&h); p; p=sqliteHashNext(p)){
sl@0
    95
**     SomeStructure *pData = sqliteHashData(p);
sl@0
    96
**     // do something with pData
sl@0
    97
**   }
sl@0
    98
*/
sl@0
    99
#define sqliteHashFirst(H)  ((H)->first)
sl@0
   100
#define sqliteHashNext(E)   ((E)->next)
sl@0
   101
#define sqliteHashData(E)   ((E)->data)
sl@0
   102
#define sqliteHashKey(E)    ((E)->pKey)
sl@0
   103
#define sqliteHashKeysize(E) ((E)->nKey)
sl@0
   104
sl@0
   105
/*
sl@0
   106
** Number of entries in a hash table
sl@0
   107
*/
sl@0
   108
#define sqliteHashCount(H)  ((H)->count)
sl@0
   109
sl@0
   110
#endif /* _SQLITE_HASH_H_ */