ea7254b19e4d3231dc8aee52d644c52b8b490fec
[protos/libecoli.git] / lib / ecoli_node_re.c
1 /*
2  * Copyright (c) 2016, 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 <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <regex.h>
33
34 #include <ecoli_log.h>
35 #include <ecoli_malloc.h>
36 #include <ecoli_test.h>
37 #include <ecoli_strvec.h>
38 #include <ecoli_node.h>
39 #include <ecoli_parsed.h>
40 #include <ecoli_completed.h>
41 #include <ecoli_node_re.h>
42
43 EC_LOG_TYPE_REGISTER(node_re);
44
45 struct ec_node_re {
46         struct ec_node gen;
47         char *re_str;
48         regex_t re;
49 };
50
51 static int
52 ec_node_re_parse(const struct ec_node *gen_node,
53                 struct ec_parsed *state,
54                 const struct ec_strvec *strvec)
55 {
56         struct ec_node_re *node = (struct ec_node_re *)gen_node;
57         const char *str;
58         regmatch_t pos;
59
60         (void)state;
61
62         if (ec_strvec_len(strvec) == 0)
63                 return EC_PARSED_NOMATCH;
64
65         str = ec_strvec_val(strvec, 0);
66         if (regexec(&node->re, str, 1, &pos, 0) != 0)
67                 return EC_PARSED_NOMATCH;
68         if (pos.rm_so != 0 || pos.rm_eo != (int)strlen(str))
69                 return EC_PARSED_NOMATCH;
70
71         return 1;
72 }
73
74 static void ec_node_re_free_priv(struct ec_node *gen_node)
75 {
76         struct ec_node_re *node = (struct ec_node_re *)gen_node;
77
78         ec_free(node->re_str);
79         regfree(&node->re);
80 }
81
82 static struct ec_node_type ec_node_re_type = {
83         .name = "re",
84         .parse = ec_node_re_parse,
85         .complete = ec_node_default_complete,
86         .size = sizeof(struct ec_node_re),
87         .free_priv = ec_node_re_free_priv,
88 };
89
90 EC_NODE_TYPE_REGISTER(ec_node_re_type);
91
92 int ec_node_re_set_regexp(struct ec_node *gen_node, const char *str)
93 {
94         struct ec_node_re *node = (struct ec_node_re *)gen_node;
95         int ret;
96
97         if (str == NULL)
98                 return -EINVAL;
99         if (node->re_str != NULL) // XXX allow to replace
100                 return -EEXIST;
101
102         ret = -ENOMEM;
103         node->re_str = ec_strdup(str);
104         if (node->re_str == NULL)
105                 goto fail;
106
107         ret = -EINVAL;
108         if (regcomp(&node->re, node->re_str, REG_EXTENDED) != 0)
109                 goto fail;
110
111         return 0;
112
113 fail:
114         ec_free(node->re_str);
115         return ret;
116 }
117
118 struct ec_node *ec_node_re(const char *id, const char *re_str)
119 {
120         struct ec_node *gen_node = NULL;
121
122         gen_node = __ec_node(&ec_node_re_type, id);
123         if (gen_node == NULL)
124                 goto fail;
125
126         if (ec_node_re_set_regexp(gen_node, re_str) < 0)
127                 goto fail;
128
129         return gen_node;
130
131 fail:
132         ec_node_free(gen_node);
133         return NULL;
134 }
135
136 /* LCOV_EXCL_START */
137 static int ec_node_re_testcase(void)
138 {
139         struct ec_node *node;
140         int testres = 0;
141
142         node = ec_node_re(EC_NO_ID, "fo+|bar");
143         if (node == NULL) {
144                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
145                 return -1;
146         }
147         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo");
148         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
149         testres |= EC_TEST_CHECK_PARSE(node, 1, "bar");
150         testres |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
151         testres |= EC_TEST_CHECK_PARSE(node, -1, " foo");
152         testres |= EC_TEST_CHECK_PARSE(node, -1, "");
153         ec_node_free(node);
154
155         return testres;
156 }
157 /* LCOV_EXCL_STOP */
158
159 static struct ec_test ec_node_re_test = {
160         .name = "node_re",
161         .test = ec_node_re_testcase,
162 };
163
164 EC_TEST_REGISTER(ec_node_re_test);