First public contribution.
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 *************************************************************************
12 ** An tokenizer for SQL
14 ** This file contains C code that implements the sqlite3_complete() API.
15 ** This code used to be part of the tokenizer.c source file. But by
16 ** separating it out, the code will be automatically omitted from
17 ** static links that do not use it.
19 ** $Id: complete.c,v 1.7 2008/06/13 18:24:27 drh Exp $
21 #include "sqliteInt.h"
22 #ifndef SQLITE_OMIT_COMPLETE
25 ** This is defined in tokenize.c. We just have to import the definition.
27 #ifndef SQLITE_AMALGAMATION
29 extern const char sqlite3IsAsciiIdChar[];
30 #define IdChar(C) (((c=C)&0x80)!=0 || (c>0x1f && sqlite3IsAsciiIdChar[c-0x20]))
33 extern const char sqlite3IsEbcdicIdChar[];
34 #define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40]))
36 #endif /* SQLITE_AMALGAMATION */
40 ** Token types used by the sqlite3_complete() routine. See the header
41 ** comments on that procedure for additional information.
53 ** Return TRUE if the given SQL string ends in a semicolon.
55 ** Special handling is require for CREATE TRIGGER statements.
56 ** Whenever the CREATE TRIGGER keywords are seen, the statement
57 ** must end with ";END;".
59 ** This implementation uses a state machine with 7 states:
61 ** (0) START At the beginning or end of an SQL statement. This routine
62 ** returns 1 if it ends in the START state and 0 if it ends
63 ** in any other state.
65 ** (1) NORMAL We are in the middle of statement which ends with a single
68 ** (2) EXPLAIN The keyword EXPLAIN has been seen at the beginning of
71 ** (3) CREATE The keyword CREATE has been seen at the beginning of a
72 ** statement, possibly preceeded by EXPLAIN and/or followed by
75 ** (4) TRIGGER We are in the middle of a trigger definition that must be
76 ** ended by a semicolon, the keyword END, and another semicolon.
78 ** (5) SEMI We've seen the first semicolon in the ";END;" that occurs at
79 ** the end of a trigger definition.
81 ** (6) END We've seen the ";END" of the ";END;" that occurs at the end
82 ** of a trigger difinition.
84 ** Transitions between states above are determined by tokens extracted
85 ** from the input. The following tokens are significant:
87 ** (0) tkSEMI A semicolon.
88 ** (1) tkWS Whitespace
89 ** (2) tkOTHER Any other SQL token.
90 ** (3) tkEXPLAIN The "explain" keyword.
91 ** (4) tkCREATE The "create" keyword.
92 ** (5) tkTEMP The "temp" or "temporary" keyword.
93 ** (6) tkTRIGGER The "trigger" keyword.
94 ** (7) tkEND The "end" keyword.
96 ** Whitespace never causes a state transition and is always ignored.
98 ** If we compile with SQLITE_OMIT_TRIGGER, all of the computation needed
99 ** to recognize the end of a trigger can be omitted. All we have to do
100 ** is look for a semicolon that is not part of an string or comment.
102 int sqlite3_complete(const char *zSql){
103 u8 state = 0; /* Current state, using numbers defined in header comment */
104 u8 token; /* Value of the next token */
106 #ifndef SQLITE_OMIT_TRIGGER
107 /* A complex statement machine used to detect the end of a CREATE TRIGGER
108 ** statement. This is the normal case.
110 static const u8 trans[7][8] = {
112 /* State: ** SEMI WS OTHER EXPLAIN CREATE TEMP TRIGGER END */
113 /* 0 START: */ { 0, 0, 1, 2, 3, 1, 1, 1, },
114 /* 1 NORMAL: */ { 0, 1, 1, 1, 1, 1, 1, 1, },
115 /* 2 EXPLAIN: */ { 0, 2, 1, 1, 3, 1, 1, 1, },
116 /* 3 CREATE: */ { 0, 3, 1, 1, 1, 3, 4, 1, },
117 /* 4 TRIGGER: */ { 5, 4, 4, 4, 4, 4, 4, 4, },
118 /* 5 SEMI: */ { 5, 5, 4, 4, 4, 4, 4, 6, },
119 /* 6 END: */ { 0, 6, 4, 4, 4, 4, 4, 4, },
122 /* If triggers are not suppored by this compile then the statement machine
123 ** used to detect the end of a statement is much simplier
125 static const u8 trans[2][3] = {
127 /* State: ** SEMI WS OTHER */
128 /* 0 START: */ { 0, 0, 1, },
129 /* 1 NORMAL: */ { 0, 1, 1, },
131 #endif /* SQLITE_OMIT_TRIGGER */
135 case ';': { /* A semicolon */
143 case '\f': { /* White space is ignored */
147 case '/': { /* C-style comments */
153 while( zSql[0] && (zSql[0]!='*' || zSql[1]!='/') ){ zSql++; }
154 if( zSql[0]==0 ) return 0;
159 case '-': { /* SQL-style comments from "--" to end of line */
164 while( *zSql && *zSql!='\n' ){ zSql++; }
165 if( *zSql==0 ) return state==0;
169 case '[': { /* Microsoft-style identifiers in [...] */
171 while( *zSql && *zSql!=']' ){ zSql++; }
172 if( *zSql==0 ) return 0;
176 case '`': /* Grave-accent quoted symbols used by MySQL */
177 case '"': /* single- and double-quoted strings */
181 while( *zSql && *zSql!=c ){ zSql++; }
182 if( *zSql==0 ) return 0;
188 if( IdChar((u8)*zSql) ){
189 /* Keywords and unquoted identifiers */
191 for(nId=1; IdChar(zSql[nId]); nId++){}
192 #ifdef SQLITE_OMIT_TRIGGER
196 case 'c': case 'C': {
197 if( nId==6 && sqlite3StrNICmp(zSql, "create", 6)==0 ){
204 case 't': case 'T': {
205 if( nId==7 && sqlite3StrNICmp(zSql, "trigger", 7)==0 ){
207 }else if( nId==4 && sqlite3StrNICmp(zSql, "temp", 4)==0 ){
209 }else if( nId==9 && sqlite3StrNICmp(zSql, "temporary", 9)==0 ){
216 case 'e': case 'E': {
217 if( nId==3 && sqlite3StrNICmp(zSql, "end", 3)==0 ){
220 #ifndef SQLITE_OMIT_EXPLAIN
221 if( nId==7 && sqlite3StrNICmp(zSql, "explain", 7)==0 ){
235 #endif /* SQLITE_OMIT_TRIGGER */
238 /* Operators and special symbols */
244 state = trans[state][token];
250 #ifndef SQLITE_OMIT_UTF16
252 ** This routine is the same as the sqlite3_complete() routine described
253 ** above, except that the parameter is required to be UTF-16 encoded, not
256 int sqlite3_complete16(const void *zSql){
259 int rc = SQLITE_NOMEM;
261 #ifndef SQLITE_OMIT_AUTOINIT
262 rc = sqlite3_initialize();
265 pVal = sqlite3ValueNew(0);
266 sqlite3ValueSetStr(pVal, -1, zSql, SQLITE_UTF16NATIVE, SQLITE_STATIC);
267 zSql8 = sqlite3ValueText(pVal, SQLITE_UTF8);
269 rc = sqlite3_complete(zSql8);
273 sqlite3ValueFree(pVal);
274 return sqlite3ApiExit(0, rc);
276 #endif /* SQLITE_OMIT_UTF16 */
277 #endif /* SQLITE_OMIT_COMPLETE */