48cf749d3323f4396fe286808718309c6ec54454
[protos/libecoli.git] / src / ecoli_node_re_lex.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016, Olivier MATZ <zer0@droids-corp.org>
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <stdbool.h>
8 #include <string.h>
9 #include <regex.h>
10 #include <errno.h>
11
12 #include <ecoli_malloc.h>
13 #include <ecoli_log.h>
14 #include <ecoli_test.h>
15 #include <ecoli_strvec.h>
16 #include <ecoli_dict.h>
17 #include <ecoli_node.h>
18 #include <ecoli_complete.h>
19 #include <ecoli_parse.h>
20 #include <ecoli_config.h>
21 #include <ecoli_node_many.h>
22 #include <ecoli_node_or.h>
23 #include <ecoli_node_str.h>
24 #include <ecoli_node_int.h>
25 #include <ecoli_node_re_lex.h>
26
27 EC_LOG_TYPE_REGISTER(node_re_lex);
28
29 struct regexp_pattern {
30         char *pattern;
31         char *attr_name;
32         regex_t r;
33         bool keep;
34 };
35
36 struct ec_node_re_lex {
37         struct ec_node *child;
38         struct regexp_pattern *table;
39         size_t len;
40 };
41
42 static struct ec_strvec *
43 tokenize(struct regexp_pattern *table, size_t table_len, const char *str)
44 {
45         struct ec_strvec *strvec = NULL;
46         struct ec_dict *attrs = NULL;
47         char *dup = NULL;
48         char c;
49         size_t len, off = 0;
50         size_t i;
51         int ret;
52         regmatch_t pos;
53
54         dup = ec_strdup(str);
55         if (dup == NULL)
56                 goto fail;
57
58         strvec = ec_strvec();
59         if (strvec == NULL)
60                 goto fail;
61
62         len = strlen(dup);
63         while (off < len) {
64                 for (i = 0; i < table_len; i++) {
65                         ret = regexec(&table[i].r, &dup[off], 1, &pos, 0);
66                         if (ret != 0)
67                                 continue;
68                         if (pos.rm_so != 0 || pos.rm_eo == 0) {
69                                 ret = -1;
70                                 continue;
71                         }
72
73                         if (table[i].keep == 0)
74                                 break;
75
76                         c = dup[pos.rm_eo + off];
77                         dup[pos.rm_eo + off] = '\0';
78                         EC_LOG(EC_LOG_DEBUG, "re_lex match <%s>\n", &dup[off]);
79                         if (ec_strvec_add(strvec, &dup[off]) < 0)
80                                 goto fail;
81
82                         if (table[i].attr_name != NULL) {
83                                 attrs = ec_dict();
84                                 if (attrs == NULL)
85                                         goto fail;
86                                 if (ec_dict_set(attrs, table[i].attr_name,
87                                                 NULL, NULL) < 0)
88                                         goto fail;
89                                 if (ec_strvec_set_attrs(strvec,
90                                                 ec_strvec_len(strvec) - 1,
91                                                 attrs) < 0) {
92                                         attrs = NULL;
93                                         goto fail;
94                                 }
95                                 attrs = NULL;
96                         }
97
98                         dup[pos.rm_eo + off] = c;
99                         break;
100                 }
101
102                 if (ret != 0)
103                         goto fail;
104
105                 off += pos.rm_eo;
106         }
107
108         ec_free(dup);
109         return strvec;
110
111 fail:
112         ec_free(dup);
113         ec_strvec_free(strvec);
114         return NULL;
115 }
116
117 static int
118 ec_node_re_lex_parse(const struct ec_node *node,
119                 struct ec_pnode *state,
120                 const struct ec_strvec *strvec)
121 {
122         struct ec_node_re_lex *priv = ec_node_priv(node);
123         struct ec_strvec *new_vec = NULL;
124         struct ec_pnode *child_parse;
125         const char *str;
126         int ret;
127
128         if (priv->child == NULL) {
129                 errno = EINVAL;
130                 goto fail;
131         }
132
133         if (ec_strvec_len(strvec) == 0) {
134                 new_vec = ec_strvec();
135         } else {
136                 str = ec_strvec_val(strvec, 0);
137                 new_vec = tokenize(priv->table, priv->len, str);
138         }
139         if (new_vec == NULL)
140                 goto fail;
141
142         ret = ec_parse_child(priv->child, state, new_vec);
143         if (ret < 0)
144                 goto fail;
145
146         if ((unsigned)ret == ec_strvec_len(new_vec)) {
147                 ret = 1;
148         } else if (ret != EC_PARSE_NOMATCH) {
149                 child_parse = ec_pnode_get_last_child(state);
150                 ec_pnode_unlink_child(state, child_parse);
151                 ec_pnode_free(child_parse);
152                 ret = EC_PARSE_NOMATCH;
153         }
154
155         ec_strvec_free(new_vec);
156         new_vec = NULL;
157
158         return ret;
159
160  fail:
161         ec_strvec_free(new_vec);
162         return -1;
163 }
164
165 static void ec_node_re_lex_free_priv(struct ec_node *node)
166 {
167         struct ec_node_re_lex *priv = ec_node_priv(node);
168         unsigned int i;
169
170         ec_node_free(priv->child);
171         for (i = 0; i < priv->len; i++) {
172                 ec_free(priv->table[i].pattern);
173                 ec_free(priv->table[i].attr_name);
174                 regfree(&priv->table[i].r);
175         }
176
177         ec_free(priv->table);
178 }
179
180 static size_t
181 ec_node_re_lex_get_children_count(const struct ec_node *node)
182 {
183         struct ec_node_re_lex *priv = ec_node_priv(node);
184
185         if (priv->child)
186                 return 1;
187         return 0;
188 }
189
190 static int
191 ec_node_re_lex_get_child(const struct ec_node *node, size_t i,
192                         struct ec_node **child, unsigned int *refs)
193 {
194         struct ec_node_re_lex *priv = ec_node_priv(node);
195
196         if (i >= 1)
197                 return -1;
198
199         *child = priv->child;
200         *refs = 2;
201         return 0;
202 }
203
204 static const struct ec_config_schema ec_node_re_lex_dict[] = {
205         {
206                 .key = "pattern",
207                 .desc = "The pattern to match.",
208                 .type = EC_CONFIG_TYPE_STRING,
209         },
210         {
211                 .key = "keep",
212                 .desc = "Whether to keep or drop the string matching "
213                 "the regular expression.",
214                 .type = EC_CONFIG_TYPE_BOOL,
215         },
216         {
217                 .key = "attr",
218                 .desc = "The optional attribute name to attach.",
219                 .type = EC_CONFIG_TYPE_STRING,
220         },
221         {
222                 .type = EC_CONFIG_TYPE_NONE,
223         },
224 };
225
226 static const struct ec_config_schema ec_node_re_lex_elt[] = {
227         {
228                 .desc = "A pattern element.",
229                 .type = EC_CONFIG_TYPE_DICT,
230                 .subschema = ec_node_re_lex_dict,
231         },
232         {
233                 .type = EC_CONFIG_TYPE_NONE,
234         },
235 };
236
237 static const struct ec_config_schema ec_node_re_lex_schema[] = {
238         {
239                 .key = "patterns",
240                 .desc = "The list of patterns elements.",
241                 .type = EC_CONFIG_TYPE_LIST,
242                 .subschema = ec_node_re_lex_elt,
243         },
244         {
245                 .key = "child",
246                 .desc = "The child node.",
247                 .type = EC_CONFIG_TYPE_NODE,
248         },
249         {
250                 .type = EC_CONFIG_TYPE_NONE,
251         },
252 };
253
254 static int ec_node_re_lex_set_config(struct ec_node *node,
255                                 const struct ec_config *config)
256 {
257         struct ec_node_re_lex *priv = ec_node_priv(node);
258         struct regexp_pattern *table = NULL;
259         const struct ec_config *patterns, *child, *elt, *pattern, *keep, *attr;
260         char *pattern_str = NULL, *attr_name = NULL;
261         ssize_t i, n = 0;
262         int ret;
263
264         child = ec_config_dict_get(config, "child");
265         if (child == NULL)
266                 goto fail;
267         if (ec_config_get_type(child) != EC_CONFIG_TYPE_NODE) {
268                 errno = EINVAL;
269                 goto fail;
270         }
271
272         patterns = ec_config_dict_get(config, "patterns");
273         if (patterns != NULL) {
274                 n = ec_config_count(patterns);
275                 if (n < 0)
276                         goto fail;
277
278                 table = ec_calloc(n, sizeof(*table));
279                 if (table == NULL)
280                         goto fail;
281
282                 n = 0;
283                 TAILQ_FOREACH(elt, &patterns->list, next) {
284                         if (ec_config_get_type(elt) != EC_CONFIG_TYPE_DICT) {
285                                 errno = EINVAL;
286                                 goto fail;
287                         }
288                         pattern = ec_config_dict_get(elt, "pattern");
289                         if (pattern == NULL) {
290                                 errno = EINVAL;
291                                 goto fail;
292                         }
293                         if (ec_config_get_type(pattern) != EC_CONFIG_TYPE_STRING) {
294                                 errno = EINVAL;
295                                 goto fail;
296                         }
297                         keep = ec_config_dict_get(elt, "keep");
298                         if (keep == NULL) {
299                                 errno = EINVAL;
300                                 goto fail;
301                         }
302                         if (ec_config_get_type(keep) != EC_CONFIG_TYPE_BOOL) {
303                                 errno = EINVAL;
304                                 goto fail;
305                         }
306                         attr = ec_config_dict_get(elt, "attr");
307                         if (attr != NULL && ec_config_get_type(attr) !=
308                                         EC_CONFIG_TYPE_STRING) {
309                                 errno = EINVAL;
310                                 goto fail;
311                         }
312                         pattern_str = ec_strdup(pattern->string);
313                         if (pattern_str == NULL)
314                                 goto fail;
315                         if (attr != NULL && attr->string != NULL) {
316                                 attr_name = ec_strdup(attr->string);
317                                 if (attr_name == NULL)
318                                         goto fail;
319                         }
320
321                         ret = regcomp(&table[n].r, pattern_str, REG_EXTENDED);
322                         if (ret != 0) {
323                                 EC_LOG(EC_LOG_ERR,
324                                         "Regular expression <%s> compilation failed: %d\n",
325                                         pattern_str, ret);
326                                 if (ret == REG_ESPACE)
327                                         errno = ENOMEM;
328                                 else
329                                         errno = EINVAL;
330                                 goto fail;
331                         }
332                         table[n].pattern = pattern_str;
333                         table[n].keep = keep->boolean;
334                         table[n].attr_name = attr_name;
335                         pattern_str = NULL;
336                         attr_name = NULL;
337
338                         n++;
339                 }
340         }
341
342         if (priv->child != NULL)
343                 ec_node_free(priv->child);
344         priv->child = ec_node_clone(child->node);
345         for (i = 0; i < (ssize_t)priv->len; i++) {
346                 ec_free(priv->table[i].pattern);
347                 ec_free(priv->table[i].attr_name);
348                 regfree(&priv->table[i].r);
349         }
350         ec_free(priv->table);
351         priv->table = table;
352         priv->len = n;
353
354         return 0;
355
356 fail:
357         if (table != NULL) {
358                 for (i = 0; i < n; i++) {
359                         if (table[i].pattern != NULL) {
360                                 ec_free(table[i].pattern);
361                                 regfree(&table[i].r);
362                         }
363                 }
364         }
365         ec_free(table);
366         ec_free(pattern_str);
367         return -1;
368 }
369
370 static struct ec_node_type ec_node_re_lex_type = {
371         .name = "re_lex",
372         .schema = ec_node_re_lex_schema,
373         .set_config = ec_node_re_lex_set_config,
374         .parse = ec_node_re_lex_parse,
375         .complete = ec_complete_unknown,
376         .size = sizeof(struct ec_node_re_lex),
377         .free_priv = ec_node_re_lex_free_priv,
378         .get_children_count = ec_node_re_lex_get_children_count,
379         .get_child = ec_node_re_lex_get_child,
380 };
381
382 EC_NODE_TYPE_REGISTER(ec_node_re_lex_type);
383
384 int ec_node_re_lex_add(struct ec_node *node, const char *pattern, int keep,
385         const char *attr_name)
386 {
387         const struct ec_config *cur_config = NULL;
388         struct ec_config *config = NULL, *patterns = NULL, *elt = NULL;
389         int ret;
390
391         if (ec_node_check_type(node, &ec_node_re_lex_type) < 0)
392                 goto fail;
393
394         elt = ec_config_dict();
395         if (elt == NULL)
396                 goto fail;
397         if (ec_config_dict_set(elt, "pattern", ec_config_string(pattern)) < 0)
398                 goto fail;
399         if (ec_config_dict_set(elt, "keep", ec_config_bool(keep)) < 0)
400                 goto fail;
401         if (attr_name != NULL) {
402                 if (ec_config_dict_set(elt, "attr",
403                                         ec_config_string(attr_name)) < 0)
404                         goto fail;
405         }
406
407         cur_config = ec_node_get_config(node);
408         if (cur_config == NULL)
409                 config = ec_config_dict();
410         else
411                 config = ec_config_dup(cur_config);
412         if (config == NULL)
413                 goto fail;
414
415         patterns = ec_config_dict_get(config, "patterns");
416         if (patterns == NULL) {
417                 patterns = ec_config_list();
418                 if (patterns == NULL)
419                         goto fail;
420
421                 if (ec_config_dict_set(config, "patterns", patterns) < 0)
422                         goto fail; /* patterns list is freed on error */
423         }
424
425         if (ec_config_list_add(patterns, elt) < 0) {
426                 elt = NULL;
427                 goto fail;
428         }
429         elt = NULL;
430
431         ret = ec_node_set_config(node, config);
432         config = NULL; /* freed */
433         if (ret < 0)
434                 goto fail;
435
436         return 0;
437
438 fail:
439         ec_config_free(config);
440         ec_config_free(elt);
441         return -1;
442 }
443
444 static int
445 ec_node_re_lex_set_child(struct ec_node *node, struct ec_node *child)
446 {
447         const struct ec_config *cur_config = NULL;
448         struct ec_config *config = NULL;
449         int ret;
450
451         if (ec_node_check_type(node, &ec_node_re_lex_type) < 0)
452                 goto fail;
453
454         cur_config = ec_node_get_config(node);
455         if (cur_config == NULL)
456                 config = ec_config_dict();
457         else
458                 config = ec_config_dup(cur_config);
459         if (config == NULL)
460                 goto fail;
461
462         if (ec_config_dict_set(config, "child", ec_config_node(child)) < 0) {
463                 child = NULL; /* freed */
464                 goto fail;
465         }
466         child = NULL; /* freed */
467
468         ret = ec_node_set_config(node, config);
469         config = NULL; /* freed */
470         if (ret < 0)
471                 goto fail;
472
473         return 0;
474
475 fail:
476         ec_config_free(config);
477         ec_node_free(child);
478         return -1;
479 }
480
481 struct ec_node *ec_node_re_lex(const char *id, struct ec_node *child)
482 {
483         struct ec_node *node = NULL;
484
485         if (child == NULL)
486                 return NULL;
487
488         node = ec_node_from_type(&ec_node_re_lex_type, id);
489         if (node == NULL)
490                 goto fail;
491
492         if (ec_node_re_lex_set_child(node, child) < 0) {
493                 child = NULL; /* freed */
494                 goto fail;
495         }
496
497         return node;
498
499 fail:
500         ec_node_free(node);
501         ec_node_free(child);
502         return NULL;
503 }
504
505 /* LCOV_EXCL_START */
506 static int ec_node_re_lex_testcase(void)
507 {
508         struct ec_node *node;
509         int ret, testres = 0;
510
511         node = ec_node_re_lex(EC_NO_ID,
512                 ec_node_many(EC_NO_ID,
513                         EC_NODE_OR(EC_NO_ID,
514                                 ec_node_str(EC_NO_ID, "foo"),
515                                 ec_node_str(EC_NO_ID, "bar"),
516                                 ec_node_int(EC_NO_ID, 0, 1000, 0)
517                         ), 0, 0
518                 )
519         );
520         if (node == NULL) {
521                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
522                 return -1;
523         }
524
525         ret = ec_node_re_lex_add(node, "[a-zA-Z]+", 1, NULL);
526         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
527         ret = ec_node_re_lex_add(node, "[0-9]+", 1, NULL);
528         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
529         ret = ec_node_re_lex_add(node, "=", 1, NULL);
530         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
531         ret = ec_node_re_lex_add(node, "-", 1, NULL);
532         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
533         ret = ec_node_re_lex_add(node, "\\+", 1, NULL);
534         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
535         ret = ec_node_re_lex_add(node, "[       ]+", 0, NULL);
536         testres |= EC_TEST_CHECK(ret == 0, "cannot add regexp");
537         if (ret != 0) {
538                 EC_LOG(EC_LOG_ERR, "cannot add regexp to node\n");
539                 ec_node_free(node);
540                 return -1;
541         }
542
543         testres |= EC_TEST_CHECK_PARSE(node, 1, "  foo bar  324 bar234");
544         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo bar324");
545         testres |= EC_TEST_CHECK_PARSE(node, 1, "");
546         testres |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
547
548         /* no completion */
549         testres |= EC_TEST_CHECK_COMPLETE(node,
550                 "", EC_VA_END,
551                 EC_VA_END);
552
553         ec_node_free(node);
554
555         return testres;
556 }
557 /* LCOV_EXCL_STOP */
558
559 static struct ec_test ec_node_re_lex_test = {
560         .name = "node_re_lex",
561         .test = ec_node_re_lex_testcase,
562 };
563
564 EC_TEST_REGISTER(ec_node_re_lex_test);