save
[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 struct ec_node_type ec_node_str_type = {
121         .name = "str",
122         .parse = ec_node_str_parse,
123         .complete = ec_node_str_complete,
124         .desc = ec_node_str_desc,
125         .size = sizeof(struct ec_node_str),
126         .free_priv = ec_node_str_free_priv,
127 };
128
129 EC_NODE_TYPE_REGISTER(ec_node_str_type);
130
131 int ec_node_str_set_str(struct ec_node *gen_node, const char *str)
132 {
133         struct ec_node_str *node = (struct ec_node_str *)gen_node;
134
135         if (str == NULL)
136                 return -EINVAL;
137         if (node->string != NULL)
138                 return -EEXIST; // XXX allow to replace
139
140         node->string = ec_strdup(str);
141         if (node->string == NULL)
142                 return -ENOMEM;
143
144         node->len = strlen(node->string);
145
146         return 0;
147 }
148
149 struct ec_node *ec_node_str(const char *id, const char *str)
150 {
151         struct ec_node *gen_node = NULL;
152
153         gen_node = __ec_node(&ec_node_str_type, id);
154         if (gen_node == NULL)
155                 goto fail;
156
157         if (ec_node_str_set_str(gen_node, str) < 0)
158                 goto fail;
159
160         return gen_node;
161
162 fail:
163         ec_node_free(gen_node);
164         return NULL;
165 }
166
167 /* LCOV_EXCL_START */
168 static int ec_node_str_testcase(void)
169 {
170         struct ec_node *node;
171         int ret = 0;
172
173         /* XXX use EC_NO_ID instead of NULL */
174         node = ec_node_str(NULL, "foo");
175         if (node == NULL) {
176                 ec_log(EC_LOG_ERR, "cannot create node\n");
177                 return -1;
178         }
179         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
180         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
181         ret |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
182         ret |= EC_TEST_CHECK_PARSE(node, -1, " foo");
183         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
184         ec_node_free(node);
185
186         node = ec_node_str(NULL, "Здравствуйте");
187         if (node == NULL) {
188                 ec_log(EC_LOG_ERR, "cannot create node\n");
189                 return -1;
190         }
191         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте");
192         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте",
193                 "John!");
194         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
195         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
196         ec_node_free(node);
197
198         /* an empty string node always matches */
199         node = ec_node_str(NULL, "");
200         if (node == NULL) {
201                 ec_log(EC_LOG_ERR, "cannot create node\n");
202                 return -1;
203         }
204         ret |= EC_TEST_CHECK_PARSE(node, 1, "");
205         ret |= EC_TEST_CHECK_PARSE(node, 1, "", "foo");
206         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
207         ec_node_free(node);
208
209         /* test completion */
210         node = ec_node_str(NULL, "foo");
211         if (node == NULL) {
212                 ec_log(EC_LOG_ERR, "cannot create node\n");
213                 return -1;
214         }
215         ret |= EC_TEST_CHECK_COMPLETE(node,
216                 EC_NODE_ENDLIST,
217                 EC_NODE_ENDLIST,
218                 "");
219         ret |= EC_TEST_CHECK_COMPLETE(node,
220                 "", EC_NODE_ENDLIST,
221                 "foo", EC_NODE_ENDLIST,
222                 "foo");
223         ret |= EC_TEST_CHECK_COMPLETE(node,
224                 "f", EC_NODE_ENDLIST,
225                 "oo", EC_NODE_ENDLIST,
226                 "oo");
227         ret |= EC_TEST_CHECK_COMPLETE(node,
228                 "foo", EC_NODE_ENDLIST,
229                 "", EC_NODE_ENDLIST,
230                 "");
231         ret |= EC_TEST_CHECK_COMPLETE(node,
232                 "x", EC_NODE_ENDLIST,
233                 EC_NODE_ENDLIST,
234                 "");
235         ec_node_free(node);
236
237         return ret;
238 }
239 /* LCOV_EXCL_STOP */
240
241 static struct ec_test ec_node_str_test = {
242         .name = "node_str",
243         .test = ec_node_str_testcase,
244 };
245
246 EC_TEST_REGISTER(ec_node_str_test);