1 %option nostdinit noyywrap never-interactive full ecs
2 %option 8bit nodefault yylineno
3 %x COMMAND HELP STRING PARAM ASSIGN_VAL
6 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
7 * 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 char *expand_token(const char *in, size_t n);
39 static void append_expanded_string(const char *in);
40 static void zconf_endhelp(void);
41 static void zconf_endfile(void);
43 static void new_string(void)
45 text = xmalloc(START_STRSIZE);
46 text_asize = START_STRSIZE;
51 static void append_string(const char *str, int size)
53 int new_size = text_size + size + 1;
54 if (new_size > text_asize) {
55 new_size += START_STRSIZE - 1;
56 new_size &= -START_STRSIZE;
57 text = xrealloc(text, new_size);
58 text_asize = new_size;
60 memcpy(text + text_size, str, size);
65 static void alloc_string(const char *str, int size)
67 text = xmalloc(size + 1);
68 memcpy(text, str, size);
72 static void warn_ignored_character(char chr)
75 "%s:%d:warning: ignoring unsupported character '%c'\n",
76 current_file->name, yylineno, chr);
105 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
106 current_pos.file = current_file;
107 current_pos.lineno = yylineno;
108 if (id && id->flags & TF_COMMAND) {
113 alloc_string(yytext, yyleng);
114 yylval.string = text;
118 /* this token includes at least one '$' */
119 yylval.string = expand_token(yytext, yyleng);
120 if (strlen(yylval.string))
124 "=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_RECURSIVE; return T_ASSIGN; }
125 ":=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_SIMPLE; return T_ASSIGN; }
126 "+=" { BEGIN(ASSIGN_VAL); yylval.flavor = VAR_APPEND; return T_ASSIGN; }
128 . warn_ignored_character(*yytext);
137 alloc_string(yytext, yyleng);
138 yylval.string = text;
141 \n { BEGIN(INITIAL); return T_EOL; }
148 "(" return T_OPEN_PAREN;
149 ")" return T_CLOSE_PAREN;
152 "!=" return T_UNEQUAL;
153 "<=" return T_LESS_EQUAL;
154 ">=" return T_GREATER_EQUAL;
156 ">" return T_GREATER;
162 \n BEGIN(INITIAL); return T_EOL;
164 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
165 if (id && id->flags & TF_PARAM) {
169 alloc_string(yytext, yyleng);
170 yylval.string = text;
174 /* this token includes at least one '$' */
175 yylval.string = expand_token(yytext, yyleng);
176 if (strlen(yylval.string))
183 . warn_ignored_character(*yytext);
190 "$".* append_expanded_string(yytext);
192 append_string(yytext, yyleng);
193 yylval.string = text;
197 append_string(yytext, yyleng);
200 append_string(yytext + 1, yyleng - 1);
201 yylval.string = text;
205 append_string(yytext + 1, yyleng - 1);
208 if (str == yytext[0]) {
210 yylval.string = text;
213 append_string(yytext, 1);
217 "%s:%d:warning: multi-line strings not supported\n",
218 zconf_curname(), zconf_lineno());
224 yylval.string = text;
232 for (i = 0; i < yyleng; i++) {
233 if (yytext[i] == '\t')
246 append_string(" ", 8);
249 append_string(" ", ts);
257 append_string("\n", 1);
261 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
265 append_string(yytext, yyleng);
285 static char *expand_token(const char *in, size_t n)
290 const char *rest, *end;
293 append_string(in, n);
295 /* get the whole line because we do not know the end of token. */
296 while ((c = input()) != EOF) {
302 append_string(&c2, 1);
306 out = expand_one_token(&rest);
308 /* push back unused characters to the input stream */
309 end = rest + strlen(rest);
318 static void append_expanded_string(const char *str)
325 res = expand_dollar(&str);
327 /* push back unused characters to the input stream */
328 end = str + strlen(str);
332 append_string(res, strlen(res));
337 void zconf_starthelp(void)
340 last_ts = first_ts = 0;
344 static void zconf_endhelp(void)
346 yylval.string = text;
352 * Try to open specified file with following names:
355 * The latter is used when srctree is separate from objtree
356 * when compiling the kernel.
357 * Return NULL if file is not found.
359 FILE *zconf_fopen(const char *name)
361 char *env, fullname[PATH_MAX+1];
364 f = fopen(name, "r");
365 if (!f && name != NULL && name[0] != '/') {
366 env = getenv(SRCTREE);
368 sprintf(fullname, "%s/%s", env, name);
369 f = fopen(fullname, "r");
375 void zconf_initscan(const char *name)
377 yyin = zconf_fopen(name);
379 fprintf(stderr, "can't find file %s\n", name);
383 current_buf = xmalloc(sizeof(*current_buf));
384 memset(current_buf, 0, sizeof(*current_buf));
386 current_file = file_lookup(name);
390 void zconf_nextfile(const char *name)
393 struct file *file = file_lookup(name);
394 struct buffer *buf = xmalloc(sizeof(*buf));
395 memset(buf, 0, sizeof(*buf));
397 current_buf->state = YY_CURRENT_BUFFER;
398 yyin = zconf_fopen(file->name);
400 fprintf(stderr, "%s:%d: can't open file \"%s\"\n",
401 zconf_curname(), zconf_lineno(), file->name);
404 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
405 buf->parent = current_buf;
408 current_file->lineno = yylineno;
409 file->parent = current_file;
411 for (iter = current_file; iter; iter = iter->parent) {
412 if (!strcmp(iter->name, file->name)) {
414 "Recursive inclusion detected.\n"
416 " current file : %s\n", file->name);
420 fprintf(stderr, " included from: %s:%d\n",
421 iter->name, iter->lineno - 1);
422 } while (strcmp(iter->name, file->name));
431 static void zconf_endfile(void)
433 struct buffer *parent;
435 current_file = current_file->parent;
437 yylineno = current_file->lineno;
439 parent = current_buf->parent;
442 yy_delete_buffer(YY_CURRENT_BUFFER);
443 yy_switch_to_buffer(parent->state);
446 current_buf = parent;
449 int zconf_lineno(void)
451 return current_pos.lineno;
454 const char *zconf_curname(void)
456 return current_pos.file ? current_pos.file->name : "<none>";