]> git.sur5r.net Git - i3/i3/blob - src/cfgparse.y
Implement the window_role criterion (checks WM_WINDOW_ROLE)
[i3/i3] / src / cfgparse.y
1 %{
2 /*
3  * vim:ts=4:sw=4:expandtab
4  *
5  */
6 #include <sys/types.h>
7 #include <sys/stat.h>
8 #include <sys/wait.h>
9 #include <unistd.h>
10 #include <fcntl.h>
11
12 #include "all.h"
13
14 static pid_t configerror_pid = -1;
15
16 static Match current_match;
17
18 typedef struct yy_buffer_state *YY_BUFFER_STATE;
19 extern int yylex(struct context *context);
20 extern int yyparse(void);
21 extern int yylex_destroy(void);
22 extern FILE *yyin;
23 YY_BUFFER_STATE yy_scan_string(const char *);
24
25 static struct bindings_head *current_bindings;
26 static struct context *context;
27
28 /* We don’t need yydebug for now, as we got decent error messages using
29  * yyerror(). Should you ever want to extend the parser, it might be handy
30  * to just comment it in again, so it stays here. */
31 //int yydebug = 1;
32
33 void yyerror(const char *error_message) {
34     context->has_errors = true;
35
36     ELOG("\n");
37     ELOG("CONFIG: %s\n", error_message);
38     ELOG("CONFIG: in file \"%s\", line %d:\n",
39         context->filename, context->line_number);
40     ELOG("CONFIG:   %s\n", context->line_copy);
41     char buffer[context->last_column+1];
42     buffer[context->last_column] = '\0';
43     for (int c = 1; c <= context->last_column; c++)
44         buffer[c-1] = (c >= context->first_column ? '^' : ' ');
45     ELOG("CONFIG:   %s\n", buffer);
46     ELOG("\n");
47 }
48
49 int yywrap() {
50     return 1;
51 }
52
53 /*
54  * Goes through each line of buf (separated by \n) and checks for statements /
55  * commands which only occur in i3 v4 configuration files. If it finds any, it
56  * returns version 4, otherwise it returns version 3.
57  *
58  */
59 static int detect_version(char *buf) {
60     char *walk = buf;
61     char *line = buf;
62     while (*walk != '\0') {
63         if (*walk != '\n') {
64             walk++;
65             continue;
66         }
67
68         /* check for some v4-only statements */
69         if (strncasecmp(line, "bindcode", strlen("bindcode")) == 0 ||
70             strncasecmp(line, "force_focus_wrapping", strlen("force_focus_wrapping")) == 0 ||
71             strncasecmp(line, "# i3 config file (v4)", strlen("# i3 config file (v4)")) == 0 ||
72             strncasecmp(line, "workspace_layout", strlen("workspace_layout")) == 0) {
73             printf("deciding for version 4 due to this line: %.*s\n", (int)(walk-line), line);
74             return 4;
75         }
76
77         /* if this is a bind statement, we can check the command */
78         if (strncasecmp(line, "bind", strlen("bind")) == 0) {
79             char *bind = strchr(line, ' ');
80             if (bind == NULL)
81                 goto next;
82             while ((*bind == ' ' || *bind == '\t') && *bind != '\0')
83                 bind++;
84             if (*bind == '\0')
85                 goto next;
86             if ((bind = strchr(bind, ' ')) == NULL)
87                 goto next;
88             while ((*bind == ' ' || *bind == '\t') && *bind != '\0')
89                 bind++;
90             if (*bind == '\0')
91                 goto next;
92             if (strncasecmp(bind, "layout", strlen("layout")) == 0 ||
93                 strncasecmp(bind, "floating", strlen("floating")) == 0 ||
94                 strncasecmp(bind, "workspace", strlen("workspace")) == 0 ||
95                 strncasecmp(bind, "focus left", strlen("focus left")) == 0 ||
96                 strncasecmp(bind, "focus right", strlen("focus right")) == 0 ||
97                 strncasecmp(bind, "focus up", strlen("focus up")) == 0 ||
98                 strncasecmp(bind, "focus down", strlen("focus down")) == 0 ||
99                 strncasecmp(bind, "border normal", strlen("border normal")) == 0 ||
100                 strncasecmp(bind, "border 1pixel", strlen("border 1pixel")) == 0 ||
101                 strncasecmp(bind, "border borderless", strlen("border borderless")) == 0) {
102                 printf("deciding for version 4 due to this line: %.*s\n", (int)(walk-line), line);
103                 return 4;
104             }
105         }
106
107 next:
108         /* advance to the next line */
109         walk++;
110         line = walk;
111     }
112
113     return 3;
114 }
115
116 /*
117  * Calls i3-migrate-config-to-v4 to migrate a configuration file (input
118  * buffer).
119  *
120  * Returns the converted config file or NULL if there was an error (for
121  * example the script could not be found in $PATH or the i3 executable’s
122  * directory).
123  *
124  */
125 static char *migrate_config(char *input, off_t size) {
126     int writepipe[2];
127     int readpipe[2];
128
129     if (pipe(writepipe) != 0 ||
130         pipe(readpipe) != 0) {
131         warn("migrate_config: Could not create pipes");
132         return NULL;
133     }
134
135     pid_t pid = fork();
136     if (pid == -1) {
137         warn("Could not fork()");
138         return NULL;
139     }
140
141     /* child */
142     if (pid == 0) {
143         /* close writing end of writepipe, connect reading side to stdin */
144         close(writepipe[1]);
145         dup2(writepipe[0], 0);
146
147         /* close reading end of readpipe, connect writing side to stdout */
148         close(readpipe[0]);
149         dup2(readpipe[1], 1);
150
151         static char *argv[] = {
152             NULL, /* will be replaced by the executable path */
153             NULL
154         };
155         exec_i3_utility("i3-migrate-config-to-v4", argv);
156     }
157
158     /* parent */
159
160     /* close reading end of the writepipe (connected to the script’s stdin) */
161     close(writepipe[0]);
162
163     /* write the whole config file to the pipe, the script will read everything
164      * immediately */
165     int written = 0;
166     int ret;
167     while (written < size) {
168         if ((ret = write(writepipe[1], input + written, size - written)) < 0) {
169             warn("Could not write to pipe");
170             return NULL;
171         }
172         written += ret;
173     }
174     close(writepipe[1]);
175
176     /* close writing end of the readpipe (connected to the script’s stdout) */
177     close(readpipe[1]);
178
179     /* read the script’s output */
180     int conv_size = 65535;
181     char *converted = malloc(conv_size);
182     int read_bytes = 0;
183     do {
184         if (read_bytes == conv_size) {
185             conv_size += 65535;
186             converted = realloc(converted, conv_size);
187         }
188         ret = read(readpipe[0], converted + read_bytes, conv_size - read_bytes);
189         if (ret == -1) {
190             warn("Cannot read from pipe");
191             FREE(converted);
192             return NULL;
193         }
194         read_bytes += ret;
195     } while (ret > 0);
196
197     /* get the returncode */
198     int status;
199     wait(&status);
200     if (!WIFEXITED(status)) {
201         fprintf(stderr, "Child did not terminate normally, using old config file (will lead to broken behaviour)\n");
202         return NULL;
203     }
204
205     int returncode = WEXITSTATUS(status);
206     if (returncode != 0) {
207         fprintf(stderr, "Migration process exit code was != 0\n");
208         if (returncode == 2) {
209             fprintf(stderr, "could not start the migration script\n");
210             /* TODO: script was not found. tell the user to fix his system or create a v4 config */
211         } else if (returncode == 1) {
212             fprintf(stderr, "This already was a v4 config. Please add the following line to your config file:\n");
213             fprintf(stderr, "# i3 config file (v4)\n");
214             /* TODO: nag the user with a message to include a hint for i3 in his config file */
215         }
216         return NULL;
217     }
218
219     return converted;
220 }
221
222 /*
223  * Handler which will be called when we get a SIGCHLD for the nagbar, meaning
224  * it exited (or could not be started, depending on the exit code).
225  *
226  */
227 static void nagbar_exited(EV_P_ ev_child *watcher, int revents) {
228     ev_child_stop(EV_A_ watcher);
229     if (!WIFEXITED(watcher->rstatus)) {
230         fprintf(stderr, "ERROR: i3-nagbar did not exit normally.\n");
231         return;
232     }
233
234     int exitcode = WEXITSTATUS(watcher->rstatus);
235     printf("i3-nagbar process exited with status %d\n", exitcode);
236     if (exitcode == 2) {
237         fprintf(stderr, "ERROR: i3-nagbar could not be found. Is it correctly installed on your system?\n");
238     }
239
240     configerror_pid = -1;
241 }
242
243 /* We need ev >= 4 for the following code. Since it is not *that* important (it
244  * only makes sure that there are no i3-nagbar instances left behind) we still
245  * support old systems with libev 3. */
246 #if EV_VERSION_MAJOR >= 4
247 /*
248  * Cleanup handler. Will be called when i3 exits. Kills i3-nagbar with signal
249  * SIGKILL (9) to make sure there are no left-over i3-nagbar processes.
250  *
251  */
252 static void nagbar_cleanup(EV_P_ ev_cleanup *watcher, int revent) {
253     if (configerror_pid != -1) {
254         LOG("Sending SIGKILL (9) to i3-nagbar with PID %d\n", configerror_pid);
255         kill(configerror_pid, SIGKILL);
256     }
257 }
258 #endif
259
260 /*
261  * Starts an i3-nagbar process which alerts the user that his configuration
262  * file contains one or more errors. Also offers two buttons: One to launch an
263  * $EDITOR on the config file and another one to launch a $PAGER on the error
264  * logfile.
265  *
266  */
267 static void start_configerror_nagbar(const char *config_path) {
268     fprintf(stderr, "Would start i3-nagscreen now\n");
269     configerror_pid = fork();
270     if (configerror_pid == -1) {
271         warn("Could not fork()");
272         return;
273     }
274
275     /* child */
276     if (configerror_pid == 0) {
277         char *editaction,
278              *pageraction;
279         if (asprintf(&editaction, TERM_EMU " -e sh -c \"${EDITOR:-vi} \"%s\" && i3-msg reload\"", config_path) == -1)
280             exit(1);
281         if (asprintf(&pageraction, TERM_EMU " -e sh -c \"${PAGER:-less} \"%s\"\"", errorfilename) == -1)
282             exit(1);
283         char *argv[] = {
284             NULL, /* will be replaced by the executable path */
285             "-m",
286             "You have an error in your i3 config file!",
287             "-b",
288             "edit config",
289             editaction,
290             (errorfilename ? "-b" : NULL),
291             "show errors",
292             pageraction,
293             NULL
294         };
295         exec_i3_utility("i3-nagbar", argv);
296     }
297
298     /* parent */
299     /* install a child watcher */
300     ev_child *child = smalloc(sizeof(ev_child));
301     ev_child_init(child, &nagbar_exited, configerror_pid, 0);
302     ev_child_start(main_loop, child);
303
304 /* We need ev >= 4 for the following code. Since it is not *that* important (it
305  * only makes sure that there are no i3-nagbar instances left behind) we still
306  * support old systems with libev 3. */
307 #if EV_VERSION_MAJOR >= 4
308     /* install a cleanup watcher (will be called when i3 exits and i3-nagbar is
309      * still running) */
310     ev_cleanup *cleanup = smalloc(sizeof(ev_cleanup));
311     ev_cleanup_init(cleanup, nagbar_cleanup);
312     ev_cleanup_start(main_loop, cleanup);
313 #endif
314 }
315
316 /*
317  * Kills the configerror i3-nagbar process, if any.
318  *
319  * Called when reloading/restarting.
320  *
321  * If wait_for_it is set (restarting), this function will waitpid(), otherwise,
322  * ev is assumed to handle it (reloading).
323  *
324  */
325 void kill_configerror_nagbar(bool wait_for_it) {
326     if (configerror_pid == -1)
327         return;
328
329     if (kill(configerror_pid, SIGTERM) == -1)
330         warn("kill(configerror_nagbar) failed");
331
332     if (!wait_for_it)
333         return;
334
335     /* When restarting, we don’t enter the ev main loop anymore and after the
336      * exec(), our old pid is no longer watched. So, ev won’t handle SIGCHLD
337      * for us and we would end up with a <defunct> process. Therefore we
338      * waitpid() here. */
339     waitpid(configerror_pid, NULL, 0);
340 }
341
342 /*
343  * Checks for duplicate key bindings (the same keycode or keysym is configured
344  * more than once). If a duplicate binding is found, a message is printed to
345  * stderr and the has_errors variable is set to true, which will start
346  * i3-nagbar.
347  *
348  */
349 static void check_for_duplicate_bindings(struct context *context) {
350     Binding *bind, *current;
351     TAILQ_FOREACH(current, bindings, bindings) {
352         TAILQ_FOREACH(bind, bindings, bindings) {
353             /* Abort when we reach the current keybinding, only check the
354              * bindings before */
355             if (bind == current)
356                 break;
357
358             /* Check if one is using keysym while the other is using bindsym.
359              * If so, skip. */
360             /* XXX: It should be checked at a later place (when translating the
361              * keysym to keycodes) if there are any duplicates */
362             if ((bind->symbol == NULL && current->symbol != NULL) ||
363                 (bind->symbol != NULL && current->symbol == NULL))
364                 continue;
365
366             /* If bind is NULL, current has to be NULL, too (see above).
367              * If the keycodes differ, it can't be a duplicate. */
368             if (bind->symbol != NULL &&
369                 strcasecmp(bind->symbol, current->symbol) != 0)
370                 continue;
371
372             /* Check if the keycodes or modifiers are different. If so, they
373              * can't be duplicate */
374             if (bind->keycode != current->keycode ||
375                 bind->mods != current->mods)
376                 continue;
377             context->has_errors = true;
378             if (current->keycode != 0) {
379                 ELOG("Duplicate keybinding in config file:\n  modmask %d with keycode %d, command \"%s\"\n",
380                      current->mods, current->keycode, current->command);
381             } else {
382                 ELOG("Duplicate keybinding in config file:\n  modmask %d with keysym %s, command \"%s\"\n",
383                      current->mods, current->symbol, current->command);
384             }
385         }
386     }
387 }
388
389 void parse_file(const char *f) {
390     SLIST_HEAD(variables_head, Variable) variables = SLIST_HEAD_INITIALIZER(&variables);
391     int fd, ret, read_bytes = 0;
392     struct stat stbuf;
393     char *buf;
394     FILE *fstr;
395     char buffer[1026], key[512], value[512];
396
397     if ((fd = open(f, O_RDONLY)) == -1)
398         die("Could not open configuration file: %s\n", strerror(errno));
399
400     if (fstat(fd, &stbuf) == -1)
401         die("Could not fstat file: %s\n", strerror(errno));
402
403     buf = scalloc((stbuf.st_size + 1) * sizeof(char));
404     while (read_bytes < stbuf.st_size) {
405         if ((ret = read(fd, buf + read_bytes, (stbuf.st_size - read_bytes))) < 0)
406             die("Could not read(): %s\n", strerror(errno));
407         read_bytes += ret;
408     }
409
410     if (lseek(fd, 0, SEEK_SET) == (off_t)-1)
411         die("Could not lseek: %s\n", strerror(errno));
412
413     if ((fstr = fdopen(fd, "r")) == NULL)
414         die("Could not fdopen: %s\n", strerror(errno));
415
416     while (!feof(fstr)) {
417         if (fgets(buffer, 1024, fstr) == NULL) {
418             if (feof(fstr))
419                 break;
420             die("Could not read configuration file\n");
421         }
422
423         /* sscanf implicitly strips whitespace. Also, we skip comments and empty lines. */
424         if (sscanf(buffer, "%s %[^\n]", key, value) < 1 ||
425             key[0] == '#' || strlen(key) < 3)
426             continue;
427
428         if (strcasecmp(key, "set") == 0) {
429             if (value[0] != '$') {
430                 ELOG("Malformed variable assignment, name has to start with $\n");
431                 continue;
432             }
433
434             /* get key/value for this variable */
435             char *v_key = value, *v_value;
436             if ((v_value = strstr(value, " ")) == NULL &&
437                 (v_value = strstr(value, "\t")) == NULL) {
438                 ELOG("Malformed variable assignment, need a value\n");
439                 continue;
440             }
441
442             *(v_value++) = '\0';
443
444             struct Variable *new = scalloc(sizeof(struct Variable));
445             new->key = sstrdup(v_key);
446             new->value = sstrdup(v_value);
447             SLIST_INSERT_HEAD(&variables, new, variables);
448             DLOG("Got new variable %s = %s\n", v_key, v_value);
449             continue;
450         }
451     }
452     fclose(fstr);
453
454     /* For every custom variable, see how often it occurs in the file and
455      * how much extra bytes it requires when replaced. */
456     struct Variable *current, *nearest;
457     int extra_bytes = 0;
458     /* We need to copy the buffer because we need to invalidate the
459      * variables (otherwise we will count them twice, which is bad when
460      * 'extra' is negative) */
461     char *bufcopy = sstrdup(buf);
462     SLIST_FOREACH(current, &variables, variables) {
463         int extra = (strlen(current->value) - strlen(current->key));
464         char *next;
465         for (next = bufcopy;
466              (next = strcasestr(bufcopy + (next - bufcopy), current->key)) != NULL;
467              next += strlen(current->key)) {
468             *next = '_';
469             extra_bytes += extra;
470         }
471     }
472     FREE(bufcopy);
473
474     /* Then, allocate a new buffer and copy the file over to the new one,
475      * but replace occurences of our variables */
476     char *walk = buf, *destwalk;
477     char *new = smalloc((stbuf.st_size + extra_bytes + 1) * sizeof(char));
478     destwalk = new;
479     while (walk < (buf + stbuf.st_size)) {
480         /* Find the next variable */
481         SLIST_FOREACH(current, &variables, variables)
482             current->next_match = strcasestr(walk, current->key);
483         nearest = NULL;
484         int distance = stbuf.st_size;
485         SLIST_FOREACH(current, &variables, variables) {
486             if (current->next_match == NULL)
487                 continue;
488             if ((current->next_match - walk) < distance) {
489                 distance = (current->next_match - walk);
490                 nearest = current;
491             }
492         }
493         if (nearest == NULL) {
494             /* If there are no more variables, we just copy the rest */
495             strncpy(destwalk, walk, (buf + stbuf.st_size) - walk);
496             destwalk += (buf + stbuf.st_size) - walk;
497             *destwalk = '\0';
498             break;
499         } else {
500             /* Copy until the next variable, then copy its value */
501             strncpy(destwalk, walk, distance);
502             strncpy(destwalk + distance, nearest->value, strlen(nearest->value));
503             walk += distance + strlen(nearest->key);
504             destwalk += distance + strlen(nearest->value);
505         }
506     }
507
508     /* analyze the string to find out whether this is an old config file (3.x)
509      * or a new config file (4.x). If it’s old, we run the converter script. */
510     int version = detect_version(buf);
511     if (version == 3) {
512         /* We need to convert this v3 configuration */
513         char *converted = migrate_config(new, stbuf.st_size);
514         if (converted != NULL) {
515             printf("\n");
516             printf("****************************************************************\n");
517             printf("NOTE: Automatically converted configuration file from v3 to v4.\n");
518             printf("\n");
519             printf("Please convert your config file to v4. You can use this command:\n");
520             printf("    mv %s %s.O\n", f, f);
521             printf("    i3-migrate-config-to-v4 %s.O > %s\n", f, f);
522             printf("****************************************************************\n");
523             printf("\n");
524             free(new);
525             new = converted;
526         } else {
527             printf("\n");
528             printf("**********************************************************************\n");
529             printf("ERROR: Could not convert config file. Maybe i3-migrate-config-to-v4\n");
530             printf("was not correctly installed on your system?\n");
531             printf("**********************************************************************\n");
532             printf("\n");
533         }
534     }
535
536     /* now lex/parse it */
537     yy_scan_string(new);
538
539     context = scalloc(sizeof(struct context));
540     context->filename = f;
541
542     if (yyparse() != 0) {
543         fprintf(stderr, "Could not parse configfile\n");
544         exit(1);
545     }
546
547     check_for_duplicate_bindings(context);
548
549     if (context->has_errors) {
550         start_configerror_nagbar(f);
551     }
552
553     yylex_destroy();
554     FREE(context->line_copy);
555     free(context);
556     free(new);
557     free(buf);
558
559     while (!SLIST_EMPTY(&variables)) {
560         current = SLIST_FIRST(&variables);
561         FREE(current->key);
562         FREE(current->value);
563         SLIST_REMOVE_HEAD(&variables, variables);
564         FREE(current);
565     }
566 }
567
568 %}
569
570 %error-verbose
571 %lex-param { struct context *context }
572
573 %union {
574     int number;
575     char *string;
576     uint32_t *single_color;
577     struct Colortriple *color;
578     Match *match;
579     struct Binding *binding;
580 }
581
582 %token  <number>        NUMBER                      "<number>"
583 %token  <string>        WORD                        "<word>"
584 %token  <string>        STR                         "<string>"
585 %token  <string>        STR_NG                      "<string (non-greedy)>"
586 %token  <string>        HEX                         "<hex>"
587 %token  <string>        OUTPUT                      "<RandR output>"
588 %token                  TOKBINDCODE
589 %token                  TOKTERMINAL
590 %token                  TOKCOMMENT                  "<comment>"
591 %token                  TOKFONT                     "font"
592 %token                  TOKBINDSYM                  "bindsym"
593 %token  <number>        MODIFIER                    "<modifier>"
594 %token                  TOKCONTROL                  "control"
595 %token                  TOKSHIFT                    "shift"
596 %token                  TOKFLOATING_MODIFIER        "floating_modifier"
597 %token  <string>        QUOTEDSTRING                "<quoted string>"
598 %token                  TOKWORKSPACE                "workspace"
599 %token                  TOKOUTPUT                   "output"
600 %token                  TOKASSIGN                   "assign"
601 %token                  TOKSET
602 %token                  TOKIPCSOCKET                "ipc_socket"
603 %token                  TOKRESTARTSTATE             "restart_state"
604 %token                  TOKEXEC                     "exec"
605 %token                  TOKEXEC_ALWAYS              "exec_always"
606 %token  <single_color>  TOKSINGLECOLOR
607 %token  <color>         TOKCOLOR
608 %token                  TOKARROW                    "→"
609 %token                  TOKMODE                     "mode"
610 %token                  TOK_ORIENTATION             "default_orientation"
611 %token                  TOK_HORIZ                   "horizontal"
612 %token                  TOK_VERT                    "vertical"
613 %token                  TOK_AUTO                    "auto"
614 %token                  TOK_WORKSPACE_LAYOUT        "workspace_layout"
615 %token                  TOKNEWWINDOW                "new_window"
616 %token                  TOKNEWFLOAT                 "new_float"
617 %token                  TOK_NORMAL                  "normal"
618 %token                  TOK_NONE                    "none"
619 %token                  TOK_1PIXEL                  "1pixel"
620 %token                  TOKFOCUSFOLLOWSMOUSE        "focus_follows_mouse"
621 %token                  TOK_FORCE_FOCUS_WRAPPING    "force_focus_wrapping"
622 %token                  TOKWORKSPACEBAR             "workspace_bar"
623 %token                  TOK_DEFAULT                 "default"
624 %token                  TOK_STACKING                "stacking"
625 %token                  TOK_TABBED                  "tabbed"
626 %token  <number>        TOKSTACKLIMIT               "stack-limit"
627 %token                  TOK_POPUP_DURING_FULLSCREEN "popup_during_fullscreen"
628 %token                  TOK_IGNORE                  "ignore"
629 %token                  TOK_LEAVE_FULLSCREEN        "leave_fullscreen"
630 %token                  TOK_FOR_WINDOW              "for_window"
631
632 %token              TOK_MARK            "mark"
633 %token              TOK_CLASS           "class"
634 %token              TOK_INSTANCE        "instance"
635 %token              TOK_WINDOW_ROLE     "window_role"
636 %token              TOK_ID              "id"
637 %token              TOK_CON_ID          "con_id"
638 %token              TOK_TITLE           "title"
639
640 %type   <binding>       binding
641 %type   <binding>       bindcode
642 %type   <binding>       bindsym
643 %type   <number>        binding_modifiers
644 %type   <number>        binding_modifier
645 %type   <number>        direction
646 %type   <number>        layout_mode
647 %type   <number>        border_style
648 %type   <number>        new_window
649 %type   <number>        new_float
650 %type   <number>        colorpixel
651 %type   <number>        bool
652 %type   <number>        popup_setting
653 %type   <string>        command
654 %type   <string>        word_or_number
655 %type   <string>        optional_workspace_name
656 %type   <string>        workspace_name
657 %type   <string>        window_class
658
659 %%
660
661 lines: /* empty */
662     | lines error
663     | lines line
664     ;
665
666 line:
667     bindline
668     | for_window
669     | mode
670     | floating_modifier
671     | orientation
672     | workspace_layout
673     | new_window
674     | new_float
675     | focus_follows_mouse
676     | force_focus_wrapping
677     | workspace_bar
678     | workspace
679     | assign
680     | ipcsocket
681     | restart_state
682     | exec
683     | exec_always
684     | single_color
685     | color
686     | terminal
687     | font
688     | comment
689     | popup_during_fullscreen
690     ;
691
692 comment:
693     TOKCOMMENT
694     ;
695
696 command:
697     STR
698     ;
699
700 bindline:
701     binding
702     {
703         TAILQ_INSERT_TAIL(bindings, $1, bindings);
704     }
705     ;
706
707 binding:
708     TOKBINDCODE bindcode         { $$ = $2; }
709     | TOKBINDSYM bindsym         { $$ = $2; }
710     ;
711
712 bindcode:
713     binding_modifiers NUMBER command
714     {
715         printf("\tFound keycode binding mod%d with key %d and command %s\n", $1, $2, $3);
716         Binding *new = scalloc(sizeof(Binding));
717
718         new->keycode = $2;
719         new->mods = $1;
720         new->command = $3;
721
722         $$ = new;
723     }
724     ;
725
726 bindsym:
727     binding_modifiers word_or_number command
728     {
729         printf("\tFound keysym binding mod%d with key %s and command %s\n", $1, $2, $3);
730         Binding *new = scalloc(sizeof(Binding));
731
732         new->symbol = $2;
733         new->mods = $1;
734         new->command = $3;
735
736         $$ = new;
737     }
738     ;
739
740 for_window:
741     TOK_FOR_WINDOW match command
742     {
743         if (match_is_empty(&current_match)) {
744             ELOG("Match is empty, ignoring this for_window statement\n");
745             break;
746         }
747         printf("\t should execute command %s for the criteria mentioned above\n", $3);
748         Assignment *assignment = scalloc(sizeof(Assignment));
749         assignment->type = A_COMMAND;
750         assignment->match = current_match;
751         assignment->dest.command = $3;
752         TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
753     }
754     ;
755
756 match:
757     | matchstart criteria matchend
758     {
759         printf("match parsed\n");
760     }
761     ;
762
763 matchstart:
764     '['
765     {
766         printf("start\n");
767         match_init(&current_match);
768     }
769     ;
770
771 matchend:
772     ']'
773     {
774         printf("match specification finished\n");
775     }
776     ;
777
778 criteria:
779     criteria criterion
780     | criterion
781     ;
782
783 criterion:
784     TOK_CLASS '=' STR
785     {
786         printf("criteria: class = %s\n", $3);
787         current_match.class = regex_new($3);
788         free($3);
789     }
790     | TOK_INSTANCE '=' STR
791     {
792         printf("criteria: instance = %s\n", $3);
793         current_match.instance = regex_new($3);
794         free($3);
795     }
796     | TOK_WINDOW_ROLE '=' STR
797     {
798         printf("criteria: window_role = %s\n", $3);
799         current_match.role = regex_new($3);
800         free($3);
801     }
802     | TOK_CON_ID '=' STR
803     {
804         printf("criteria: id = %s\n", $3);
805         char *end;
806         long parsed = strtol($3, &end, 10);
807         if (parsed == LONG_MIN ||
808             parsed == LONG_MAX ||
809             parsed < 0 ||
810             (end && *end != '\0')) {
811             ELOG("Could not parse con id \"%s\"\n", $3);
812         } else {
813             current_match.con_id = (Con*)parsed;
814             printf("id as int = %p\n", current_match.con_id);
815         }
816     }
817     | TOK_ID '=' STR
818     {
819         printf("criteria: window id = %s\n", $3);
820         char *end;
821         long parsed = strtol($3, &end, 10);
822         if (parsed == LONG_MIN ||
823             parsed == LONG_MAX ||
824             parsed < 0 ||
825             (end && *end != '\0')) {
826             ELOG("Could not parse window id \"%s\"\n", $3);
827         } else {
828             current_match.id = parsed;
829             printf("window id as int = %d\n", current_match.id);
830         }
831     }
832     | TOK_MARK '=' STR
833     {
834         printf("criteria: mark = %s\n", $3);
835         current_match.mark = regex_new($3);
836         free($3);
837     }
838     | TOK_TITLE '=' STR
839     {
840         printf("criteria: title = %s\n", $3);
841         current_match.title = regex_new($3);
842         free($3);
843     }
844     ;
845
846
847
848 word_or_number:
849     WORD
850     | NUMBER
851     {
852         asprintf(&$$, "%d", $1);
853     }
854     ;
855
856 mode:
857     TOKMODE QUOTEDSTRING '{' modelines '}'
858     {
859         if (strcasecmp($2, "default") == 0) {
860             printf("You cannot use the name \"default\" for your mode\n");
861             exit(1);
862         }
863         printf("\t now in mode %s\n", $2);
864         printf("\t current bindings = %p\n", current_bindings);
865         Binding *binding;
866         TAILQ_FOREACH(binding, current_bindings, bindings) {
867             printf("got binding on mods %d, keycode %d, symbol %s, command %s\n",
868                             binding->mods, binding->keycode, binding->symbol, binding->command);
869         }
870
871         struct Mode *mode = scalloc(sizeof(struct Mode));
872         mode->name = $2;
873         mode->bindings = current_bindings;
874         current_bindings = NULL;
875         SLIST_INSERT_HEAD(&modes, mode, modes);
876     }
877     ;
878
879
880 modelines:
881     /* empty */
882     | modelines modeline
883     ;
884
885 modeline:
886     comment
887     | binding
888     {
889         if (current_bindings == NULL) {
890             current_bindings = scalloc(sizeof(struct bindings_head));
891             TAILQ_INIT(current_bindings);
892         }
893
894         TAILQ_INSERT_TAIL(current_bindings, $1, bindings);
895     }
896     ;
897
898 floating_modifier:
899     TOKFLOATING_MODIFIER binding_modifiers
900     {
901         DLOG("floating modifier = %d\n", $2);
902         config.floating_modifier = $2;
903     }
904     ;
905
906 orientation:
907     TOK_ORIENTATION direction
908     {
909         DLOG("New containers should start with split direction %d\n", $2);
910         config.default_orientation = $2;
911     }
912     ;
913
914 direction:
915     TOK_HORIZ       { $$ = HORIZ; }
916     | TOK_VERT      { $$ = VERT; }
917     | TOK_AUTO      { $$ = NO_ORIENTATION; }
918     ;
919
920 workspace_layout:
921     TOK_WORKSPACE_LAYOUT layout_mode
922     {
923         DLOG("new containers will be in mode %d\n", $2);
924         config.default_layout = $2;
925
926 #if 0
927         /* We also need to change the layout of the already existing
928          * workspaces here. Workspaces may exist at this point because
929          * of the other directives which are modifying workspaces
930          * (setting the preferred screen or name). While the workspace
931          * objects are already created, they have never been used.
932          * Thus, the user very likely awaits the default container mode
933          * to trigger in this case, regardless of where it is inside
934          * his configuration file. */
935         Workspace *ws;
936         TAILQ_FOREACH(ws, workspaces, workspaces) {
937                 if (ws->table == NULL)
938                         continue;
939                 switch_layout_mode(global_conn,
940                                    ws->table[0][0],
941                                    config.container_mode);
942         }
943 #endif
944     }
945     | TOK_WORKSPACE_LAYOUT TOKSTACKLIMIT TOKSTACKLIMIT NUMBER
946     {
947         DLOG("stack-limit %d with val %d\n", $3, $4);
948         config.container_stack_limit = $3;
949         config.container_stack_limit_value = $4;
950
951 #if 0
952         /* See the comment above */
953         Workspace *ws;
954         TAILQ_FOREACH(ws, workspaces, workspaces) {
955                 if (ws->table == NULL)
956                         continue;
957                 Container *con = ws->table[0][0];
958                 con->stack_limit = config.container_stack_limit;
959                 con->stack_limit_value = config.container_stack_limit_value;
960         }
961 #endif
962     }
963     ;
964
965 layout_mode:
966     TOK_DEFAULT       { $$ = L_DEFAULT; }
967     | TOK_STACKING    { $$ = L_STACKED; }
968     | TOK_TABBED      { $$ = L_TABBED; }
969     ;
970
971 new_window:
972     TOKNEWWINDOW border_style
973     {
974         DLOG("new windows should start with border style %d\n", $2);
975         config.default_border = $2;
976     }
977     ;
978
979 new_float:
980     TOKNEWFLOAT border_style
981     {
982        DLOG("new floating windows should start with border style %d\n", $2);
983        config.default_floating_border = $2;
984     }
985     ;
986
987 border_style:
988     TOK_NORMAL      { $$ = BS_NORMAL; }
989     | TOK_NONE      { $$ = BS_NONE; }
990     | TOK_1PIXEL    { $$ = BS_1PIXEL; }
991     ;
992
993 bool:
994     NUMBER
995     {
996         $$ = ($1 == 1);
997     }
998     | WORD
999     {
1000         DLOG("checking word \"%s\"\n", $1);
1001         $$ = (strcasecmp($1, "yes") == 0 ||
1002               strcasecmp($1, "true") == 0 ||
1003               strcasecmp($1, "on") == 0 ||
1004               strcasecmp($1, "enable") == 0 ||
1005               strcasecmp($1, "active") == 0);
1006     }
1007     ;
1008
1009 focus_follows_mouse:
1010     TOKFOCUSFOLLOWSMOUSE bool
1011     {
1012         DLOG("focus follows mouse = %d\n", $2);
1013         config.disable_focus_follows_mouse = !($2);
1014     }
1015     ;
1016
1017 force_focus_wrapping:
1018     TOK_FORCE_FOCUS_WRAPPING bool
1019     {
1020         DLOG("force focus wrapping = %d\n", $2);
1021         config.force_focus_wrapping = $2;
1022     }
1023     ;
1024
1025 workspace_bar:
1026     TOKWORKSPACEBAR bool
1027     {
1028         DLOG("workspace bar = %d\n", $2);
1029         config.disable_workspace_bar = !($2);
1030     }
1031     ;
1032
1033 workspace:
1034     TOKWORKSPACE NUMBER TOKOUTPUT OUTPUT optional_workspace_name
1035     {
1036         int ws_num = $2;
1037         if (ws_num < 1) {
1038             DLOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
1039         } else {
1040             char *ws_name = NULL;
1041             if ($5 == NULL) {
1042                 asprintf(&ws_name, "%d", ws_num);
1043             } else {
1044                 ws_name = $5;
1045             }
1046
1047             DLOG("Should assign workspace %s to output %s\n", ws_name, $4);
1048             /* Check for earlier assignments of the same workspace so that we
1049              * don’t have assignments of a single workspace to different
1050              * outputs */
1051             struct Workspace_Assignment *assignment;
1052             bool duplicate = false;
1053             TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
1054                 if (strcasecmp(assignment->name, ws_name) == 0) {
1055                     ELOG("You have a duplicate workspace assignment for workspace \"%s\"\n",
1056                          ws_name);
1057                     assignment->output = $4;
1058                     duplicate = true;
1059                 }
1060             }
1061             if (!duplicate) {
1062                 assignment = scalloc(sizeof(struct Workspace_Assignment));
1063                 assignment->name = ws_name;
1064                 assignment->output = $4;
1065                 TAILQ_INSERT_TAIL(&ws_assignments, assignment, ws_assignments);
1066             }
1067         }
1068     }
1069     | TOKWORKSPACE NUMBER workspace_name
1070     {
1071         int ws_num = $2;
1072         if (ws_num < 1) {
1073             DLOG("Invalid workspace assignment, workspace number %d out of range\n", ws_num);
1074         } else {
1075             DLOG("workspace name to: %s\n", $3);
1076 #if 0
1077             if ($<string>3 != NULL) {
1078                     workspace_set_name(workspace_get(ws_num - 1), $<string>3);
1079                     free($<string>3);
1080             }
1081 #endif
1082         }
1083     }
1084     ;
1085
1086 optional_workspace_name:
1087     /* empty */          { $$ = NULL; }
1088     | workspace_name     { $$ = $1; }
1089     ;
1090
1091 workspace_name:
1092     QUOTEDSTRING         { $$ = $1; }
1093     | STR                { $$ = $1; }
1094     | WORD               { $$ = $1; }
1095     ;
1096
1097 assign:
1098     TOKASSIGN window_class STR
1099     {
1100         /* This is the old, deprecated form of assignments. It’s provided for
1101          * compatibility in version (4.1, 4.2, 4.3) and will be removed
1102          * afterwards. It triggers an i3-nagbar warning starting from 4.1. */
1103         ELOG("You are using the old assign syntax (without criteria). "
1104              "Please see the User's Guide for the new syntax and fix "
1105              "your config file.\n");
1106         context->has_errors = true;
1107         printf("assignment of %s to *%s*\n", $2, $3);
1108         char *workspace = $3;
1109         char *criteria = $2;
1110
1111         Assignment *assignment = scalloc(sizeof(Assignment));
1112         Match *match = &(assignment->match);
1113         match_init(match);
1114
1115         char *separator = NULL;
1116         if ((separator = strchr(criteria, '/')) != NULL) {
1117             *(separator++) = '\0';
1118             char *pattern;
1119             if (asprintf(&pattern, "(?i)%s", separator) == -1) {
1120                 ELOG("asprintf failed\n");
1121                 break;
1122             }
1123             match->title = regex_new(pattern);
1124             free(pattern);
1125             printf("  title = %s\n", separator);
1126         }
1127         if (*criteria != '\0') {
1128             char *pattern;
1129             if (asprintf(&pattern, "(?i)%s", criteria) == -1) {
1130                 ELOG("asprintf failed\n");
1131                 break;
1132             }
1133             match->class = regex_new(pattern);
1134             free(pattern);
1135             printf("  class = %s\n", criteria);
1136         }
1137         free(criteria);
1138
1139         /* Compatibility with older versions: If the assignment target starts
1140          * with ~, we create the equivalent of:
1141          *
1142          * for_window [class="foo"] floating enable
1143          */
1144         if (*workspace == '~') {
1145             workspace++;
1146             if (*workspace == '\0') {
1147                 /* This assignment was *only* for floating */
1148                 assignment->type = A_COMMAND;
1149                 assignment->dest.command = sstrdup("floating enable");
1150                 TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
1151                 break;
1152             } else {
1153                 /* Create a new assignment and continue afterwards */
1154                 Assignment *floating = scalloc(sizeof(Assignment));
1155                 match_copy(&(floating->match), match);
1156                 floating->type = A_COMMAND;
1157                 floating->dest.command = sstrdup("floating enable");
1158                 TAILQ_INSERT_TAIL(&assignments, floating, assignments);
1159             }
1160         }
1161
1162         assignment->type = A_TO_WORKSPACE;
1163         assignment->dest.workspace = workspace;
1164         TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
1165     }
1166     | TOKASSIGN match STR
1167     {
1168         if (match_is_empty(&current_match)) {
1169             ELOG("Match is empty, ignoring this assignment\n");
1170             break;
1171         }
1172         printf("new assignment, using above criteria, to workspace %s\n", $3);
1173         Assignment *assignment = scalloc(sizeof(Assignment));
1174         assignment->match = current_match;
1175         assignment->type = A_TO_WORKSPACE;
1176         assignment->dest.workspace = $3;
1177         TAILQ_INSERT_TAIL(&assignments, assignment, assignments);
1178     }
1179     ;
1180
1181 window_class:
1182     QUOTEDSTRING
1183     | STR_NG
1184     ;
1185
1186 ipcsocket:
1187     TOKIPCSOCKET STR
1188     {
1189         config.ipc_socket_path = $2;
1190     }
1191     ;
1192
1193 restart_state:
1194     TOKRESTARTSTATE STR
1195     {
1196         config.restart_state_path = $2;
1197     }
1198     ;
1199
1200 exec:
1201     TOKEXEC STR
1202     {
1203         struct Autostart *new = smalloc(sizeof(struct Autostart));
1204         new->command = $2;
1205         TAILQ_INSERT_TAIL(&autostarts, new, autostarts);
1206     }
1207     ;
1208
1209 exec_always:
1210     TOKEXEC_ALWAYS STR
1211     {
1212         struct Autostart *new = smalloc(sizeof(struct Autostart));
1213         new->command = $2;
1214         TAILQ_INSERT_TAIL(&autostarts_always, new, autostarts_always);
1215     }
1216     ;
1217
1218 terminal:
1219     TOKTERMINAL STR
1220     {
1221         ELOG("The terminal option is DEPRECATED and has no effect. "
1222             "Please remove it from your configuration file.\n");
1223     }
1224     ;
1225
1226 font:
1227     TOKFONT STR
1228     {
1229         config.font = load_font($2, true);
1230         printf("font %s\n", $2);
1231         free($2);
1232     }
1233     ;
1234
1235 single_color:
1236     TOKSINGLECOLOR colorpixel
1237     {
1238         uint32_t *dest = $1;
1239         *dest = $2;
1240     }
1241     ;
1242
1243 color:
1244     TOKCOLOR colorpixel colorpixel colorpixel
1245     {
1246         struct Colortriple *dest = $1;
1247
1248         dest->border = $2;
1249         dest->background = $3;
1250         dest->text = $4;
1251     }
1252     ;
1253
1254 colorpixel:
1255     '#' HEX
1256     {
1257         char *hex;
1258         if (asprintf(&hex, "#%s", $2) == -1)
1259             die("asprintf()");
1260         free($2);
1261         $$ = get_colorpixel(hex);
1262         free(hex);
1263     }
1264     ;
1265
1266
1267 binding_modifiers:
1268     /* NULL */                               { $$ = 0; }
1269     | binding_modifier
1270     | binding_modifiers '+' binding_modifier { $$ = $1 | $3; }
1271     | binding_modifiers '+'                  { $$ = $1; }
1272     ;
1273
1274 binding_modifier:
1275     MODIFIER        { $$ = $1; }
1276     | TOKCONTROL    { $$ = BIND_CONTROL; }
1277     | TOKSHIFT      { $$ = BIND_SHIFT; }
1278     ;
1279
1280 popup_during_fullscreen:
1281     TOK_POPUP_DURING_FULLSCREEN popup_setting
1282     {
1283         DLOG("popup_during_fullscreen setting: %d\n", $2);
1284         config.popup_during_fullscreen = $2;
1285     }
1286     ;
1287
1288 popup_setting:
1289     TOK_IGNORE              { $$ = PDF_IGNORE; }
1290     | TOK_LEAVE_FULLSCREEN  { $$ = PDF_LEAVE_FULLSCREEN; }
1291     ;