54aa67b2ce7ee193bf400bd4be64714bcfee4411
[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 (parsed->node == node)
64                 count++;
65
66         TAILQ_FOREACH(child, &parsed->children, next)
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                 struct ec_parsed *parsed,
94                 const struct ec_strvec *strvec)
95 {
96         struct ec_node_once *node = (struct ec_node_once *)gen_node;
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); //XXX
104         if (count > 0)
105                 return 0;
106
107         ret = ec_node_complete_child(node->child, completed, parsed, 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         // XXX check node type
136
137         assert(node != NULL);
138
139         if (child == NULL)
140                 return -EINVAL;
141
142         gen_node->flags &= ~EC_NODE_F_BUILT;
143
144         node->child = child;
145
146         child->parent = gen_node;
147         TAILQ_INSERT_TAIL(&gen_node->children, child, next); // XXX really needed?
148
149         return 0;
150 }
151
152 struct ec_node *ec_node_once(const char *id, struct ec_node *child)
153 {
154         struct ec_node *gen_node = NULL;
155
156         if (child == NULL)
157                 return NULL;
158
159         gen_node = __ec_node(&ec_node_once_type, id);
160         if (gen_node == NULL)
161                 return NULL;
162
163         ec_node_once_set(gen_node, child);
164
165         return gen_node;
166 }
167
168 /* LCOV_EXCL_START */
169 static int ec_node_once_testcase(void)
170 {
171         struct ec_node *node;
172         int ret = 0;
173
174         node = ec_node_many(NULL,
175                         EC_NODE_OR(NULL,
176                                 ec_node_once(NULL, ec_node_str(NULL, "foo")),
177                                 ec_node_str(NULL, "bar")
178                                 ), 0, 0
179                 );
180         if (node == NULL) {
181                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
182                 return -1;
183         }
184         ret |= EC_TEST_CHECK_PARSE(node, 0);
185         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
186         ret |= EC_TEST_CHECK_PARSE(node, 1, "bar");
187         ret |= EC_TEST_CHECK_PARSE(node, 2, "foo", "bar");
188         ret |= EC_TEST_CHECK_PARSE(node, 3, "foo", "bar", "bar");
189         ret |= EC_TEST_CHECK_PARSE(node, 3, "bar", "foo", "bar");
190         ret |= EC_TEST_CHECK_PARSE(node, 2, "bar", "foo", "foo");
191         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "foo");
192         ret |= EC_TEST_CHECK_PARSE(node, 0, "foox");
193
194         ec_node_free(node);
195
196 #if 0 //XXX no completion test for node_once
197         /* test completion */
198         node = EC_NODE_OR(NULL,
199                 ec_node_str(NULL, "foo"),
200                 ec_node_str(NULL, "bar"),
201                 ec_node_str(NULL, "bar2"),
202                 ec_node_str(NULL, "toto"),
203                 ec_node_str(NULL, "titi")
204         );
205         if (node == NULL) {
206                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
207                 return -1;
208         }
209         ret |= EC_TEST_CHECK_COMPLETE(node,
210                 "", EC_NODE_ENDLIST,
211                 "foo", "bar", "bar2", "toto", "titi", EC_NODE_ENDLIST);
212         ret |= EC_TEST_CHECK_COMPLETE(node,
213                 "f", EC_NODE_ENDLIST,
214                 "foo", EC_NODE_ENDLIST);
215         ec_node_free(node);
216 #endif
217         return ret;
218 }
219 /* LCOV_EXCL_STOP */
220
221 static struct ec_test ec_node_once_test = {
222         .name = "node_once",
223         .test = ec_node_once_testcase,
224 };
225
226 EC_TEST_REGISTER(ec_node_once_test);