blob: c2a423a1c341bb7a24a249663aa66ddb459b09a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#include <stdlib.h>
7#include <string.h>
8
9#define LKC_DIRECT_LINK
10#include "lkc.h"
11
12struct menu rootmenu;
13static struct menu **last_entry_ptr;
14
15struct file *file_list;
16struct file *current_file;
17
18static void menu_warn(struct menu *menu, const char *fmt, ...)
19{
20 va_list ap;
21 va_start(ap, fmt);
22 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno);
23 vfprintf(stderr, fmt, ap);
24 fprintf(stderr, "\n");
25 va_end(ap);
26}
27
28static void prop_warn(struct property *prop, const char *fmt, ...)
29{
30 va_list ap;
31 va_start(ap, fmt);
32 fprintf(stderr, "%s:%d:warning: ", prop->file->name, prop->lineno);
33 vfprintf(stderr, fmt, ap);
34 fprintf(stderr, "\n");
35 va_end(ap);
36}
37
38void menu_init(void)
39{
40 current_entry = current_menu = &rootmenu;
41 last_entry_ptr = &rootmenu.list;
42}
43
44void menu_add_entry(struct symbol *sym)
45{
46 struct menu *menu;
47
48 menu = malloc(sizeof(*menu));
49 memset(menu, 0, sizeof(*menu));
50 menu->sym = sym;
51 menu->parent = current_menu;
52 menu->file = current_file;
53 menu->lineno = zconf_lineno();
54
55 *last_entry_ptr = menu;
56 last_entry_ptr = &menu->next;
57 current_entry = menu;
58}
59
60void menu_end_entry(void)
61{
62}
63
64void menu_add_menu(void)
65{
66 current_menu = current_entry;
67 last_entry_ptr = &current_entry->list;
68}
69
70void menu_end_menu(void)
71{
72 last_entry_ptr = &current_menu->next;
73 current_menu = current_menu->parent;
74}
75
76struct expr *menu_check_dep(struct expr *e)
77{
78 if (!e)
79 return e;
80
81 switch (e->type) {
82 case E_NOT:
83 e->left.expr = menu_check_dep(e->left.expr);
84 break;
85 case E_OR:
86 case E_AND:
87 e->left.expr = menu_check_dep(e->left.expr);
88 e->right.expr = menu_check_dep(e->right.expr);
89 break;
90 case E_SYMBOL:
91 /* change 'm' into 'm' && MODULES */
92 if (e->left.sym == &symbol_mod)
93 return expr_alloc_and(e, expr_alloc_symbol(modules_sym));
94 break;
95 default:
96 break;
97 }
98 return e;
99}
100
101void menu_add_dep(struct expr *dep)
102{
103 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep));
104}
105
106void menu_set_type(int type)
107{
108 struct symbol *sym = current_entry->sym;
109
110 if (sym->type == type)
111 return;
112 if (sym->type == S_UNKNOWN) {
113 sym->type = type;
114 return;
115 }
116 menu_warn(current_entry, "type of '%s' redefined from '%s' to '%s'\n",
117 sym->name ? sym->name : "<choice>",
118 sym_type_name(sym->type), sym_type_name(type));
119}
120
121struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep)
122{
123 struct property *prop = prop_alloc(type, current_entry->sym);
124
125 prop->menu = current_entry;
126 prop->text = prompt;
127 prop->expr = expr;
128 prop->visible.expr = menu_check_dep(dep);
129
130 if (prompt) {
131 if (current_entry->prompt)
132 menu_warn(current_entry, "prompt redefined\n");
133 current_entry->prompt = prop;
134 }
135
136 return prop;
137}
138
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200139struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200141 return menu_add_prop(type, prompt, NULL, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep)
145{
146 menu_add_prop(type, NULL, expr, dep);
147}
148
149void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep)
150{
151 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep);
152}
153
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800154static int menu_range_valid_sym(struct symbol *sym, struct symbol *sym2)
155{
156 return sym2->type == S_INT || sym2->type == S_HEX ||
157 (sym2->type == S_UNKNOWN && sym_string_valid(sym, sym2->name));
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160void sym_check_prop(struct symbol *sym)
161{
162 struct property *prop;
163 struct symbol *sym2;
164 for (prop = sym->prop; prop; prop = prop->next) {
165 switch (prop->type) {
166 case P_DEFAULT:
167 if ((sym->type == S_STRING || sym->type == S_INT || sym->type == S_HEX) &&
168 prop->expr->type != E_SYMBOL)
169 prop_warn(prop,
170 "default for config symbol '%'"
171 " must be a single symbol", sym->name);
172 break;
173 case P_SELECT:
174 sym2 = prop_get_symbol(prop);
175 if (sym->type != S_BOOLEAN && sym->type != S_TRISTATE)
176 prop_warn(prop,
177 "config symbol '%s' uses select, but is "
178 "not boolean or tristate", sym->name);
179 else if (sym2->type == S_UNKNOWN)
180 prop_warn(prop,
181 "'select' used by config symbol '%s' "
182 "refer to undefined symbol '%s'",
183 sym->name, sym2->name);
184 else if (sym2->type != S_BOOLEAN && sym2->type != S_TRISTATE)
185 prop_warn(prop,
186 "'%s' has wrong type. 'select' only "
187 "accept arguments of boolean and "
188 "tristate type", sym2->name);
189 break;
190 case P_RANGE:
191 if (sym->type != S_INT && sym->type != S_HEX)
192 prop_warn(prop, "range is only allowed "
193 "for int or hex symbols");
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800194 if (!menu_range_valid_sym(sym, prop->expr->left.sym) ||
195 !menu_range_valid_sym(sym, prop->expr->right.sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 prop_warn(prop, "range is invalid");
197 break;
198 default:
199 ;
200 }
201 }
202}
203
204void menu_finalize(struct menu *parent)
205{
206 struct menu *menu, *last_menu;
207 struct symbol *sym;
208 struct property *prop;
209 struct expr *parentdep, *basedep, *dep, *dep2, **ep;
210
211 sym = parent->sym;
212 if (parent->list) {
213 if (sym && sym_is_choice(sym)) {
214 /* find the first choice value and find out choice type */
215 for (menu = parent->list; menu; menu = menu->next) {
216 if (menu->sym) {
217 current_entry = parent;
218 menu_set_type(menu->sym->type);
219 current_entry = menu;
220 menu_set_type(sym->type);
221 break;
222 }
223 }
224 parentdep = expr_alloc_symbol(sym);
225 } else if (parent->prompt)
226 parentdep = parent->prompt->visible.expr;
227 else
228 parentdep = parent->dep;
229
230 for (menu = parent->list; menu; menu = menu->next) {
231 basedep = expr_transform(menu->dep);
232 basedep = expr_alloc_and(expr_copy(parentdep), basedep);
233 basedep = expr_eliminate_dups(basedep);
234 menu->dep = basedep;
235 if (menu->sym)
236 prop = menu->sym->prop;
237 else
238 prop = menu->prompt;
239 for (; prop; prop = prop->next) {
240 if (prop->menu != menu)
241 continue;
242 dep = expr_transform(prop->visible.expr);
243 dep = expr_alloc_and(expr_copy(basedep), dep);
244 dep = expr_eliminate_dups(dep);
245 if (menu->sym && menu->sym->type != S_TRISTATE)
246 dep = expr_trans_bool(dep);
247 prop->visible.expr = dep;
248 if (prop->type == P_SELECT) {
249 struct symbol *es = prop_get_symbol(prop);
250 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr,
251 expr_alloc_and(expr_alloc_symbol(menu->sym), expr_copy(dep)));
252 }
253 }
254 }
255 for (menu = parent->list; menu; menu = menu->next)
256 menu_finalize(menu);
257 } else if (sym) {
258 basedep = parent->prompt ? parent->prompt->visible.expr : NULL;
259 basedep = expr_trans_compare(basedep, E_UNEQUAL, &symbol_no);
260 basedep = expr_eliminate_dups(expr_transform(basedep));
261 last_menu = NULL;
262 for (menu = parent->next; menu; menu = menu->next) {
263 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep;
264 if (!expr_contains_symbol(dep, sym))
265 break;
266 if (expr_depends_symbol(dep, sym))
267 goto next;
268 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no);
269 dep = expr_eliminate_dups(expr_transform(dep));
270 dep2 = expr_copy(basedep);
271 expr_eliminate_eq(&dep, &dep2);
272 expr_free(dep);
273 if (!expr_is_yes(dep2)) {
274 expr_free(dep2);
275 break;
276 }
277 expr_free(dep2);
278 next:
279 menu_finalize(menu);
280 menu->parent = parent;
281 last_menu = menu;
282 }
283 if (last_menu) {
284 parent->list = parent->next;
285 parent->next = last_menu->next;
286 last_menu->next = NULL;
287 }
288 }
289 for (menu = parent->list; menu; menu = menu->next) {
290 if (sym && sym_is_choice(sym) && menu->sym) {
291 menu->sym->flags |= SYMBOL_CHOICEVAL;
292 if (!menu->prompt)
293 menu_warn(menu, "choice value must have a prompt");
294 for (prop = menu->sym->prop; prop; prop = prop->next) {
295 if (prop->type == P_PROMPT && prop->menu != menu) {
296 prop_warn(prop, "choice values "
297 "currently only support a "
298 "single prompt");
299 }
300 if (prop->type == P_DEFAULT)
301 prop_warn(prop, "defaults for choice "
302 "values not supported");
303 }
304 current_entry = menu;
305 menu_set_type(sym->type);
306 menu_add_symbol(P_CHOICE, sym, NULL);
307 prop = sym_get_choice_prop(sym);
308 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
309 ;
310 *ep = expr_alloc_one(E_CHOICE, NULL);
311 (*ep)->right.sym = menu->sym;
312 }
313 if (menu->list && (!menu->prompt || !menu->prompt->text)) {
314 for (last_menu = menu->list; ; last_menu = last_menu->next) {
315 last_menu->parent = parent;
316 if (!last_menu->next)
317 break;
318 }
319 last_menu->next = menu->next;
320 menu->next = menu->list;
321 menu->list = NULL;
322 }
323 }
324
325 if (sym && !(sym->flags & SYMBOL_WARNED)) {
326 if (sym->type == S_UNKNOWN)
327 menu_warn(parent, "config symbol defined "
328 "without type\n");
329
330 if (sym_is_choice(sym) && !parent->prompt)
331 menu_warn(parent, "choice must have a prompt\n");
332
333 /* Check properties connected to this symbol */
334 sym_check_prop(sym);
335 sym->flags |= SYMBOL_WARNED;
336 }
337
338 if (sym && !sym_is_optional(sym) && parent->prompt) {
339 sym->rev_dep.expr = expr_alloc_or(sym->rev_dep.expr,
340 expr_alloc_and(parent->prompt->visible.expr,
341 expr_alloc_symbol(&symbol_mod)));
342 }
343}
344
345bool menu_is_visible(struct menu *menu)
346{
347 struct menu *child;
348 struct symbol *sym;
349 tristate visible;
350
351 if (!menu->prompt)
352 return false;
353 sym = menu->sym;
354 if (sym) {
355 sym_calc_value(sym);
356 visible = menu->prompt->visible.tri;
357 } else
358 visible = menu->prompt->visible.tri = expr_calc_value(menu->prompt->visible.expr);
359
360 if (visible != no)
361 return true;
362 if (!sym || sym_get_tristate_value(menu->sym) == no)
363 return false;
364
365 for (child = menu->list; child; child = child->next)
366 if (menu_is_visible(child))
367 return true;
368 return false;
369}
370
371const char *menu_get_prompt(struct menu *menu)
372{
373 if (menu->prompt)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700374 return _(menu->prompt->text);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 else if (menu->sym)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700376 return _(menu->sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return NULL;
378}
379
380struct menu *menu_get_root_menu(struct menu *menu)
381{
382 return &rootmenu;
383}
384
385struct menu *menu_get_parent_menu(struct menu *menu)
386{
387 enum prop_type type;
388
389 for (; menu != &rootmenu; menu = menu->parent) {
390 type = menu->prompt ? menu->prompt->type : 0;
391 if (type == P_MENU)
392 break;
393 }
394 return menu;
395}
396