completed -> comp
[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_parsed.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_parsed *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_PARSED_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 struct ec_node_type ec_node_option_type = {
65         .name = "option",
66         .parse = ec_node_option_parse,
67         .complete = ec_node_option_complete,
68         .size = sizeof(struct ec_node_option),
69         .free_priv = ec_node_option_free_priv,
70 };
71
72 EC_NODE_TYPE_REGISTER(ec_node_option_type);
73
74 int ec_node_option_set(struct ec_node *gen_node, struct ec_node *child)
75 {
76         struct ec_node_option *node = (struct ec_node_option *)gen_node;
77
78         if (gen_node == NULL || child == NULL) {
79                 errno = EINVAL;
80                 goto fail;
81         }
82
83         if (ec_node_check_type(gen_node, &ec_node_option_type) < 0)
84                 goto fail;
85
86         if (ec_node_add_child(gen_node, child) < 0)
87                 goto fail;
88
89         node->child = child;
90
91         return 0;
92
93 fail:
94         ec_node_free(child);
95         return -1;
96 }
97
98 struct ec_node *ec_node_option(const char *id, struct ec_node *child)
99 {
100         struct ec_node *gen_node = NULL;
101
102         if (child == NULL)
103                 goto fail;
104
105         gen_node = __ec_node(&ec_node_option_type, id);
106         if (gen_node == NULL)
107                 goto fail;
108
109         ec_node_option_set(gen_node, child);
110         child = NULL;
111
112         return gen_node;
113
114 fail:
115         ec_node_free(child);
116         return NULL;
117 }
118
119 /* LCOV_EXCL_START */
120 static int ec_node_option_testcase(void)
121 {
122         struct ec_node *node;
123         int testres = 0;
124
125         node = ec_node_option(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"));
126         if (node == NULL) {
127                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
128                 return -1;
129         }
130         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo");
131         testres |= EC_TEST_CHECK_PARSE(node, 1, "foo", "bar");
132         testres |= EC_TEST_CHECK_PARSE(node, 0, "bar");
133         testres |= EC_TEST_CHECK_PARSE(node, 0);
134         ec_node_free(node);
135
136         /* test completion */
137         node = ec_node_option(EC_NO_ID, ec_node_str(EC_NO_ID, "foo"));
138         if (node == NULL) {
139                 EC_LOG(EC_LOG_ERR, "cannot create node\n");
140                 return -1;
141         }
142         testres |= EC_TEST_CHECK_COMPLETE(node,
143                 "", EC_NODE_ENDLIST,
144                 "foo", EC_NODE_ENDLIST);
145         testres |= EC_TEST_CHECK_COMPLETE(node,
146                 "f", EC_NODE_ENDLIST,
147                 "foo", EC_NODE_ENDLIST);
148         testres |= EC_TEST_CHECK_COMPLETE(node,
149                 "b", EC_NODE_ENDLIST,
150                 EC_NODE_ENDLIST);
151         ec_node_free(node);
152
153         return testres;
154 }
155 /* LCOV_EXCL_STOP */
156
157 static struct ec_test ec_node_option_test = {
158         .name = "node_option",
159         .test = ec_node_option_testcase,
160 };
161
162 EC_TEST_REGISTER(ec_node_option_test);