os/persistentdata/persistentstorage/sqlite3api/SQLite/fts1_hash.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/SQLite/fts1_hash.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,112 @@
     1.4 +/*
     1.5 +** 2001 September 22
     1.6 +**
     1.7 +** The author disclaims copyright to this source code.  In place of
     1.8 +** a legal notice, here is a blessing:
     1.9 +**
    1.10 +**    May you do good and not evil.
    1.11 +**    May you find forgiveness for yourself and forgive others.
    1.12 +**    May you share freely, never taking more than you give.
    1.13 +**
    1.14 +*************************************************************************
    1.15 +** This is the header file for the generic hash-table implemenation
    1.16 +** used in SQLite.  We've modified it slightly to serve as a standalone
    1.17 +** hash table implementation for the full-text indexing module.
    1.18 +**
    1.19 +*/
    1.20 +#ifndef _FTS1_HASH_H_
    1.21 +#define _FTS1_HASH_H_
    1.22 +
    1.23 +/* Forward declarations of structures. */
    1.24 +typedef struct fts1Hash fts1Hash;
    1.25 +typedef struct fts1HashElem fts1HashElem;
    1.26 +
    1.27 +/* A complete hash table is an instance of the following structure.
    1.28 +** The internals of this structure are intended to be opaque -- client
    1.29 +** code should not attempt to access or modify the fields of this structure
    1.30 +** directly.  Change this structure only by using the routines below.
    1.31 +** However, many of the "procedures" and "functions" for modifying and
    1.32 +** accessing this structure are really macros, so we can't really make
    1.33 +** this structure opaque.
    1.34 +*/
    1.35 +struct fts1Hash {
    1.36 +  char keyClass;          /* HASH_INT, _POINTER, _STRING, _BINARY */
    1.37 +  char copyKey;           /* True if copy of key made on insert */
    1.38 +  int count;              /* Number of entries in this table */
    1.39 +  fts1HashElem *first;    /* The first element of the array */
    1.40 +  void *(*xMalloc)(int);  /* malloc() function to use */
    1.41 +  void (*xFree)(void *);  /* free() function to use */
    1.42 +  int htsize;             /* Number of buckets in the hash table */
    1.43 +  struct _fts1ht {        /* the hash table */
    1.44 +    int count;               /* Number of entries with this hash */
    1.45 +    fts1HashElem *chain;     /* Pointer to first entry with this hash */
    1.46 +  } *ht;
    1.47 +};
    1.48 +
    1.49 +/* Each element in the hash table is an instance of the following 
    1.50 +** structure.  All elements are stored on a single doubly-linked list.
    1.51 +**
    1.52 +** Again, this structure is intended to be opaque, but it can't really
    1.53 +** be opaque because it is used by macros.
    1.54 +*/
    1.55 +struct fts1HashElem {
    1.56 +  fts1HashElem *next, *prev; /* Next and previous elements in the table */
    1.57 +  void *data;                /* Data associated with this element */
    1.58 +  void *pKey; int nKey;      /* Key associated with this element */
    1.59 +};
    1.60 +
    1.61 +/*
    1.62 +** There are 2 different modes of operation for a hash table:
    1.63 +**
    1.64 +**   FTS1_HASH_STRING        pKey points to a string that is nKey bytes long
    1.65 +**                           (including the null-terminator, if any).  Case
    1.66 +**                           is respected in comparisons.
    1.67 +**
    1.68 +**   FTS1_HASH_BINARY        pKey points to binary data nKey bytes long. 
    1.69 +**                           memcmp() is used to compare keys.
    1.70 +**
    1.71 +** A copy of the key is made if the copyKey parameter to fts1HashInit is 1.  
    1.72 +*/
    1.73 +#define FTS1_HASH_STRING    1
    1.74 +#define FTS1_HASH_BINARY    2
    1.75 +
    1.76 +/*
    1.77 +** Access routines.  To delete, insert a NULL pointer.
    1.78 +*/
    1.79 +void sqlite3Fts1HashInit(fts1Hash*, int keytype, int copyKey);
    1.80 +void *sqlite3Fts1HashInsert(fts1Hash*, const void *pKey, int nKey, void *pData);
    1.81 +void *sqlite3Fts1HashFind(const fts1Hash*, const void *pKey, int nKey);
    1.82 +void sqlite3Fts1HashClear(fts1Hash*);
    1.83 +
    1.84 +/*
    1.85 +** Shorthand for the functions above
    1.86 +*/
    1.87 +#define fts1HashInit   sqlite3Fts1HashInit
    1.88 +#define fts1HashInsert sqlite3Fts1HashInsert
    1.89 +#define fts1HashFind   sqlite3Fts1HashFind
    1.90 +#define fts1HashClear  sqlite3Fts1HashClear
    1.91 +
    1.92 +/*
    1.93 +** Macros for looping over all elements of a hash table.  The idiom is
    1.94 +** like this:
    1.95 +**
    1.96 +**   fts1Hash h;
    1.97 +**   fts1HashElem *p;
    1.98 +**   ...
    1.99 +**   for(p=fts1HashFirst(&h); p; p=fts1HashNext(p)){
   1.100 +**     SomeStructure *pData = fts1HashData(p);
   1.101 +**     // do something with pData
   1.102 +**   }
   1.103 +*/
   1.104 +#define fts1HashFirst(H)  ((H)->first)
   1.105 +#define fts1HashNext(E)   ((E)->next)
   1.106 +#define fts1HashData(E)   ((E)->data)
   1.107 +#define fts1HashKey(E)    ((E)->pKey)
   1.108 +#define fts1HashKeysize(E) ((E)->nKey)
   1.109 +
   1.110 +/*
   1.111 +** Number of entries in a hash table
   1.112 +*/
   1.113 +#define fts1HashCount(H)  ((H)->count)
   1.114 +
   1.115 +#endif /* _FTS1_HASH_H_ */