blob: e6ef171e5b142e19c10af5c2b4a17260c78ace26 [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
Roman Zippel93449082008-01-14 04:50:54 +010018void menu_warn(struct menu *menu, const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
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 }
Roman Zippelf001f7f2006-06-08 22:12:48 -0700117 menu_warn(current_entry, "type of '%s' redefined from '%s' to '%s'",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 prop->expr = expr;
128 prop->visible.expr = menu_check_dep(dep);
129
130 if (prompt) {
Roman Zippelf001f7f2006-06-08 22:12:48 -0700131 if (isspace(*prompt)) {
132 prop_warn(prop, "leading whitespace ignored");
133 while (isspace(*prompt))
134 prompt++;
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (current_entry->prompt)
Roman Zippelf001f7f2006-06-08 22:12:48 -0700137 prop_warn(prop, "prompt redefined");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 current_entry->prompt = prop;
139 }
Roman Zippelf001f7f2006-06-08 22:12:48 -0700140 prop->text = prompt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 return prop;
143}
144
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200145struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
blaisorblade@yahoo.itfb7f6ff2005-07-28 17:56:25 +0200147 return menu_add_prop(type, prompt, NULL, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep)
151{
152 menu_add_prop(type, NULL, expr, dep);
153}
154
155void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep)
156{
157 menu_add_prop(type, NULL, expr_alloc_symbol(sym), dep);
158}
159
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700160void menu_add_option(int token, char *arg)
161{
Roman Zippelface4372006-06-08 22:12:45 -0700162 struct property *prop;
163
164 switch (token) {
165 case T_OPT_MODULES:
166 prop = prop_alloc(P_DEFAULT, modules_sym);
167 prop->expr = expr_alloc_symbol(current_entry->sym);
168 break;
169 case T_OPT_DEFCONFIG_LIST:
170 if (!sym_defconfig_list)
171 sym_defconfig_list = current_entry->sym;
172 else if (sym_defconfig_list != current_entry->sym)
173 zconf_error("trying to redefine defconfig symbol");
174 break;
Roman Zippel93449082008-01-14 04:50:54 +0100175 case T_OPT_ENV:
176 prop_add_env(arg);
177 break;
Roman Zippelface4372006-06-08 22:12:45 -0700178 }
Roman Zippelf6a88aa2006-06-08 22:12:44 -0700179}
180
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800181static int menu_range_valid_sym(struct symbol *sym, struct symbol *sym2)
182{
183 return sym2->type == S_INT || sym2->type == S_HEX ||
184 (sym2->type == S_UNKNOWN && sym_string_valid(sym, sym2->name));
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187void sym_check_prop(struct symbol *sym)
188{
189 struct property *prop;
190 struct symbol *sym2;
191 for (prop = sym->prop; prop; prop = prop->next) {
192 switch (prop->type) {
193 case P_DEFAULT:
194 if ((sym->type == S_STRING || sym->type == S_INT || sym->type == S_HEX) &&
195 prop->expr->type != E_SYMBOL)
196 prop_warn(prop,
197 "default for config symbol '%'"
198 " must be a single symbol", sym->name);
199 break;
200 case P_SELECT:
201 sym2 = prop_get_symbol(prop);
202 if (sym->type != S_BOOLEAN && sym->type != S_TRISTATE)
203 prop_warn(prop,
204 "config symbol '%s' uses select, but is "
205 "not boolean or tristate", sym->name);
206 else if (sym2->type == S_UNKNOWN)
207 prop_warn(prop,
208 "'select' used by config symbol '%s' "
Robert P. J. Day1e093ec2007-04-30 15:44:27 -0400209 "refers to undefined symbol '%s'",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 sym->name, sym2->name);
211 else if (sym2->type != S_BOOLEAN && sym2->type != S_TRISTATE)
212 prop_warn(prop,
213 "'%s' has wrong type. 'select' only "
214 "accept arguments of boolean and "
215 "tristate type", sym2->name);
216 break;
217 case P_RANGE:
218 if (sym->type != S_INT && sym->type != S_HEX)
219 prop_warn(prop, "range is only allowed "
220 "for int or hex symbols");
Roman Zippel4cf3cbe2005-11-08 21:34:49 -0800221 if (!menu_range_valid_sym(sym, prop->expr->left.sym) ||
222 !menu_range_valid_sym(sym, prop->expr->right.sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 prop_warn(prop, "range is invalid");
224 break;
225 default:
226 ;
227 }
228 }
229}
230
231void menu_finalize(struct menu *parent)
232{
233 struct menu *menu, *last_menu;
234 struct symbol *sym;
235 struct property *prop;
236 struct expr *parentdep, *basedep, *dep, *dep2, **ep;
237
238 sym = parent->sym;
239 if (parent->list) {
240 if (sym && sym_is_choice(sym)) {
Linus Torvaldse8b8c972007-10-19 21:25:45 -0700241 /* find the first choice value and find out choice type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 for (menu = parent->list; menu; menu = menu->next) {
Linus Torvaldse8b8c972007-10-19 21:25:45 -0700243 if (menu->sym) {
244 current_entry = parent;
245 menu_set_type(menu->sym->type);
246 current_entry = menu;
247 menu_set_type(sym->type);
248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 }
251 parentdep = expr_alloc_symbol(sym);
252 } else if (parent->prompt)
253 parentdep = parent->prompt->visible.expr;
254 else
255 parentdep = parent->dep;
256
257 for (menu = parent->list; menu; menu = menu->next) {
258 basedep = expr_transform(menu->dep);
Linus Torvaldse8b8c972007-10-19 21:25:45 -0700259 basedep = expr_alloc_and(expr_copy(parentdep), basedep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 basedep = expr_eliminate_dups(basedep);
261 menu->dep = basedep;
262 if (menu->sym)
263 prop = menu->sym->prop;
264 else
265 prop = menu->prompt;
266 for (; prop; prop = prop->next) {
267 if (prop->menu != menu)
268 continue;
269 dep = expr_transform(prop->visible.expr);
270 dep = expr_alloc_and(expr_copy(basedep), dep);
271 dep = expr_eliminate_dups(dep);
272 if (menu->sym && menu->sym->type != S_TRISTATE)
273 dep = expr_trans_bool(dep);
274 prop->visible.expr = dep;
275 if (prop->type == P_SELECT) {
276 struct symbol *es = prop_get_symbol(prop);
277 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr,
278 expr_alloc_and(expr_alloc_symbol(menu->sym), expr_copy(dep)));
279 }
280 }
281 }
282 for (menu = parent->list; menu; menu = menu->next)
283 menu_finalize(menu);
284 } else if (sym) {
285 basedep = parent->prompt ? parent->prompt->visible.expr : NULL;
286 basedep = expr_trans_compare(basedep, E_UNEQUAL, &symbol_no);
287 basedep = expr_eliminate_dups(expr_transform(basedep));
288 last_menu = NULL;
289 for (menu = parent->next; menu; menu = menu->next) {
290 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep;
291 if (!expr_contains_symbol(dep, sym))
292 break;
293 if (expr_depends_symbol(dep, sym))
294 goto next;
295 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no);
296 dep = expr_eliminate_dups(expr_transform(dep));
297 dep2 = expr_copy(basedep);
298 expr_eliminate_eq(&dep, &dep2);
299 expr_free(dep);
300 if (!expr_is_yes(dep2)) {
301 expr_free(dep2);
302 break;
303 }
304 expr_free(dep2);
305 next:
306 menu_finalize(menu);
307 menu->parent = parent;
308 last_menu = menu;
309 }
310 if (last_menu) {
311 parent->list = parent->next;
312 parent->next = last_menu->next;
313 last_menu->next = NULL;
314 }
315 }
316 for (menu = parent->list; menu; menu = menu->next) {
317 if (sym && sym_is_choice(sym) && menu->sym) {
318 menu->sym->flags |= SYMBOL_CHOICEVAL;
319 if (!menu->prompt)
320 menu_warn(menu, "choice value must have a prompt");
321 for (prop = menu->sym->prop; prop; prop = prop->next) {
322 if (prop->type == P_PROMPT && prop->menu != menu) {
323 prop_warn(prop, "choice values "
324 "currently only support a "
325 "single prompt");
326 }
327 if (prop->type == P_DEFAULT)
328 prop_warn(prop, "defaults for choice "
329 "values not supported");
330 }
331 current_entry = menu;
Linus Torvaldse8b8c972007-10-19 21:25:45 -0700332 menu_set_type(sym->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 menu_add_symbol(P_CHOICE, sym, NULL);
334 prop = sym_get_choice_prop(sym);
335 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
336 ;
Roman Zippel7a962922008-01-14 04:50:23 +0100337 *ep = expr_alloc_one(E_LIST, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 (*ep)->right.sym = menu->sym;
339 }
340 if (menu->list && (!menu->prompt || !menu->prompt->text)) {
341 for (last_menu = menu->list; ; last_menu = last_menu->next) {
342 last_menu->parent = parent;
343 if (!last_menu->next)
344 break;
345 }
346 last_menu->next = menu->next;
347 menu->next = menu->list;
348 menu->list = NULL;
349 }
350 }
351
352 if (sym && !(sym->flags & SYMBOL_WARNED)) {
353 if (sym->type == S_UNKNOWN)
Roman Zippelf001f7f2006-06-08 22:12:48 -0700354 menu_warn(parent, "config symbol defined without type");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 if (sym_is_choice(sym) && !parent->prompt)
Roman Zippelf001f7f2006-06-08 22:12:48 -0700357 menu_warn(parent, "choice must have a prompt");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* Check properties connected to this symbol */
360 sym_check_prop(sym);
361 sym->flags |= SYMBOL_WARNED;
362 }
363
364 if (sym && !sym_is_optional(sym) && parent->prompt) {
365 sym->rev_dep.expr = expr_alloc_or(sym->rev_dep.expr,
366 expr_alloc_and(parent->prompt->visible.expr,
367 expr_alloc_symbol(&symbol_mod)));
368 }
369}
370
371bool menu_is_visible(struct menu *menu)
372{
373 struct menu *child;
374 struct symbol *sym;
375 tristate visible;
376
377 if (!menu->prompt)
378 return false;
379 sym = menu->sym;
380 if (sym) {
381 sym_calc_value(sym);
382 visible = menu->prompt->visible.tri;
383 } else
384 visible = menu->prompt->visible.tri = expr_calc_value(menu->prompt->visible.expr);
385
386 if (visible != no)
387 return true;
388 if (!sym || sym_get_tristate_value(menu->sym) == no)
389 return false;
390
391 for (child = menu->list; child; child = child->next)
392 if (menu_is_visible(child))
393 return true;
394 return false;
395}
396
397const char *menu_get_prompt(struct menu *menu)
398{
399 if (menu->prompt)
EGRY Gabor01771b02008-01-11 23:53:43 +0100400 return menu->prompt->text;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 else if (menu->sym)
EGRY Gabor01771b02008-01-11 23:53:43 +0100402 return menu->sym->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return NULL;
404}
405
406struct menu *menu_get_root_menu(struct menu *menu)
407{
408 return &rootmenu;
409}
410
411struct menu *menu_get_parent_menu(struct menu *menu)
412{
413 enum prop_type type;
414
415 for (; menu != &rootmenu; menu = menu->parent) {
416 type = menu->prompt ? menu->prompt->type : 0;
417 if (type == P_MENU)
418 break;
419 }
420 return menu;
421}
422
Sam Ravnborg03d29122007-07-21 00:00:36 +0200423bool menu_has_help(struct menu *menu)
424{
425 return menu->help != NULL;
426}
427
428const char *menu_get_help(struct menu *menu)
429{
430 if (menu->help)
431 return menu->help;
432 else
433 return "";
434}