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 ** Return true if the two-argument version of fts3_tokenizer()
34 ** has been activated via a prior call to sqlite3_db_config(db,
35 ** SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, 1, 0);
37 static int fts3TokenizerEnabled(sqlite3_context
*context
){
38 sqlite3
*db
= sqlite3_context_db_handle(context
);
40 sqlite3_db_config(db
,SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER
,-1,&isEnabled
);
45 ** Implementation of the SQL scalar function for accessing the underlying
46 ** hash table. This function may be called as follows:
48 ** SELECT <function-name>(<key-name>);
49 ** SELECT <function-name>(<key-name>, <pointer>);
51 ** where <function-name> is the name passed as the second argument
52 ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer').
54 ** If the <pointer> argument is specified, it must be a blob value
55 ** containing a pointer to be stored as the hash data corresponding
56 ** to the string <key-name>. If <pointer> is not specified, then
57 ** the string <key-name> must already exist in the has table. Otherwise,
58 ** an error is returned.
60 ** Whether or not the <pointer> argument is specified, the value returned
61 ** is a blob containing the pointer stored as the hash data corresponding
62 ** to string <key-name> (after the hash-table is updated, if applicable).
64 static void fts3TokenizerFunc(
65 sqlite3_context
*context
,
71 const unsigned char *zName
;
74 assert( argc
==1 || argc
==2 );
76 pHash
= (Fts3Hash
*)sqlite3_user_data(context
);
78 zName
= sqlite3_value_text(argv
[0]);
79 nName
= sqlite3_value_bytes(argv
[0])+1;
82 if( fts3TokenizerEnabled(context
) || sqlite3_value_frombind(argv
[1]) ){
84 int n
= sqlite3_value_bytes(argv
[1]);
85 if( zName
==0 || n
!=sizeof(pPtr
) ){
86 sqlite3_result_error(context
, "argument type mismatch", -1);
89 pPtr
= *(void **)sqlite3_value_blob(argv
[1]);
90 pOld
= sqlite3Fts3HashInsert(pHash
, (void *)zName
, nName
, pPtr
);
92 sqlite3_result_error(context
, "out of memory", -1);
95 sqlite3_result_error(context
, "fts3tokenize disabled", -1);
100 pPtr
= sqlite3Fts3HashFind(pHash
, zName
, nName
);
103 char *zErr
= sqlite3_mprintf("unknown tokenizer: %s", zName
);
104 sqlite3_result_error(context
, zErr
, -1);
109 if( fts3TokenizerEnabled(context
) || sqlite3_value_frombind(argv
[0]) ){
110 sqlite3_result_blob(context
, (void *)&pPtr
, sizeof(pPtr
), SQLITE_TRANSIENT
);
114 int sqlite3Fts3IsIdChar(char c
){
115 static const char isFtsIdChar
[] = {
116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */
117 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */
118 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */
119 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 3x */
120 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 4x */
121 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, /* 5x */
122 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* 6x */
123 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, /* 7x */
125 return (c
&0x80 || isFtsIdChar
[(int)(c
)]);
128 const char *sqlite3Fts3NextToken(const char *zStr
, int *pn
){
132 /* Find the start of the next token. */
137 case '\0': return 0; /* No more tokens here */
142 while( *++z2
&& (*z2
!=c
|| *++z2
==c
) );
147 while( *z2
&& z2
[0]!=']' ) z2
++;
152 if( sqlite3Fts3IsIdChar(*z1
) ){
154 while( sqlite3Fts3IsIdChar(*z2
) ) z2
++;
165 int sqlite3Fts3InitTokenizer(
166 Fts3Hash
*pHash
, /* Tokenizer hash table */
167 const char *zArg
, /* Tokenizer name */
168 sqlite3_tokenizer
**ppTok
, /* OUT: Tokenizer (if applicable) */
169 char **pzErr
/* OUT: Set to malloced error message */
172 char *z
= (char *)zArg
;
175 char *zEnd
; /* Pointer to nul-term of zCopy */
176 sqlite3_tokenizer_module
*m
;
178 zCopy
= sqlite3_mprintf("%s", zArg
);
179 if( !zCopy
) return SQLITE_NOMEM
;
180 zEnd
= &zCopy
[strlen(zCopy
)];
182 z
= (char *)sqlite3Fts3NextToken(zCopy
, &n
);
188 sqlite3Fts3Dequote(z
);
190 m
= (sqlite3_tokenizer_module
*)sqlite3Fts3HashFind(pHash
,z
,(int)strlen(z
)+1);
192 sqlite3Fts3ErrMsg(pzErr
, "unknown tokenizer: %s", z
);
195 char const **aArg
= 0;
198 while( z
<zEnd
&& (NULL
!=(z
= (char *)sqlite3Fts3NextToken(z
, &n
))) ){
199 sqlite3_int64 nNew
= sizeof(char *)*(iArg
+1);
200 char const **aNew
= (const char **)sqlite3_realloc64((void *)aArg
, nNew
);
203 sqlite3_free((void *)aArg
);
209 sqlite3Fts3Dequote(z
);
212 rc
= m
->xCreate(iArg
, aArg
, ppTok
);
213 assert( rc
!=SQLITE_OK
|| *ppTok
);
215 sqlite3Fts3ErrMsg(pzErr
, "unknown tokenizer");
217 (*ppTok
)->pModule
= m
;
219 sqlite3_free((void *)aArg
);
229 #if defined(INCLUDE_SQLITE_TCL_H)
230 # include "sqlite_tcl.h"
237 ** Implementation of a special SQL scalar function for testing tokenizers
238 ** designed to be used in concert with the Tcl testing framework. This
239 ** function must be called with two or more arguments:
241 ** SELECT <function-name>(<key-name>, ..., <input-string>);
243 ** where <function-name> is the name passed as the second argument
244 ** to the sqlite3Fts3InitHashTable() function (e.g. 'fts3_tokenizer')
245 ** concatenated with the string '_test' (e.g. 'fts3_tokenizer_test').
247 ** The return value is a string that may be interpreted as a Tcl
248 ** list. For each token in the <input-string>, three elements are
249 ** added to the returned list. The first is the token position, the
250 ** second is the token text (folded, stemmed, etc.) and the third is the
251 ** substring of <input-string> associated with the token. For example,
252 ** using the built-in "simple" tokenizer:
254 ** SELECT fts_tokenizer_test('simple', 'I don't see how');
256 ** will return the string:
258 ** "{0 i I 1 dont don't 2 see see 3 how how}"
261 static void testFunc(
262 sqlite3_context
*context
,
267 sqlite3_tokenizer_module
*p
;
268 sqlite3_tokenizer
*pTokenizer
= 0;
269 sqlite3_tokenizer_cursor
*pCsr
= 0;
271 const char *zErr
= 0;
278 const char *azArg
[64];
290 sqlite3_result_error(context
, "insufficient arguments", -1);
294 nName
= sqlite3_value_bytes(argv
[0]);
295 zName
= (const char *)sqlite3_value_text(argv
[0]);
296 nInput
= sqlite3_value_bytes(argv
[argc
-1]);
297 zInput
= (const char *)sqlite3_value_text(argv
[argc
-1]);
299 pHash
= (Fts3Hash
*)sqlite3_user_data(context
);
300 p
= (sqlite3_tokenizer_module
*)sqlite3Fts3HashFind(pHash
, zName
, nName
+1);
303 char *zErr2
= sqlite3_mprintf("unknown tokenizer: %s", zName
);
304 sqlite3_result_error(context
, zErr2
, -1);
310 Tcl_IncrRefCount(pRet
);
312 for(i
=1; i
<argc
-1; i
++){
313 azArg
[i
-1] = (const char *)sqlite3_value_text(argv
[i
]);
316 if( SQLITE_OK
!=p
->xCreate(argc
-2, azArg
, &pTokenizer
) ){
317 zErr
= "error in xCreate()";
320 pTokenizer
->pModule
= p
;
321 if( sqlite3Fts3OpenTokenizer(pTokenizer
, 0, zInput
, nInput
, &pCsr
) ){
322 zErr
= "error in xOpen()";
326 while( SQLITE_OK
==p
->xNext(pCsr
, &zToken
, &nToken
, &iStart
, &iEnd
, &iPos
) ){
327 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewIntObj(iPos
));
328 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewStringObj(zToken
, nToken
));
329 zToken
= &zInput
[iStart
];
330 nToken
= iEnd
-iStart
;
331 Tcl_ListObjAppendElement(0, pRet
, Tcl_NewStringObj(zToken
, nToken
));
334 if( SQLITE_OK
!=p
->xClose(pCsr
) ){
335 zErr
= "error in xClose()";
338 if( SQLITE_OK
!=p
->xDestroy(pTokenizer
) ){
339 zErr
= "error in xDestroy()";
345 sqlite3_result_error(context
, zErr
, -1);
347 sqlite3_result_text(context
, Tcl_GetString(pRet
), -1, SQLITE_TRANSIENT
);
349 Tcl_DecrRefCount(pRet
);
353 int registerTokenizer(
356 const sqlite3_tokenizer_module
*p
360 const char zSql
[] = "SELECT fts3_tokenizer(?, ?)";
362 rc
= sqlite3_prepare_v2(db
, zSql
, -1, &pStmt
, 0);
367 sqlite3_bind_text(pStmt
, 1, zName
, -1, SQLITE_STATIC
);
368 sqlite3_bind_blob(pStmt
, 2, &p
, sizeof(p
), SQLITE_STATIC
);
371 return sqlite3_finalize(pStmt
);
379 const sqlite3_tokenizer_module
**pp
383 const char zSql
[] = "SELECT fts3_tokenizer(?)";
386 rc
= sqlite3_prepare_v2(db
, zSql
, -1, &pStmt
, 0);
391 sqlite3_bind_text(pStmt
, 1, zName
, -1, SQLITE_STATIC
);
392 if( SQLITE_ROW
==sqlite3_step(pStmt
) ){
393 if( sqlite3_column_type(pStmt
, 0)==SQLITE_BLOB
394 && sqlite3_column_bytes(pStmt
, 0)==sizeof(*pp
)
396 memcpy((void *)pp
, sqlite3_column_blob(pStmt
, 0), sizeof(*pp
));
400 return sqlite3_finalize(pStmt
);
403 void sqlite3Fts3SimpleTokenizerModule(sqlite3_tokenizer_module
const**ppModule
);
406 ** Implementation of the scalar function fts3_tokenizer_internal_test().
407 ** This function is used for testing only, it is not included in the
408 ** build unless SQLITE_TEST is defined.
410 ** The purpose of this is to test that the fts3_tokenizer() function
411 ** can be used as designed by the C-code in the queryTokenizer and
412 ** registerTokenizer() functions above. These two functions are repeated
413 ** in the README.tokenizer file as an example, so it is important to
416 ** To run the tests, evaluate the fts3_tokenizer_internal_test() scalar
417 ** function with no arguments. An assert() will fail if a problem is
420 ** SELECT fts3_tokenizer_internal_test();
423 static void intTestFunc(
424 sqlite3_context
*context
,
429 const sqlite3_tokenizer_module
*p1
;
430 const sqlite3_tokenizer_module
*p2
;
431 sqlite3
*db
= (sqlite3
*)sqlite3_user_data(context
);
433 UNUSED_PARAMETER(argc
);
434 UNUSED_PARAMETER(argv
);
436 /* Test the query function */
437 sqlite3Fts3SimpleTokenizerModule(&p1
);
438 rc
= queryTokenizer(db
, "simple", &p2
);
439 assert( rc
==SQLITE_OK
);
441 rc
= queryTokenizer(db
, "nosuchtokenizer", &p2
);
442 assert( rc
==SQLITE_ERROR
);
444 assert( 0==strcmp(sqlite3_errmsg(db
), "unknown tokenizer: nosuchtokenizer") );
446 /* Test the storage function */
447 if( fts3TokenizerEnabled(context
) ){
448 rc
= registerTokenizer(db
, "nosuchtokenizer", p1
);
449 assert( rc
==SQLITE_OK
);
450 rc
= queryTokenizer(db
, "nosuchtokenizer", &p2
);
451 assert( rc
==SQLITE_OK
);
455 sqlite3_result_text(context
, "ok", -1, SQLITE_STATIC
);
461 ** Set up SQL objects in database db used to access the contents of
462 ** the hash table pointed to by argument pHash. The hash table must
463 ** been initialized to use string keys, and to take a private copy
464 ** of the key when a value is inserted. i.e. by a call similar to:
466 ** sqlite3Fts3HashInit(pHash, FTS3_HASH_STRING, 1);
468 ** This function adds a scalar function (see header comment above
469 ** fts3TokenizerFunc() in this file for details) and, if ENABLE_TABLE is
470 ** defined at compilation time, a temporary virtual table (see header
471 ** comment above struct HashTableVtab) to the database schema. Both
472 ** provide read/write access to the contents of *pHash.
474 ** The third argument to this function, zName, is used as the name
475 ** of both the scalar and, if created, the virtual table.
477 int sqlite3Fts3InitHashTable(
483 void *p
= (void *)pHash
;
484 const int any
= SQLITE_UTF8
|SQLITE_DIRECTONLY
;
489 void *pdb
= (void *)db
;
490 zTest
= sqlite3_mprintf("%s_test", zName
);
491 zTest2
= sqlite3_mprintf("%s_internal_test", zName
);
492 if( !zTest
|| !zTest2
){
498 rc
= sqlite3_create_function(db
, zName
, 1, any
, p
, fts3TokenizerFunc
, 0, 0);
501 rc
= sqlite3_create_function(db
, zName
, 2, any
, p
, fts3TokenizerFunc
, 0, 0);
505 rc
= sqlite3_create_function(db
, zTest
, -1, any
, p
, testFunc
, 0, 0);
508 rc
= sqlite3_create_function(db
, zTest2
, 0, any
, pdb
, intTestFunc
, 0, 0);
514 sqlite3_free(zTest2
);
520 #endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_FTS3) */