save
[protos/libecoli.git] / lib / ecoli_node_cmd.c
1 /*
2  * Copyright (c) 2016-2017, Olivier MATZ <zer0@droids-corp.org>
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <sys/queue.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <assert.h>
33 #include <stdarg.h>
34 #include <errno.h>
35 #include <limits.h>
36
37 #include <ecoli_malloc.h>
38 #include <ecoli_log.h>
39 #include <ecoli_test.h>
40 #include <ecoli_strvec.h>
41 #include <ecoli_node.h>
42 #include <ecoli_parsed.h>
43 #include <ecoli_completed.h>
44 #include <ecoli_node_expr.h>
45 #include <ecoli_node_str.h>
46 #include <ecoli_node_or.h>
47 #include <ecoli_node_subset.h>
48 #include <ecoli_node_int.h>
49 #include <ecoli_node_many.h>
50 #include <ecoli_node_seq.h>
51 #include <ecoli_node_option.h>
52 #include <ecoli_node_re.h>
53 #include <ecoli_node_re_lex.h>
54 #include <ecoli_node_cmd.h>
55
56 struct ec_node_cmd {
57         struct ec_node gen;
58         char *cmd_str;           /* the command string. */
59         struct ec_node *cmd;       /* the command node. */
60         struct ec_node *lex;       /* the lexer node. */
61         struct ec_node *expr;      /* the expression parser. */
62         struct ec_node **table;    /* table of node referenced in command. */
63         unsigned int len;        /* len of the table. */
64 };
65
66 static int
67 ec_node_cmd_eval_var(void **result, void *userctx,
68         const struct ec_parsed *var)
69 {
70         const struct ec_strvec *vec;
71         struct ec_node_cmd *node = userctx;
72         struct ec_node *eval = NULL;
73         const char *str, *id;
74         unsigned int i;
75
76         (void)userctx;
77
78         /* get parsed string vector, it should contain only one str */
79         vec = ec_parsed_strvec(var);
80         if (ec_strvec_len(vec) != 1)
81                 return -EINVAL;
82         str = ec_strvec_val(vec, 0);
83
84         for (i = 0; i < node->len; i++) {
85                 id = ec_node_id(node->table[i]);
86                 printf("i=%d id=%s\n", i, id);
87                 if (id == NULL)
88                         continue;
89                 if (strcmp(str, id))
90                         continue;
91                 /* if id matches, use a node provided by the user... */
92                 eval = ec_node_clone(node->table[i]);
93                 if (eval == NULL)
94                         return -ENOMEM;
95                 break;
96         }
97
98         /* ...or create a string node */
99         if (eval == NULL) {
100                 eval = ec_node_str(NULL, str);
101                 if (eval == NULL)
102                         return -ENOMEM;
103         }
104
105         printf("eval var %s %p\n", str, eval);
106         *result = eval;
107
108         return 0;
109 }
110
111 static int
112 ec_node_cmd_eval_pre_op(void **result, void *userctx, void *operand,
113         const struct ec_parsed *operator)
114 {
115         (void)result;
116         (void)userctx;
117         (void)operand;
118         (void)operator;
119
120         return -EINVAL;
121 }
122
123 static int
124 ec_node_cmd_eval_post_op(void **result, void *userctx, void *operand,
125         const struct ec_parsed *operator)
126 {
127         const struct ec_strvec *vec;
128         struct ec_node *eval = operand;;
129
130         (void)userctx;
131
132         /* get parsed string vector, it should contain only one str */
133         vec = ec_parsed_strvec(operator);
134         if (ec_strvec_len(vec) != 1)
135                 return -EINVAL;
136
137         if (!strcmp(ec_strvec_val(vec, 0), "*"))
138                 eval = NULL; //XXX
139         else
140                 return -EINVAL;
141
142         printf("eval post_op %p\n", eval);
143         *result = eval;
144
145         return 0;
146 }
147
148 static int
149 ec_node_cmd_eval_bin_op(void **result, void *userctx, void *operand1,
150         const struct ec_parsed *operator, void *operand2)
151
152 {
153         const struct ec_strvec *vec;
154         struct ec_node *out = NULL;
155         struct ec_node *in1 = operand1;
156         struct ec_node *in2 = operand2;
157
158         (void)userctx;
159
160         printf("eval bin_op %p %p\n", in1, in2);
161
162         /* get parsed string vector, it should contain only one str */
163         vec = ec_parsed_strvec(operator);
164         if (ec_strvec_len(vec) != 1)
165                 return -EINVAL;
166
167         if (!strcmp(ec_strvec_val(vec, 0), "|")) {
168                 out = EC_NODE_OR(NULL, ec_node_clone(in1), ec_node_clone(in2));
169                 if (out == NULL)
170                         return -EINVAL;
171                 ec_node_free(in1);
172                 ec_node_free(in2);
173                 *result = out;
174         } else if (!strcmp(ec_strvec_val(vec, 0), ",")) {
175                 out = EC_NODE_SUBSET(NULL, ec_node_clone(in1), ec_node_clone(in2));
176                 if (out == NULL)
177                         return -EINVAL;
178                 ec_node_free(in1);
179                 ec_node_free(in2);
180                 *result = out;
181         } else {
182                 return -EINVAL;
183         }
184
185         return 0;
186 }
187
188 static int
189 ec_node_cmd_eval_parenthesis(void **result, void *userctx,
190         const struct ec_parsed *open_paren,
191         const struct ec_parsed *close_paren,
192         void *value)
193 {
194         const struct ec_strvec *vec;
195         struct ec_node *in = value;;
196         struct ec_node *out = NULL;;
197
198         (void)userctx;
199         (void)close_paren;
200
201         /* get parsed string vector, it should contain only one str */
202         vec = ec_parsed_strvec(open_paren);
203         if (ec_strvec_len(vec) != 1)
204                 return -EINVAL;
205
206         if (!strcmp(ec_strvec_val(vec, 0), "[")) {
207                 out = ec_node_option(NULL, ec_node_clone(in));
208                 if (out == NULL)
209                         return -EINVAL;
210                 ec_node_free(in);
211         } else if (!strcmp(ec_strvec_val(vec, 0), "(")) {
212                 out = in;
213         } else {
214                 return -EINVAL;
215         }
216
217         printf("eval paren\n");
218         *result = out;
219
220         return 0;
221 }
222
223 static void
224 ec_node_cmd_eval_free(void *result, void *userctx)
225 {
226         (void)userctx;
227         ec_free(result);
228 }
229
230 static const struct ec_node_expr_eval_ops test_ops = {
231         .eval_var = ec_node_cmd_eval_var,
232         .eval_pre_op = ec_node_cmd_eval_pre_op,
233         .eval_post_op = ec_node_cmd_eval_post_op,
234         .eval_bin_op = ec_node_cmd_eval_bin_op,
235         .eval_parenthesis = ec_node_cmd_eval_parenthesis,
236         .eval_free = ec_node_cmd_eval_free,
237 };
238
239 static struct ec_parsed *ec_node_cmd_parse(const struct ec_node *gen_node,
240         const struct ec_strvec *strvec)
241 {
242         struct ec_node_cmd *node = (struct ec_node_cmd *)gen_node;
243
244         return ec_node_parse_strvec(node->cmd, strvec);
245 }
246
247 static struct ec_completed *ec_node_cmd_complete(const struct ec_node *gen_node,
248         const struct ec_strvec *strvec)
249 {
250         struct ec_node_cmd *node = (struct ec_node_cmd *)gen_node;
251
252         return ec_node_complete_strvec(node->cmd, strvec);
253 }
254
255 static void ec_node_cmd_free_priv(struct ec_node *gen_node)
256 {
257         struct ec_node_cmd *node = (struct ec_node_cmd *)gen_node;
258         unsigned int i;
259
260         ec_free(node->cmd_str);
261         ec_node_free(node->cmd);
262         ec_node_free(node->expr);
263         ec_node_free(node->lex);
264         for (i = 0; i < node->len; i++)
265                 ec_node_free(node->table[i]);
266         ec_free(node->table);
267 }
268
269 static int ec_node_cmd_build(struct ec_node *gen_node)
270 {
271         struct ec_node *expr = NULL, *lex = NULL, *cmd = NULL;
272         struct ec_parsed *p, *child;
273         struct ec_node_cmd *node = (struct ec_node_cmd *)gen_node;
274         void *result;
275         int ret;
276
277         /* build the expression parser */
278         ret = -ENOMEM;
279         expr = ec_node("expr", "expr");
280         if (expr == NULL)
281                 goto fail;
282         ret = ec_node_expr_set_val_node(expr, ec_node_re(NULL, "[a-zA-Z0-9]+"));
283         if (ret < 0)
284                 goto fail;
285         ret = ec_node_expr_add_bin_op(expr, ec_node_str(NULL, ","));
286         if (ret < 0)
287                 goto fail;
288         ret = ec_node_expr_add_bin_op(expr, ec_node_str(NULL, "|"));
289         if (ret < 0)
290                 goto fail;
291         ret = ec_node_expr_add_post_op(expr, ec_node_str(NULL, "+"));
292         if (ret < 0)
293                 goto fail;
294         ret = ec_node_expr_add_post_op(expr, ec_node_str(NULL, "*"));
295         if (ret < 0)
296                 goto fail;
297         ret = ec_node_expr_add_parenthesis(expr, ec_node_str(NULL, "["),
298                 ec_node_str(NULL, "]"));
299         if (ret < 0)
300                 goto fail;
301         ec_node_expr_add_parenthesis(expr, ec_node_str(NULL, "("),
302                 ec_node_str(NULL, ")"));
303         if (ret < 0)
304                 goto fail;
305
306         /* prepend a lexer and a "many" to the expression node */
307         ret = -ENOMEM;
308         lex = ec_node_re_lex(NULL,
309                 ec_node_many(NULL, ec_node_clone(expr), 1, 0));
310         if (lex == NULL)
311                 goto fail;
312
313         ret = ec_node_re_lex_add(lex, "[a-zA-Z0-9]+", 1);
314         if (ret < 0)
315                 goto fail;
316         ret = ec_node_re_lex_add(lex, "[*|,()]", 1);
317         if (ret < 0)
318                 goto fail;
319         ret = ec_node_re_lex_add(lex, "\\[", 1);
320         if (ret < 0)
321                 goto fail;
322         ret = ec_node_re_lex_add(lex, "\\]", 1);
323         if (ret < 0)
324                 goto fail;
325         ret = ec_node_re_lex_add(lex, "[         ]+", 0);
326         if (ret < 0)
327                 goto fail;
328
329         /* parse the command expression */
330         ret = -ENOMEM;
331         p = ec_node_parse(lex, node->cmd_str);
332         if (p == NULL)
333                 goto fail;
334
335         ret = -EINVAL;
336         if (!ec_parsed_matches(p))
337                 goto fail;
338         if (TAILQ_EMPTY(&p->children))
339                 goto fail;
340         if (TAILQ_EMPTY(&TAILQ_FIRST(&p->children)->children))
341                 goto fail;
342
343         ret = -ENOMEM;
344         cmd = ec_node("seq", NULL);
345         if (cmd == NULL)
346                 goto fail;
347
348         TAILQ_FOREACH(child, &TAILQ_FIRST(&p->children)->children, next) {
349                 ret = ec_node_expr_eval(&result, expr, child,
350                         &test_ops, node);
351                 if (ret < 0)
352                         goto fail;
353                 ret = ec_node_seq_add(cmd, result);
354                 if (ret < 0)
355                         goto fail;
356         }
357         ec_parsed_free(p);
358         ec_node_dump(stdout, cmd);
359
360         ec_node_free(node->expr);
361         node->expr = expr;
362         ec_node_free(node->lex);
363         node->lex = lex;
364         ec_node_free(node->cmd);
365         node->cmd = cmd;
366
367         return 0;
368
369 fail:
370         ec_node_free(expr);
371         ec_node_free(lex);
372         ec_node_free(cmd);
373         return ret;
374 }
375
376 static struct ec_node_type ec_node_cmd_type = {
377         .name = "cmd",
378         .build = ec_node_cmd_build,
379         .parse = ec_node_cmd_parse,
380         .complete = ec_node_cmd_complete,
381         .size = sizeof(struct ec_node_cmd),
382         .free_priv = ec_node_cmd_free_priv,
383 };
384
385 EC_NODE_TYPE_REGISTER(ec_node_cmd_type);
386
387 int ec_node_cmd_add_child(struct ec_node *gen_node, struct ec_node *child)
388 {
389         struct ec_node_cmd *node = (struct ec_node_cmd *)gen_node;
390         struct ec_node **table;
391
392         // XXX check node type
393
394         assert(node != NULL);
395
396         printf("add child %s\n", child->id);
397         if (child == NULL)
398                 return -EINVAL;
399
400         gen_node->flags &= ~EC_NODE_F_BUILT;
401
402         table = ec_realloc(node->table, (node->len + 1) * sizeof(*node->table));
403         if (table == NULL) {
404                 ec_node_free(child);
405                 return -ENOMEM;
406         }
407
408         node->table = table;
409         table[node->len] = child;
410         node->len++;
411
412         child->parent = gen_node;
413         TAILQ_INSERT_TAIL(&gen_node->children, child, next); // XXX really needed?
414
415         return 0;
416 }
417
418 struct ec_node *ec_node_cmd(const char *id, const char *cmd_str)
419 {
420         struct ec_node *gen_node = NULL;
421         struct ec_node_cmd *node = NULL;
422
423         gen_node = __ec_node(&ec_node_cmd_type, id);
424         if (gen_node == NULL)
425                 goto fail;
426
427         node = (struct ec_node_cmd *)gen_node;
428         node->cmd_str = ec_strdup(cmd_str);
429         if (node->cmd_str == NULL)
430                 goto fail;
431
432         return gen_node;
433
434 fail:
435         ec_node_free(gen_node);
436         return NULL;
437 }
438
439 struct ec_node *__ec_node_cmd(const char *id, const char *cmd, ...)
440 {
441         struct ec_node *gen_node = NULL;
442         struct ec_node_cmd *node = NULL;
443         struct ec_node *child;
444         va_list ap;
445         int fail = 0;
446
447         va_start(ap, cmd);
448
449         gen_node = ec_node_cmd(id, cmd);
450         node = (struct ec_node_cmd *)gen_node;
451         if (node == NULL)
452                 fail = 1;;
453
454         for (child = va_arg(ap, struct ec_node *);
455              child != EC_NODE_ENDLIST;
456              child = va_arg(ap, struct ec_node *)) {
457
458                 /* on error, don't quit the loop to avoid leaks */
459                 if (fail == 1 || child == NULL ||
460                                 ec_node_cmd_add_child(&node->gen, child) < 0) {
461                         fail = 1;
462                         ec_node_free(child);
463                 }
464         }
465
466         if (fail == 1)
467                 goto fail;
468
469         va_end(ap);
470         return gen_node;
471
472 fail:
473         ec_node_free(gen_node); /* will also free children */
474         va_end(ap);
475         return NULL;
476 }
477
478 static int ec_node_cmd_testcase(void)
479 {
480         struct ec_node *node;
481         int ret = 0;
482
483         node = EC_NODE_CMD(NULL,
484                 "command [option] (subset1, subset2) x | y",
485                 ec_node_int("x", 0, 10, 10),
486                 ec_node_int("y", 20, 30, 10)
487         );
488         if (node == NULL) {
489                 ec_log(EC_LOG_ERR, "cannot create node\n");
490                 return -1;
491         }
492         ret |= EC_TEST_CHECK_PARSE(node, 2, "command", "1");
493         ret |= EC_TEST_CHECK_PARSE(node, 2, "command", "23");
494         ret |= EC_TEST_CHECK_PARSE(node, 3, "command", "option", "23");
495         ret |= EC_TEST_CHECK_PARSE(node, -1, "command", "15");
496         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
497         ec_node_free(node);
498
499         // XXX completion
500
501         return ret;
502 }
503
504 static struct ec_test ec_node_cmd_test = {
505         .name = "node_cmd",
506         .test = ec_node_cmd_testcase,
507 };
508
509 EC_TEST_REGISTER(ec_node_cmd_test);