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