os/persistentdata/persistentstorage/sql/SQLite364/hash.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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.12 2008/10/10 17:41:29 drh 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
  unsigned int copyKey: 1;  /* True if copy of key made on insert */
sl@0
    34
  unsigned int htsize : 31; /* Number of buckets in the hash table */
sl@0
    35
  unsigned int count;       /* Number of entries in this table */
sl@0
    36
  HashElem *first;          /* The first element of the array */
sl@0
    37
  struct _ht {              /* the hash table */
sl@0
    38
    int count;                 /* Number of entries with this hash */
sl@0
    39
    HashElem *chain;           /* Pointer to first entry with this hash */
sl@0
    40
  } *ht;
sl@0
    41
};
sl@0
    42
sl@0
    43
/* Each element in the hash table is an instance of the following 
sl@0
    44
** structure.  All elements are stored on a single doubly-linked list.
sl@0
    45
**
sl@0
    46
** Again, this structure is intended to be opaque, but it can't really
sl@0
    47
** be opaque because it is used by macros.
sl@0
    48
*/
sl@0
    49
struct HashElem {
sl@0
    50
  HashElem *next, *prev;   /* Next and previous elements in the table */
sl@0
    51
  void *data;              /* Data associated with this element */
sl@0
    52
  void *pKey; int nKey;    /* Key associated with this element */
sl@0
    53
};
sl@0
    54
sl@0
    55
/*
sl@0
    56
** Access routines.  To delete, insert a NULL pointer.
sl@0
    57
*/
sl@0
    58
void sqlite3HashInit(Hash*, int copyKey);
sl@0
    59
void *sqlite3HashInsert(Hash*, const void *pKey, int nKey, void *pData);
sl@0
    60
void *sqlite3HashFind(const Hash*, const void *pKey, int nKey);
sl@0
    61
HashElem *sqlite3HashFindElem(const Hash*, const void *pKey, int nKey);
sl@0
    62
void sqlite3HashClear(Hash*);
sl@0
    63
sl@0
    64
/*
sl@0
    65
** Macros for looping over all elements of a hash table.  The idiom is
sl@0
    66
** like this:
sl@0
    67
**
sl@0
    68
**   Hash h;
sl@0
    69
**   HashElem *p;
sl@0
    70
**   ...
sl@0
    71
**   for(p=sqliteHashFirst(&h); p; p=sqliteHashNext(p)){
sl@0
    72
**     SomeStructure *pData = sqliteHashData(p);
sl@0
    73
**     // do something with pData
sl@0
    74
**   }
sl@0
    75
*/
sl@0
    76
#define sqliteHashFirst(H)  ((H)->first)
sl@0
    77
#define sqliteHashNext(E)   ((E)->next)
sl@0
    78
#define sqliteHashData(E)   ((E)->data)
sl@0
    79
#define sqliteHashKey(E)    ((E)->pKey)
sl@0
    80
#define sqliteHashKeysize(E) ((E)->nKey)
sl@0
    81
sl@0
    82
/*
sl@0
    83
** Number of entries in a hash table
sl@0
    84
*/
sl@0
    85
#define sqliteHashCount(H)  ((H)->count)
sl@0
    86
sl@0
    87
#endif /* _SQLITE_HASH_H_ */