1 %option nostdinit noyywrap never-interactive full ecs
2 %option 8bit nodefault yylineno
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 = xrealloc(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);
103 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
105 current_pos.file = current_file;
106 current_pos.lineno = yylineno;
107 if (id && id->flags & TF_COMMAND) {
111 alloc_string(yytext, yyleng);
112 yylval.string = text;
115 . warn_ignored_character(*yytext);
125 "(" return T_OPEN_PAREN;
126 ")" return T_CLOSE_PAREN;
129 "!=" return T_UNEQUAL;
130 "<=" return T_LESS_EQUAL;
131 ">=" return T_GREATER_EQUAL;
133 ">" return T_GREATER;
139 \n BEGIN(INITIAL); return T_EOL;
141 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
142 if (id && id->flags & TF_PARAM) {
146 alloc_string(yytext, yyleng);
147 yylval.string = text;
153 . warn_ignored_character(*yytext);
161 append_string(yytext, yyleng);
162 yylval.string = text;
166 append_string(yytext, yyleng);
169 append_string(yytext + 1, yyleng - 1);
170 yylval.string = text;
174 append_string(yytext + 1, yyleng - 1);
177 if (str == yytext[0]) {
179 yylval.string = text;
182 append_string(yytext, 1);
186 "%s:%d:warning: multi-line strings not supported\n",
187 zconf_curname(), zconf_lineno());
199 for (i = 0; i < yyleng; i++) {
200 if (yytext[i] == '\t')
213 append_string(" ", 8);
216 append_string(" ", ts);
224 append_string("\n", 1);
228 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
232 append_string(yytext, yyleng);
252 void zconf_starthelp(void)
255 last_ts = first_ts = 0;
259 static void zconf_endhelp(void)
261 yylval.string = text;
267 * Try to open specified file with following names:
270 * The latter is used when srctree is separate from objtree
271 * when compiling the kernel.
272 * Return NULL if file is not found.
274 FILE *zconf_fopen(const char *name)
276 char *env, fullname[PATH_MAX+1];
279 f = fopen(name, "r");
280 if (!f && name != NULL && name[0] != '/') {
281 env = getenv(SRCTREE);
283 sprintf(fullname, "%s/%s", env, name);
284 f = fopen(fullname, "r");
290 void zconf_initscan(const char *name)
292 yyin = zconf_fopen(name);
294 fprintf(stderr, "can't find file %s\n", name);
298 current_buf = xmalloc(sizeof(*current_buf));
299 memset(current_buf, 0, sizeof(*current_buf));
301 current_file = file_lookup(name);
305 void zconf_nextfile(const char *name)
308 struct file *file = file_lookup(name);
309 struct buffer *buf = xmalloc(sizeof(*buf));
310 memset(buf, 0, sizeof(*buf));
312 current_buf->state = YY_CURRENT_BUFFER;
313 yyin = zconf_fopen(file->name);
315 fprintf(stderr, "%s:%d: can't open file \"%s\"\n",
316 zconf_curname(), zconf_lineno(), file->name);
319 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
320 buf->parent = current_buf;
323 current_file->lineno = yylineno;
324 file->parent = current_file;
326 for (iter = current_file; iter; iter = iter->parent) {
327 if (!strcmp(iter->name, file->name)) {
329 "Recursive inclusion detected.\n"
331 " current file : %s\n", file->name);
335 fprintf(stderr, " included from: %s:%d\n",
336 iter->name, iter->lineno - 1);
337 } while (strcmp(iter->name, file->name));
346 static void zconf_endfile(void)
348 struct buffer *parent;
350 current_file = current_file->parent;
352 yylineno = current_file->lineno;
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>";