summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d08d437)
raw | patch | inline | side by side (parent: d08d437)
author | Sebastian Harl <sh@tokkee.org> | |
Sat, 5 Apr 2014 18:06:28 +0000 (20:06 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sat, 5 Apr 2014 18:06:28 +0000 (20:06 +0200) |
… replacing the current placeholder.
For now, this is specific to '=' (equal) and '=~' (regex) comparison.
For now, this is specific to '=' (equal) and '=~' (regex) comparison.
src/frontend/grammar.y | patch | blob | history | |
src/frontend/scanner.l | patch | blob | history |
diff --git a/src/frontend/grammar.y b/src/frontend/grammar.y
index 50bb00e7f632fa35abb283ca7025b0c02a80a908..6c52b74907b17163d1c15c7890f9f85d0ed959bf 100644 (file)
--- a/src/frontend/grammar.y
+++ b/src/frontend/grammar.y
#include "frontend/grammar.h"
#include "core/store.h"
+#include "core/store-private.h"
#include "utils/error.h"
#include "utils/llist.h"
sdb_llist_t *list;
sdb_conn_node_t *node;
+
+ sdb_store_matcher_t *m;
}
%start statements
%token WHERE
+%token CMP_EQUAL CMP_REGEX
+
%token <str> IDENTIFIER STRING
%token <node> FETCH LIST LOOKUP
lookup_statement
expression
+%type <m> compare_matcher
+
%%
statements:
conn_fetch_t, conn_fetch_destroy));
CONN_FETCH($$)->name = strdup($2);
$$->cmd = CONNECTION_FETCH;
- free($2);
- $2 = NULL;
+ free($2); $2 = NULL;
}
;
conn_lookup_t, conn_lookup_destroy));
CONN_LOOKUP($$)->matcher = CONN_MATCHER($4);
$$->cmd = CONNECTION_LOOKUP;
- free($2);
- $2 = NULL;
+ free($2); $2 = NULL;
}
;
expression:
- STRING
+ compare_matcher
{
+ sdb_store_matcher_t *m = $1;
+ if (! m) {
+ /* TODO: improve error reporting */
+ sdb_fe_yyerror(&yylloc, scanner,
+ YY_("syntax error, invalid expression"));
+ YYABORT;
+ }
+
$$ = SDB_CONN_NODE(sdb_object_create_T(/* name = */ NULL,
conn_node_matcher_t));
$$->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;
+
+ if (M(m)->type == MATCHER_HOST)
+ CONN_MATCHER($$)->matcher = m;
+ else if (M(m)->type == MATCHER_SERVICE)
+ CONN_MATCHER($$)->matcher = sdb_store_host_matcher(NULL,
+ /* name_re = */ NULL, /* service = */ m,
+ /* attr = */ NULL);
+ else if (M(m)->type == MATCHER_ATTR)
+ CONN_MATCHER($$)->matcher = sdb_store_host_matcher(NULL,
+ /* name_re = */ NULL, /* service = */ NULL,
+ /* attr = */ m);
+ }
+ ;
+
+/*
+ * <object_type>.<object_attr> <op> <value>
+ *
+ * Parse matchers comparing object attributes with a value.
+ */
+compare_matcher:
+ IDENTIFIER '.' IDENTIFIER CMP_EQUAL STRING
+ {
+ $$ = sdb_store_matcher_parse_cmp($1, $3, "=", $5);
+ /* TODO: simplify memory management in the parser */
+ free($1); $1 = NULL;
+ free($3); $3 = NULL;
+ free($5); $5 = NULL;
+ }
+ |
+ IDENTIFIER '.' IDENTIFIER CMP_REGEX STRING
+ {
+ $$ = sdb_store_matcher_parse_cmp($1, $3, "=~", $5);
+ free($1); $1 = NULL;
+ free($3); $3 = NULL;
+ free($5); $5 = NULL;
}
;
diff --git a/src/frontend/scanner.l b/src/frontend/scanner.l
index 4dcd5e2a4f0cb196d986e769e77bb68cac7b97d7..1e371f45668435d509dd4ddf942ec196f547ba76 100644 (file)
--- a/src/frontend/scanner.l
+++ b/src/frontend/scanner.l
return STRING;
}
+= { return CMP_EQUAL; }
+=~ { return CMP_REGEX; }
+
. { /* XXX: */ return yytext[0]; }
%%