use EC_NO_ID instead of NULL
[protos/libecoli.git] / lib / ecoli_node_many.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 <assert.h>
32 #include <stdarg.h>
33 #include <errno.h>
34
35 #include <ecoli_malloc.h>
36 #include <ecoli_log.h>
37 #include <ecoli_test.h>
38 #include <ecoli_strvec.h>
39 #include <ecoli_node.h>
40 #include <ecoli_parsed.h>
41 #include <ecoli_completed.h>
42 #include <ecoli_node_str.h>
43 #include <ecoli_node_option.h>
44 #include <ecoli_node_many.h>
45
46 EC_LOG_TYPE_REGISTER(node_many);
47
48 struct ec_node_many {
49         struct ec_node gen;
50         unsigned int min;
51         unsigned int max;
52         struct ec_node *child;
53 };
54
55 static int ec_node_many_parse(const struct ec_node *gen_node,
56                         struct ec_parsed *state,
57                         const struct ec_strvec *strvec)
58 {
59         struct ec_node_many *node = (struct ec_node_many *)gen_node;
60         struct ec_parsed *child_parsed;
61         struct ec_strvec *childvec = NULL;
62         size_t off = 0, count;
63         int ret;
64
65         for (count = 0; node->max == 0 || count < node->max; count++) {
66                 childvec = ec_strvec_ndup(strvec, off,
67                         ec_strvec_len(strvec) - off);
68                 if (childvec == NULL) {
69                         ret = -ENOMEM;
70                         goto fail;
71                 }
72
73                 ret = ec_node_parse_child(node->child, state, childvec);
74                 if (ret < 0)
75                         goto fail;
76
77                 ec_strvec_free(childvec);
78                 childvec = NULL;
79
80                 if (ret == EC_PARSED_NOMATCH)
81                         break;
82
83                 /* it matches an empty strvec, no need to continue */
84                 if (ret == 0) {
85                         child_parsed = ec_parsed_get_last_child(state);
86                         ec_parsed_del_child(state, child_parsed);
87                         ec_parsed_free(child_parsed);
88                         break;
89                 }
90
91                 off += ret;
92         }
93
94         if (count < node->min) {
95                 ec_parsed_free_children(state);
96                 return EC_PARSED_NOMATCH;
97         }
98
99         return off;
100
101 fail:
102         ec_strvec_free(childvec);
103         return ret;
104 }
105
106 static int
107 __ec_node_many_complete(struct ec_node_many *node, unsigned int max,
108                         struct ec_completed *completed,
109                         const struct ec_strvec *strvec)
110 {
111         struct ec_parsed *parsed = ec_completed_get_state(completed);
112         struct ec_strvec *childvec = NULL;
113         unsigned int i;
114         int ret;
115
116         /* first, try to complete with the child node */
117         ret = ec_node_complete_child(node->child, completed, strvec);
118         if (ret < 0)
119                 goto fail;
120
121         /* we're done, we reached the max number of nodes */
122         if (max == 1)
123                 return 0;
124
125         /* if there is a maximum, decrease it before recursion */
126         if (max != 0)
127                 max--;
128
129         /* then, if the node matches the beginning of the strvec, try to
130          * complete the rest */
131         for (i = 0; i < ec_strvec_len(strvec); i++) {
132                 childvec = ec_strvec_ndup(strvec, 0, i);
133                 if (childvec == NULL)
134                         goto fail;
135
136                 ret = ec_node_parse_child(node->child, parsed, childvec);
137                 if (ret < 0)
138                         goto fail;
139
140                 ec_strvec_free(childvec);
141                 childvec = NULL;
142
143                 if ((unsigned int)ret != i) {
144                         if (ret != EC_PARSED_NOMATCH)
145                                 ec_parsed_del_last_child(parsed);
146                         continue;
147                 }
148
149                 childvec = ec_strvec_ndup(strvec, i, ec_strvec_len(strvec) - i);
150                 if (childvec == NULL) {
151                         ec_parsed_del_last_child(parsed);
152                         goto fail;
153                 }
154
155                 ret = __ec_node_many_complete(node, max, completed, childvec);
156                 ec_parsed_del_last_child(parsed);
157                 ec_strvec_free(childvec);
158                 childvec = NULL;
159
160                 if (ret < 0)
161                         goto fail;
162         }
163
164         return 0;
165
166 fail:
167         ec_strvec_free(childvec);
168         return -1;
169 }
170
171 static int
172 ec_node_many_complete(const struct ec_node *gen_node,
173                 struct ec_completed *completed,
174                 const struct ec_strvec *strvec)
175 {
176         struct ec_node_many *node = (struct ec_node_many *)gen_node;
177
178         return __ec_node_many_complete(node, node->max, completed,
179                                 strvec);
180 }
181
182 static void ec_node_many_free_priv(struct ec_node *gen_node)
183 {
184         struct ec_node_many *node = (struct ec_node_many *)gen_node;
185
186         ec_node_free(node->child);
187 }
188
189 static struct ec_node_type ec_node_many_type = {
190         .name = "many",
191         .parse = ec_node_many_parse,
192         .complete = ec_node_many_complete,
193         .size = sizeof(struct ec_node_many),
194         .free_priv = ec_node_many_free_priv,
195 };
196
197 EC_NODE_TYPE_REGISTER(ec_node_many_type);
198
199 struct ec_node *ec_node_many(const char *id, struct ec_node *child,
200         unsigned int min, unsigned int max)
201 {
202         struct ec_node_many *node = NULL;
203
204         if (child == NULL)
205                 return NULL;
206
207         node = (struct ec_node_many *)__ec_node(&ec_node_many_type, id);
208         if (node == NULL) {
209                 ec_node_free(child);
210                 return NULL;
211         }
212
213         node->child = child;
214         node->min = min;
215         node->max = max;
216
217         return &node->gen;
218 }
219
220 /* LCOV_EXCL_START */
221 static int ec_node_many_testcase(void)
222 {
223         struct ec_node *node;
224         int ret = 0;
225
226         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 0, 0);
227         if (node == NULL) {
228                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
229                 return -1;
230         }
231         ret |= EC_TEST_CHECK_PARSE(node, 0);
232         ret |= EC_TEST_CHECK_PARSE(node, 0, "bar");
233         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
234         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
235         ret |= EC_TEST_CHECK_PARSE(node, 0);
236         ec_node_free(node);
237
238         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 1, 0);
239         if (node == NULL) {
240                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
241                 return -1;
242         }
243         ret |= EC_TEST_CHECK_PARSE(node, -1, "bar");
244         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
245         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
246         ret |= EC_TEST_CHECK_PARSE(node, -1);
247         ec_node_free(node);
248
249         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 1, 2);
250         if (node == NULL) {
251                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
252                 return -1;
253         }
254         ret |= EC_TEST_CHECK_PARSE(node, -1, "bar");
255         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
256         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
257         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "foo");
258         ret |= EC_TEST_CHECK_PARSE(node, -1);
259         ec_node_free(node);
260
261         /* test completion */
262         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 2, 4);
263         if (node == NULL) {
264                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
265                 return -1;
266         }
267         ret |= EC_TEST_CHECK_COMPLETE(node,
268                 "", EC_NODE_ENDLIST,
269                 "foo", EC_NODE_ENDLIST);
270         ret |= EC_TEST_CHECK_COMPLETE(node,
271                 "f", EC_NODE_ENDLIST,
272                 "foo", EC_NODE_ENDLIST);
273         ret |= EC_TEST_CHECK_COMPLETE(node,
274                 "foo", EC_NODE_ENDLIST,
275                 "foo", EC_NODE_ENDLIST);
276         ret |= EC_TEST_CHECK_COMPLETE(node,
277                 "foo", "", EC_NODE_ENDLIST,
278                 "foo", EC_NODE_ENDLIST);
279         ret |= EC_TEST_CHECK_COMPLETE(node,
280                 "foo", "foo", "", EC_NODE_ENDLIST,
281                 "foo", EC_NODE_ENDLIST);
282         ret |= EC_TEST_CHECK_COMPLETE(node,
283                 "foo", "foo", "foo", "", EC_NODE_ENDLIST,
284                 "foo", EC_NODE_ENDLIST);
285         ret |= EC_TEST_CHECK_COMPLETE(node,
286                 "foo", "foo", "foo", "foo", "", EC_NODE_ENDLIST,
287                 EC_NODE_ENDLIST);
288         ec_node_free(node);
289
290         return ret;
291 }
292 /* LCOV_EXCL_STOP */
293
294 static struct ec_test ec_node_many_test = {
295         .name = "node_many",
296         .test = ec_node_many_testcase,
297 };
298
299 EC_TEST_REGISTER(ec_node_many_test);