sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2006 July 10
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code.
|
sl@0
|
5 |
**
|
sl@0
|
6 |
*************************************************************************
|
sl@0
|
7 |
** Defines the interface to tokenizers used by fulltext-search. There
|
sl@0
|
8 |
** are three basic components:
|
sl@0
|
9 |
**
|
sl@0
|
10 |
** sqlite3_tokenizer_module is a singleton defining the tokenizer
|
sl@0
|
11 |
** interface functions. This is essentially the class structure for
|
sl@0
|
12 |
** tokenizers.
|
sl@0
|
13 |
**
|
sl@0
|
14 |
** sqlite3_tokenizer is used to define a particular tokenizer, perhaps
|
sl@0
|
15 |
** including customization information defined at creation time.
|
sl@0
|
16 |
**
|
sl@0
|
17 |
** sqlite3_tokenizer_cursor is generated by a tokenizer to generate
|
sl@0
|
18 |
** tokens from a particular input.
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
#ifndef _FTS1_TOKENIZER_H_
|
sl@0
|
21 |
#define _FTS1_TOKENIZER_H_
|
sl@0
|
22 |
|
sl@0
|
23 |
/* TODO(shess) Only used for SQLITE_OK and SQLITE_DONE at this time.
|
sl@0
|
24 |
** If tokenizers are to be allowed to call sqlite3_*() functions, then
|
sl@0
|
25 |
** we will need a way to register the API consistently.
|
sl@0
|
26 |
*/
|
sl@0
|
27 |
#include "sqlite3.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
/*
|
sl@0
|
30 |
** Structures used by the tokenizer interface.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
typedef struct sqlite3_tokenizer sqlite3_tokenizer;
|
sl@0
|
33 |
typedef struct sqlite3_tokenizer_cursor sqlite3_tokenizer_cursor;
|
sl@0
|
34 |
typedef struct sqlite3_tokenizer_module sqlite3_tokenizer_module;
|
sl@0
|
35 |
|
sl@0
|
36 |
struct sqlite3_tokenizer_module {
|
sl@0
|
37 |
int iVersion; /* currently 0 */
|
sl@0
|
38 |
|
sl@0
|
39 |
/*
|
sl@0
|
40 |
** Create and destroy a tokenizer. argc/argv are passed down from
|
sl@0
|
41 |
** the fulltext virtual table creation to allow customization.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
int (*xCreate)(int argc, const char *const*argv,
|
sl@0
|
44 |
sqlite3_tokenizer **ppTokenizer);
|
sl@0
|
45 |
int (*xDestroy)(sqlite3_tokenizer *pTokenizer);
|
sl@0
|
46 |
|
sl@0
|
47 |
/*
|
sl@0
|
48 |
** Tokenize a particular input. Call xOpen() to prepare to
|
sl@0
|
49 |
** tokenize, xNext() repeatedly until it returns SQLITE_DONE, then
|
sl@0
|
50 |
** xClose() to free any internal state. The pInput passed to
|
sl@0
|
51 |
** xOpen() must exist until the cursor is closed. The ppToken
|
sl@0
|
52 |
** result from xNext() is only valid until the next call to xNext()
|
sl@0
|
53 |
** or until xClose() is called.
|
sl@0
|
54 |
*/
|
sl@0
|
55 |
/* TODO(shess) current implementation requires pInput to be
|
sl@0
|
56 |
** nul-terminated. This should either be fixed, or pInput/nBytes
|
sl@0
|
57 |
** should be converted to zInput.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
int (*xOpen)(sqlite3_tokenizer *pTokenizer,
|
sl@0
|
60 |
const char *pInput, int nBytes,
|
sl@0
|
61 |
sqlite3_tokenizer_cursor **ppCursor);
|
sl@0
|
62 |
int (*xClose)(sqlite3_tokenizer_cursor *pCursor);
|
sl@0
|
63 |
int (*xNext)(sqlite3_tokenizer_cursor *pCursor,
|
sl@0
|
64 |
const char **ppToken, int *pnBytes,
|
sl@0
|
65 |
int *piStartOffset, int *piEndOffset, int *piPosition);
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
struct sqlite3_tokenizer {
|
sl@0
|
69 |
const sqlite3_tokenizer_module *pModule; /* The module for this tokenizer */
|
sl@0
|
70 |
/* Tokenizer implementations will typically add additional fields */
|
sl@0
|
71 |
};
|
sl@0
|
72 |
|
sl@0
|
73 |
struct sqlite3_tokenizer_cursor {
|
sl@0
|
74 |
sqlite3_tokenizer *pTokenizer; /* Tokenizer for this cursor. */
|
sl@0
|
75 |
/* Tokenizer implementations will typically add additional fields */
|
sl@0
|
76 |
};
|
sl@0
|
77 |
|
sl@0
|
78 |
/*
|
sl@0
|
79 |
** Get the module for a tokenizer which generates tokens based on a
|
sl@0
|
80 |
** set of non-token characters. The default is to break tokens at any
|
sl@0
|
81 |
** non-alnum character, though the set of delimiters can also be
|
sl@0
|
82 |
** specified by the first argv argument to xCreate().
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
/* TODO(shess) This doesn't belong here. Need some sort of
|
sl@0
|
85 |
** registration process.
|
sl@0
|
86 |
*/
|
sl@0
|
87 |
void sqlite3Fts1SimpleTokenizerModule(sqlite3_tokenizer_module const**ppModule);
|
sl@0
|
88 |
void sqlite3Fts1PorterTokenizerModule(sqlite3_tokenizer_module const**ppModule);
|
sl@0
|
89 |
|
sl@0
|
90 |
#endif /* _FTS1_TOKENIZER_H_ */
|