a388841997c07fc6b4fae1f613d843c48798628c
[protos/libecoli.git] / lib / ecoli_node_str.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 <errno.h>
32
33 #include <ecoli_log.h>
34 #include <ecoli_malloc.h>
35 #include <ecoli_test.h>
36 #include <ecoli_strvec.h>
37 #include <ecoli_node.h>
38 #include <ecoli_parsed.h>
39 #include <ecoli_completed.h>
40 #include <ecoli_node_str.h>
41
42 struct ec_node_str {
43         struct ec_node gen;
44         char *string;
45         unsigned len;
46 };
47
48 static int
49 ec_node_str_parse(const struct ec_node *gen_node,
50                 struct ec_parsed *state,
51                 const struct ec_strvec *strvec)
52 {
53         struct ec_node_str *node = (struct ec_node_str *)gen_node;
54         const char *str;
55
56         (void)state;
57
58         if (ec_strvec_len(strvec) == 0)
59                 return EC_PARSED_NOMATCH;
60
61         str = ec_strvec_val(strvec, 0);
62         if (strcmp(str, node->string) != 0)
63                 return EC_PARSED_NOMATCH;
64
65         return 1;
66 }
67
68 static struct ec_completed *
69 ec_node_str_complete(const struct ec_node *gen_node,
70                 struct ec_parsed *state,
71                 const struct ec_strvec *strvec)
72 {
73         struct ec_node_str *node = (struct ec_node_str *)gen_node;
74         struct ec_completed *completed;
75         const char *str, *add;
76         size_t n = 0;
77
78         (void)state;
79
80         completed = ec_completed();
81         if (completed == NULL)
82                 return NULL;
83
84         if (ec_strvec_len(strvec) != 1)
85                 return completed;
86
87         str = ec_strvec_val(strvec, 0);
88         for (n = 0; n < node->len; n++) {
89                 if (str[n] != node->string[n])
90                         break;
91         }
92
93         if (str[n] != '\0')
94                 add = NULL;
95         else
96                 add = node->string + n;
97
98         if (ec_completed_add_elt(completed, state, gen_node, add) < 0) {
99                 ec_completed_free(completed);
100                 return NULL;
101         }
102
103         return completed;
104 }
105
106 static const char *ec_node_str_desc(const struct ec_node *gen_node)
107 {
108         struct ec_node_str *node = (struct ec_node_str *)gen_node;
109
110         return node->string;
111 }
112
113 static void ec_node_str_free_priv(struct ec_node *gen_node)
114 {
115         struct ec_node_str *node = (struct ec_node_str *)gen_node;
116
117         ec_free(node->string);
118 }
119
120 static size_t ec_node_str_get_max_parse_len(const struct ec_node *gen_node)
121 {
122         (void)gen_node;
123         return 1;
124 }
125
126 static struct ec_node_type ec_node_str_type = {
127         .name = "str",
128         .parse = ec_node_str_parse,
129         .complete = ec_node_str_complete,
130         .get_max_parse_len = ec_node_str_get_max_parse_len,
131         .desc = ec_node_str_desc,
132         .size = sizeof(struct ec_node_str),
133         .free_priv = ec_node_str_free_priv,
134 };
135
136 EC_NODE_TYPE_REGISTER(ec_node_str_type);
137
138 int ec_node_str_set_str(struct ec_node *gen_node, const char *str)
139 {
140         struct ec_node_str *node = (struct ec_node_str *)gen_node;
141
142         if (str == NULL)
143                 return -EINVAL;
144         if (node->string != NULL)
145                 return -EEXIST; // XXX allow to replace
146
147         node->string = ec_strdup(str);
148         if (node->string == NULL)
149                 return -ENOMEM;
150
151         node->len = strlen(node->string);
152
153         return 0;
154 }
155
156 struct ec_node *ec_node_str(const char *id, const char *str)
157 {
158         struct ec_node *gen_node = NULL;
159
160         gen_node = __ec_node(&ec_node_str_type, id);
161         if (gen_node == NULL)
162                 goto fail;
163
164         if (ec_node_str_set_str(gen_node, str) < 0)
165                 goto fail;
166
167         return gen_node;
168
169 fail:
170         ec_node_free(gen_node);
171         return NULL;
172 }
173
174 /* LCOV_EXCL_START */
175 static int ec_node_str_testcase(void)
176 {
177         struct ec_node *node;
178         int ret = 0;
179
180         /* XXX use EC_NO_ID instead of NULL */
181         node = ec_node_str(NULL, "foo");
182         if (node == NULL) {
183                 ec_log(EC_LOG_ERR, "cannot create node\n");
184                 return -1;
185         }
186         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
187         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
188         ret |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
189         ret |= EC_TEST_CHECK_PARSE(node, -1, " foo");
190         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
191         ec_node_free(node);
192
193         node = ec_node_str(NULL, "Здравствуйте");
194         if (node == NULL) {
195                 ec_log(EC_LOG_ERR, "cannot create node\n");
196                 return -1;
197         }
198         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте");
199         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте",
200                 "John!");
201         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
202         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
203         ec_node_free(node);
204
205         /* an empty string node always matches */
206         node = ec_node_str(NULL, "");
207         if (node == NULL) {
208                 ec_log(EC_LOG_ERR, "cannot create node\n");
209                 return -1;
210         }
211         ret |= EC_TEST_CHECK_PARSE(node, 1, "");
212         ret |= EC_TEST_CHECK_PARSE(node, 1, "", "foo");
213         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
214         ec_node_free(node);
215
216         /* test completion */
217         node = ec_node_str(NULL, "foo");
218         if (node == NULL) {
219                 ec_log(EC_LOG_ERR, "cannot create node\n");
220                 return -1;
221         }
222         ret |= EC_TEST_CHECK_COMPLETE(node,
223                 EC_NODE_ENDLIST,
224                 EC_NODE_ENDLIST,
225                 "");
226         ret |= EC_TEST_CHECK_COMPLETE(node,
227                 "", EC_NODE_ENDLIST,
228                 "foo", EC_NODE_ENDLIST,
229                 "foo");
230         ret |= EC_TEST_CHECK_COMPLETE(node,
231                 "f", EC_NODE_ENDLIST,
232                 "oo", EC_NODE_ENDLIST,
233                 "oo");
234         ret |= EC_TEST_CHECK_COMPLETE(node,
235                 "foo", EC_NODE_ENDLIST,
236                 "", EC_NODE_ENDLIST,
237                 "");
238         ret |= EC_TEST_CHECK_COMPLETE(node,
239                 "x", EC_NODE_ENDLIST,
240                 EC_NODE_ENDLIST,
241                 "");
242         ec_node_free(node);
243
244         return ret;
245 }
246 /* LCOV_EXCL_STOP */
247
248 static struct ec_test ec_node_str_test = {
249         .name = "node_str",
250         .test = ec_node_str_testcase,
251 };
252
253 EC_TEST_REGISTER(ec_node_str_test);