blob: de9af095a3474bd842c3a1df5d745c556abe6fe8 [file] [log] [blame]
Nicholas Flintham1e3d3112013-04-10 10:48:38 +01001/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#ifndef EXPR_H
7#define EXPR_H
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13#include <assert.h>
14#include <stdio.h>
15#ifndef __cplusplus
16#include <stdbool.h>
17#endif
18
19struct file {
20 struct file *next;
21 struct file *parent;
22 const char *name;
23 int lineno;
24};
25
26typedef enum tristate {
27 no, mod, yes
28} tristate;
29
30enum expr_type {
31 E_NONE, E_OR, E_AND, E_NOT, E_EQUAL, E_UNEQUAL, E_LIST, E_SYMBOL, E_RANGE
32};
33
34union expr_data {
35 struct expr *expr;
36 struct symbol *sym;
37};
38
39struct expr {
40 enum expr_type type;
41 union expr_data left, right;
42};
43
44#define EXPR_OR(dep1, dep2) (((dep1)>(dep2))?(dep1):(dep2))
45#define EXPR_AND(dep1, dep2) (((dep1)<(dep2))?(dep1):(dep2))
46#define EXPR_NOT(dep) (2-(dep))
47
48#define expr_list_for_each_sym(l, e, s) \
49 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
50
51struct expr_value {
52 struct expr *expr;
53 tristate tri;
54};
55
56struct symbol_value {
57 void *val;
58 tristate tri;
59};
60
61enum symbol_type {
62 S_UNKNOWN, S_BOOLEAN, S_TRISTATE, S_INT, S_HEX, S_STRING, S_OTHER
63};
64
65enum {
66 S_DEF_USER,
67 S_DEF_AUTO,
68 S_DEF_DEF3,
69 S_DEF_DEF4,
70 S_DEF_COUNT
71};
72
73struct symbol {
74 struct symbol *next;
75 char *name;
76 enum symbol_type type;
77 struct symbol_value curr;
78 struct symbol_value def[S_DEF_COUNT];
79 tristate visible;
80 int flags;
81 struct property *prop;
82 struct expr_value dir_dep;
83 struct expr_value rev_dep;
84};
85
86#define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S_OTHER)
87
88#define SYMBOL_CONST 0x0001
89#define SYMBOL_CHECK 0x0008
90#define SYMBOL_CHOICE 0x0010
91#define SYMBOL_CHOICEVAL 0x0020
92#define SYMBOL_VALID 0x0080
93#define SYMBOL_OPTIONAL 0x0100
94#define SYMBOL_WRITE 0x0200
95#define SYMBOL_CHANGED 0x0400
96#define SYMBOL_AUTO 0x1000
97#define SYMBOL_CHECKED 0x2000
98#define SYMBOL_WARNED 0x8000
99
100#define SYMBOL_DEF 0x10000
101#define SYMBOL_DEF_USER 0x10000
102#define SYMBOL_DEF_AUTO 0x20000
103#define SYMBOL_DEF3 0x40000
104#define SYMBOL_DEF4 0x80000
105
106#define SYMBOL_MAXLENGTH 256
107#define SYMBOL_HASHSIZE 9973
108
109enum prop_type {
110 P_UNKNOWN,
111 P_PROMPT,
112 P_COMMENT,
113 P_MENU,
114 P_DEFAULT,
115 P_CHOICE,
116 P_SELECT,
117 P_RANGE,
118 P_ENV,
119 P_SYMBOL,
120};
121
122struct property {
123 struct property *next;
124 struct symbol *sym;
125 enum prop_type type;
126 const char *text;
127 struct expr_value visible;
128 struct expr *expr;
129 struct menu *menu;
130 struct file *file;
131 int lineno;
132};
133
134#define for_all_properties(sym, st, tok) \
135 for (st = sym->prop; st; st = st->next) \
136 if (st->type == (tok))
137#define for_all_defaults(sym, st) for_all_properties(sym, st, P_DEFAULT)
138#define for_all_choices(sym, st) for_all_properties(sym, st, P_CHOICE)
139#define for_all_prompts(sym, st) \
140 for (st = sym->prop; st; st = st->next) \
141 if (st->text)
142
143struct menu {
144 struct menu *next;
145 struct menu *parent;
146 struct menu *list;
147 struct symbol *sym;
148 struct property *prompt;
149 struct expr *visibility;
150 struct expr *dep;
151 unsigned int flags;
152 char *help;
153 struct file *file;
154 int lineno;
155 void *data;
156};
157
158#define MENU_CHANGED 0x0001
159#define MENU_ROOT 0x0002
160
161extern struct file *file_list;
162extern struct file *current_file;
163struct file *lookup_file(const char *name);
164
165extern struct symbol symbol_yes, symbol_no, symbol_mod;
166extern struct symbol *modules_sym;
167extern struct symbol *sym_defconfig_list;
168extern int cdebug;
169struct expr *expr_alloc_symbol(struct symbol *sym);
170struct expr *expr_alloc_one(enum expr_type type, struct expr *ce);
171struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
172struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s1, struct symbol *s2);
173struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
174struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
175struct expr *expr_copy(const struct expr *org);
176void expr_free(struct expr *e);
177int expr_eq(struct expr *e1, struct expr *e2);
178void expr_eliminate_eq(struct expr **ep1, struct expr **ep2);
179tristate expr_calc_value(struct expr *e);
180struct expr *expr_eliminate_yn(struct expr *e);
181struct expr *expr_trans_bool(struct expr *e);
182struct expr *expr_eliminate_dups(struct expr *e);
183struct expr *expr_transform(struct expr *e);
184int expr_contains_symbol(struct expr *dep, struct symbol *sym);
185bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
186struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2);
187struct expr *expr_extract_eq_or(struct expr **ep1, struct expr **ep2);
188void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
189struct expr *expr_trans_compare(struct expr *e, enum expr_type type, struct symbol *sym);
190struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2);
191
192void expr_fprint(struct expr *e, FILE *out);
193struct gstr;
194void expr_gstr_print(struct expr *e, struct gstr *gs);
195
196static inline int expr_is_yes(struct expr *e)
197{
198 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes);
199}
200
201static inline int expr_is_no(struct expr *e)
202{
203 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no);
204}
205
206#ifdef __cplusplus
207}
208#endif
209
210#endif