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 ** This is part of an SQLite module implementing full-text search.
14 ** This particular file implements the generic tokenizer interface.
18 ** The code in this file is only compiled if:
20 ** * The FTS3 module is being built as an extension
21 ** (in which case SQLITE_CORE is not defined), or
23 ** * The FTS3 module is being built into the core of
24 ** SQLite (in which case SQLITE_ENABLE_FTS3 is defined).
27 #if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3)
33 ** Implementation of the SQL scalar function for accessing the underlying
34 ** hash table. This function may be called as follows:
36 ** SELECT <function-name>(<key-name>);
37 ** SELECT <function-name>(<key-name>, <pointer>);
39 ** where <function-name> is the name passed as the second argument
40 ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer').
42 ** If the <pointer> argument is specified, it must be a blob value
43 ** containing a pointer to be stored as the hash data corresponding
44 ** to the string <key-name>. If <pointer> is not specified, then
45 ** the string <key-name> must already exist in the has table. Otherwise,
46 ** an error is returned.
48 ** Whether or not the <pointer> argument is specified, the value returned
49 ** is a blob containing the pointer stored as the hash data corresponding
50 ** to string <key-name> (after the hash-table is updated, if applicable).
52 static void scalarFunc(
53 sqlite3_context
*context
,
59 const unsigned char *zName
;
62 assert( argc
==1 || argc
==2 );
64 pHash
= (Fts3Hash
*)sqlite3_user_data(context
);
66 zName
= sqlite3_value_text(argv
[0]);
67 nName
= sqlite3_value_bytes(argv
[0])+1;
71 int n
= sqlite3_value_bytes(argv
[1]);
72 if( n
!=sizeof(pPtr
) ){
73 sqlite3_result_error(context
, "argument type mismatch", -1);
76 pPtr
= *(void **)sqlite3_value_blob(argv
[1]);
77 pOld
= sqlite3Fts3HashInsert(pHash
, (void *)zName
, nName
, pPtr
);
79 sqlite3_result_error(context
, "out of memory", -1);
83 pPtr
= sqlite3Fts3HashFind(pHash
, zName
, nName
);
85 char *zErr
= sqlite3_mprintf("unknown tokenizer: %s", zName
);
86 sqlite3_result_error(context
, zErr
, -1);
92 sqlite3_result_blob(context
, (void *)&pPtr
, sizeof(pPtr
), SQLITE_TRANSIENT
);
95 int sqlite3Fts3IsIdChar(char c
){
96 static const char isFtsIdChar
[] = {
97 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */
98 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */
99 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */
100 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */
101 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */
102 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */
103 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */
104 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */
106 return (c
&0x80 || isFtsIdChar
[(int)(c
)]);
109 const char *sqlite3Fts3NextToken(const char *zStr
, int *pn
){
113 /* Find the start of the next token. */
118 case '\0': return 0; /* No more tokens here */
123 while( *++z2
&& (*z2
!=c
|| *++z2
==c
) );
128 while( *z2
&& z2
[0]!=']' ) z2
++;
133 if( sqlite3Fts3IsIdChar(*z1
) ){
135 while( sqlite3Fts3IsIdChar(*z2
) ) z2
++;
146 int sqlite3Fts3InitTokenizer(
147 Fts3Hash
*pHash
, /* Tokenizer hash table */
148 const char *zArg
, /* Tokenizer name */
149 sqlite3_tokenizer
**ppTok
, /* OUT: Tokenizer (if applicable) */
150 char **pzErr
/* OUT: Set to malloced error message */
153 char *z
= (char *)zArg
;
156 char *zEnd
; /* Pointer to nul-term of zCopy */
157 sqlite3_tokenizer_module
*m
;
159 zCopy
= sqlite3_mprintf("%s", zArg
);
160 if( !zCopy
) return SQLITE_NOMEM
;
161 zEnd
= &zCopy
[strlen(zCopy
)];
163 z
= (char *)sqlite3Fts3NextToken(zCopy
, &n
);
165 sqlite3Fts3Dequote(z
);
167 m
= (sqlite3_tokenizer_module
*)sqlite3Fts3HashFind(pHash
,z
,(int)strlen(z
)+1);
169 *pzErr
= sqlite3_mprintf("unknown tokenizer: %s", z
);
172 char const **aArg
= 0;
175 while( z
<zEnd
&& (NULL
!=(z
= (char *)sqlite3Fts3NextToken(z
, &n
))) ){
176 int nNew
= sizeof(char *)*(iArg
+1);
177 char const **aNew
= (const char **)sqlite3_realloc((void *)aArg
, nNew
);
180 sqlite3_free((void *)aArg
);
186 sqlite3Fts3Dequote(z
);
189 rc
= m
->xCreate(iArg
, aArg
, ppTok
);
190 assert( rc
!=SQLITE_OK
|| *ppTok
);
192 *pzErr
= sqlite3_mprintf("unknown tokenizer");
194 (*ppTok
)->pModule
= m
;
196 sqlite3_free((void *)aArg
);
210 ** Implementation of a special SQL scalar function for testing tokenizers
211 ** designed to be used in concert with the Tcl testing framework. This
212 ** function must be called with two or more arguments:
214 ** SELECT <function-name>(<key-name>, ..., <input-string>);
216 ** where <function-name> is the name passed as the second argument
217 ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer')
218 ** concatenated with the string '_test' (e.g. 'fts3_tokenizer_test').
220 ** The return value is a string that may be interpreted as a Tcl
221 ** list. For each token in the <input-string>, three elements are
222 ** added to the returned list. The first is the token position, the
223 ** second is the token text (folded, stemmed, etc.) and the third is the
224 ** substring of <input-string> associated with the token. For example,
225 ** using the built-in "simple" tokenizer:
227 ** SELECT fts_tokenizer_test('simple', 'I don't see how');
229 ** will return the string:
231 ** "{0 i I 1 dont don't 2 see see 3 how how}"
234 static void testFunc(
235 sqlite3_context
*context
,
240 sqlite3_tokenizer_module
*p
;
241 sqlite3_tokenizer
*pTokenizer
= 0;
242 sqlite3_tokenizer_cursor
*pCsr
= 0;
244 const char *zErr
= 0;
251 const char *azArg
[64];
263 sqlite3_result_error(context
, "insufficient arguments", -1);
267 nName
= sqlite3_value_bytes(argv
[0]);
268 zName
= (const char *)sqlite3_value_text(argv
[0]);
269 nInput
= sqlite3_value_bytes(argv
[argc
-1]);
270 zInput
= (const char *)sqlite3_value_text(argv
[argc
-1]);
272 pHash
= (Fts3Hash
*)sqlite3_user_data(context
);
273 p
= (sqlite3_tokenizer_module
*)sqlite3Fts3HashFind(pHash
, zName
, nName
+1);
276 char *zErr
= sqlite3_mprintf("unknown tokenizer: %s", zName
);
277 sqlite3_result_error(context
, zErr
, -1);
283 Tcl_IncrRefCount(pRet
);
285 for(i
=1; i
<argc
-1; i
++){
286 azArg
[i
-1] = (const char *)sqlite3_value_text(argv
[i
]);
289 if( SQLITE_OK
!=p
->xCreate(argc
-2, azArg
, &pTokenizer
) ){
290 zErr
= "error in xCreate()";
293 pTokenizer
->pModule
= p
;
294 if( sqlite3Fts3OpenTokenizer(pTokenizer
, 0, zInput
, nInput
, &pCsr
) ){
295 zErr
= "error in xOpen()";
299 while( SQLITE_OK
==p
->xNext(pCsr
, &zToken
, &nToken
, &iStart
, &iEnd
, &iPos
) ){
300 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewIntObj(iPos
));
301 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewStringObj(zToken
, nToken
));
302 zToken
= &zInput
[iStart
];
303 nToken
= iEnd
-iStart
;
304 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewStringObj(zToken
, nToken
));
307 if( SQLITE_OK
!=p
->xClose(pCsr
) ){
308 zErr
= "error in xClose()";
311 if( SQLITE_OK
!=p
->xDestroy(pTokenizer
) ){
312 zErr
= "error in xDestroy()";
318 sqlite3_result_error(context
, zErr
, -1);
320 sqlite3_result_text(context
, Tcl_GetString(pRet
), -1, SQLITE_TRANSIENT
);
322 Tcl_DecrRefCount(pRet
);
326 int registerTokenizer(
329 const sqlite3_tokenizer_module
*p
333 const char zSql
[] = "SELECT fts3_tokenizer(?, ?)";
335 rc
= sqlite3_prepare_v2(db
, zSql
, -1, &pStmt
, 0);
340 sqlite3_bind_text(pStmt
, 1, zName
, -1, SQLITE_STATIC
);
341 sqlite3_bind_blob(pStmt
, 2, &p
, sizeof(p
), SQLITE_STATIC
);
344 return sqlite3_finalize(pStmt
);
351 const sqlite3_tokenizer_module
**pp
355 const char zSql
[] = "SELECT fts3_tokenizer(?)";
358 rc
= sqlite3_prepare_v2(db
, zSql
, -1, &pStmt
, 0);
363 sqlite3_bind_text(pStmt
, 1, zName
, -1, SQLITE_STATIC
);
364 if( SQLITE_ROW
==sqlite3_step(pStmt
) ){
365 if( sqlite3_column_type(pStmt
, 0)==SQLITE_BLOB
){
366 memcpy((void *)pp
, sqlite3_column_blob(pStmt
, 0), sizeof(*pp
));
370 return sqlite3_finalize(pStmt
);
373 void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module
const**ppModule
);
376 ** Implementation of the scalar function fts3_tokenizer_internal_test().
377 ** This function is used for testing only, it is not included in the
378 ** build unless SQLITE_TEST is defined.
380 ** The purpose of this is to test that the fts3_tokenizer() function
381 ** can be used as designed by the C-code in the queryTokenizer and
382 ** registerTokenizer() functions above. These two functions are repeated
383 ** in the README.tokenizer file as an example, so it is important to
386 ** To run the tests, evaluate the fts3_tokenizer_internal_test() scalar
387 ** function with no arguments. An assert() will fail if a problem is
390 ** SELECT fts3_tokenizer_internal_test();
393 static void intTestFunc(
394 sqlite3_context
*context
,
399 const sqlite3_tokenizer_module
*p1
;
400 const sqlite3_tokenizer_module
*p2
;
401 sqlite3
*db
= (sqlite3
*)sqlite3_user_data(context
);
403 UNUSED_PARAMETER(argc
);
404 UNUSED_PARAMETER(argv
);
406 /* Test the query function */
407 sqlite3Fts3SimpleTokenizerModule(&p1
);
408 rc
= queryTokenizer(db
, "simple", &p2
);
409 assert( rc
==SQLITE_OK
);
411 rc
= queryTokenizer(db
, "nosuchtokenizer", &p2
);
412 assert( rc
==SQLITE_ERROR
);
414 assert( 0==strcmp(sqlite3_errmsg(db
), "unknown tokenizer: nosuchtokenizer") );
416 /* Test the storage function */
417 rc
= registerTokenizer(db
, "nosuchtokenizer", p1
);
418 assert( rc
==SQLITE_OK
);
419 rc
= queryTokenizer(db
, "nosuchtokenizer", &p2
);
420 assert( rc
==SQLITE_OK
);
423 sqlite3_result_text(context
, "ok", -1, SQLITE_STATIC
);
429 ** Set up SQL objects in database db used to access the contents of
430 ** the hash table pointed to by argument pHash. The hash table must
431 ** been initialized to use string keys, and to take a private copy
432 ** of the key when a value is inserted. i.e. by a call similar to:
434 ** sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1);
436 ** This function adds a scalar function (see header comment above
437 ** scalarFunc() in this file for details) and, if ENABLE_TABLE is
438 ** defined at compilation time, a temporary virtual table (see header
439 ** comment above struct HashTableVtab) to the database schema. Both
440 ** provide read/write access to the contents of *pHash.
442 ** The third argument to this function, zName, is used as the name
443 ** of both the scalar and, if created, the virtual table.
445 int sqlite3Fts3InitHashTable(
451 void *p
= (void *)pHash
;
452 const int any
= SQLITE_ANY
;
457 void *pdb
= (void *)db
;
458 zTest
= sqlite3_mprintf("%s_test", zName
);
459 zTest2
= sqlite3_mprintf("%s_internal_test", zName
);
460 if( !zTest
|| !zTest2
){
466 rc
= sqlite3_create_function(db
, zName
, 1, any
, p
, scalarFunc
, 0, 0);
469 rc
= sqlite3_create_function(db
, zName
, 2, any
, p
, scalarFunc
, 0, 0);
473 rc
= sqlite3_create_function(db
, zTest
, -1, any
, p
, testFunc
, 0, 0);
476 rc
= sqlite3_create_function(db
, zTest2
, 0, any
, pdb
, intTestFunc
, 0, 0);
482 sqlite3_free(zTest2
);
488 #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */