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. We've modified it slightly to serve as a standalone
|
sl@0
|
14 |
** hash table implementation for the full-text indexing module.
|
sl@0
|
15 |
**
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
#ifndef _FTS2_HASH_H_
|
sl@0
|
18 |
#define _FTS2_HASH_H_
|
sl@0
|
19 |
|
sl@0
|
20 |
/* Forward declarations of structures. */
|
sl@0
|
21 |
typedef struct fts2Hash fts2Hash;
|
sl@0
|
22 |
typedef struct fts2HashElem fts2HashElem;
|
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 fts2Hash {
|
sl@0
|
33 |
char keyClass; /* 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 |
fts2HashElem *first; /* The first element of the array */
|
sl@0
|
37 |
int htsize; /* Number of buckets in the hash table */
|
sl@0
|
38 |
struct _fts2ht { /* the hash table */
|
sl@0
|
39 |
int count; /* Number of entries with this hash */
|
sl@0
|
40 |
fts2HashElem *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 fts2HashElem {
|
sl@0
|
51 |
fts2HashElem *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 2 different modes of operation for a hash table:
|
sl@0
|
58 |
**
|
sl@0
|
59 |
** FTS2_HASH_STRING pKey points to a string that is nKey bytes long
|
sl@0
|
60 |
** (including the null-terminator, if any). Case
|
sl@0
|
61 |
** is respected in comparisons.
|
sl@0
|
62 |
**
|
sl@0
|
63 |
** FTS2_HASH_BINARY pKey points to binary data nKey bytes long.
|
sl@0
|
64 |
** memcmp() is used to compare keys.
|
sl@0
|
65 |
**
|
sl@0
|
66 |
** A copy of the key is made if the copyKey parameter to fts2HashInit is 1.
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
#define FTS2_HASH_STRING 1
|
sl@0
|
69 |
#define FTS2_HASH_BINARY 2
|
sl@0
|
70 |
|
sl@0
|
71 |
/*
|
sl@0
|
72 |
** Access routines. To delete, insert a NULL pointer.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
void sqlite3Fts2HashInit(fts2Hash*, int keytype, int copyKey);
|
sl@0
|
75 |
void *sqlite3Fts2HashInsert(fts2Hash*, const void *pKey, int nKey, void *pData);
|
sl@0
|
76 |
void *sqlite3Fts2HashFind(const fts2Hash*, const void *pKey, int nKey);
|
sl@0
|
77 |
void sqlite3Fts2HashClear(fts2Hash*);
|
sl@0
|
78 |
|
sl@0
|
79 |
/*
|
sl@0
|
80 |
** Shorthand for the functions above
|
sl@0
|
81 |
*/
|
sl@0
|
82 |
#define fts2HashInit sqlite3Fts2HashInit
|
sl@0
|
83 |
#define fts2HashInsert sqlite3Fts2HashInsert
|
sl@0
|
84 |
#define fts2HashFind sqlite3Fts2HashFind
|
sl@0
|
85 |
#define fts2HashClear sqlite3Fts2HashClear
|
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 |
** fts2Hash h;
|
sl@0
|
92 |
** fts2HashElem *p;
|
sl@0
|
93 |
** ...
|
sl@0
|
94 |
** for(p=fts2HashFirst(&h); p; p=fts2HashNext(p)){
|
sl@0
|
95 |
** SomeStructure *pData = fts2HashData(p);
|
sl@0
|
96 |
** // do something with pData
|
sl@0
|
97 |
** }
|
sl@0
|
98 |
*/
|
sl@0
|
99 |
#define fts2HashFirst(H) ((H)->first)
|
sl@0
|
100 |
#define fts2HashNext(E) ((E)->next)
|
sl@0
|
101 |
#define fts2HashData(E) ((E)->data)
|
sl@0
|
102 |
#define fts2HashKey(E) ((E)->pKey)
|
sl@0
|
103 |
#define fts2HashKeysize(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 fts2HashCount(H) ((H)->count)
|
sl@0
|
109 |
|
sl@0
|
110 |
#endif /* _FTS2_HASH_H_ */
|