]> git.sur5r.net Git - i3/i3/blob - src/cfgparse.y
8d980ced84303d1b8caffd8a9dcf278c96b12276
[i3/i3] / src / cfgparse.y
1 %{
2 /*
3  * vim:ts=8:expandtab
4  *
5  */
6 #include <stdio.h>
7 #include <string.h>
8 #include <xcb/xcb.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <unistd.h>
12 #include <fcntl.h>
13 #include <stdlib.h>
14 #include <errno.h>
15
16 #include "data.h"
17 #include "config.h"
18 #include "i3.h"
19 #include "util.h"
20 #include "queue.h"
21 #include "table.h"
22 #include "workspace.h"
23 #include "xcb.h"
24
25
26 typedef struct yy_buffer_state *YY_BUFFER_STATE;
27 extern int yylex(void);
28 extern int yyparse(void);
29 extern FILE *yyin;
30 YY_BUFFER_STATE yy_scan_string(const char *);
31
32 static struct bindings_head *current_bindings;
33
34 int yydebug = 1;
35
36 void yyerror(const char *str) {
37         fprintf(stderr,"error: %s\n",str);
38 }
39
40 int yywrap() {
41         return 1;
42 }
43
44 void parse_file(const char *f) {
45         SLIST_HEAD(variables_head, Variable) variables = SLIST_HEAD_INITIALIZER(&variables);
46         int fd, ret, read_bytes = 0;
47         struct stat stbuf;
48         char *buf;
49         FILE *fstr;
50         char buffer[1026], key[512], value[512];
51
52         if ((fd = open(f, O_RDONLY)) == -1)
53                 die("Could not open configuration file: %s\n", strerror(errno));
54
55         if (fstat(fd, &stbuf) == -1)
56                 die("Could not fstat file: %s\n", strerror(errno));
57
58         buf = smalloc(stbuf.st_size * sizeof(char));
59         while (read_bytes < stbuf.st_size) {
60                 if ((ret = read(fd, buf + read_bytes, (stbuf.st_size - read_bytes))) < 0)
61                         die("Could not read(): %s\n", strerror(errno));
62                 read_bytes += ret;
63         }
64
65         if (lseek(fd, 0, SEEK_SET) == (off_t)-1)
66                 die("Could not lseek: %s\n", strerror(errno));
67
68         if ((fstr = fdopen(fd, "r")) == NULL)
69                 die("Could not fdopen: %s\n", strerror(errno));
70
71         while (!feof(fstr)) {
72                 if (fgets(buffer, 1024, fstr) == NULL) {
73                         if (feof(fstr))
74                                 break;
75                         die("Could not read configuration file\n");
76                 }
77
78                 /* sscanf implicitly strips whitespace. Also, we skip comments and empty lines. */
79                 if (sscanf(buffer, "%s %[^\n]", key, value) < 1 ||
80                     key[0] == '#' || strlen(key) < 3)
81                         continue;
82
83                 if (strcasecmp(key, "set") == 0) {
84                         if (value[0] != '$')
85                                 die("Malformed variable assignment, name has to start with $\n");
86
87                         /* get key/value for this variable */
88                         char *v_key = value, *v_value;
89                         if ((v_value = strstr(value, " ")) == NULL)
90                                 die("Malformed variable assignment, need a value\n");
91
92                         *(v_value++) = '\0';
93
94                         struct Variable *new = scalloc(sizeof(struct Variable));
95                         new->key = sstrdup(v_key);
96                         new->value = sstrdup(v_value);
97                         SLIST_INSERT_HEAD(&variables, new, variables);
98                         LOG("Got new variable %s = %s\n", v_key, v_value);
99                         continue;
100                 }
101         }
102
103         /* For every custom variable, see how often it occurs in the file and
104          * how much extra bytes it requires when replaced. */
105         struct Variable *current, *nearest;
106         int extra_bytes = 0;
107         SLIST_FOREACH(current, &variables, variables) {
108                 int extra = (strlen(current->value) - strlen(current->key));
109                 char *next;
110                 for (next = buf;
111                      (next = strcasestr(buf + (next - buf), current->key)) != NULL;
112                      next += strlen(current->key))
113                         extra_bytes += extra;
114         }
115
116         /* Then, allocate a new buffer and copy the file over to the new one,
117          * but replace occurences of our variables */
118         char *walk = buf, *destwalk;
119         char *new = smalloc((stbuf.st_size + extra_bytes + 1) * sizeof(char));
120         destwalk = new;
121         while (walk < (buf + stbuf.st_size)) {
122                 /* Find the next variable */
123                 SLIST_FOREACH(current, &variables, variables)
124                         current->next_match = strcasestr(walk, current->key);
125                 nearest = NULL;
126                 int distance = stbuf.st_size;
127                 SLIST_FOREACH(current, &variables, variables) {
128                         if (current->next_match == NULL)
129                                 continue;
130                         if ((current->next_match - walk) < distance) {
131                                 distance = (current->next_match - walk);
132                                 nearest = current;
133                         }
134                 }
135                 if (nearest == NULL) {
136                         /* If there are no more variables, we just copy the rest */
137                         strncpy(destwalk, walk, (buf + stbuf.st_size) - walk);
138                         destwalk += (buf + stbuf.st_size) - walk;
139                         *destwalk = '\0';
140                         break;
141                 } else {
142                         /* Copy until the next variable, then copy its value */
143                         strncpy(destwalk, walk, distance);
144                         strncpy(destwalk + distance, nearest->value, strlen(nearest->value));
145                         walk += distance + strlen(nearest->key);
146                         destwalk += distance + strlen(nearest->value);
147                 }
148         }
149
150         yy_scan_string(new);
151
152         if (yyparse() != 0) {
153                 fprintf(stderr, "Could not parse configfile\n");
154                 exit(1);
155         }
156
157         free(new);
158         free(buf);
159 }
160
161 %}
162
163 %union {
164         int number;
165         char *string;
166         struct Colortriple *color;
167         struct Assignment *assignment;
168         struct Binding *binding;
169 }
170
171 %token <number>NUMBER
172 %token <string>WORD
173 %token <string>STR
174 %token <string>STR_NG
175 %token <string>HEX
176 %token TOKBIND
177 %token TOKTERMINAL
178 %token TOKCOMMENT
179 %token TOKFONT
180 %token TOKBINDSYM
181 %token MODIFIER
182 %token TOKCONTROL
183 %token TOKSHIFT
184 %token WHITESPACE
185 %token TOKFLOATING_MODIFIER
186 %token QUOTEDSTRING
187 %token TOKWORKSPACE
188 %token TOKSCREEN
189 %token TOKASSIGN
190 %token TOKSET
191 %token TOKIPCSOCKET
192 %token TOKEXEC
193 %token TOKCOLOR
194 %token TOKARROW
195 %token TOKMODE
196 %token TOKNEWCONTAINER
197 %token TOKCONTAINERMODE
198 %token TOKSTACKLIMIT
199
200 %%
201
202 lines: /* empty */
203         | lines WHITESPACE line
204         | lines line
205         ;
206
207 line:
208         bindline
209         | mode
210         | floating_modifier
211         | new_container
212         | workspace
213         | assign
214         | ipcsocket
215         | exec
216         | color
217         | terminal
218         | font
219         | comment
220         ;
221
222 comment:
223         TOKCOMMENT
224         ;
225
226 command:
227         STR
228         ;
229
230 bindline:
231         binding
232         {
233                 TAILQ_INSERT_TAIL(bindings, $<binding>1, bindings);
234         }
235         ;
236
237 binding:
238         TOKBIND WHITESPACE bind                 { $<binding>$ = $<binding>3; }
239         | TOKBINDSYM WHITESPACE bindsym         { $<binding>$ = $<binding>3; }
240         ;
241
242 bind:
243         binding_modifiers NUMBER WHITESPACE command
244         {
245                 printf("\tFound binding mod%d with key %d and command %s\n", $<number>1, $2, $<string>4);
246                 Binding *new = scalloc(sizeof(Binding));
247
248                 new->keycode = $<number>2;
249                 new->mods = $<number>1;
250                 new->command = sstrdup($<string>4);
251
252                 $<binding>$ = new;
253         }
254         ;
255
256 bindsym:
257         binding_modifiers word_or_number WHITESPACE command
258         {
259                 printf("\tFound symbolic mod%d with key %s and command %s\n", $<number>1, $<string>2, $<string>4);
260                 Binding *new = scalloc(sizeof(Binding));
261
262                 new->symbol = sstrdup($<string>2);
263                 new->mods = $<number>1;
264                 new->command = sstrdup($<string>4);
265
266                 $<binding>$ = new;
267         }
268         ;
269
270 word_or_number:
271         WORD
272         | NUMBER
273         {
274                 asprintf(&$<string>$, "%d", $1);
275         }
276         ;
277
278 mode:
279         TOKMODE WHITESPACE QUOTEDSTRING WHITESPACE '{' modelines '}'
280         {
281                 if (strcasecmp($<string>3, "default") == 0) {
282                         printf("You cannot use the name \"default\" for your mode\n");
283                         exit(1);
284                 }
285                 printf("\t now in mode %s\n", $<string>3);
286                 printf("\t current bindings = %p\n", current_bindings);
287                 Binding *binding;
288                 TAILQ_FOREACH(binding, current_bindings, bindings) {
289                         printf("got binding on mods %d, keycode %d, symbol %s, command %s\n",
290                                         binding->mods, binding->keycode, binding->symbol, binding->command);
291                 }
292
293                 struct Mode *mode = scalloc(sizeof(struct Mode));
294                 mode->name = strdup($<string>3);
295                 mode->bindings = current_bindings;
296                 current_bindings = NULL;
297                 SLIST_INSERT_HEAD(&modes, mode, modes);
298         }
299         ;
300
301
302 modelines:
303         /* empty */
304         | modelines modeline
305         ;
306
307 modeline:
308         WHITESPACE
309         | comment
310         | binding
311         {
312                 if (current_bindings == NULL) {
313                         current_bindings = scalloc(sizeof(struct bindings_head));
314                         TAILQ_INIT(current_bindings);
315                 }
316
317                 TAILQ_INSERT_TAIL(current_bindings, $<binding>1, bindings);
318         }
319         ;
320
321 floating_modifier:
322         TOKFLOATING_MODIFIER WHITESPACE binding_modifiers
323         {
324                 LOG("floating modifier = %d\n", $<number>3);
325                 config.floating_modifier = $<number>3;
326         }
327         ;
328
329 new_container:
330         TOKNEWCONTAINER WHITESPACE TOKCONTAINERMODE
331         {
332                 LOG("new containers will be in mode %d\n", $<number>3);
333                 config.container_mode = $<number>3;
334
335                 /* We also need to change the layout of the already existing
336                  * workspaces here. Workspaces may exist at this point because
337                  * of the other directives which are modifying workspaces
338                  * (setting the preferred screen or name). While the workspace
339                  * objects are already created, they have never been used.
340                  * Thus, the user very likely awaits the default container mode
341                  * to trigger in this case, regardless of where it is inside
342                  * his configuration file. */
343                 Workspace *ws;
344                 TAILQ_FOREACH(ws, workspaces, workspaces) {
345                         if (ws->table == NULL)
346                                 continue;
347                         switch_layout_mode(global_conn,
348                                            ws->table[0][0],
349                                            config.container_mode);
350                 }
351         }
352         | TOKNEWCONTAINER WHITESPACE TOKSTACKLIMIT WHITESPACE TOKSTACKLIMIT WHITESPACE NUMBER
353         {
354                 LOG("stack-limit %d with val %d\n", $<number>5, $<number>7);
355                 config.container_stack_limit = $<number>5;
356                 config.container_stack_limit_value = $<number>7;
357
358                 /* See the comment above */
359                 Workspace *ws;
360                 TAILQ_FOREACH(ws, workspaces, workspaces) {
361                         if (ws->table == NULL)
362                                 continue;
363                         Container *con = ws->table[0][0];
364                         con->stack_limit = config.container_stack_limit;
365                         con->stack_limit_value = config.container_stack_limit_value;
366                 }
367         }
368         ;
369
370 workspace:
371         TOKWORKSPACE WHITESPACE NUMBER WHITESPACE TOKSCREEN WHITESPACE screen optional_workspace_name
372         {
373                 int ws_num = $<number>3;
374                 if (ws_num < 1) {
375                         LOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
376                 } else {
377                         Workspace *ws = workspace_get(ws_num - 1);
378                         ws->preferred_screen = sstrdup($<string>7);
379                         if ($<string>8 != NULL)
380                                 workspace_set_name(ws, $<string>8);
381                 }
382         }
383         | TOKWORKSPACE WHITESPACE NUMBER WHITESPACE workspace_name
384         {
385                 int ws_num = $<number>3;
386                 if (ws_num < 1) {
387                         LOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
388                 } else {
389                         if ($<string>4 != NULL)
390                                 workspace_set_name(workspace_get(ws_num - 1), $<string>4);
391                 }
392         }
393         ;
394
395 optional_workspace_name:
396         /* empty */                     { $<string>$ = NULL; }
397         | workspace_name                { $<string>$ = $<string>1; }
398         ;
399
400 workspace_name:
401         QUOTEDSTRING         { $<string>$ = $<string>1; }
402         | STR                { $<string>$ = $<string>1; }
403         ;
404
405 screen:
406         NUMBER              { asprintf(&$<string>$, "%d", $<number>1); }
407         | NUMBER 'x'        { asprintf(&$<string>$, "%d", $<number>1); }
408         | NUMBER 'x' NUMBER { asprintf(&$<string>$, "%dx%d", $<number>1, $<number>3); }
409         | 'x' NUMBER        { asprintf(&$<string>$, "x%d", $<number>2); }
410         ;
411
412 assign:
413         TOKASSIGN WHITESPACE window_class WHITESPACE optional_arrow assign_target
414         {
415                 printf("assignment of %s\n", $<string>3);
416
417                 struct Assignment *new = $<assignment>6;
418                 printf("  to %d\n", new->workspace);
419                 printf("  floating = %d\n", new->floating);
420                 new->windowclass_title = strdup($<string>3);
421                 TAILQ_INSERT_TAIL(&assignments, new, assignments);
422         }
423         ;
424
425 assign_target:
426         NUMBER
427         {
428                 struct Assignment *new = scalloc(sizeof(struct Assignment));
429                 new->workspace = $<number>1;
430                 new->floating = ASSIGN_FLOATING_NO;
431                 $<assignment>$ = new;
432         }
433         | '~'
434         {
435                 struct Assignment *new = scalloc(sizeof(struct Assignment));
436                 new->floating = ASSIGN_FLOATING_ONLY;
437                 $<assignment>$ = new;
438         }
439         | '~' NUMBER
440         {
441                 struct Assignment *new = scalloc(sizeof(struct Assignment));
442                 new->workspace = $<number>2;
443                 new->floating = ASSIGN_FLOATING;
444                 $<assignment>$ = new;
445         }
446         ;
447
448 window_class:
449         QUOTEDSTRING
450         | STR_NG
451         ;
452
453 optional_arrow:
454         /* NULL */
455         | TOKARROW WHITESPACE
456         ;
457
458 ipcsocket:
459         TOKIPCSOCKET WHITESPACE STR
460         {
461                 config.ipc_socket_path = sstrdup($<string>3);
462         }
463         ;
464
465 exec:
466         TOKEXEC WHITESPACE STR
467         {
468                 struct Autostart *new = smalloc(sizeof(struct Autostart));
469                 new->command = sstrdup($<string>3);
470                 TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
471         }
472         ;
473
474 terminal:
475         TOKTERMINAL WHITESPACE STR
476         {
477                 config.terminal = sstrdup($<string>3);
478                 printf("terminal %s\n", config.terminal);
479         }
480         ;
481
482 font:
483         TOKFONT WHITESPACE STR
484         {
485                 config.font = sstrdup($<string>3);
486                 printf("font %s\n", config.font);
487         }
488         ;
489
490
491 color:
492         TOKCOLOR WHITESPACE colorpixel WHITESPACE colorpixel WHITESPACE colorpixel
493         {
494                 struct Colortriple *dest = $<color>1;
495
496                 dest->border = $<number>3;
497                 dest->background = $<number>5;
498                 dest->text = $<number>7;
499         }
500         ;
501
502 colorpixel:
503         '#' HEX
504         {
505                 char *hex;
506                 if (asprintf(&hex, "#%s", $<string>2) == -1)
507                         die("asprintf()");
508                 $<number>$ = get_colorpixel(global_conn, hex);
509                 free(hex);
510         }
511         ;
512
513
514 binding_modifiers:
515         /* NULL */                               { $<number>$ = 0; }
516         | binding_modifier
517         | binding_modifiers '+' binding_modifier { $<number>$ = $<number>1 | $<number>3; }
518         | binding_modifiers '+'                  { $<number>$ = $<number>1; }
519         ;
520
521 binding_modifier:
522         MODIFIER        { $<number>$ = $<number>1; }
523         | TOKCONTROL    { $<number>$ = BIND_CONTROL; }
524         | TOKSHIFT      { $<number>$ = BIND_SHIFT; }
525         ;