standardize return values + errno
[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 void ec_node_many_free_priv(struct ec_node *gen_node)
158 {
159         struct ec_node_many *node = (struct ec_node_many *)gen_node;
160
161         ec_node_free(node->child);
162 }
163
164 static struct ec_node_type ec_node_many_type = {
165         .name = "many",
166         .parse = ec_node_many_parse,
167         .complete = ec_node_many_complete,
168         .size = sizeof(struct ec_node_many),
169         .free_priv = ec_node_many_free_priv,
170 };
171
172 EC_NODE_TYPE_REGISTER(ec_node_many_type);
173
174 struct ec_node *ec_node_many(const char *id, struct ec_node *child,
175         unsigned int min, unsigned int max)
176 {
177         struct ec_node_many *node = NULL;
178
179         if (child == NULL)
180                 return NULL;
181
182         node = (struct ec_node_many *)__ec_node(&ec_node_many_type, id);
183         if (node == NULL) {
184                 ec_node_free(child);
185                 return NULL;
186         }
187
188         node->child = child;
189         node->min = min;
190         node->max = max;
191
192         return &node->gen;
193 }
194
195 /* LCOV_EXCL_START */
196 static int ec_node_many_testcase(void)
197 {
198         struct ec_node *node;
199         int testres = 0;
200
201         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 0, 0);
202         if (node == NULL) {
203                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
204                 return -1;
205         }
206         testres |= EC_TEST_CHECK_PARSE(node, 0);
207         testres |= EC_TEST_CHECK_PARSE(node, 0, "bar");
208         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
209         testres |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
210         testres |= EC_TEST_CHECK_PARSE(node, 0);
211         ec_node_free(node);
212
213         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 1, 0);
214         if (node == NULL) {
215                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
216                 return -1;
217         }
218         testres |= EC_TEST_CHECK_PARSE(node, -1, "bar");
219         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
220         testres |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
221         testres |= EC_TEST_CHECK_PARSE(node, -1);
222         ec_node_free(node);
223
224         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 1, 2);
225         if (node == NULL) {
226                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
227                 return -1;
228         }
229         testres |= EC_TEST_CHECK_PARSE(node, -1, "bar");
230         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
231         testres |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "bar");
232         testres |= EC_TEST_CHECK_PARSE(node, 2, "foo", "foo", "foo");
233         testres |= EC_TEST_CHECK_PARSE(node, -1);
234         ec_node_free(node);
235
236         /* test completion */
237         node = ec_node_many(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"), 2, 4);
238         if (node == NULL) {
239                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
240                 return -1;
241         }
242         testres |= EC_TEST_CHECK_COMPLETE(node,
243                 "", EC_NODE_ENDLIST,
244                 "foo", EC_NODE_ENDLIST);
245         testres |= EC_TEST_CHECK_COMPLETE(node,
246                 "f", EC_NODE_ENDLIST,
247                 "foo", EC_NODE_ENDLIST);
248         testres |= EC_TEST_CHECK_COMPLETE(node,
249                 "foo", EC_NODE_ENDLIST,
250                 "foo", EC_NODE_ENDLIST);
251         testres |= EC_TEST_CHECK_COMPLETE(node,
252                 "foo", "", EC_NODE_ENDLIST,
253                 "foo", EC_NODE_ENDLIST);
254         testres |= EC_TEST_CHECK_COMPLETE(node,
255                 "foo", "foo", "", EC_NODE_ENDLIST,
256                 "foo", EC_NODE_ENDLIST);
257         testres |= EC_TEST_CHECK_COMPLETE(node,
258                 "foo", "foo", "foo", "", EC_NODE_ENDLIST,
259                 "foo", EC_NODE_ENDLIST);
260         testres |= EC_TEST_CHECK_COMPLETE(node,
261                 "foo", "foo", "foo", "foo", "", EC_NODE_ENDLIST,
262                 EC_NODE_ENDLIST);
263         ec_node_free(node);
264
265         return testres;
266 }
267 /* LCOV_EXCL_STOP */
268
269 static struct ec_test ec_node_many_test = {
270         .name = "node_many",
271         .test = ec_node_many_testcase,
272 };
273
274 EC_TEST_REGISTER(ec_node_many_test);