free children in free_priv
[protos/libecoli.git] / lib / ecoli_node_option.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2016, Olivier MATZ <zer0@droids-corp.org>
3  */
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
8 #include <assert.h>
9 #include <stdarg.h>
10 #include <errno.h>
11
12 #include <ecoli_malloc.h>
13 #include <ecoli_log.h>
14 #include <ecoli_strvec.h>
15 #include <ecoli_node.h>
16 #include <ecoli_parse.h>
17 #include <ecoli_complete.h>
18 #include <ecoli_node_str.h>
19 #include <ecoli_test.h>
20 #include <ecoli_node_option.h>
21
22 EC_LOG_TYPE_REGISTER(node_option);
23
24 struct ec_node_option {
25         struct ec_node gen;
26         struct ec_node *child;
27 };
28
29 static int
30 ec_node_option_parse(const struct ec_node *gen_node,
31                 struct ec_parse *state,
32                 const struct ec_strvec *strvec)
33 {
34         struct ec_node_option *node = (struct ec_node_option *)gen_node;
35         int ret;
36
37         ret = ec_node_parse_child(node->child, state, strvec);
38         if (ret < 0)
39                 return ret;
40
41         if (ret == EC_PARSE_NOMATCH)
42                 return 0;
43
44         return ret;
45 }
46
47 static int
48 ec_node_option_complete(const struct ec_node *gen_node,
49                         struct ec_comp *comp,
50                         const struct ec_strvec *strvec)
51 {
52         struct ec_node_option *node = (struct ec_node_option *)gen_node;
53
54         return ec_node_complete_child(node->child, comp, strvec);
55 }
56
57 static void ec_node_option_free_priv(struct ec_node *gen_node)
58 {
59         struct ec_node_option *node = (struct ec_node_option *)gen_node;
60
61         ec_node_free(node->child);
62 }
63
64 static size_t
65 ec_node_option_get_children_count(const struct ec_node *gen_node)
66 {
67         struct ec_node_option *node = (struct ec_node_option *)gen_node;
68
69         if (node->child)
70                 return 1;
71         return 0;
72 }
73
74 static struct ec_node *
75 ec_node_option_get_child(const struct ec_node *gen_node, size_t i)
76 {
77         struct ec_node_option *node = (struct ec_node_option *)gen_node;
78
79         if (i >= 1)
80                 return NULL;
81
82         return node->child;
83 }
84
85 static struct ec_node_type ec_node_option_type = {
86         .name = "option",
87         .parse = ec_node_option_parse,
88         .complete = ec_node_option_complete,
89         .size = sizeof(struct ec_node_option),
90         .free_priv = ec_node_option_free_priv,
91         .get_children_count = ec_node_option_get_children_count,
92         .get_child = ec_node_option_get_child,
93 };
94
95 EC_NODE_TYPE_REGISTER(ec_node_option_type);
96
97 int ec_node_option_set(struct ec_node *gen_node, struct ec_node *child)
98 {
99         struct ec_node_option *node = (struct ec_node_option *)gen_node;
100
101         if (gen_node == NULL || child == NULL) {
102                 errno = EINVAL;
103                 goto fail;
104         }
105
106         if (ec_node_check_type(gen_node, &ec_node_option_type) < 0)
107                 goto fail;
108
109         node->child = child;
110
111         return 0;
112
113 fail:
114         ec_node_free(child);
115         return -1;
116 }
117
118 struct ec_node *ec_node_option(const char *id, struct ec_node *child)
119 {
120         struct ec_node *gen_node = NULL;
121
122         if (child == NULL)
123                 goto fail;
124
125         gen_node = __ec_node(&ec_node_option_type, id);
126         if (gen_node == NULL)
127                 goto fail;
128
129         ec_node_option_set(gen_node, child);
130         child = NULL;
131
132         return gen_node;
133
134 fail:
135         ec_node_free(child);
136         return NULL;
137 }
138
139 /* LCOV_EXCL_START */
140 static int ec_node_option_testcase(void)
141 {
142         struct ec_node *node;
143         int testres = 0;
144
145         node = ec_node_option(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"));
146         if (node == NULL) {
147                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
148                 return -1;
149         }
150         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo");
151         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
152         testres |= EC_TEST_CHECK_PARSE(node, 0, "bar");
153         testres |= EC_TEST_CHECK_PARSE(node, 0);
154         ec_node_free(node);
155
156         /* test completion */
157         node = ec_node_option(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"));
158         if (node == NULL) {
159                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
160                 return -1;
161         }
162         testres |= EC_TEST_CHECK_COMPLETE(node,
163                 "", EC_NODE_ENDLIST,
164                 "foo", EC_NODE_ENDLIST);
165         testres |= EC_TEST_CHECK_COMPLETE(node,
166                 "f", EC_NODE_ENDLIST,
167                 "foo", EC_NODE_ENDLIST);
168         testres |= EC_TEST_CHECK_COMPLETE(node,
169                 "b", EC_NODE_ENDLIST,
170                 EC_NODE_ENDLIST);
171         ec_node_free(node);
172
173         return testres;
174 }
175 /* LCOV_EXCL_STOP */
176
177 static struct ec_test ec_node_option_test = {
178         .name = "node_option",
179         .test = ec_node_option_testcase,
180 };
181
182 EC_TEST_REGISTER(ec_node_option_test);