save
[protos/libecoli.git] / lib / ecoli_tk_or.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_strvec.h>
38 #include <ecoli_tk.h>
39 #include <ecoli_tk_or.h>
40 #include <ecoli_tk_str.h>
41 #include <ecoli_test.h>
42
43 struct ec_tk_or {
44         struct ec_tk gen;
45         struct ec_tk **table;
46         unsigned int len;
47 };
48
49 static struct ec_parsed_tk *ec_tk_or_parse(const struct ec_tk *gen_tk,
50         const struct ec_strvec *strvec)
51 {
52         struct ec_tk_or *tk = (struct ec_tk_or *)gen_tk;
53         struct ec_parsed_tk *parsed_tk, *child_parsed_tk = NULL;
54         struct ec_strvec *match_strvec;
55         unsigned int i;
56
57         parsed_tk = ec_parsed_tk_new();
58         if (parsed_tk == NULL)
59                 goto fail;
60
61         for (i = 0; i < tk->len; i++) {
62                 child_parsed_tk = ec_tk_parse_tokens(tk->table[i], strvec);
63                 if (child_parsed_tk == NULL)
64                         goto fail;
65                 if (ec_parsed_tk_matches(child_parsed_tk))
66                         break;
67                 ec_parsed_tk_free(child_parsed_tk);
68                 child_parsed_tk = NULL;
69         }
70
71         /* no match */
72         if (i == tk->len)
73                 return parsed_tk;
74
75         match_strvec = ec_strvec_dup(child_parsed_tk->strvec);
76         if (match_strvec == NULL)
77                 goto fail;
78
79         ec_parsed_tk_set_match(parsed_tk, gen_tk, match_strvec);
80         ec_parsed_tk_add_child(parsed_tk, child_parsed_tk);
81
82         return parsed_tk;
83
84  fail:
85         ec_parsed_tk_free(child_parsed_tk);
86         ec_parsed_tk_free(parsed_tk);
87         return NULL;
88 }
89
90 static struct ec_completed_tk *ec_tk_or_complete(const struct ec_tk *gen_tk,
91         const struct ec_strvec *strvec)
92 {
93         struct ec_tk_or *tk = (struct ec_tk_or *)gen_tk;
94         struct ec_completed_tk *completed_tk, *child_completed_tk;
95         size_t n;
96
97         completed_tk = ec_completed_tk_new();
98         if (completed_tk == NULL)
99                 return NULL;
100
101         for (n = 0; n < tk->len; n++) {
102                 child_completed_tk = ec_tk_complete_tokens(tk->table[n],
103                         strvec);
104
105                 if (child_completed_tk == NULL) // XXX fail instead?
106                         continue;
107
108                 ec_completed_tk_merge(completed_tk, child_completed_tk);
109         }
110
111         return completed_tk;
112 }
113
114 static void ec_tk_or_free_priv(struct ec_tk *gen_tk)
115 {
116         struct ec_tk_or *tk = (struct ec_tk_or *)gen_tk;
117         unsigned int i;
118
119         for (i = 0; i < tk->len; i++)
120                 ec_tk_free(tk->table[i]);
121         ec_free(tk->table);
122 }
123
124 int ec_tk_or_add(struct ec_tk *gen_tk, struct ec_tk *child)
125 {
126         struct ec_tk_or *tk = (struct ec_tk_or *)gen_tk;
127         struct ec_tk **table;
128
129         assert(tk != NULL);
130
131         if (child == NULL)
132                 return -EINVAL;
133
134         gen_tk->flags &= ~EC_TK_F_BUILT;
135
136         table = ec_realloc(tk->table, (tk->len + 1) * sizeof(*tk->table));
137         if (table == NULL) {
138                 ec_tk_free(child);
139                 return -1;
140         }
141
142         tk->table = table;
143         table[tk->len] = child;
144         tk->len++;
145
146         child->parent = gen_tk;
147         TAILQ_INSERT_TAIL(&gen_tk->children, child, next);
148
149         return 0;
150 }
151
152 static struct ec_tk_type ec_tk_or_type = {
153         .name = "or",
154         .parse = ec_tk_or_parse,
155         .complete = ec_tk_or_complete,
156         .size = sizeof(struct ec_tk_or),
157         .free_priv = ec_tk_or_free_priv,
158 };
159
160 EC_TK_TYPE_REGISTER(ec_tk_or_type);
161
162 struct ec_tk *__ec_tk_or(const char *id, ...)
163 {
164         struct ec_tk *gen_tk = NULL;
165         struct ec_tk_or *tk = NULL;
166         struct ec_tk *child;
167         va_list ap;
168         int fail = 0;
169
170         va_start(ap, id);
171
172         gen_tk = __ec_tk_new(&ec_tk_or_type, id);
173         tk = (struct ec_tk_or *)gen_tk;
174         if (tk == NULL)
175                 fail = 1;;
176
177         for (child = va_arg(ap, struct ec_tk *);
178              child != EC_TK_ENDLIST;
179              child = va_arg(ap, struct ec_tk *)) {
180
181                 /* on error, don't quit the loop to avoid leaks */
182                 if (fail == 1 || child == NULL ||
183                                 ec_tk_or_add(gen_tk, child) < 0) {
184                         fail = 1;
185                         ec_tk_free(child);
186                 }
187         }
188
189         if (fail == 1)
190                 goto fail;
191
192         va_end(ap);
193         return gen_tk;
194
195 fail:
196         ec_tk_free(gen_tk); /* will also free children */
197         va_end(ap);
198         return NULL;
199 }
200
201 static int ec_tk_or_testcase(void)
202 {
203         struct ec_tk *tk;
204         int ret = 0;
205
206         tk = EC_TK_OR(NULL,
207                 ec_tk_str(NULL, "foo"),
208                 ec_tk_str(NULL, "bar")
209         );
210         if (tk == NULL) {
211                 ec_log(EC_LOG_ERR, "cannot create tk\n");
212                 return -1;
213         }
214         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "foo");
215         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "bar");
216         ret |= EC_TEST_CHECK_TK_PARSE(tk, 1, "foo", "bar");
217         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, " ");
218         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "foox");
219         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "toto");
220         ret |= EC_TEST_CHECK_TK_PARSE(tk, -1, "");
221         ec_tk_free(tk);
222
223         /* test completion */
224         tk = EC_TK_OR(NULL,
225                 ec_tk_str(NULL, "foo"),
226                 ec_tk_str(NULL, "bar"),
227                 ec_tk_str(NULL, "bar2"),
228                 ec_tk_str(NULL, "toto"),
229                 ec_tk_str(NULL, "titi")
230         );
231         if (tk == NULL) {
232                 ec_log(EC_LOG_ERR, "cannot create tk\n");
233                 return -1;
234         }
235         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
236                 "", EC_TK_ENDLIST,
237                 "foo", "bar", "bar2", "toto", "titi", EC_TK_ENDLIST,
238                 "");
239         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
240                 "f", EC_TK_ENDLIST,
241                 "oo", EC_TK_ENDLIST,
242                 "oo");
243         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
244                 "b", EC_TK_ENDLIST,
245                 "ar", "ar2", EC_TK_ENDLIST,
246                 "ar");
247         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
248                 "bar", EC_TK_ENDLIST,
249                 "", "2", EC_TK_ENDLIST,
250                 "");
251         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
252                 "t", EC_TK_ENDLIST,
253                 "oto", "iti", EC_TK_ENDLIST,
254                 "");
255         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
256                 "to", EC_TK_ENDLIST,
257                 "to", EC_TK_ENDLIST,
258                 "to");
259         ret |= EC_TEST_CHECK_TK_COMPLETE(tk,
260                 "x", EC_TK_ENDLIST,
261                 EC_TK_ENDLIST,
262                 "");
263         ec_tk_free(tk);
264
265         return ret;
266 }
267
268 static struct ec_test ec_tk_or_test = {
269         .name = "tk_or",
270         .test = ec_tk_or_testcase,
271 };
272
273 EC_TEST_REGISTER(ec_tk_or_test);