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);
70 static void warn_ignored_character(char chr)
73 "%s:%d:warning: ignoring unsupported character '%c'\n",
74 zconf_curname(), zconf_lineno(), chr);
86 current_file->lineno++;
104 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
106 current_pos.file = current_file;
107 current_pos.lineno = current_file->lineno;
108 if (id && id->flags & TF_COMMAND) {
112 alloc_string(yytext, yyleng);
113 zconflval.string = text;
116 . warn_ignored_character(*yytext);
119 current_file->lineno++;
127 "(" return T_OPEN_PAREN;
128 ")" return T_CLOSE_PAREN;
131 "!=" return T_UNEQUAL;
132 "<=" return T_LESS_EQUAL;
133 ">=" return T_GREATER_EQUAL;
135 ">" return T_GREATER;
141 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
143 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
144 if (id && id->flags & TF_PARAM) {
148 alloc_string(yytext, yyleng);
149 zconflval.string = text;
153 \\\n current_file->lineno++;
155 . warn_ignored_character(*yytext);
163 append_string(yytext, yyleng);
164 zconflval.string = text;
168 append_string(yytext, yyleng);
171 append_string(yytext + 1, yyleng - 1);
172 zconflval.string = text;
176 append_string(yytext + 1, yyleng - 1);
179 if (str == yytext[0]) {
181 zconflval.string = text;
184 append_string(yytext, 1);
187 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
188 current_file->lineno++;
200 for (i = 0; i < yyleng; i++) {
201 if (yytext[i] == '\t')
214 append_string(" ", 8);
217 append_string(" ", ts);
221 current_file->lineno++;
226 current_file->lineno++;
227 append_string("\n", 1);
231 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
235 append_string(yytext, yyleng);
255 void zconf_starthelp(void)
258 last_ts = first_ts = 0;
262 static void zconf_endhelp(void)
264 zconflval.string = text;
270 * Try to open specified file with following names:
273 * The latter is used when srctree is separate from objtree
274 * when compiling the kernel.
275 * Return NULL if file is not found.
277 FILE *zconf_fopen(const char *name)
279 char *env, fullname[PATH_MAX+1];
282 f = fopen(name, "r");
283 if (!f && name != NULL && name[0] != '/') {
284 env = getenv(SRCTREE);
286 sprintf(fullname, "%s/%s", env, name);
287 f = fopen(fullname, "r");
293 void zconf_initscan(const char *name)
295 yyin = zconf_fopen(name);
297 printf("can't find file %s\n", name);
301 current_buf = xmalloc(sizeof(*current_buf));
302 memset(current_buf, 0, sizeof(*current_buf));
304 current_file = file_lookup(name);
305 current_file->lineno = 1;
308 void zconf_nextfile(const char *name)
311 struct file *file = file_lookup(name);
312 struct buffer *buf = xmalloc(sizeof(*buf));
313 memset(buf, 0, sizeof(*buf));
315 current_buf->state = YY_CURRENT_BUFFER;
316 yyin = zconf_fopen(file->name);
318 printf("%s:%d: can't open file \"%s\"\n",
319 zconf_curname(), zconf_lineno(), file->name);
322 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
323 buf->parent = current_buf;
326 for (iter = current_file->parent; iter; iter = iter->parent ) {
327 if (!strcmp(current_file->name,iter->name) ) {
328 printf("%s:%d: recursive inclusion detected. "
329 "Inclusion path:\n current file : '%s'\n",
330 zconf_curname(), zconf_lineno(),
332 iter = current_file->parent;
334 strcmp(iter->name,current_file->name)) {
335 printf(" included from: '%s:%d'\n",
336 iter->name, iter->lineno-1);
340 printf(" included from: '%s:%d'\n",
341 iter->name, iter->lineno+1);
346 file->parent = current_file;
350 static void zconf_endfile(void)
352 struct buffer *parent;
354 current_file = current_file->parent;
356 parent = current_buf->parent;
359 yy_delete_buffer(YY_CURRENT_BUFFER);
360 yy_switch_to_buffer(parent->state);
363 current_buf = parent;
366 int zconf_lineno(void)
368 return current_pos.lineno;
371 const char *zconf_curname(void)
373 return current_pos.file ? current_pos.file->name : "<none>";