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 ******************************************************************************
18 #include "sqlite3ext.h"
19 SQLITE_EXTENSION_INIT1
24 #ifndef SQLITE_AMALGAMATION
26 typedef unsigned char u8
;
27 typedef unsigned int u32
;
28 typedef unsigned short u16
;
30 typedef sqlite3_int64 i64
;
31 typedef sqlite3_uint64 u64
;
33 #define ArraySize(x) ((int)(sizeof(x) / sizeof(x[0])))
39 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
40 #define MAX(x,y) (((x) > (y)) ? (x) : (y))
43 ** Constants for the largest and smallest possible 64-bit signed integers.
45 # define LARGEST_INT64 (0xffffffff|(((i64)0x7fffffff)<<32))
46 # define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64)
52 ** Maximum number of prefix indexes on single FTS5 table. This must be
53 ** less than 32. If it is set to anything large than that, an #error
54 ** directive in fts5_index.c will cause the build to fail.
56 #define FTS5_MAX_PREFIX_INDEXES 31
58 #define FTS5_DEFAULT_NEARDIST 10
59 #define FTS5_DEFAULT_RANK "bm25"
61 /* Name of rank and rowid columns */
62 #define FTS5_RANK_NAME "rank"
63 #define FTS5_ROWID_NAME "rowid"
66 # define FTS5_CORRUPT sqlite3Fts5Corrupt()
67 int sqlite3Fts5Corrupt(void);
69 # define FTS5_CORRUPT SQLITE_CORRUPT_VTAB
73 ** The assert_nc() macro is similar to the assert() macro, except that it
74 ** is used for assert() conditions that are true only if it can be
75 ** guranteed that the database is not corrupt.
78 extern int sqlite3_fts5_may_be_corrupt
;
79 # define assert_nc(x) assert(sqlite3_fts5_may_be_corrupt || (x))
81 # define assert_nc(x) assert(x)
84 /* Mark a function parameter as unused, to suppress nuisance compiler
87 # define UNUSED_PARAM(X) (void)(X)
91 # define UNUSED_PARAM2(X, Y) (void)(X), (void)(Y)
94 typedef struct Fts5Global Fts5Global
;
95 typedef struct Fts5Colset Fts5Colset
;
97 /* If a NEAR() clump or phrase may only match a specific set of columns,
98 ** then an object of the following type is used to record the set of columns.
99 ** Each entry in the aiCol[] array is a column that may be matched.
101 ** This object is used by fts5_expr.c and fts5_index.c.
110 /**************************************************************************
111 ** Interface to code in fts5_config.c. fts5_config.c contains contains code
112 ** to parse the arguments passed to the CREATE VIRTUAL TABLE statement.
115 typedef struct Fts5Config Fts5Config
;
118 ** An instance of the following structure encodes all information that can
119 ** be gleaned from the CREATE VIRTUAL TABLE statement.
121 ** And all information loaded from the %_config table.
124 ** The minimum number of segments that an auto-merge operation should
125 ** attempt to merge together. A value of 1 sets the object to use the
126 ** compile time default. Zero disables auto-merge altogether.
131 ** The value of the content_rowid= option, if one was specified. Or
132 ** the string "rowid" otherwise. This text is not quoted - if it is
133 ** used as part of an SQL statement it needs to be quoted appropriately.
138 ** This exists in order to allow the fts5_index.c module to return a
139 ** decent error message if it encounters a file-format version it does
143 ** True if the %_docsize table is created.
146 ** This is only used for debugging. If set to false, any prefix indexes
147 ** are ignored. This value is configured using:
149 ** INSERT INTO tbl(tbl, rank) VALUES('prefix-index', $bPrefixIndex);
153 sqlite3
*db
; /* Database handle */
154 char *zDb
; /* Database holding FTS index (e.g. "main") */
155 char *zName
; /* Name of FTS index */
156 int nCol
; /* Number of columns */
157 char **azCol
; /* Column names */
158 u8
*abUnindexed
; /* True for unindexed columns */
159 int nPrefix
; /* Number of prefix indexes */
160 int *aPrefix
; /* Sizes in bytes of nPrefix prefix indexes */
161 int eContent
; /* An FTS5_CONTENT value */
162 char *zContent
; /* content table */
163 char *zContentRowid
; /* "content_rowid=" option value */
164 int bColumnsize
; /* "columnsize=" option value (dflt==1) */
165 int eDetail
; /* FTS5_DETAIL_XXX value */
166 char *zContentExprlist
;
168 fts5_tokenizer
*pTokApi
;
170 /* Values loaded from the %_config table */
171 int iCookie
; /* Incremented when %_config is modified */
172 int pgsz
; /* Approximate page size used in %_data */
173 int nAutomerge
; /* 'automerge' setting */
174 int nCrisisMerge
; /* Maximum allowed segments per level */
175 int nHashSize
; /* Bytes of memory for in-memory hash */
176 char *zRank
; /* Name of rank function */
177 char *zRankArgs
; /* Arguments to rank function */
179 /* If non-NULL, points to sqlite3_vtab.base.zErrmsg. Often NULL. */
183 int bPrefixIndex
; /* True to use prefix-indexes */
187 /* Current expected value of %_config table 'version' field */
188 #define FTS5_CURRENT_VERSION 4
190 #define FTS5_CONTENT_NORMAL 0
191 #define FTS5_CONTENT_NONE 1
192 #define FTS5_CONTENT_EXTERNAL 2
194 #define FTS5_DETAIL_FULL 0
195 #define FTS5_DETAIL_NONE 1
196 #define FTS5_DETAIL_COLUMNS 2
200 int sqlite3Fts5ConfigParse(
201 Fts5Global
*, sqlite3
*, int, const char **, Fts5Config
**, char**
203 void sqlite3Fts5ConfigFree(Fts5Config
*);
205 int sqlite3Fts5ConfigDeclareVtab(Fts5Config
*pConfig
);
207 int sqlite3Fts5Tokenize(
208 Fts5Config
*pConfig
, /* FTS5 Configuration object */
209 int flags
, /* FTS5_TOKENIZE_* flags */
210 const char *pText
, int nText
, /* Text to tokenize */
211 void *pCtx
, /* Context passed to xToken() */
212 int (*xToken
)(void*, int, const char*, int, int, int) /* Callback */
215 void sqlite3Fts5Dequote(char *z
);
217 /* Load the contents of the %_config table */
218 int sqlite3Fts5ConfigLoad(Fts5Config
*, int);
220 /* Set the value of a single config attribute */
221 int sqlite3Fts5ConfigSetValue(Fts5Config
*, const char*, sqlite3_value
*, int*);
223 int sqlite3Fts5ConfigParseRank(const char*, char**, char**);
226 ** End of interface to code in fts5_config.c.
227 **************************************************************************/
229 /**************************************************************************
230 ** Interface to code in fts5_buffer.c.
234 ** Buffer object for the incremental building of string data.
236 typedef struct Fts5Buffer Fts5Buffer
;
243 int sqlite3Fts5BufferSize(int*, Fts5Buffer
*, u32
);
244 void sqlite3Fts5BufferAppendVarint(int*, Fts5Buffer
*, i64
);
245 void sqlite3Fts5BufferAppendBlob(int*, Fts5Buffer
*, u32
, const u8
*);
246 void sqlite3Fts5BufferAppendString(int *, Fts5Buffer
*, const char*);
247 void sqlite3Fts5BufferFree(Fts5Buffer
*);
248 void sqlite3Fts5BufferZero(Fts5Buffer
*);
249 void sqlite3Fts5BufferSet(int*, Fts5Buffer
*, int, const u8
*);
250 void sqlite3Fts5BufferAppendPrintf(int *, Fts5Buffer
*, char *zFmt
, ...);
252 char *sqlite3Fts5Mprintf(int *pRc
, const char *zFmt
, ...);
254 #define fts5BufferZero(x) sqlite3Fts5BufferZero(x)
255 #define fts5BufferAppendVarint(a,b,c) sqlite3Fts5BufferAppendVarint(a,b,c)
256 #define fts5BufferFree(a) sqlite3Fts5BufferFree(a)
257 #define fts5BufferAppendBlob(a,b,c,d) sqlite3Fts5BufferAppendBlob(a,b,c,d)
258 #define fts5BufferSet(a,b,c,d) sqlite3Fts5BufferSet(a,b,c,d)
260 #define fts5BufferGrow(pRc,pBuf,nn) ( \
261 (u32)((pBuf)->n) + (u32)(nn) <= (u32)((pBuf)->nSpace) ? 0 : \
262 sqlite3Fts5BufferSize((pRc),(pBuf),(nn)+(pBuf)->n) \
265 /* Write and decode big-endian 32-bit integer values */
266 void sqlite3Fts5Put32(u8
*, int);
267 int sqlite3Fts5Get32(const u8
*);
269 #define FTS5_POS2COLUMN(iPos) (int)(iPos >> 32)
270 #define FTS5_POS2OFFSET(iPos) (int)(iPos & 0xFFFFFFFF)
272 typedef struct Fts5PoslistReader Fts5PoslistReader
;
273 struct Fts5PoslistReader
{
274 /* Variables used only by sqlite3Fts5PoslistIterXXX() functions. */
275 const u8
*a
; /* Position list to iterate through */
276 int n
; /* Size of buffer at a[] in bytes */
277 int i
; /* Current offset in a[] */
279 u8 bFlag
; /* For client use (any custom purpose) */
281 /* Output variables */
282 u8 bEof
; /* Set to true at EOF */
283 i64 iPos
; /* (iCol<<32) + iPos */
285 int sqlite3Fts5PoslistReaderInit(
286 const u8
*a
, int n
, /* Poslist buffer to iterate through */
287 Fts5PoslistReader
*pIter
/* Iterator object to initialize */
289 int sqlite3Fts5PoslistReaderNext(Fts5PoslistReader
*);
291 typedef struct Fts5PoslistWriter Fts5PoslistWriter
;
292 struct Fts5PoslistWriter
{
295 int sqlite3Fts5PoslistWriterAppend(Fts5Buffer
*, Fts5PoslistWriter
*, i64
);
296 void sqlite3Fts5PoslistSafeAppend(Fts5Buffer
*, i64
*, i64
);
298 int sqlite3Fts5PoslistNext64(
299 const u8
*a
, int n
, /* Buffer containing poslist */
300 int *pi
, /* IN/OUT: Offset within a[] */
301 i64
*piOff
/* IN/OUT: Current offset */
305 void *sqlite3Fts5MallocZero(int *pRc
, int nByte
);
306 char *sqlite3Fts5Strndup(int *pRc
, const char *pIn
, int nIn
);
308 /* Character set tests (like isspace(), isalpha() etc.) */
309 int sqlite3Fts5IsBareword(char t
);
312 /* Bucket of terms object used by the integrity-check in offsets=0 mode. */
313 typedef struct Fts5Termset Fts5Termset
;
314 int sqlite3Fts5TermsetNew(Fts5Termset
**);
315 int sqlite3Fts5TermsetAdd(Fts5Termset
*, int, const char*, int, int *pbPresent
);
316 void sqlite3Fts5TermsetFree(Fts5Termset
*);
319 ** End of interface to code in fts5_buffer.c.
320 **************************************************************************/
322 /**************************************************************************
323 ** Interface to code in fts5_index.c. fts5_index.c contains contains code
324 ** to access the data stored in the %_data table.
327 typedef struct Fts5Index Fts5Index
;
328 typedef struct Fts5IndexIter Fts5IndexIter
;
330 struct Fts5IndexIter
{
337 #define sqlite3Fts5IterEof(x) ((x)->bEof)
340 ** Values used as part of the flags argument passed to IndexQuery().
342 #define FTS5INDEX_QUERY_PREFIX 0x0001 /* Prefix query */
343 #define FTS5INDEX_QUERY_DESC 0x0002 /* Docs in descending rowid order */
344 #define FTS5INDEX_QUERY_TEST_NOIDX 0x0004 /* Do not use prefix index */
345 #define FTS5INDEX_QUERY_SCAN 0x0008 /* Scan query (fts5vocab) */
347 /* The following are used internally by the fts5_index.c module. They are
348 ** defined here only to make it easier to avoid clashes with the flags
350 #define FTS5INDEX_QUERY_SKIPEMPTY 0x0010
351 #define FTS5INDEX_QUERY_NOOUTPUT 0x0020
354 ** Create/destroy an Fts5Index object.
356 int sqlite3Fts5IndexOpen(Fts5Config
*pConfig
, int bCreate
, Fts5Index
**, char**);
357 int sqlite3Fts5IndexClose(Fts5Index
*p
);
360 ** Return a simple checksum value based on the arguments.
362 u64
sqlite3Fts5IndexEntryCksum(
372 ** Argument p points to a buffer containing utf-8 text that is n bytes in
373 ** size. Return the number of bytes in the nChar character prefix of the
374 ** buffer, or 0 if there are less than nChar characters in total.
376 int sqlite3Fts5IndexCharlenToBytelen(
383 ** Open a new iterator to iterate though all rowids that match the
384 ** specified token or token prefix.
386 int sqlite3Fts5IndexQuery(
387 Fts5Index
*p
, /* FTS index to query */
388 const char *pToken
, int nToken
, /* Token (or prefix) to query for */
389 int flags
, /* Mask of FTS5INDEX_QUERY_X flags */
390 Fts5Colset
*pColset
, /* Match these columns only */
391 Fts5IndexIter
**ppIter
/* OUT: New iterator object */
395 ** The various operations on open token or token prefix iterators opened
396 ** using sqlite3Fts5IndexQuery().
398 int sqlite3Fts5IterNext(Fts5IndexIter
*);
399 int sqlite3Fts5IterNextFrom(Fts5IndexIter
*, i64 iMatch
);
402 ** Close an iterator opened by sqlite3Fts5IndexQuery().
404 void sqlite3Fts5IterClose(Fts5IndexIter
*);
407 ** This interface is used by the fts5vocab module.
409 const char *sqlite3Fts5IterTerm(Fts5IndexIter
*, int*);
410 int sqlite3Fts5IterNextScan(Fts5IndexIter
*);
414 ** Insert or remove data to or from the index. Each time a document is
415 ** added to or removed from the index, this function is called one or more
418 ** For an insert, it must be called once for each token in the new document.
419 ** If the operation is a delete, it must be called (at least) once for each
420 ** unique token in the document with an iCol value less than zero. The iPos
421 ** argument is ignored for a delete.
423 int sqlite3Fts5IndexWrite(
424 Fts5Index
*p
, /* Index to write to */
425 int iCol
, /* Column token appears in (-ve -> delete) */
426 int iPos
, /* Position of token within column */
427 const char *pToken
, int nToken
/* Token to add or remove to or from index */
431 ** Indicate that subsequent calls to sqlite3Fts5IndexWrite() pertain to
434 int sqlite3Fts5IndexBeginWrite(
435 Fts5Index
*p
, /* Index to write to */
436 int bDelete
, /* True if current operation is a delete */
437 i64 iDocid
/* Docid to add or remove data from */
441 ** Flush any data stored in the in-memory hash tables to the database.
442 ** If the bCommit flag is true, also close any open blob handles.
444 int sqlite3Fts5IndexSync(Fts5Index
*p
, int bCommit
);
447 ** Discard any data stored in the in-memory hash tables. Do not write it
448 ** to the database. Additionally, assume that the contents of the %_data
449 ** table may have changed on disk. So any in-memory caches of %_data
450 ** records must be invalidated.
452 int sqlite3Fts5IndexRollback(Fts5Index
*p
);
455 ** Get or set the "averages" values.
457 int sqlite3Fts5IndexGetAverages(Fts5Index
*p
, i64
*pnRow
, i64
*anSize
);
458 int sqlite3Fts5IndexSetAverages(Fts5Index
*p
, const u8
*, int);
461 ** Functions called by the storage module as part of integrity-check.
463 int sqlite3Fts5IndexIntegrityCheck(Fts5Index
*, u64 cksum
);
466 ** Called during virtual module initialization to register UDF
467 ** fts5_decode() with SQLite
469 int sqlite3Fts5IndexInit(sqlite3
*);
471 int sqlite3Fts5IndexSetCookie(Fts5Index
*, int);
474 ** Return the total number of entries read from the %_data table by
475 ** this connection since it was created.
477 int sqlite3Fts5IndexReads(Fts5Index
*p
);
479 int sqlite3Fts5IndexReinit(Fts5Index
*p
);
480 int sqlite3Fts5IndexOptimize(Fts5Index
*p
);
481 int sqlite3Fts5IndexMerge(Fts5Index
*p
, int nMerge
);
483 int sqlite3Fts5IndexLoadConfig(Fts5Index
*p
);
486 ** End of interface to code in fts5_index.c.
487 **************************************************************************/
489 /**************************************************************************
490 ** Interface to code in fts5_varint.c.
492 int sqlite3Fts5GetVarint32(const unsigned char *p
, u32
*v
);
493 int sqlite3Fts5GetVarintLen(u32 iVal
);
494 u8
sqlite3Fts5GetVarint(const unsigned char*, u64
*);
495 int sqlite3Fts5PutVarint(unsigned char *p
, u64 v
);
497 #define fts5GetVarint32(a,b) sqlite3Fts5GetVarint32(a,(u32*)&b)
498 #define fts5GetVarint sqlite3Fts5GetVarint
500 #define fts5FastGetVarint32(a, iOff, nVal) { \
501 nVal = (a)[iOff++]; \
504 iOff += fts5GetVarint32(&(a)[iOff], nVal); \
510 ** End of interface to code in fts5_varint.c.
511 **************************************************************************/
514 /**************************************************************************
515 ** Interface to code in fts5.c.
518 int sqlite3Fts5GetTokenizer(
527 Fts5Index
*sqlite3Fts5IndexFromCsrid(Fts5Global
*, i64
, Fts5Config
**);
530 ** End of interface to code in fts5.c.
531 **************************************************************************/
533 /**************************************************************************
534 ** Interface to code in fts5_hash.c.
536 typedef struct Fts5Hash Fts5Hash
;
539 ** Create a hash table, free a hash table.
541 int sqlite3Fts5HashNew(Fts5Config
*, Fts5Hash
**, int *pnSize
);
542 void sqlite3Fts5HashFree(Fts5Hash
*);
544 int sqlite3Fts5HashWrite(
546 i64 iRowid
, /* Rowid for this entry */
547 int iCol
, /* Column token appears in (-ve -> delete) */
548 int iPos
, /* Position of token within column */
550 const char *pToken
, int nToken
/* Token to add or remove to or from index */
554 ** Empty (but do not delete) a hash table.
556 void sqlite3Fts5HashClear(Fts5Hash
*);
558 int sqlite3Fts5HashQuery(
559 Fts5Hash
*, /* Hash table to query */
560 const char *pTerm
, int nTerm
, /* Query term */
561 const u8
**ppDoclist
, /* OUT: Pointer to doclist for pTerm */
562 int *pnDoclist
/* OUT: Size of doclist in bytes */
565 int sqlite3Fts5HashScanInit(
566 Fts5Hash
*, /* Hash table to query */
567 const char *pTerm
, int nTerm
/* Query prefix */
569 void sqlite3Fts5HashScanNext(Fts5Hash
*);
570 int sqlite3Fts5HashScanEof(Fts5Hash
*);
571 void sqlite3Fts5HashScanEntry(Fts5Hash
*,
572 const char **pzTerm
, /* OUT: term (nul-terminated) */
573 const u8
**ppDoclist
, /* OUT: pointer to doclist */
574 int *pnDoclist
/* OUT: size of doclist in bytes */
579 ** End of interface to code in fts5_hash.c.
580 **************************************************************************/
582 /**************************************************************************
583 ** Interface to code in fts5_storage.c. fts5_storage.c contains contains
584 ** code to access the data stored in the %_content and %_docsize tables.
587 #define FTS5_STMT_SCAN_ASC 0 /* SELECT rowid, * FROM ... ORDER BY 1 ASC */
588 #define FTS5_STMT_SCAN_DESC 1 /* SELECT rowid, * FROM ... ORDER BY 1 DESC */
589 #define FTS5_STMT_LOOKUP 2 /* SELECT rowid, * FROM ... WHERE rowid=? */
591 typedef struct Fts5Storage Fts5Storage
;
593 int sqlite3Fts5StorageOpen(Fts5Config
*, Fts5Index
*, int, Fts5Storage
**, char**);
594 int sqlite3Fts5StorageClose(Fts5Storage
*p
);
595 int sqlite3Fts5StorageRename(Fts5Storage
*, const char *zName
);
597 int sqlite3Fts5DropAll(Fts5Config
*);
598 int sqlite3Fts5CreateTable(Fts5Config
*, const char*, const char*, int, char **);
600 int sqlite3Fts5StorageDelete(Fts5Storage
*p
, i64
, sqlite3_value
**);
601 int sqlite3Fts5StorageContentInsert(Fts5Storage
*p
, sqlite3_value
**, i64
*);
602 int sqlite3Fts5StorageIndexInsert(Fts5Storage
*p
, sqlite3_value
**, i64
);
604 int sqlite3Fts5StorageIntegrity(Fts5Storage
*p
);
606 int sqlite3Fts5StorageStmt(Fts5Storage
*p
, int eStmt
, sqlite3_stmt
**, char**);
607 void sqlite3Fts5StorageStmtRelease(Fts5Storage
*p
, int eStmt
, sqlite3_stmt
*);
609 int sqlite3Fts5StorageDocsize(Fts5Storage
*p
, i64 iRowid
, int *aCol
);
610 int sqlite3Fts5StorageSize(Fts5Storage
*p
, int iCol
, i64
*pnAvg
);
611 int sqlite3Fts5StorageRowCount(Fts5Storage
*p
, i64
*pnRow
);
613 int sqlite3Fts5StorageSync(Fts5Storage
*p
, int bCommit
);
614 int sqlite3Fts5StorageRollback(Fts5Storage
*p
);
616 int sqlite3Fts5StorageConfigValue(
617 Fts5Storage
*p
, const char*, sqlite3_value
*, int
620 int sqlite3Fts5StorageDeleteAll(Fts5Storage
*p
);
621 int sqlite3Fts5StorageRebuild(Fts5Storage
*p
);
622 int sqlite3Fts5StorageOptimize(Fts5Storage
*p
);
623 int sqlite3Fts5StorageMerge(Fts5Storage
*p
, int nMerge
);
626 ** End of interface to code in fts5_storage.c.
627 **************************************************************************/
630 /**************************************************************************
631 ** Interface to code in fts5_expr.c.
633 typedef struct Fts5Expr Fts5Expr
;
634 typedef struct Fts5ExprNode Fts5ExprNode
;
635 typedef struct Fts5Parse Fts5Parse
;
636 typedef struct Fts5Token Fts5Token
;
637 typedef struct Fts5ExprPhrase Fts5ExprPhrase
;
638 typedef struct Fts5ExprNearset Fts5ExprNearset
;
641 const char *p
; /* Token text (not NULL terminated) */
642 int n
; /* Size of buffer p in bytes */
645 /* Parse a MATCH expression. */
646 int sqlite3Fts5ExprNew(
654 ** for(rc = sqlite3Fts5ExprFirst(pExpr, pIdx, bDesc);
655 ** rc==SQLITE_OK && 0==sqlite3Fts5ExprEof(pExpr);
656 ** rc = sqlite3Fts5ExprNext(pExpr)
658 ** // The document with rowid iRowid matches the expression!
659 ** i64 iRowid = sqlite3Fts5ExprRowid(pExpr);
662 int sqlite3Fts5ExprFirst(Fts5Expr
*, Fts5Index
*pIdx
, i64 iMin
, int bDesc
);
663 int sqlite3Fts5ExprNext(Fts5Expr
*, i64 iMax
);
664 int sqlite3Fts5ExprEof(Fts5Expr
*);
665 i64
sqlite3Fts5ExprRowid(Fts5Expr
*);
667 void sqlite3Fts5ExprFree(Fts5Expr
*);
669 /* Called during startup to register a UDF with SQLite */
670 int sqlite3Fts5ExprInit(Fts5Global
*, sqlite3
*);
672 int sqlite3Fts5ExprPhraseCount(Fts5Expr
*);
673 int sqlite3Fts5ExprPhraseSize(Fts5Expr
*, int iPhrase
);
674 int sqlite3Fts5ExprPoslist(Fts5Expr
*, int, const u8
**);
676 typedef struct Fts5PoslistPopulator Fts5PoslistPopulator
;
677 Fts5PoslistPopulator
*sqlite3Fts5ExprClearPoslists(Fts5Expr
*, int);
678 int sqlite3Fts5ExprPopulatePoslists(
679 Fts5Config
*, Fts5Expr
*, Fts5PoslistPopulator
*, int, const char*, int
681 void sqlite3Fts5ExprCheckPoslists(Fts5Expr
*, i64
);
682 void sqlite3Fts5ExprClearEof(Fts5Expr
*);
684 int sqlite3Fts5ExprClonePhrase(Fts5Expr
*, int, Fts5Expr
**);
686 int sqlite3Fts5ExprPhraseCollist(Fts5Expr
*, int, const u8
**, int *);
688 /*******************************************
689 ** The fts5_expr.c API above this point is used by the other hand-written
690 ** C code in this module. The interfaces below this point are called by
691 ** the parser code in fts5parse.y. */
693 void sqlite3Fts5ParseError(Fts5Parse
*pParse
, const char *zFmt
, ...);
695 Fts5ExprNode
*sqlite3Fts5ParseNode(
699 Fts5ExprNode
*pRight
,
700 Fts5ExprNearset
*pNear
703 Fts5ExprPhrase
*sqlite3Fts5ParseTerm(
705 Fts5ExprPhrase
*pPhrase
,
710 Fts5ExprNearset
*sqlite3Fts5ParseNearset(
716 Fts5Colset
*sqlite3Fts5ParseColset(
722 void sqlite3Fts5ParsePhraseFree(Fts5ExprPhrase
*);
723 void sqlite3Fts5ParseNearsetFree(Fts5ExprNearset
*);
724 void sqlite3Fts5ParseNodeFree(Fts5ExprNode
*);
726 void sqlite3Fts5ParseSetDistance(Fts5Parse
*, Fts5ExprNearset
*, Fts5Token
*);
727 void sqlite3Fts5ParseSetColset(Fts5Parse
*, Fts5ExprNearset
*, Fts5Colset
*);
728 void sqlite3Fts5ParseFinished(Fts5Parse
*pParse
, Fts5ExprNode
*p
);
729 void sqlite3Fts5ParseNear(Fts5Parse
*pParse
, Fts5Token
*);
732 ** End of interface to code in fts5_expr.c.
733 **************************************************************************/
737 /**************************************************************************
738 ** Interface to code in fts5_aux.c.
741 int sqlite3Fts5AuxInit(fts5_api
*);
743 ** End of interface to code in fts5_aux.c.
744 **************************************************************************/
746 /**************************************************************************
747 ** Interface to code in fts5_tokenizer.c.
750 int sqlite3Fts5TokenizerInit(fts5_api
*);
752 ** End of interface to code in fts5_tokenizer.c.
753 **************************************************************************/
755 /**************************************************************************
756 ** Interface to code in fts5_vocab.c.
759 int sqlite3Fts5VocabInit(Fts5Global
*, sqlite3
*);
762 ** End of interface to code in fts5_vocab.c.
763 **************************************************************************/
766 /**************************************************************************
767 ** Interface to automatically generated code in fts5_unicode2.c.
769 int sqlite3Fts5UnicodeIsalnum(int c
);
770 int sqlite3Fts5UnicodeIsdiacritic(int c
);
771 int sqlite3Fts5UnicodeFold(int c
, int bRemoveDiacritic
);
773 ** End of interface to code in fts5_unicode2.c.
774 **************************************************************************/