blob: a8afce24fb1b150ad71d39a162d7c3207ba98c61 [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
Roman Zippela02f0572005-11-08 21:34:53 -080064struct menu *menu_add_menu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Roman Zippela02f0572005-11-08 21:34:53 -080066 menu_end_entry();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 last_entry_ptr = &current_entry->list;
Roman Zippela02f0572005-11-08 21:34:53 -080068 return current_menu = current_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71void menu_end_menu(void)
72{
73 last_entry_ptr = &current_menu->next;
74 current_menu = current_menu->parent;
75}
76
77struct expr *menu_check_dep(struct expr *e)
78{
79 if (!e)
80 return e;
81
82 switch (e->type) {
83 case E_NOT:
84 e->left.expr = menu_check_dep(e->left.expr);
85 break;
86 case E_OR:
87 case E_AND:
88 e->left.expr = menu_check_dep(e->left.expr);
89 e->right.expr = menu_check_dep(e->right.expr);
90 break;
91 case E_SYMBOL:
92 /* change 'm' into 'm' && MODULES */
93 if (e->left.sym == &symbol_mod)
94 return expr_alloc_and(e, expr_alloc_symbol(modules_sym));
95 break;
96 default:
97 break;
98 }
99 return e;
100}
101
102void menu_add_dep(struct expr *dep)
103{
104 current_entry->dep = expr_alloc_and(current_entry->dep, menu_check_dep(dep));
105}
106
107void menu_set_type(int type)
108{
109 struct symbol *sym = current_entry->sym;
110
111 if (sym->type == type)
112 return;
113 if (sym->type == S_UNKNOWN) {
114 sym->type = type;
115 return;
116 }
117 menu_warn(current_entry, "type of '%s' redefined from '%s' to '%s'\n",
118 sym->name ? sym->name : "<choice>",
119 sym_type_name(sym->type), sym_type_name(type));
120}
121
122struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep)
123{
124 struct property *prop = prop_alloc(type, current_entry->sym);
125
126 prop->menu = current_entry;
127 prop->text = prompt;
128 prop->expr = expr;
129 prop->visible.expr = menu_check_dep(dep);
130
131 if (prompt) {
132 if (current_entry->prompt)
133 menu_warn(current_entry, "prompt redefined\n");
134 current_entry->prompt = prop;
135 }
136
137 return prop;
138}
139
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200140struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200142 return menu_add_prop(type, prompt, NULL, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep)
146{
147 menu_add_prop(type, NULL, expr, dep);
148}
149
150void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep)
151{
152 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep);
153}
154
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700155void menu_add_option(int token, char *arg)
156{
Roman Zippelface4372006-06-08 22:12:45 -0700157 struct property *prop;
158
159 switch (token) {
160 case T_OPT_MODULES:
161 prop = prop_alloc(P_DEFAULT, modules_sym);
162 prop->expr = expr_alloc_symbol(current_entry->sym);
163 break;
164 case T_OPT_DEFCONFIG_LIST:
165 if (!sym_defconfig_list)
166 sym_defconfig_list = current_entry->sym;
167 else if (sym_defconfig_list != current_entry->sym)
168 zconf_error("trying to redefine defconfig symbol");
169 break;
170 }
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700171}
172
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800173static int menu_range_valid_sym(struct symbol *sym, struct symbol *sym2)
174{
175 return sym2->type == S_INT || sym2->type == S_HEX ||
176 (sym2->type == S_UNKNOWN && sym_string_valid(sym, sym2->name));
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179void sym_check_prop(struct symbol *sym)
180{
181 struct property *prop;
182 struct symbol *sym2;
183 for (prop = sym->prop; prop; prop = prop->next) {
184 switch (prop->type) {
185 case P_DEFAULT:
186 if ((sym->type == S_STRING || sym->type == S_INT || sym->type == S_HEX) &&
187 prop->expr->type != E_SYMBOL)
188 prop_warn(prop,
189 "default for config symbol '%'"
190 " must be a single symbol", sym->name);
191 break;
192 case P_SELECT:
193 sym2 = prop_get_symbol(prop);
194 if (sym->type != S_BOOLEAN && sym->type != S_TRISTATE)
195 prop_warn(prop,
196 "config symbol '%s' uses select, but is "
197 "not boolean or tristate", sym->name);
198 else if (sym2->type == S_UNKNOWN)
199 prop_warn(prop,
200 "'select' used by config symbol '%s' "
201 "refer to undefined symbol '%s'",
202 sym->name, sym2->name);
203 else if (sym2->type != S_BOOLEAN && sym2->type != S_TRISTATE)
204 prop_warn(prop,
205 "'%s' has wrong type. 'select' only "
206 "accept arguments of boolean and "
207 "tristate type", sym2->name);
208 break;
209 case P_RANGE:
210 if (sym->type != S_INT && sym->type != S_HEX)
211 prop_warn(prop, "range is only allowed "
212 "for int or hex symbols");
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800213 if (!menu_range_valid_sym(sym, prop->expr->left.sym) ||
214 !menu_range_valid_sym(sym, prop->expr->right.sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 prop_warn(prop, "range is invalid");
216 break;
217 default:
218 ;
219 }
220 }
221}
222
223void menu_finalize(struct menu *parent)
224{
225 struct menu *menu, *last_menu;
226 struct symbol *sym;
227 struct property *prop;
228 struct expr *parentdep, *basedep, *dep, *dep2, **ep;
229
230 sym = parent->sym;
231 if (parent->list) {
232 if (sym && sym_is_choice(sym)) {
233 /* find the first choice value and find out choice type */
234 for (menu = parent->list; menu; menu = menu->next) {
235 if (menu->sym) {
236 current_entry = parent;
237 menu_set_type(menu->sym->type);
238 current_entry = menu;
239 menu_set_type(sym->type);
240 break;
241 }
242 }
243 parentdep = expr_alloc_symbol(sym);
244 } else if (parent->prompt)
245 parentdep = parent->prompt->visible.expr;
246 else
247 parentdep = parent->dep;
248
249 for (menu = parent->list; menu; menu = menu->next) {
250 basedep = expr_transform(menu->dep);
251 basedep = expr_alloc_and(expr_copy(parentdep), basedep);
252 basedep = expr_eliminate_dups(basedep);
253 menu->dep = basedep;
254 if (menu->sym)
255 prop = menu->sym->prop;
256 else
257 prop = menu->prompt;
258 for (; prop; prop = prop->next) {
259 if (prop->menu != menu)
260 continue;
261 dep = expr_transform(prop->visible.expr);
262 dep = expr_alloc_and(expr_copy(basedep), dep);
263 dep = expr_eliminate_dups(dep);
264 if (menu->sym && menu->sym->type != S_TRISTATE)
265 dep = expr_trans_bool(dep);
266 prop->visible.expr = dep;
267 if (prop->type == P_SELECT) {
268 struct symbol *es = prop_get_symbol(prop);
269 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr,
270 expr_alloc_and(expr_alloc_symbol(menu->sym), expr_copy(dep)));
271 }
272 }
273 }
274 for (menu = parent->list; menu; menu = menu->next)
275 menu_finalize(menu);
276 } else if (sym) {
277 basedep = parent->prompt ? parent->prompt->visible.expr : NULL;
278 basedep = expr_trans_compare(basedep, E_UNEQUAL, &symbol_no);
279 basedep = expr_eliminate_dups(expr_transform(basedep));
280 last_menu = NULL;
281 for (menu = parent->next; menu; menu = menu->next) {
282 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep;
283 if (!expr_contains_symbol(dep, sym))
284 break;
285 if (expr_depends_symbol(dep, sym))
286 goto next;
287 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no);
288 dep = expr_eliminate_dups(expr_transform(dep));
289 dep2 = expr_copy(basedep);
290 expr_eliminate_eq(&dep, &dep2);
291 expr_free(dep);
292 if (!expr_is_yes(dep2)) {
293 expr_free(dep2);
294 break;
295 }
296 expr_free(dep2);
297 next:
298 menu_finalize(menu);
299 menu->parent = parent;
300 last_menu = menu;
301 }
302 if (last_menu) {
303 parent->list = parent->next;
304 parent->next = last_menu->next;
305 last_menu->next = NULL;
306 }
307 }
308 for (menu = parent->list; menu; menu = menu->next) {
309 if (sym && sym_is_choice(sym) && menu->sym) {
310 menu->sym->flags |= SYMBOL_CHOICEVAL;
311 if (!menu->prompt)
312 menu_warn(menu, "choice value must have a prompt");
313 for (prop = menu->sym->prop; prop; prop = prop->next) {
314 if (prop->type == P_PROMPT && prop->menu != menu) {
315 prop_warn(prop, "choice values "
316 "currently only support a "
317 "single prompt");
318 }
319 if (prop->type == P_DEFAULT)
320 prop_warn(prop, "defaults for choice "
321 "values not supported");
322 }
323 current_entry = menu;
324 menu_set_type(sym->type);
325 menu_add_symbol(P_CHOICE, sym, NULL);
326 prop = sym_get_choice_prop(sym);
327 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
328 ;
329 *ep = expr_alloc_one(E_CHOICE, NULL);
330 (*ep)->right.sym = menu->sym;
331 }
332 if (menu->list && (!menu->prompt || !menu->prompt->text)) {
333 for (last_menu = menu->list; ; last_menu = last_menu->next) {
334 last_menu->parent = parent;
335 if (!last_menu->next)
336 break;
337 }
338 last_menu->next = menu->next;
339 menu->next = menu->list;
340 menu->list = NULL;
341 }
342 }
343
344 if (sym && !(sym->flags & SYMBOL_WARNED)) {
345 if (sym->type == S_UNKNOWN)
346 menu_warn(parent, "config symbol defined "
347 "without type\n");
348
349 if (sym_is_choice(sym) && !parent->prompt)
350 menu_warn(parent, "choice must have a prompt\n");
351
352 /* Check properties connected to this symbol */
353 sym_check_prop(sym);
354 sym->flags |= SYMBOL_WARNED;
355 }
356
357 if (sym && !sym_is_optional(sym) && parent->prompt) {
358 sym->rev_dep.expr = expr_alloc_or(sym->rev_dep.expr,
359 expr_alloc_and(parent->prompt->visible.expr,
360 expr_alloc_symbol(&symbol_mod)));
361 }
362}
363
364bool menu_is_visible(struct menu *menu)
365{
366 struct menu *child;
367 struct symbol *sym;
368 tristate visible;
369
370 if (!menu->prompt)
371 return false;
372 sym = menu->sym;
373 if (sym) {
374 sym_calc_value(sym);
375 visible = menu->prompt->visible.tri;
376 } else
377 visible = menu->prompt->visible.tri = expr_calc_value(menu->prompt->visible.expr);
378
379 if (visible != no)
380 return true;
381 if (!sym || sym_get_tristate_value(menu->sym) == no)
382 return false;
383
384 for (child = menu->list; child; child = child->next)
385 if (menu_is_visible(child))
386 return true;
387 return false;
388}
389
390const char *menu_get_prompt(struct menu *menu)
391{
392 if (menu->prompt)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700393 return _(menu->prompt->text);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 else if (menu->sym)
Arnaldo Carvalho de Melo3b9fa092005-05-05 15:09:46 -0700395 return _(menu->sym->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return NULL;
397}
398
399struct menu *menu_get_root_menu(struct menu *menu)
400{
401 return &rootmenu;
402}
403
404struct menu *menu_get_parent_menu(struct menu *menu)
405{
406 enum prop_type type;
407
408 for (; menu != &rootmenu; menu = menu->parent) {
409 type = menu->prompt ? menu->prompt->type : 0;
410 if (type == P_MENU)
411 break;
412 }
413 return menu;
414}
415