more test coverage
[protos/libecoli.git] / lib / ecoli_node_once.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_or.h>
44 #include <ecoli_node_many.h>
45 #include <ecoli_node_once.h>
46
47 EC_LOG_TYPE_REGISTER(node_once);
48
49 struct ec_node_once {
50         struct ec_node gen;
51         struct ec_node *child;
52 };
53
54 static unsigned int
55 count_node(struct ec_parsed *parsed, const struct ec_node *node)
56 {
57         struct ec_parsed *child;
58         unsigned int count = 0;
59
60         if (parsed == NULL)
61                 return 0;
62
63         if (ec_parsed_get_node(parsed) == node)
64                 count++;
65
66         EC_PARSED_FOREACH_CHILD(child, parsed)
67                 count += count_node(child, node);
68
69         return count;
70 }
71
72 static int
73 ec_node_once_parse(const struct ec_node *gen_node,
74                 struct ec_parsed *state,
75                 const struct ec_strvec *strvec)
76 {
77         struct ec_node_once *node = (struct ec_node_once *)gen_node;
78         unsigned int count;
79
80         /* count the number of occurences of the node: if already parsed,
81          * do not match
82          */
83         count = count_node(ec_parsed_get_root(state), node->child);
84         if (count > 0)
85                 return EC_PARSED_NOMATCH;
86
87         return ec_node_parse_child(node->child, state, strvec);
88 }
89
90 static int
91 ec_node_once_complete(const struct ec_node *gen_node,
92                 struct ec_completed *completed,
93                 const struct ec_strvec *strvec)
94 {
95         struct ec_node_once *node = (struct ec_node_once *)gen_node;
96         struct ec_parsed *parsed = ec_completed_get_state(completed);
97         unsigned int count;
98         int ret;
99
100         /* count the number of occurences of the node: if already parsed,
101          * do not match
102          */
103         count = count_node(ec_parsed_get_root(parsed), node->child);
104         if (count > 0)
105                 return 0;
106
107         ret = ec_node_complete_child(node->child, completed, strvec);
108         if (ret < 0)
109                 return ret;
110
111         return 0;
112 }
113
114 static void ec_node_once_free_priv(struct ec_node *gen_node)
115 {
116         struct ec_node_once *node = (struct ec_node_once *)gen_node;
117
118         ec_node_free(node->child);
119 }
120
121 static struct ec_node_type ec_node_once_type = {
122         .name = "once",
123         .parse = ec_node_once_parse,
124         .complete = ec_node_once_complete,
125         .size = sizeof(struct ec_node_once),
126         .free_priv = ec_node_once_free_priv,
127 };
128
129 EC_NODE_TYPE_REGISTER(ec_node_once_type);
130
131 int ec_node_once_set(struct ec_node *gen_node, struct ec_node *child)
132 {
133         struct ec_node_once *node = (struct ec_node_once *)gen_node;
134
135         if (gen_node == NULL || child == NULL) {
136                 errno = EINVAL;
137                 goto fail;
138         }
139
140         if (ec_node_check_type(gen_node, &ec_node_once_type) < 0)
141                 goto fail;
142
143         if (ec_node_add_child(gen_node, child) < 0)
144                 goto fail;
145
146         node->child = child;
147
148         return 0;
149
150 fail:
151         ec_node_free(child);
152         return -1;
153 }
154
155 struct ec_node *ec_node_once(const char *id, struct ec_node *child)
156 {
157         struct ec_node *gen_node = NULL;
158
159         if (child == NULL)
160                 return NULL;
161
162         gen_node = __ec_node(&ec_node_once_type, id);
163         if (gen_node == NULL)
164                 goto fail;
165
166         ec_node_once_set(gen_node, child);
167         child = NULL;
168
169         return gen_node;
170
171 fail:
172         ec_node_free(child);
173         return NULL;
174 }
175
176 /* LCOV_EXCL_START */
177 static int ec_node_once_testcase(void)
178 {
179         struct ec_node *node;
180         int ret = 0;
181
182         node = ec_node_many(EC_NO_ID,
183                         EC_NODE_OR(EC_NO_ID,
184                                 ec_node_once(EC_NO_ID, ec_node_str(EC_NO_ID, "foo")),
185                                 ec_node_str(EC_NO_ID, "bar")
186                                 ), 0, 0
187                 );
188         if (node == NULL) {
189                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
190                 return -1;
191         }
192         ret |= EC_TEST_CHECK_PARSE(node, 0);
193         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
194         ret |= EC_TEST_CHECK_PARSE(node, 1, "bar");
195         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "bar");
196         ret |= EC_TEST_CHECK_PARSE(node, 3, "foo", "bar", "bar");
197         ret |= EC_TEST_CHECK_PARSE(node, 3, "bar", "foo", "bar");
198         ret |= EC_TEST_CHECK_PARSE(node, 2, "bar", "foo", "foo");
199         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "foo");
200         ret |= EC_TEST_CHECK_PARSE(node, 0, "foox");
201
202         ret |= EC_TEST_CHECK_COMPLETE(node,
203                 "", EC_NODE_ENDLIST,
204                 "foo", "bar", EC_NODE_ENDLIST);
205         ret |= EC_TEST_CHECK_COMPLETE(node,
206                 "f", EC_NODE_ENDLIST,
207                 "foo", EC_NODE_ENDLIST);
208         ret |= EC_TEST_CHECK_COMPLETE(node,
209                 "b", EC_NODE_ENDLIST,
210                 "bar", EC_NODE_ENDLIST);
211         ret |= EC_TEST_CHECK_COMPLETE(node,
212                 "foo", "", EC_NODE_ENDLIST,
213                 "bar", EC_NODE_ENDLIST);
214         ret |= EC_TEST_CHECK_COMPLETE(node,
215                 "bar", "", EC_NODE_ENDLIST,
216                 "foo", "bar", EC_NODE_ENDLIST);
217         ec_node_free(node);
218
219         return ret;
220 }
221 /* LCOV_EXCL_STOP */
222
223 static struct ec_test ec_node_once_test = {
224         .name = "node_once",
225         .test = ec_node_once_testcase,
226 };
227
228 EC_TEST_REGISTER(ec_node_once_test);