initial revision
[ucgine.git] / tools / cfzy / libconfizery / cfzy_confnode_intconfig.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 <stdint.h>
32 #include <ctype.h>
33 #include <unistd.h>
34 #include <sys/queue.h>
35
36 #include "cfzy_confnode.h"
37
38 /* Return a string identifying the node type ("config", "menuconfig",
39  * "choice", ...) */
40 static const char *intconfig_get_type_str(const struct cfzy_confnode *n)
41 {
42         (void)n;
43         return "intconfig";
44 }
45
46 static int intconfig_str2bool(const struct cfzy_confnode *n,
47                                     const char *value)
48 {
49         char *end;
50         int64_t val;
51
52         (void)n;
53
54         /* NULL means disabled */
55         if (value == NULL)
56                 return 0;
57
58         val = strtoll(value, &end, 0);
59         if (*end != 0)
60                 return -1;
61
62         /* XXX check range attr here */
63
64         return val != 0;
65 }
66
67 static struct cfzy_confnode_ops intconfig_ops = {
68         .free = NULL,
69         .add_attr = NULL, /* XXX range, displayhex */
70         .close = NULL,
71         .str2bool = intconfig_str2bool,
72         .dotconfig_write = NULL,
73         .c_hdr_write = NULL,
74         .get_type_str = intconfig_get_type_str,
75         .set_uservalue = NULL,
76 };
77
78 /* Create a new node */
79 enum cfzy_parse_return cfzy_confnode_intconfig_new(struct cfzy_confnode *n,
80                                                    const struct cfzy_token_list *tklist)
81 {
82         struct cfzy_token *tok;
83         tok = TAILQ_FIRST(&tklist->list);
84
85         if (strcmp(tok->str, "intconfig") || tklist->n_token != 2)
86                 return NO_MATCH;
87
88         tok = TAILQ_NEXT(tok, next);
89         n->ops = &intconfig_ops;
90         n->flags = 0;
91
92         n->name = strdup(tok->str);
93         if (n->name == NULL)
94                 return ERROR;
95
96         n->default_value = strdup("0");
97         if (n->default_value == NULL) {
98                 free(n->name);
99                 n->name = NULL;
100                 return ERROR;
101         }
102
103         return SUCCESS;
104 }