1 %option nostdinit noyywrap never-interactive full ecs
2 %option 8bit nodefault perf-report perf-report
4 %x COMMAND HELP STRING PARAM
7 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
8 * Released under the terms of the GNU GPL v2.0.
19 #define START_STRSIZE 16
27 static int text_size, text_asize;
30 struct buffer *parent;
31 YY_BUFFER_STATE state;
34 struct buffer *current_buf;
36 static int last_ts, first_ts;
38 static void zconf_endhelp(void);
39 static void zconf_endfile(void);
41 static void new_string(void)
43 text = xmalloc(START_STRSIZE);
44 text_asize = START_STRSIZE;
49 static void append_string(const char *str, int size)
51 int new_size = text_size + size + 1;
52 if (new_size > text_asize) {
53 new_size += START_STRSIZE - 1;
54 new_size &= -START_STRSIZE;
55 text = realloc(text, new_size);
56 text_asize = new_size;
58 memcpy(text + text_size, str, size);
63 static void alloc_string(const char *str, int size)
65 text = xmalloc(size + 1);
66 memcpy(text, str, size);
79 current_file->lineno++;
97 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
99 current_pos.file = current_file;
100 current_pos.lineno = current_file->lineno;
101 if (id && id->flags & TF_COMMAND) {
105 alloc_string(yytext, yyleng);
106 zconflval.string = text;
112 current_file->lineno++;
120 "(" return T_OPEN_PAREN;
121 ")" return T_CLOSE_PAREN;
124 "!=" return T_UNEQUAL;
125 "<=" return T_LESS_EQUAL;
126 ">=" return T_GREATER_EQUAL;
128 ">" return T_GREATER;
134 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
137 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
138 if (id && id->flags & TF_PARAM) {
142 alloc_string(yytext, yyleng);
143 zconflval.string = text;
147 \\\n current_file->lineno++;
151 "%s:%d:warning: ignoring unsupported character '%c'\n",
152 zconf_curname(), zconf_lineno(), *yytext);
161 append_string(yytext, yyleng);
162 zconflval.string = text;
166 append_string(yytext, yyleng);
169 append_string(yytext + 1, yyleng - 1);
170 zconflval.string = text;
174 append_string(yytext + 1, yyleng - 1);
177 if (str == yytext[0]) {
179 zconflval.string = text;
182 append_string(yytext, 1);
185 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
186 current_file->lineno++;
198 for (i = 0; i < yyleng; i++) {
199 if (yytext[i] == '\t')
212 append_string(" ", 8);
215 append_string(" ", ts);
219 current_file->lineno++;
224 current_file->lineno++;
225 append_string("\n", 1);
229 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
233 append_string(yytext, yyleng);
253 void zconf_starthelp(void)
256 last_ts = first_ts = 0;
260 static void zconf_endhelp(void)
262 zconflval.string = text;
268 * Try to open specified file with following names:
271 * The latter is used when srctree is separate from objtree
272 * when compiling the kernel.
273 * Return NULL if file is not found.
275 FILE *zconf_fopen(const char *name)
277 char *env, fullname[PATH_MAX+1];
280 f = fopen(name, "r");
281 if (!f && name != NULL && name[0] != '/') {
282 env = getenv(SRCTREE);
284 sprintf(fullname, "%s/%s", env, name);
285 f = fopen(fullname, "r");
291 void zconf_initscan(const char *name)
293 yyin = zconf_fopen(name);
295 printf("can't find file %s\n", name);
299 current_buf = xmalloc(sizeof(*current_buf));
300 memset(current_buf, 0, sizeof(*current_buf));
302 current_file = file_lookup(name);
303 current_file->lineno = 1;
306 void zconf_nextfile(const char *name)
309 struct file *file = file_lookup(name);
310 struct buffer *buf = xmalloc(sizeof(*buf));
311 memset(buf, 0, sizeof(*buf));
313 current_buf->state = YY_CURRENT_BUFFER;
314 yyin = zconf_fopen(file->name);
316 printf("%s:%d: can't open file \"%s\"\n",
317 zconf_curname(), zconf_lineno(), file->name);
320 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
321 buf->parent = current_buf;
324 for (iter = current_file->parent; iter; iter = iter->parent ) {
325 if (!strcmp(current_file->name,iter->name) ) {
326 printf("%s:%d: recursive inclusion detected. "
327 "Inclusion path:\n current file : '%s'\n",
328 zconf_curname(), zconf_lineno(),
330 iter = current_file->parent;
332 strcmp(iter->name,current_file->name)) {
333 printf(" included from: '%s:%d'\n",
334 iter->name, iter->lineno-1);
338 printf(" included from: '%s:%d'\n",
339 iter->name, iter->lineno+1);
344 file->parent = current_file;
348 static void zconf_endfile(void)
350 struct buffer *parent;
352 current_file = current_file->parent;
354 parent = current_buf->parent;
357 yy_delete_buffer(YY_CURRENT_BUFFER);
358 yy_switch_to_buffer(parent->state);
361 current_buf = parent;
364 int zconf_lineno(void)
366 return current_pos.lineno;
369 const char *zconf_curname(void)
371 return current_pos.file ? current_pos.file->name : "<none>";