]> git.sur5r.net Git - i3/i3/blob - src/cfgparse.l
Fix unaligned memory access on sparc (Thanks David Coppa)
[i3/i3] / src / cfgparse.l
1 %option nounput
2 %option noinput
3 %option noyy_top_state
4 %option stack
5
6 %{
7 /*
8  * vim:ts=8:expandtab
9  *
10  */
11 #include <stdio.h>
12 #include <string.h>
13 #include <stdint.h> /* Defines uint32_t, required by cfgparse.tab.h */
14 #include "cfgparse.tab.h"
15 #include <xcb/xcb.h>
16
17 #include "data.h"
18 #include "config.h"
19 #include "log.h"
20 #include "util.h"
21
22 int yycolumn = 1;
23
24 #define YY_DECL int yylex (struct context *context)
25
26 #define YY_USER_ACTION { \
27         context->first_column = yycolumn; \
28         context->last_column = yycolumn+yyleng-1; \
29         yycolumn += yyleng; \
30 }
31
32 %}
33
34 EOL     (\r?\n)
35
36 %s BIND_COND
37 %s BINDSYM_COND
38 %s BIND_AWS_COND
39 %s BINDSYM_AWS_COND
40 %s BIND_A2WS_COND
41 %s ASSIGN_COND
42 %s COLOR_COND
43 %s OUTPUT_COND
44 %s OUTPUT_AWS_COND
45 %x BUFFER_LINE
46
47 %%
48
49         {
50                 /* This is called when a new line is lexed. We only want the
51                  * first line to match to go into state BUFFER_LINE */
52                 if (context->line_number == 0) {
53                         context->line_number = 1;
54                         BEGIN(INITIAL);
55                         yy_push_state(BUFFER_LINE);
56                 }
57         }
58
59 <BUFFER_LINE>^[^\r\n]*/{EOL}? {
60         /* save whole line */
61         context->line_copy = strdup(yytext);
62
63         yyless(0);
64         yy_pop_state();
65         yy_set_bol(true);
66         yycolumn = 1;
67 }
68
69
70 <BIND_A2WS_COND>[^\n]+          { BEGIN(INITIAL); yylval.string = strdup(yytext); return STR; }
71 <OUTPUT_AWS_COND>[a-zA-Z0-9_-]+ { yylval.string = strdup(yytext); return OUTPUT; }
72 ^[ \t]*#[^\n]*                  { return TOKCOMMENT; }
73 <COLOR_COND>[0-9a-fA-F]+        { yylval.string = strdup(yytext); return HEX; }
74 [0-9]+                          { yylval.number = atoi(yytext); return NUMBER; }
75 mode                            { return TOKMODE; }
76 bind                            { BEGIN(BIND_COND); return TOKBIND; }
77 bindsym                         { BEGIN(BINDSYM_COND); return TOKBINDSYM; }
78 floating_modifier               { BEGIN(INITIAL); return TOKFLOATING_MODIFIER; }
79 workspace                       { BEGIN(INITIAL); return TOKWORKSPACE; }
80 output                          { BEGIN(OUTPUT_COND); return TOKOUTPUT; }
81 screen                          {
82                                   /* for compatibility until v3.φ */
83                                   ELOG("Assignments to screens are DEPRECATED and will not work. " \
84                                        "Please replace them with assignments to outputs.\n");
85                                   BEGIN(OUTPUT_COND);
86                                   return TOKOUTPUT;
87                                 }
88 terminal                        { BEGIN(BIND_AWS_COND); return TOKTERMINAL; }
89 font                            { BEGIN(BIND_AWS_COND); return TOKFONT; }
90 assign                          { BEGIN(ASSIGN_COND); return TOKASSIGN; }
91 set[^\n]*                       { return TOKCOMMENT; }
92 ipc-socket                      { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
93 ipc_socket                      { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
94 new_container                   { return TOKNEWCONTAINER; }
95 new_window                      { return TOKNEWWINDOW; }
96 focus_follows_mouse             { return TOKFOCUSFOLLOWSMOUSE; }
97 workspace_bar                   { return TOKWORKSPACEBAR; }
98 default                         { yylval.number = MODE_DEFAULT; return TOKCONTAINERMODE; }
99 stacking                        { yylval.number = MODE_STACK; return TOKCONTAINERMODE; }
100 tabbed                          { yylval.number = MODE_TABBED; return TOKCONTAINERMODE; }
101 stack-limit                     { return TOKSTACKLIMIT; }
102 cols                            { yylval.number = STACK_LIMIT_COLS; return TOKSTACKLIMIT; }
103 rows                            { yylval.number = STACK_LIMIT_ROWS; return TOKSTACKLIMIT; }
104 exec                            { BEGIN(BIND_AWS_COND); return TOKEXEC; }
105 client.background               { BEGIN(COLOR_COND); yylval.single_color = &config.client.background; return TOKSINGLECOLOR; }
106 client.focused                  { BEGIN(COLOR_COND); yylval.color = &config.client.focused; return TOKCOLOR; }
107 client.focused_inactive         { BEGIN(COLOR_COND); yylval.color = &config.client.focused_inactive; return TOKCOLOR; }
108 client.unfocused                { BEGIN(COLOR_COND); yylval.color = &config.client.unfocused; return TOKCOLOR; }
109 client.urgent                   { BEGIN(COLOR_COND); yylval.color = &config.client.urgent; return TOKCOLOR; }
110 bar.focused                     { BEGIN(COLOR_COND); yylval.color = &config.bar.focused; return TOKCOLOR; }
111 bar.unfocused                   { BEGIN(COLOR_COND); yylval.color = &config.bar.unfocused; return TOKCOLOR; }
112 bar.urgent                      { BEGIN(COLOR_COND); yylval.color = &config.bar.urgent; return TOKCOLOR; }
113 Mod1                            { yylval.number = BIND_MOD1; return MODIFIER; }
114 Mod2                            { yylval.number = BIND_MOD2; return MODIFIER; }
115 Mod3                            { yylval.number = BIND_MOD3; return MODIFIER; }
116 Mod4                            { yylval.number = BIND_MOD4; return MODIFIER; }
117 Mod5                            { yylval.number = BIND_MOD5; return MODIFIER; }
118 Mode_switch                     { yylval.number = BIND_MODE_SWITCH; return MODIFIER; }
119 control                         { return TOKCONTROL; }
120 ctrl                            { return TOKCONTROL; }
121 shift                           { return TOKSHIFT; }
122 →                               { return TOKARROW; }
123 {EOL}                           {
124                                   FREE(context->line_copy);
125                                   context->line_number++;
126                                   BEGIN(INITIAL);
127                                   yy_push_state(BUFFER_LINE);
128                                 }
129 <BIND_COND>[ \t]+               { BEGIN(BIND_AWS_COND); return WHITESPACE; }
130 <BINDSYM_COND>[ \t]+            { BEGIN(BINDSYM_AWS_COND); return WHITESPACE; }
131 <BIND_AWS_COND>[ \t]+           { BEGIN(BIND_A2WS_COND); return WHITESPACE; }
132 <BINDSYM_AWS_COND>[ \t]+        { BEGIN(BIND_A2WS_COND); return WHITESPACE; }
133 <OUTPUT_COND>[ \t]+             { BEGIN(OUTPUT_AWS_COND); return WHITESPACE; }
134 <OUTPUT_AWS_COND>[ \t]+         { BEGIN(BIND_A2WS_COND); return WHITESPACE; }
135 [ \t]+                          { return WHITESPACE; }
136 \"[^\"]+\"                      {
137                                   /* if ASSIGN_COND then */
138                                   BEGIN(INITIAL);
139                                   /* yylval will be the string, but without quotes */
140                                   char *copy = strdup(yytext+1);
141                                   copy[strlen(copy)-1] = '\0';
142                                   yylval.string = copy;
143                                   return QUOTEDSTRING;
144                                 }
145 <ASSIGN_COND>[^ \t]+            { BEGIN(INITIAL); yylval.string = strdup(yytext); return STR_NG; }
146 <BINDSYM_AWS_COND>[a-zA-Z0-9_]+ { yylval.string = strdup(yytext); return WORD; }
147 [a-zA-Z]+                       { yylval.string = strdup(yytext); return WORD; }
148 .                               { return (int)yytext[0]; }
149
150 <<EOF>> {
151         while (yy_start_stack_ptr > 0)
152                 yy_pop_state();
153         yyterminate();
154 }
155
156 %%