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;
130 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
133 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
134 if (id && id->flags & TF_PARAM) {
138 alloc_string(yytext, yyleng);
139 zconflval.string = text;
143 \\\n current_file->lineno++;
152 append_string(yytext, yyleng);
153 zconflval.string = text;
157 append_string(yytext, yyleng);
160 append_string(yytext + 1, yyleng - 1);
161 zconflval.string = text;
165 append_string(yytext + 1, yyleng - 1);
168 if (str == yytext[0]) {
170 zconflval.string = text;
173 append_string(yytext, 1);
176 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
177 current_file->lineno++;
189 for (i = 0; i < yyleng; i++) {
190 if (yytext[i] == '\t')
203 append_string(" ", 8);
206 append_string(" ", ts);
210 current_file->lineno++;
215 current_file->lineno++;
216 append_string("\n", 1);
220 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
224 append_string(yytext, yyleng);
244 void zconf_starthelp(void)
247 last_ts = first_ts = 0;
251 static void zconf_endhelp(void)
253 zconflval.string = text;
259 * Try to open specified file with following names:
262 * The latter is used when srctree is separate from objtree
263 * when compiling the kernel.
264 * Return NULL if file is not found.
266 FILE *zconf_fopen(const char *name)
268 char *env, fullname[PATH_MAX+1];
271 f = fopen(name, "r");
272 if (!f && name != NULL && name[0] != '/') {
273 env = getenv(SRCTREE);
275 sprintf(fullname, "%s/%s", env, name);
276 f = fopen(fullname, "r");
282 void zconf_initscan(const char *name)
284 yyin = zconf_fopen(name);
286 printf("can't find file %s\n", name);
290 current_buf = xmalloc(sizeof(*current_buf));
291 memset(current_buf, 0, sizeof(*current_buf));
293 current_file = file_lookup(name);
294 current_file->lineno = 1;
297 void zconf_nextfile(const char *name)
300 struct file *file = file_lookup(name);
301 struct buffer *buf = xmalloc(sizeof(*buf));
302 memset(buf, 0, sizeof(*buf));
304 current_buf->state = YY_CURRENT_BUFFER;
305 yyin = zconf_fopen(file->name);
307 printf("%s:%d: can't open file \"%s\"\n",
308 zconf_curname(), zconf_lineno(), file->name);
311 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
312 buf->parent = current_buf;
315 for (iter = current_file->parent; iter; iter = iter->parent ) {
316 if (!strcmp(current_file->name,iter->name) ) {
317 printf("%s:%d: recursive inclusion detected. "
318 "Inclusion path:\n current file : '%s'\n",
319 zconf_curname(), zconf_lineno(),
321 iter = current_file->parent;
323 strcmp(iter->name,current_file->name)) {
324 printf(" included from: '%s:%d'\n",
325 iter->name, iter->lineno-1);
329 printf(" included from: '%s:%d'\n",
330 iter->name, iter->lineno+1);
335 file->parent = current_file;
339 static void zconf_endfile(void)
341 struct buffer *parent;
343 current_file = current_file->parent;
345 parent = current_buf->parent;
348 yy_delete_buffer(YY_CURRENT_BUFFER);
349 yy_switch_to_buffer(parent->state);
352 current_buf = parent;
355 int zconf_lineno(void)
357 return current_pos.lineno;
360 const char *zconf_curname(void)
362 return current_pos.file ? current_pos.file->name : "<none>";