7817ebf9583ba04832f713de1c6772527e83cf7b
[libcmdline.git] / src / genconf / confnode_config.c
1 /*
2  * Copyright (c) 2010, Olivier MATZ <zer0@droids-corp.org>
3  * All rights reserved.
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 <string.h>
30 #include <stdlib.h>
31 #include <ctype.h>
32 #include <unistd.h>
33 #include <sys/queue.h>
34
35 #include "expression.h"
36 #include "conf_parser.h"
37 #include "conf_htable.h"
38 #include "parser_common.h"
39 #include "dotconfig.h"
40 #include "confnode.h"
41
42 static int confnode_config_new(struct confnode *n, const struct line *line);
43 static int confnode_config_set_user_strvalue(struct confnode *n,
44                                               const char *strvalue);
45 static int confnode_config_get_user_strvalue(const struct confnode *n, char *buf,
46                                               unsigned buflen);
47 static int confnode_config_set_default_strvalue(struct confnode *n,
48                                               const char *strvalue);
49 static int confnode_config_get_default_strvalue(const struct confnode *n, char *buf,
50                                               unsigned buflen);
51 static const char *confnode_config_get_type_str(const struct confnode *n);
52 static void confnode_config_display_short(const struct confnode *n);
53
54 static struct confnode_type confnode_config = {
55         .ops = {
56                 .new = confnode_config_new,
57                 .free = NULL,
58                 .add_attr = NULL,
59                 .close_dir = NULL,
60                 .dotconfig_write = NULL,
61                 .strvalue_to_boolvalue = NULL,
62                 .set_user_strvalue = confnode_config_set_user_strvalue,
63                 .get_user_strvalue = confnode_config_get_user_strvalue,
64                 .set_default_strvalue = confnode_config_set_default_strvalue,
65                 .get_default_strvalue = confnode_config_get_default_strvalue,
66                 .get_type_str = confnode_config_get_type_str,
67                 .display_short = confnode_config_display_short,
68                 .display_long = NULL,
69         }
70 };
71
72 /* Create a new node */
73 static int confnode_config_new(struct confnode *n, const struct line *line)
74 {
75         struct token *tok;
76         tok = TAILQ_FIRST(&line->token_list);
77
78         if (strcmp(tok->str, "config") || line->n_token != 2)
79                 return -1;
80
81         tok = TAILQ_NEXT(tok, next);
82         snprintf(n->name, sizeof(n->name), "%s", tok->str);
83         n->ops = &confnode_config.ops;
84         n->flags = CONFNODE_F_BOOL;
85         snprintf(n->default_value, sizeof(n->default_value), "n");
86         return 0;
87 }
88
89 /* Set the string value of the node n. Return 0 on success, or -1 if
90  * the value cannot be set. */
91 static int confnode_config_set_user_strvalue(struct confnode *n,
92                                               const char *strvalue)
93 {
94         if (strcmp(strvalue, "y") && strcmp(strvalue, "n"))
95                 return -1;
96         snprintf(n->value, sizeof(n->value), "%s", strvalue);
97         return 0;
98 }
99
100 /* Get the string value that the user asked to set for this node
101  * 'n'. This function does not check if dependancies are met. Return 0
102  * on success, in this case the string is copied in buffer 'buf' of
103  * len 'buflen'. Return -1 if the value cannot be read. */
104 static int confnode_config_get_user_strvalue(const struct confnode *n, char *buf,
105                                               unsigned buflen)
106 {
107         if (strcmp(n->value, "") == 0)
108                 return -1;
109         if (!strcmp(n->value, "y")) {
110                 snprintf(buf, buflen, "y");
111                 return 0;
112         }
113         else {
114                 snprintf(buf, buflen, "n");
115                 return 0;
116         }
117 }
118
119 /* Set the default string value of the node n. Return 0 on success, or
120  * -1 if the value cannot be set. */
121 static int confnode_config_set_default_strvalue(struct confnode *n,
122                                               const char *strvalue)
123 {
124         if (strcmp(strvalue, "y") && strcmp(strvalue, "n"))
125                 return -1;
126         snprintf(n->default_value, sizeof(n->default_value), "%s", strvalue);
127         return 0;
128 }
129
130 /* Get the default string value for this node 'n'. This function does
131  * not check if dependancies are met. Return 0 on success, in this
132  * case the string is copied in buffer 'buf' of len 'buflen'. Return
133  * -1 if the value cannot be read. */
134 static int confnode_config_get_default_strvalue(const struct confnode *n, char *buf,
135                                               unsigned buflen)
136 {
137         if (!strcmp(n->default_value, "y")) {
138                 snprintf(buf, buflen, "y");
139                 return 0;
140         }
141         else {
142                 snprintf(buf, buflen, "n");
143                 return 0;
144         }
145 }
146
147 /* Return a string identifying the node type ("config", "menuconfig",
148  * "choice", ...) */
149 static const char *confnode_config_get_type_str(const struct confnode *n)
150 {
151         return "config";
152 }
153
154 /* Print a one-line summary of the node. Used in case of 'ls'. */
155 static void confnode_config_display_short(const struct confnode *n)
156 {
157         char c;
158         if (confnode_get_boolvalue(n) == 0) {
159                 if (confnode_get_user_boolvalue(n) <= 0)
160                         c = ' ';
161                 else
162                         c = 'd';
163         }
164         else {
165                 c = '*';
166         }
167
168         printf("[%c]    %s: %s\n", c, n->name, n->prompt);
169 }
170
171 /* register the node type */
172 void confnode_config_register(void)
173 {
174         TAILQ_INSERT_TAIL(&confnode_type_list, &confnode_config, next);
175 }