X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Ffrontend%2Fgrammar.y;h=34a9c6b6474502d9fc059df45a6ed93a79890567;hb=a253fa4a57c8ac8abd2e0801d55f8556b87ef836;hp=004a5effa1537a29473066103757cd169867c37a;hpb=9ae83505d8025ab32a8bdf7904ff4df8f9e661bf;p=sysdb.git diff --git a/src/frontend/grammar.y b/src/frontend/grammar.y index 004a5ef..34a9c6b 100644 --- a/src/frontend/grammar.y +++ b/src/frontend/grammar.y @@ -32,6 +32,7 @@ #include "frontend/grammar.h" #include "core/store.h" +#include "core/store-private.h" #include "utils/error.h" #include "utils/llist.h" @@ -62,28 +63,61 @@ sdb_fe_yyerror(YYLTYPE *lval, sdb_fe_yyscan_t scanner, const char *msg); %locations %error-verbose %expect 0 -%name-prefix="sdb_fe_yy" +%name-prefix "sdb_fe_yy" %union { + const char *sstr; /* static string */ char *str; + sdb_data_t data; + sdb_llist_t *list; sdb_conn_node_t *node; + + sdb_store_matcher_t *m; } %start statements %token SCANNER_ERROR -%token IDENTIFIER -%token FETCH LIST +%token AND OR NOT WHERE +%token CMP_EQUAL CMP_NEQUAL CMP_REGEX CMP_NREGEX +%token CMP_LT CMP_LE CMP_GE CMP_GT + +%token FETCH LIST LOOKUP + +%token IDENTIFIER STRING + +%token INTEGER FLOAT + +/* Precedence (lowest first): */ +%left OR +%left AND +%right NOT +%left CMP_EQUAL CMP_NEQUAL +%left CMP_LT CMP_LE CMP_GE CMP_GT +%left CMP_REGEX CMP_NREGEX +%left '(' ')' +%left '.' %type statements %type statement fetch_statement list_statement + lookup_statement expression +%type matcher + compare_matcher + +%type op + +%type data + +%destructor { free($$); } +%destructor { sdb_object_deref(SDB_OBJ($$)); } + %% statements: @@ -94,6 +128,7 @@ statements: sdb_fe_yyerror(&yylloc, scanner, YY_("syntax error, unexpected statement, " "expecting expression")); + sdb_object_deref(SDB_OBJ($3)); YYABORT; } @@ -110,6 +145,7 @@ statements: sdb_fe_yyerror(&yylloc, scanner, YY_("syntax error, unexpected statement, " "expecting expression")); + sdb_object_deref(SDB_OBJ($1)); YYABORT; } @@ -126,6 +162,7 @@ statements: sdb_fe_yyerror(&yylloc, scanner, YY_("syntax error, unexpected expression, " "expecting statement")); + sdb_object_deref(SDB_OBJ($1)); YYABORT; } @@ -141,22 +178,35 @@ statement: | list_statement | + lookup_statement + | /* empty */ { $$ = NULL; } ; +/* + * FETCH ; + * + * Retrieve detailed information about a single host. + */ fetch_statement: - FETCH IDENTIFIER + FETCH STRING { $$ = SDB_CONN_NODE(sdb_object_create_dT(/* name = */ NULL, conn_fetch_t, conn_fetch_destroy)); CONN_FETCH($$)->name = strdup($2); $$->cmd = CONNECTION_FETCH; + free($2); $2 = NULL; } ; +/* + * LIST; + * + * Returns a list of all hosts in the store. + */ list_statement: LIST { @@ -166,21 +216,123 @@ list_statement: } ; +/* + * LOOKUP WHERE ; + * + * Returns detailed information about matching expression. + */ +lookup_statement: + LOOKUP IDENTIFIER WHERE expression + { + /* TODO: support other types as well */ + if (strcasecmp($2, "hosts")) { + char errmsg[strlen($2) + 32]; + snprintf(errmsg, sizeof(errmsg), + YY_("unknown table %s"), $2); + sdb_fe_yyerror(&yylloc, scanner, errmsg); + free($2); $2 = NULL; + sdb_object_deref(SDB_OBJ($4)); + YYABORT; + } + + $$ = SDB_CONN_NODE(sdb_object_create_dT(/* name = */ NULL, + conn_lookup_t, conn_lookup_destroy)); + CONN_LOOKUP($$)->matcher = CONN_MATCHER($4); + $$->cmd = CONNECTION_LOOKUP; + free($2); $2 = NULL; + } + ; + expression: - IDENTIFIER + matcher { - $$ = SDB_CONN_NODE(sdb_object_create_T(/* name = */ NULL, - conn_node_matcher_t)); + if (! $1) { + /* TODO: improve error reporting */ + sdb_fe_yyerror(&yylloc, scanner, + YY_("syntax error, invalid expression")); + YYABORT; + } + + $$ = SDB_CONN_NODE(sdb_object_create_dT(/* name = */ NULL, + conn_node_matcher_t, conn_matcher_destroy)); $$->cmd = CONNECTION_EXPR; - /* XXX: this is just a placeholder for now */ - CONN_MATCHER($$)->matcher = sdb_store_host_matcher($1, - /* name_re = */ NULL, /* service = */ NULL, - /* attr = */ NULL); - free($1); - $1 = NULL; + CONN_MATCHER($$)->matcher = $1; } ; +matcher: + '(' matcher ')' + { + $$ = $2; + } + | + matcher AND matcher + { + $$ = sdb_store_con_matcher($1, $3); + sdb_object_deref(SDB_OBJ($1)); + sdb_object_deref(SDB_OBJ($3)); + } + | + matcher OR matcher + { + $$ = sdb_store_dis_matcher($1, $3); + sdb_object_deref(SDB_OBJ($1)); + sdb_object_deref(SDB_OBJ($3)); + } + | + NOT matcher + { + $$ = sdb_store_inv_matcher($2); + sdb_object_deref(SDB_OBJ($2)); + } + | + compare_matcher + { + $$ = $1; + } + ; + +/* + * . + * + * Parse matchers comparing object attributes with a value. + */ +compare_matcher: + IDENTIFIER '.' IDENTIFIER op data + { + $$ = sdb_store_matcher_parse_cmp($1, $3, $4, &$5); + free($1); $1 = NULL; + free($3); $3 = NULL; + sdb_data_free_datum(&$5); + } + ; + +op: + CMP_EQUAL { $$ = "="; } + | + CMP_NEQUAL { $$ = "!="; } + | + CMP_REGEX { $$ = "=~"; } + | + CMP_NREGEX { $$ = "!~"; } + | + CMP_LT { $$ = "<"; } + | + CMP_LE { $$ = "<="; } + | + CMP_GE { $$ = ">="; } + | + CMP_GT { $$ = ">"; } + ; + +data: + STRING { $$.type = SDB_TYPE_STRING; $$.data.string = $1; } + | + INTEGER { $$ = $1; } + | + FLOAT { $$ = $1; } + ; + %% void