support resetting regexp
[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         if (node->re_str != NULL) {
79                 ec_free(node->re_str);
80                 regfree(&node->re);
81         }
82 }
83
84 static struct ec_node_type ec_node_re_type = {
85         .name = "re",
86         .parse = ec_node_re_parse,
87         .complete = ec_node_default_complete,
88         .size = sizeof(struct ec_node_re),
89         .free_priv = ec_node_re_free_priv,
90 };
91
92 EC_NODE_TYPE_REGISTER(ec_node_re_type);
93
94 int ec_node_re_set_regexp(struct ec_node *gen_node, const char *str)
95 {
96         struct ec_node_re *node = (struct ec_node_re *)gen_node;
97         char *str_copy = NULL;
98         regex_t re;
99         int ret;
100
101         if (str == NULL)
102                 return -EINVAL;
103
104         ret = -ENOMEM;
105         str_copy = ec_strdup(str);
106         if (str_copy == NULL)
107                 goto fail;
108
109         ret = -EINVAL;
110         if (regcomp(&re, str_copy, REG_EXTENDED) != 0)
111                 goto fail;
112
113         if (node->re_str != NULL) {
114                 ec_free(node->re_str);
115                 regfree(&node->re);
116         }
117         node->re_str = str_copy;
118         node->re = re;
119
120         return 0;
121
122 fail:
123         ec_free(str_copy);
124         return ret;
125 }
126
127 struct ec_node *ec_node_re(const char *id, const char *re_str)
128 {
129         struct ec_node *gen_node = NULL;
130
131         gen_node = __ec_node(&ec_node_re_type, id);
132         if (gen_node == NULL)
133                 goto fail;
134
135         if (ec_node_re_set_regexp(gen_node, re_str) < 0)
136                 goto fail;
137
138         return gen_node;
139
140 fail:
141         ec_node_free(gen_node);
142         return NULL;
143 }
144
145 /* LCOV_EXCL_START */
146 static int ec_node_re_testcase(void)
147 {
148         struct ec_node *node;
149         int testres = 0;
150
151         node = ec_node_re(EC_NO_ID, "fo+|bar");
152         if (node == NULL) {
153                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
154                 return -1;
155         }
156         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo");
157         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
158         testres |= EC_TEST_CHECK_PARSE(node, 1, "bar");
159         testres |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
160         testres |= EC_TEST_CHECK_PARSE(node, -1, " foo");
161         testres |= EC_TEST_CHECK_PARSE(node, -1, "");
162         ec_node_free(node);
163
164         return testres;
165 }
166 /* LCOV_EXCL_STOP */
167
168 static struct ec_test ec_node_re_test = {
169         .name = "node_re",
170         .test = ec_node_re_testcase,
171 };
172
173 EC_TEST_REGISTER(ec_node_re_test);