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