X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fparse.y;h=de221f9f094fd6f13ce4e50c3f60566846632391;hb=5cf61ee02354c1c9f80c11f3796afc4b948055d6;hp=71cc5ba92288bd7cd2b861570c1add04083c293a;hpb=ce901a234111f0a6cf98b441c011289ce0d0bdfa;p=chaz%2Fopenbox diff --git a/openbox/parse.y b/openbox/parse.y index 71cc5ba9..de221f9f 100644 --- a/openbox/parse.y +++ b/openbox/parse.y @@ -6,13 +6,14 @@ %} -%union ParseToken { +%union ParseTokenData { float real; int integer; char *string; char *identifier; gboolean bool; char character; + GList *list; } %{ @@ -22,14 +23,15 @@ extern int yylex(); extern int yyparse(); void yyerror(char *err); -extern int yylineno; +extern int lineno; extern FILE *yyin; static char *path; -static union ParseToken t; +static ParseToken t; /* in parse.c */ -void parse_token(ParseTokenType type, union ParseToken token); +void parse_token(ParseToken *token); +void parse_assign(char *name, ParseToken *token); void parse_set_section(char *section); %} @@ -47,39 +49,76 @@ void parse_set_section(char *section); %token '\n' %token INVALID +%type list +%type listtokens + %% sections: - | sections '[' IDENTIFIER ']' { parse_set_section($3); } '\n' lines + | sections '[' IDENTIFIER ']' { parse_set_section($3); } '\n' + { ++lineno; } lines ; lines: - | lines tokens '\n' { t.character = $3; parse_token($3, t); } + | lines tokens { t.type='\n'; t.data.character='\n'; parse_token(&t); } '\n' + { ++lineno; } + | lines IDENTIFIER '=' listtoken { parse_assign($2, &t); } '\n' + { ++lineno; } ; tokens: - tokens token - | token + tokens token { parse_token(&t); } + | token { parse_token(&t); } ; token: - REAL { t.real = $1; parse_token(REAL, t); } - | INTEGER { t.integer = $1; parse_token(INTEGER, t); } - | STRING { t.string = $1; parse_token(STRING, t); } - | IDENTIFIER { t.identifier = $1; parse_token(IDENTIFIER, t); } - | BOOL { t.bool = $1; parse_token(BOOL, t); } - | '(' { t.character = $1; parse_token($1, t); } - | ')' { t.character = $1; parse_token($1, t); } - | '{' { t.character = $1; parse_token($1, t); } - | '}' { t.character = $1; parse_token($1, t); } - | '=' { t.character = $1; parse_token($1, t); } - | ',' { t.character = $1; parse_token($1, t); } + REAL { t.type = TOKEN_REAL; t.data.real = $1; } + | INTEGER { t.type = TOKEN_INTEGER; t.data.integer = $1; } + | STRING { t.type = TOKEN_STRING; t.data.string = $1; } + | IDENTIFIER { t.type = TOKEN_IDENTIFIER; t.data.identifier = $1; } + | BOOL { t.type = TOKEN_BOOL; t.data.bool = $1; } + | list { t.type = TOKEN_LIST; t.data.list = $1; } + | '{' { t.type = $1; t.data.character = $1; } + | '}' { t.type = $1; t.data.character = $1; } + | ',' { t.type = $1; t.data.character = $1; } + ; + +list: + '(' listtokens ')' { $$ = $2; } + ; + +listtokens: + listtokens listtoken { ParseToken *nt = g_new(ParseToken, 1); + nt->type = t.type; + nt->data = t.data; + $$ = g_list_append($1, nt); + } + | listtoken { ParseToken *nt = g_new(ParseToken, 1); + nt->type = t.type; + nt->data = t.data; + $$ = g_list_append(NULL, nt); + } ; +listtoken: + REAL { t.type = TOKEN_REAL; t.data.real = $1; } + | INTEGER { t.type = TOKEN_INTEGER; t.data.integer = $1; } + | STRING { t.type = TOKEN_STRING; t.data.string = $1; } + | IDENTIFIER { t.type = TOKEN_IDENTIFIER; t.data.identifier = $1; } + | BOOL { t.type = TOKEN_BOOL; t.data.bool = $1; } + | list { t.type = TOKEN_LIST; t.data.list = $1; } + | '{' { t.type = $1; t.data.character = $1; } + | '}' { t.type = $1; t.data.character = $1; } + | ',' { t.type = $1; t.data.character = $1; } + ; + + %% +int lineno; + void yyerror(char *err) { - g_message("%s:%d: %s", path, yylineno, err); + g_message("%s:%d: %s", path, lineno, err); } void parse_rc() @@ -97,7 +136,7 @@ void parse_rc() } } - yylineno = 1; + lineno = 1; yyparse();