X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Ffrontend%2Fscanner.l;h=f70f60f84dab33618a7ae84a67771ec33e0a022f;hb=e831693a8da189279f98ab49a41bba77084bba49;hp=948b6badf155e848c5182ad1ca38f8004a49eb3f;hpb=ee4601a116d7c8f035d322373f7825d5373e454e;p=sysdb.git diff --git a/src/frontend/scanner.l b/src/frontend/scanner.l index 948b6ba..f70f60f 100644 --- a/src/frontend/scanner.l +++ b/src/frontend/scanner.l @@ -27,6 +27,11 @@ %{ +#if HAVE_CONFIG_H +# include "config.h" +#endif /* HAVE_CONFIG_H */ + +#include "core/data.h" #include "frontend/connection.h" #include "frontend/parser.h" #include "frontend/grammar.h" @@ -35,9 +40,25 @@ #include #include +#include #define YY_EXTRA_TYPE sdb_fe_yyextra_t * +static struct { + const char *name; + int id; +} reserved_words[] = { + { "AND", AND }, + { "FETCH", FETCH }, + { "IS", IS }, + { "LIST", LIST }, + { "LOOKUP", LOOKUP }, + { "MATCHING", MATCHING }, + { "NOT", NOT }, + { "NULL", NULL_T }, + { "OR", OR }, +}; + void sdb_fe_yyerror(YYLTYPE *lval, sdb_fe_yyscan_t scanner, const char *msg); @@ -69,7 +90,25 @@ csc_start \/\* csc_inside ([^*/]+|[^*]\/|\*[^/]) csc_end \*\/ +/* + * Strings and identifiers. + */ identifier ([A-Za-z_][A-Za-z_0-9$]*) +/* TODO: fully support SQL strings */ +string ('[^']*') + +/* + * Numeric constants. + */ +dec ([\+\-]?[0-9]+) +exp ([\+\-]?[0-9]+[Ee]\+?[0-9]+) +integer ({dec}|{exp}) +float1 ([\+\-]?[0-9]+\.[0-9]*([Ee][\+\-]?[0-9]+)?) +float2 ([\+\-]?[0-9]*\.[0-9]+([Ee][\+\-]?[0-9]+)?) +float3 ([\+\-]?[0-9]+[Ee]\-[0-9]+) +float4 ([\+\-]?[Ii][Nn][Ff]([Ii][Nn][Ii][Tt][Yy])?) +float5 ([Nn][Aa][Nn]) +float ({float1}|{float2}|{float3}|{float4}|{float5}) %% @@ -85,14 +124,41 @@ identifier ([A-Za-z_][A-Za-z_0-9$]*) } {identifier} { - /* XXX */ - if (! strcasecmp(yytext, "LIST")) - return LIST; + size_t i; + for (i = 0; i < SDB_STATIC_ARRAY_LEN(reserved_words); ++i) + if (! strcasecmp(reserved_words[i].name, yytext)) + return reserved_words[i].id; + yylval->str = strdup(yytext); return IDENTIFIER; } +{string} { + yytext[yyleng - 1] = '\0'; + yylval->str = strdup(yytext + 1); + return STRING; + } +{integer} { + yylval->data.data.integer = (int64_t)strtoll(yytext, NULL, 10); + yylval->data.type = SDB_TYPE_INTEGER; + return INTEGER; + } +{float} { + yylval->data.data.decimal = strtod(yytext, NULL); + yylval->data.type = SDB_TYPE_DECIMAL; + return FLOAT; + } -. { /* do nothing for now */ } += { return CMP_EQUAL; } +!= { return CMP_NEQUAL; } +=~ { return CMP_REGEX; } +!~ { return CMP_NREGEX; } +\< { return CMP_LT; } +\<= { return CMP_LE; } +\>= { return CMP_GE; } +\> { return CMP_GT; } +\|\| { return CONCAT; } + +. { /* XXX: */ return yytext[0]; } %%