4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 ******************************************************************************
13 ** Implementation of the "simple" full-text-search tokenizer.
17 ** The code in this file is only compiled if:
19 ** * The FTS2 module is being built as an extension
20 ** (in which case SQLITE_CORE is not defined), or
22 ** * The FTS2 module is being built into the core of
23 ** SQLite (in which case SQLITE_ENABLE_FTS2 is defined).
25 #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS2)
34 #include "sqlite3ext.h"
35 SQLITE_EXTENSION_INIT3
36 #include "fts2_tokenizer.h"
38 typedef struct simple_tokenizer
{
39 sqlite3_tokenizer base
;
40 char delim
[128]; /* flag ASCII delimiters */
43 typedef struct simple_tokenizer_cursor
{
44 sqlite3_tokenizer_cursor base
;
45 const char *pInput
; /* input we are tokenizing */
46 int nBytes
; /* size of the input */
47 int iOffset
; /* current position in pInput */
48 int iToken
; /* index of next token to be returned */
49 char *pToken
; /* storage for current token */
50 int nTokenAllocated
; /* space allocated to zToken buffer */
51 } simple_tokenizer_cursor
;
54 /* Forward declaration */
55 static const sqlite3_tokenizer_module simpleTokenizerModule
;
57 static int simpleDelim(simple_tokenizer
*t
, unsigned char c
){
58 return c
<0x80 && t
->delim
[c
];
62 ** Create a new tokenizer instance.
64 static int simpleCreate(
65 int argc
, const char * const *argv
,
66 sqlite3_tokenizer
**ppTokenizer
70 t
= (simple_tokenizer
*) sqlite3_malloc(sizeof(*t
));
71 if( t
==NULL
) return SQLITE_NOMEM
;
72 memset(t
, 0, sizeof(*t
));
74 /* TODO(shess) Delimiters need to remain the same from run to run,
75 ** else we need to reindex. One solution would be a meta-table to
76 ** track such information in the database, then we'd only want this
77 ** information on the initial create.
80 int i
, n
= strlen(argv
[1]);
82 unsigned char ch
= argv
[1][i
];
83 /* We explicitly don't support UTF-8 delimiters for now. */
91 /* Mark non-alphanumeric ASCII characters as delimiters */
93 for(i
=1; i
<0x80; i
++){
94 t
->delim
[i
] = !((i
>='0' && i
<='9') || (i
>='A' && i
<='Z') ||
99 *ppTokenizer
= &t
->base
;
104 ** Destroy a tokenizer
106 static int simpleDestroy(sqlite3_tokenizer
*pTokenizer
){
107 sqlite3_free(pTokenizer
);
112 ** Prepare to begin tokenizing a particular string. The input
113 ** string to be tokenized is pInput[0..nBytes-1]. A cursor
114 ** used to incrementally tokenize this string is returned in
117 static int simpleOpen(
118 sqlite3_tokenizer
*pTokenizer
, /* The tokenizer */
119 const char *pInput
, int nBytes
, /* String to be tokenized */
120 sqlite3_tokenizer_cursor
**ppCursor
/* OUT: Tokenization cursor */
122 simple_tokenizer_cursor
*c
;
124 c
= (simple_tokenizer_cursor
*) sqlite3_malloc(sizeof(*c
));
125 if( c
==NULL
) return SQLITE_NOMEM
;
130 }else if( nBytes
<0 ){
131 c
->nBytes
= (int)strlen(pInput
);
135 c
->iOffset
= 0; /* start tokenizing at the beginning */
137 c
->pToken
= NULL
; /* no space allocated, yet. */
138 c
->nTokenAllocated
= 0;
140 *ppCursor
= &c
->base
;
145 ** Close a tokenization cursor previously opened by a call to
146 ** simpleOpen() above.
148 static int simpleClose(sqlite3_tokenizer_cursor
*pCursor
){
149 simple_tokenizer_cursor
*c
= (simple_tokenizer_cursor
*) pCursor
;
150 sqlite3_free(c
->pToken
);
156 ** Extract the next token from a tokenization cursor. The cursor must
157 ** have been opened by a prior call to simpleOpen().
159 static int simpleNext(
160 sqlite3_tokenizer_cursor
*pCursor
, /* Cursor returned by simpleOpen */
161 const char **ppToken
, /* OUT: *ppToken is the token text */
162 int *pnBytes
, /* OUT: Number of bytes in token */
163 int *piStartOffset
, /* OUT: Starting offset of token */
164 int *piEndOffset
, /* OUT: Ending offset of token */
165 int *piPosition
/* OUT: Position integer of token */
167 simple_tokenizer_cursor
*c
= (simple_tokenizer_cursor
*) pCursor
;
168 simple_tokenizer
*t
= (simple_tokenizer
*) pCursor
->pTokenizer
;
169 unsigned char *p
= (unsigned char *)c
->pInput
;
171 while( c
->iOffset
<c
->nBytes
){
174 /* Scan past delimiter characters */
175 while( c
->iOffset
<c
->nBytes
&& simpleDelim(t
, p
[c
->iOffset
]) ){
179 /* Count non-delimiter characters. */
180 iStartOffset
= c
->iOffset
;
181 while( c
->iOffset
<c
->nBytes
&& !simpleDelim(t
, p
[c
->iOffset
]) ){
185 if( c
->iOffset
>iStartOffset
){
186 int i
, n
= c
->iOffset
-iStartOffset
;
187 if( n
>c
->nTokenAllocated
){
188 c
->nTokenAllocated
= n
+20;
189 c
->pToken
= sqlite3_realloc(c
->pToken
, c
->nTokenAllocated
);
190 if( c
->pToken
==NULL
) return SQLITE_NOMEM
;
193 /* TODO(shess) This needs expansion to handle UTF-8
194 ** case-insensitivity.
196 unsigned char ch
= p
[iStartOffset
+i
];
197 c
->pToken
[i
] = (ch
>='A' && ch
<='Z') ? (ch
- 'A' + 'a') : ch
;
199 *ppToken
= c
->pToken
;
201 *piStartOffset
= iStartOffset
;
202 *piEndOffset
= c
->iOffset
;
203 *piPosition
= c
->iToken
++;
212 ** The set of routines that implement the simple tokenizer
214 static const sqlite3_tokenizer_module simpleTokenizerModule
= {
224 ** Allocate a new simple tokenizer. Return a pointer to the new
225 ** tokenizer in *ppModule
227 void sqlite3Fts2SimpleTokenizerModule(
228 sqlite3_tokenizer_module
const**ppModule
230 *ppModule
= &simpleTokenizerModule
;
233 #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS2) */