1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/SQLite/fts3_hash.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,110 @@
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 _FTS3_HASH_H_
1.21 +#define _FTS3_HASH_H_
1.22 +
1.23 +/* Forward declarations of structures. */
1.24 +typedef struct fts3Hash fts3Hash;
1.25 +typedef struct fts3HashElem fts3HashElem;
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 fts3Hash {
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 + fts3HashElem *first; /* The first element of the array */
1.40 + int htsize; /* Number of buckets in the hash table */
1.41 + struct _fts3ht { /* the hash table */
1.42 + int count; /* Number of entries with this hash */
1.43 + fts3HashElem *chain; /* Pointer to first entry with this hash */
1.44 + } *ht;
1.45 +};
1.46 +
1.47 +/* Each element in the hash table is an instance of the following
1.48 +** structure. All elements are stored on a single doubly-linked list.
1.49 +**
1.50 +** Again, this structure is intended to be opaque, but it can't really
1.51 +** be opaque because it is used by macros.
1.52 +*/
1.53 +struct fts3HashElem {
1.54 + fts3HashElem *next, *prev; /* Next and previous elements in the table */
1.55 + void *data; /* Data associated with this element */
1.56 + void *pKey; int nKey; /* Key associated with this element */
1.57 +};
1.58 +
1.59 +/*
1.60 +** There are 2 different modes of operation for a hash table:
1.61 +**
1.62 +** FTS3_HASH_STRING pKey points to a string that is nKey bytes long
1.63 +** (including the null-terminator, if any). Case
1.64 +** is respected in comparisons.
1.65 +**
1.66 +** FTS3_HASH_BINARY pKey points to binary data nKey bytes long.
1.67 +** memcmp() is used to compare keys.
1.68 +**
1.69 +** A copy of the key is made if the copyKey parameter to fts3HashInit is 1.
1.70 +*/
1.71 +#define FTS3_HASH_STRING 1
1.72 +#define FTS3_HASH_BINARY 2
1.73 +
1.74 +/*
1.75 +** Access routines. To delete, insert a NULL pointer.
1.76 +*/
1.77 +void sqlite3Fts3HashInit(fts3Hash*, int keytype, int copyKey);
1.78 +void *sqlite3Fts3HashInsert(fts3Hash*, const void *pKey, int nKey, void *pData);
1.79 +void *sqlite3Fts3HashFind(const fts3Hash*, const void *pKey, int nKey);
1.80 +void sqlite3Fts3HashClear(fts3Hash*);
1.81 +
1.82 +/*
1.83 +** Shorthand for the functions above
1.84 +*/
1.85 +#define fts3HashInit sqlite3Fts3HashInit
1.86 +#define fts3HashInsert sqlite3Fts3HashInsert
1.87 +#define fts3HashFind sqlite3Fts3HashFind
1.88 +#define fts3HashClear sqlite3Fts3HashClear
1.89 +
1.90 +/*
1.91 +** Macros for looping over all elements of a hash table. The idiom is
1.92 +** like this:
1.93 +**
1.94 +** fts3Hash h;
1.95 +** fts3HashElem *p;
1.96 +** ...
1.97 +** for(p=fts3HashFirst(&h); p; p=fts3HashNext(p)){
1.98 +** SomeStructure *pData = fts3HashData(p);
1.99 +** // do something with pData
1.100 +** }
1.101 +*/
1.102 +#define fts3HashFirst(H) ((H)->first)
1.103 +#define fts3HashNext(E) ((E)->next)
1.104 +#define fts3HashData(E) ((E)->data)
1.105 +#define fts3HashKey(E) ((E)->pKey)
1.106 +#define fts3HashKeysize(E) ((E)->nKey)
1.107 +
1.108 +/*
1.109 +** Number of entries in a hash table
1.110 +*/
1.111 +#define fts3HashCount(H) ((H)->count)
1.112 +
1.113 +#endif /* _FTS3_HASH_H_ */