dynamic log types
[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                 ec_strvec_free(childvec);
75                 childvec = NULL;
76
77                 if (ret == EC_PARSED_NOMATCH)
78                         break;
79                 else if (ret < 0)
80                         goto fail;
81
82                 /* it matches an empty strvec, no need to continue */
83                 if (ret == 0) {
84                         child_parsed = ec_parsed_get_last_child(state);
85                         ec_parsed_del_child(state, child_parsed);
86                         ec_parsed_free(child_parsed);
87                         break;
88                 }
89
90                 off += ret;
91         }
92
93         if (count < node->min) {
94                 ec_parsed_free_children(state);
95                 return EC_PARSED_NOMATCH;
96         }
97
98         return off;
99
100 fail:
101         ec_strvec_free(childvec);
102         return ret;
103 }
104
105 static int
106 __ec_node_many_complete(struct ec_node_many *node, unsigned int max,
107                         struct ec_completed *completed,
108                         struct ec_parsed *parsed,
109                         const struct ec_strvec *strvec)
110 {
111         struct ec_strvec *childvec = NULL;
112         unsigned int i;
113         int ret;
114
115         /* first, try to complete with the child node */
116         ret = ec_node_complete_child(node->child, completed, parsed, strvec);
117         if (ret < 0)
118                 goto fail;
119
120         /* we're done, we reached the max number of nodes */
121         if (max == 1)
122                 return 0;
123
124         /* if there is a maximum, decrease it before recursion */
125         if (max != 0)
126                 max--;
127
128         /* then, if the node matches the beginning of the strvec, try to
129          * complete the rest */
130         for (i = 0; i < ec_strvec_len(strvec); i++) {
131                 childvec = ec_strvec_ndup(strvec, 0, i);
132                 if (childvec == NULL)
133                         goto fail;
134
135                 ret = ec_node_parse_child(node->child, parsed, childvec);
136                 if (ret < 0 && ret != EC_PARSED_NOMATCH)
137                         goto fail;
138
139                 ec_strvec_free(childvec);
140                 childvec = NULL;
141
142                 if ((unsigned int)ret != i) {
143                         if (ret != EC_PARSED_NOMATCH)
144                                 ec_parsed_del_last_child(parsed);
145                         continue;
146                 }
147
148                 childvec = ec_strvec_ndup(strvec, i, ec_strvec_len(strvec) - i);
149                 if (childvec == NULL) {
150                         ec_parsed_del_last_child(parsed);
151                         goto fail;
152                 }
153
154                 ret = __ec_node_many_complete(node, max, completed,
155                                         parsed, 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                 struct ec_parsed *parsed,
175                 const struct ec_strvec *strvec)
176 {
177         struct ec_node_many *node = (struct ec_node_many *)gen_node;
178
179         return __ec_node_many_complete(node, node->max, completed,
180                                 parsed, strvec);
181 }
182
183 static void ec_node_many_free_priv(struct ec_node *gen_node)
184 {
185         struct ec_node_many *node = (struct ec_node_many *)gen_node;
186
187         ec_node_free(node->child);
188 }
189
190 static struct ec_node_type ec_node_many_type = {
191         .name = "many",
192         .parse = ec_node_many_parse,
193         .complete = ec_node_many_complete,
194         .size = sizeof(struct ec_node_many),
195         .free_priv = ec_node_many_free_priv,
196 };
197
198 EC_NODE_TYPE_REGISTER(ec_node_many_type);
199
200 struct ec_node *ec_node_many(const char *id, struct ec_node *child,
201         unsigned int min, unsigned int max)
202 {
203         struct ec_node_many *node = NULL;
204
205         if (child == NULL)
206                 return NULL;
207
208         node = (struct ec_node_many *)__ec_node(&ec_node_many_type, id);
209         if (node == NULL) {
210                 ec_node_free(child);
211                 return NULL;
212         }
213
214         node->child = child;
215         node->min = min;
216         node->max = max;
217
218         return &node->gen;
219 }
220
221 /* LCOV_EXCL_START */
222 static int ec_node_many_testcase(void)
223 {
224         struct ec_node *node;
225         int ret = 0;
226
227         node = ec_node_many(NULL, ec_node_str(NULL, "foo"), 0, 0);
228         if (node == NULL) {
229                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
230                 return -1;
231         }
232         ret |= EC_TEST_CHECK_PARSE(node, 0);
233         ret |= EC_TEST_CHECK_PARSE(node, 0, "bar");
234         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
235         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
236         ret |= EC_TEST_CHECK_PARSE(node, 0);
237         ec_node_free(node);
238
239         node = ec_node_many(NULL, ec_node_str(NULL, "foo"), 1, 0);
240         if (node == NULL) {
241                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
242                 return -1;
243         }
244         ret |= EC_TEST_CHECK_PARSE(node, -1, "bar");
245         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
246         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
247         ret |= EC_TEST_CHECK_PARSE(node, -1);
248         ec_node_free(node);
249
250         node = ec_node_many(NULL, ec_node_str(NULL, "foo"), 1, 2);
251         if (node == NULL) {
252                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
253                 return -1;
254         }
255         ret |= EC_TEST_CHECK_PARSE(node, -1, "bar");
256         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
257         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
258         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "foo");
259         ret |= EC_TEST_CHECK_PARSE(node, -1);
260         ec_node_free(node);
261
262         /* test completion */
263         node = ec_node_many(NULL, ec_node_str(NULL, "foo"), 2, 4);
264         if (node == NULL) {
265                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
266                 return -1;
267         }
268         ret |= EC_TEST_CHECK_COMPLETE(node,
269                 "", EC_NODE_ENDLIST,
270                 "foo", EC_NODE_ENDLIST);
271         ret |= EC_TEST_CHECK_COMPLETE(node,
272                 "f", EC_NODE_ENDLIST,
273                 "foo", EC_NODE_ENDLIST);
274         ret |= EC_TEST_CHECK_COMPLETE(node,
275                 "foo", EC_NODE_ENDLIST,
276                 "foo", EC_NODE_ENDLIST);
277         ret |= EC_TEST_CHECK_COMPLETE(node,
278                 "foo", "", EC_NODE_ENDLIST,
279                 "foo", EC_NODE_ENDLIST);
280         ret |= EC_TEST_CHECK_COMPLETE(node,
281                 "foo", "foo", "", EC_NODE_ENDLIST,
282                 "foo", EC_NODE_ENDLIST);
283         ret |= EC_TEST_CHECK_COMPLETE(node,
284                 "foo", "foo", "foo", "", EC_NODE_ENDLIST,
285                 "foo", EC_NODE_ENDLIST);
286         ret |= EC_TEST_CHECK_COMPLETE(node,
287                 "foo", "foo", "foo", "foo", "", EC_NODE_ENDLIST,
288                 EC_NODE_ENDLIST);
289         ec_node_free(node);
290
291         return ret;
292 }
293 /* LCOV_EXCL_STOP */
294
295 static struct ec_test ec_node_many_test = {
296         .name = "node_many",
297         .test = ec_node_many_testcase,
298 };
299
300 EC_TEST_REGISTER(ec_node_many_test);