list children in a table, not in a list
[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 EC_LOG_TYPE_REGISTER(node_str);
43
44 struct ec_node_str {
45         struct ec_node gen;
46         char *string;
47         unsigned len;
48 };
49
50 static int
51 ec_node_str_parse(const struct ec_node *gen_node,
52                 struct ec_parsed *state,
53                 const struct ec_strvec *strvec)
54 {
55         struct ec_node_str *node = (struct ec_node_str *)gen_node;
56         const char *str;
57
58         (void)state;
59
60         if (ec_strvec_len(strvec) == 0)
61                 return EC_PARSED_NOMATCH;
62
63         str = ec_strvec_val(strvec, 0);
64         if (strcmp(str, node->string) != 0)
65                 return EC_PARSED_NOMATCH;
66
67         return 1;
68 }
69
70 static int
71 ec_node_str_complete(const struct ec_node *gen_node,
72                 struct ec_completed *completed,
73                 const struct ec_strvec *strvec)
74 {
75         struct ec_node_str *node = (struct ec_node_str *)gen_node;
76         const char *str;
77         size_t n = 0;
78
79         if (ec_strvec_len(strvec) != 1)
80                 return 0;
81
82         str = ec_strvec_val(strvec, 0);
83         for (n = 0; n < node->len; n++) {
84                 if (str[n] != node->string[n])
85                         break;
86         }
87
88         /* no completion */
89         if (str[n] != '\0')
90                 return EC_PARSED_NOMATCH;
91
92         if (ec_completed_add_item(completed, gen_node, NULL, EC_COMP_FULL,
93                                         str, node->string) < 0)
94                 return -1;
95
96         return 0;
97 }
98
99 static const char *ec_node_str_desc(const struct ec_node *gen_node)
100 {
101         struct ec_node_str *node = (struct ec_node_str *)gen_node;
102
103         return node->string;
104 }
105
106 static void ec_node_str_free_priv(struct ec_node *gen_node)
107 {
108         struct ec_node_str *node = (struct ec_node_str *)gen_node;
109
110         ec_free(node->string);
111 }
112
113 static size_t ec_node_str_get_max_parse_len(const struct ec_node *gen_node)
114 {
115         (void)gen_node;
116         return 1;
117 }
118
119 static struct ec_node_type ec_node_str_type = {
120         .name = "str",
121         .parse = ec_node_str_parse,
122         .complete = ec_node_str_complete,
123         .get_max_parse_len = ec_node_str_get_max_parse_len,
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         int ret;
135
136         ret = ec_node_check_type(gen_node, &ec_node_str_type);
137         if (ret < 0)
138                 return ret;
139
140         if (str == NULL)
141                 return -EINVAL;
142         ec_free(node->string);
143         node->string = ec_strdup(str);
144         if (node->string == NULL)
145                 return -ENOMEM;
146
147         node->len = strlen(node->string);
148
149         return 0;
150 }
151
152 struct ec_node *ec_node_str(const char *id, const char *str)
153 {
154         struct ec_node *gen_node = NULL;
155
156         gen_node = __ec_node(&ec_node_str_type, id);
157         if (gen_node == NULL)
158                 goto fail;
159
160         if (ec_node_str_set_str(gen_node, str) < 0)
161                 goto fail;
162
163         return gen_node;
164
165 fail:
166         ec_node_free(gen_node);
167         return NULL;
168 }
169
170 /* LCOV_EXCL_START */
171 static int ec_node_str_testcase(void)
172 {
173         struct ec_node *node;
174         int ret = 0;
175
176         node = ec_node_str(EC_NO_ID, "foo");
177         if (node == NULL) {
178                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
179                 return -1;
180         }
181         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo");
182         ret |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
183         ret |= EC_TEST_CHECK_PARSE(node, -1, "foobar");
184         ret |= EC_TEST_CHECK_PARSE(node, -1, " foo");
185         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
186         ec_node_free(node);
187
188         node = ec_node_str(EC_NO_ID, "Здравствуйте");
189         if (node == NULL) {
190                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
191                 return -1;
192         }
193         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте");
194         ret |= EC_TEST_CHECK_PARSE(node, 1, "Здравствуйте",
195                 "John!");
196         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
197         ret |= EC_TEST_CHECK_PARSE(node, -1, "");
198         ec_node_free(node);
199
200         /* an empty string node always matches */
201         node = ec_node_str(EC_NO_ID, "");
202         if (node == NULL) {
203                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
204                 return -1;
205         }
206         ret |= EC_TEST_CHECK_PARSE(node, 1, "");
207         ret |= EC_TEST_CHECK_PARSE(node, 1, "", "foo");
208         ret |= EC_TEST_CHECK_PARSE(node, -1, "foo");
209         ec_node_free(node);
210
211         /* test completion */
212         node = ec_node_str(EC_NO_ID, "foo");
213         if (node == NULL) {
214                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
215                 return -1;
216         }
217         ret |= EC_TEST_CHECK_COMPLETE(node,
218                 EC_NODE_ENDLIST,
219                 EC_NODE_ENDLIST,
220                 "");
221         ret |= EC_TEST_CHECK_COMPLETE(node,
222                 "", EC_NODE_ENDLIST,
223                 "foo", EC_NODE_ENDLIST);
224         ret |= EC_TEST_CHECK_COMPLETE(node,
225                 "f", EC_NODE_ENDLIST,
226                 "foo", EC_NODE_ENDLIST);
227         ret |= EC_TEST_CHECK_COMPLETE(node,
228                 "foo", EC_NODE_ENDLIST,
229                 "foo", EC_NODE_ENDLIST);
230         ret |= EC_TEST_CHECK_COMPLETE(node,
231                 "x", EC_NODE_ENDLIST,
232                 EC_NODE_ENDLIST);
233         ec_node_free(node);
234
235         return ret;
236 }
237 /* LCOV_EXCL_STOP */
238
239 static struct ec_test ec_node_str_test = {
240         .name = "node_str",
241         .test = ec_node_str_testcase,
242 };
243
244 EC_TEST_REGISTER(ec_node_str_test);