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 _FTS1_HASH_H_
|
sl@0
|
18 |
#define _FTS1_HASH_H_
|
sl@0
|
19 |
|
sl@0
|
20 |
/* Forward declarations of structures. */
|
sl@0
|
21 |
typedef struct fts1Hash fts1Hash;
|
sl@0
|
22 |
typedef struct fts1HashElem fts1HashElem;
|
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 fts1Hash {
|
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 |
fts1HashElem *first; /* The first element of the array */
|
sl@0
|
37 |
void *(*xMalloc)(int); /* malloc() function to use */
|
sl@0
|
38 |
void (*xFree)(void *); /* free() function to use */
|
sl@0
|
39 |
int htsize; /* Number of buckets in the hash table */
|
sl@0
|
40 |
struct _fts1ht { /* the hash table */
|
sl@0
|
41 |
int count; /* Number of entries with this hash */
|
sl@0
|
42 |
fts1HashElem *chain; /* Pointer to first entry with this hash */
|
sl@0
|
43 |
} *ht;
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
/* Each element in the hash table is an instance of the following
|
sl@0
|
47 |
** structure. All elements are stored on a single doubly-linked list.
|
sl@0
|
48 |
**
|
sl@0
|
49 |
** Again, this structure is intended to be opaque, but it can't really
|
sl@0
|
50 |
** be opaque because it is used by macros.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
struct fts1HashElem {
|
sl@0
|
53 |
fts1HashElem *next, *prev; /* Next and previous elements in the table */
|
sl@0
|
54 |
void *data; /* Data associated with this element */
|
sl@0
|
55 |
void *pKey; int nKey; /* Key associated with this element */
|
sl@0
|
56 |
};
|
sl@0
|
57 |
|
sl@0
|
58 |
/*
|
sl@0
|
59 |
** There are 2 different modes of operation for a hash table:
|
sl@0
|
60 |
**
|
sl@0
|
61 |
** FTS1_HASH_STRING pKey points to a string that is nKey bytes long
|
sl@0
|
62 |
** (including the null-terminator, if any). Case
|
sl@0
|
63 |
** is respected in comparisons.
|
sl@0
|
64 |
**
|
sl@0
|
65 |
** FTS1_HASH_BINARY pKey points to binary data nKey bytes long.
|
sl@0
|
66 |
** memcmp() is used to compare keys.
|
sl@0
|
67 |
**
|
sl@0
|
68 |
** A copy of the key is made if the copyKey parameter to fts1HashInit is 1.
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
#define FTS1_HASH_STRING 1
|
sl@0
|
71 |
#define FTS1_HASH_BINARY 2
|
sl@0
|
72 |
|
sl@0
|
73 |
/*
|
sl@0
|
74 |
** Access routines. To delete, insert a NULL pointer.
|
sl@0
|
75 |
*/
|
sl@0
|
76 |
void sqlite3Fts1HashInit(fts1Hash*, int keytype, int copyKey);
|
sl@0
|
77 |
void *sqlite3Fts1HashInsert(fts1Hash*, const void *pKey, int nKey, void *pData);
|
sl@0
|
78 |
void *sqlite3Fts1HashFind(const fts1Hash*, const void *pKey, int nKey);
|
sl@0
|
79 |
void sqlite3Fts1HashClear(fts1Hash*);
|
sl@0
|
80 |
|
sl@0
|
81 |
/*
|
sl@0
|
82 |
** Shorthand for the functions above
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
#define fts1HashInit sqlite3Fts1HashInit
|
sl@0
|
85 |
#define fts1HashInsert sqlite3Fts1HashInsert
|
sl@0
|
86 |
#define fts1HashFind sqlite3Fts1HashFind
|
sl@0
|
87 |
#define fts1HashClear sqlite3Fts1HashClear
|
sl@0
|
88 |
|
sl@0
|
89 |
/*
|
sl@0
|
90 |
** Macros for looping over all elements of a hash table. The idiom is
|
sl@0
|
91 |
** like this:
|
sl@0
|
92 |
**
|
sl@0
|
93 |
** fts1Hash h;
|
sl@0
|
94 |
** fts1HashElem *p;
|
sl@0
|
95 |
** ...
|
sl@0
|
96 |
** for(p=fts1HashFirst(&h); p; p=fts1HashNext(p)){
|
sl@0
|
97 |
** SomeStructure *pData = fts1HashData(p);
|
sl@0
|
98 |
** // do something with pData
|
sl@0
|
99 |
** }
|
sl@0
|
100 |
*/
|
sl@0
|
101 |
#define fts1HashFirst(H) ((H)->first)
|
sl@0
|
102 |
#define fts1HashNext(E) ((E)->next)
|
sl@0
|
103 |
#define fts1HashData(E) ((E)->data)
|
sl@0
|
104 |
#define fts1HashKey(E) ((E)->pKey)
|
sl@0
|
105 |
#define fts1HashKeysize(E) ((E)->nKey)
|
sl@0
|
106 |
|
sl@0
|
107 |
/*
|
sl@0
|
108 |
** Number of entries in a hash table
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
#define fts1HashCount(H) ((H)->count)
|
sl@0
|
111 |
|
sl@0
|
112 |
#endif /* _FTS1_HASH_H_ */
|