2009-09-13 14:16:39 +02:00
|
|
|
%{
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
#include "data.h"
|
2009-09-13 18:40:35 +02:00
|
|
|
#include "config.h"
|
2009-09-13 14:16:39 +02:00
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
extern int yylex(void);
|
|
|
|
extern FILE *yyin;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
int yydebug = 1;
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
void yyerror(const char *str) {
|
2009-09-13 14:16:39 +02:00
|
|
|
fprintf(stderr,"error: %s\n",str);
|
|
|
|
}
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
int yywrap() {
|
2009-09-13 14:16:39 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
void parse_file(const char *f) {
|
2009-09-13 18:40:35 +02:00
|
|
|
printf("opening %s\n", f);
|
2009-09-13 14:54:27 +02:00
|
|
|
if ((yyin = fopen(f, "r")) == NULL) {
|
2009-09-13 18:40:35 +02:00
|
|
|
perror("fopen");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (yyparse() != 0) {
|
|
|
|
fprintf(stderr, "Could not parse configfile\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fclose(yyin);
|
2009-09-13 14:54:27 +02:00
|
|
|
}
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
#if 0
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
yyparse();
|
2009-09-13 18:40:35 +02:00
|
|
|
printf("parsing done\n");
|
2009-09-13 14:16:39 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
|
|
|
%union {
|
2009-09-13 18:40:35 +02:00
|
|
|
int number;
|
|
|
|
char *string;
|
|
|
|
struct Colortriple *color;
|
2009-09-13 14:16:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
%token <number>NUMBER
|
|
|
|
%token <string>WORD
|
2009-09-13 14:54:27 +02:00
|
|
|
%token <string>STR
|
|
|
|
%token <string>STR_NG
|
2009-09-13 14:16:39 +02:00
|
|
|
%token <string>VARNAME
|
|
|
|
%token <string>HEX
|
|
|
|
%token TOKBIND
|
2009-09-13 14:54:27 +02:00
|
|
|
%token TOKTERMINAL
|
|
|
|
%token TOKCOMMENT
|
|
|
|
%token TOKFONT
|
2009-09-13 14:16:39 +02:00
|
|
|
%token TOKBINDSYM
|
|
|
|
%token MODIFIER
|
|
|
|
%token TOKCONTROL
|
|
|
|
%token TOKSHIFT
|
|
|
|
%token WHITESPACE
|
|
|
|
%token TOKFLOATING_MODIFIER
|
|
|
|
%token QUOTEDSTRING
|
|
|
|
%token TOKWORKSPACE
|
|
|
|
%token TOKSCREEN
|
|
|
|
%token TOKASSIGN
|
|
|
|
%token TOKSET
|
|
|
|
%token TOKIPCSOCKET
|
|
|
|
%token TOKEXEC
|
|
|
|
%token TOKCOLOR
|
|
|
|
%token TOKARROW
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
lines: /* empty */
|
|
|
|
| lines WHITESPACE line
|
2009-09-13 18:40:35 +02:00
|
|
|
| lines line
|
2009-09-13 14:16:39 +02:00
|
|
|
;
|
|
|
|
|
|
|
|
line:
|
|
|
|
bind
|
2009-09-13 18:40:35 +02:00
|
|
|
| bindsym
|
|
|
|
| floating_modifier
|
|
|
|
| workspace
|
|
|
|
| assign
|
|
|
|
| set
|
|
|
|
| ipcsocket
|
|
|
|
| exec
|
|
|
|
| color
|
|
|
|
| terminal
|
|
|
|
| font
|
|
|
|
| comment
|
2009-09-13 14:16:39 +02:00
|
|
|
;
|
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
comment:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKCOMMENT
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
command:
|
2009-09-13 18:40:35 +02:00
|
|
|
STR
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
bind:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKBIND WHITESPACE binding_modifiers NUMBER WHITESPACE command
|
2009-09-13 14:16:39 +02:00
|
|
|
{
|
2009-09-13 18:40:35 +02:00
|
|
|
printf("\tFound binding mod%d with key %d and command %s\n", $<number>3, $4, $<string>6);
|
2009-09-13 14:16:39 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
bindsym:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKBINDSYM WHITESPACE binding_modifiers WORD WHITESPACE command
|
2009-09-13 14:16:39 +02:00
|
|
|
{
|
2009-09-13 18:40:35 +02:00
|
|
|
printf("\tFound symbolic mod%d with key %s and command %s\n", $<number>3, $4, $<string>6);
|
2009-09-13 14:16:39 +02:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
floating_modifier:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKFLOATING_MODIFIER WHITESPACE binding_modifiers
|
|
|
|
{
|
|
|
|
printf("\tfloating modifier %d\n", $<number>3);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
workspace:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKWORKSPACE WHITESPACE NUMBER WHITESPACE TOKSCREEN WHITESPACE screen
|
|
|
|
{
|
|
|
|
printf("\t workspace %d to screen %s\n", $<number>3, $<string>7);
|
|
|
|
}
|
|
|
|
| TOKWORKSPACE WHITESPACE NUMBER WHITESPACE TOKSCREEN WHITESPACE screen WHITESPACE workspace_name
|
|
|
|
{
|
|
|
|
printf("\t quoted: %s\n", $<string>9);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
2009-09-13 18:40:35 +02:00
|
|
|
workspace_name:
|
|
|
|
QUOTEDSTRING
|
|
|
|
| STR
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
2009-09-13 18:40:35 +02:00
|
|
|
screen:
|
|
|
|
NUMBER { asprintf(&$<string>$, "%d", $<number>1); }
|
|
|
|
| NUMBER 'x' { asprintf(&$<string>$, "%d", $<number>1); }
|
|
|
|
| NUMBER 'x' NUMBER { asprintf(&$<string>$, "%dx%d", $<number>1, $<number>3); }
|
|
|
|
| 'x' NUMBER { asprintf(&$<string>$, "x%d", $<number>2); }
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
assign:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKASSIGN WHITESPACE window_class WHITESPACE optional_arrow NUMBER
|
|
|
|
{
|
|
|
|
printf("assignment of %s to %d\n", $<string>3, $<number>6);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
window_class:
|
2009-09-13 18:40:35 +02:00
|
|
|
QUOTEDSTRING
|
|
|
|
| STR_NG
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
optional_arrow:
|
2009-09-13 18:40:35 +02:00
|
|
|
/* NULL */
|
|
|
|
| TOKARROW WHITESPACE
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
set:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKSET WHITESPACE variable WHITESPACE STR
|
|
|
|
{
|
|
|
|
printf("set %s to %s\n", $<string>3, $<string>5);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
variable:
|
2009-09-13 18:40:35 +02:00
|
|
|
'$' WORD { asprintf(&$<string>$, "$%s", $<string>2); }
|
|
|
|
| '$' VARNAME { asprintf(&$<string>$, "$%s", $<string>2); }
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
ipcsocket:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKIPCSOCKET WHITESPACE STR
|
|
|
|
{
|
|
|
|
printf("ipc %s\n", $<string>3);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
exec:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKEXEC WHITESPACE STR
|
|
|
|
{
|
|
|
|
printf("exec %s\n", $<string>3);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
2009-09-13 14:54:27 +02:00
|
|
|
terminal:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKTERMINAL WHITESPACE STR
|
|
|
|
{
|
|
|
|
printf("terminal %s\n", $<string>3);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
|
|
font:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKFONT WHITESPACE STR
|
|
|
|
{
|
|
|
|
printf("font %s\n", $<string>3);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:54:27 +02:00
|
|
|
|
|
|
|
|
2009-09-13 14:16:39 +02:00
|
|
|
color:
|
2009-09-13 18:40:35 +02:00
|
|
|
TOKCOLOR WHITESPACE '#' HEX WHITESPACE '#' HEX WHITESPACE '#' HEX
|
|
|
|
{
|
|
|
|
printf("color %p, %s and %s and %s\n", $<color>1, $<string>4, $<string>7, $<string>10);
|
|
|
|
}
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
binding_modifiers:
|
2009-09-13 18:40:35 +02:00
|
|
|
/* NULL */ { $<number>$ = 0; }
|
|
|
|
| binding_modifier
|
|
|
|
| binding_modifiers '+' binding_modifier { $<number>$ = $<number>1 | $<number>3; }
|
|
|
|
| binding_modifiers '+' { $<number>$ = $<number>1; }
|
|
|
|
;
|
2009-09-13 14:16:39 +02:00
|
|
|
|
|
|
|
binding_modifier:
|
2009-09-13 18:40:35 +02:00
|
|
|
MODIFIER { $<number>$ = $<number>1; }
|
|
|
|
| TOKCONTROL { $<number>$ = BIND_CONTROL; }
|
|
|
|
| TOKSHIFT { $<number>$ = BIND_SHIFT; }
|
|
|
|
;
|