initial revision
[ucgine.git] / tools / cfzy / libconfizery / cfzy_confnode_menu.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 "cfzy_confnode.h"
36
37 /* write config value in file f in a dotconfig-like manner. Return 0
38  * on success. */
39 static int menu_dotconfig_write(const struct cfzy_confnode *n, FILE *f)
40 {
41         const struct cfzy_confnode *c;
42
43         if (fprintf(f,
44                     "#\n"
45                     "# -- %s\n"
46                     "#\n", n->prompt) < 0)
47                 return -1;
48
49         /* dump children */
50         TAILQ_FOREACH(c, &n->children, child_next) {
51                 if (cfzy_confnode_dotconfig_write(c, f) < 0)
52                         return -1;
53         }
54
55         return 0;
56 }
57
58 /* this node is always enabled whatever the value */
59 static int menu_str2bool(const struct cfzy_confnode *n,
60                               const char *value)
61 {
62         (void)n;
63
64         /* should not happen */
65         if (value != NULL)
66                 return -1;
67
68         return 1;
69 }
70
71 /* Return a string identifying the node type ("config", "menuconfig",
72  * "choice", ...) */
73 static const char *menu_get_type_str(const struct cfzy_confnode *n)
74 {
75         (void)n;
76         return "menu";
77 }
78
79 static struct cfzy_confnode_ops menu_ops = {
80         .free = NULL,
81         .add_attr = NULL,
82         .close = NULL,
83         .str2bool = menu_str2bool,
84         .dotconfig_write = menu_dotconfig_write,
85         .c_hdr_write = NULL,
86         .get_type_str = menu_get_type_str,
87         .set_uservalue = NULL,
88 };
89
90 /* Create a new node */
91 enum cfzy_parse_return cfzy_confnode_menu_new(struct cfzy_confnode *n,
92                                               const struct cfzy_token_list *tklist)
93 {
94         struct cfzy_token *tok;
95         tok = TAILQ_FIRST(&tklist->list);
96
97         if (strcmp(tok->str, "menu") || tklist->n_token != 2)
98                 return NO_MATCH;
99
100         tok = TAILQ_NEXT(tok, next);
101         n->ops = &menu_ops;
102         n->flags = CFZY_F_IS_DIR |
103                 CFZY_F_NO_SET_DEPS |
104                 CFZY_F_NO_SET_DEFAULT |
105                 CFZY_F_NO_SET_VALUE |
106                 CFZY_F_DOTCONF_SHOW_TITLE;
107
108         n->name = strdup(tok->str);
109         if (n->name == NULL)
110                 return ERROR;
111
112         return SUCCESS;
113 }