-
Notifications
You must be signed in to change notification settings - Fork 21
/
config.c
589 lines (477 loc) · 12.5 KB
/
config.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/* velox: config.c
*
* Copyright (c) 2014 Michael Forney
* Copyright (c) 2015 Jente Hidskes
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "config.h"
#include "util.h"
#include "velox.h"
#include <fcntl.h>
#include <linux/input.h>
#include <spawn.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <swc.h>
#include <wayland-server.h>
#include <xkbcommon/xkbcommon.h>
static CONFIG_GROUP(root);
struct wl_list *config_root = &root_group.group;
static uint32_t mod = SWC_MOD_LOGO;
static const char whitespace[] = " \t\n";
static bool
parse_modifier(const char *string, uint32_t *modifier)
{
if (strcmp(string, "mod") == 0)
*modifier = mod;
else if (strcmp(string, "ctrl") == 0)
*modifier = SWC_MOD_CTRL;
else if (strcmp(string, "alt") == 0)
*modifier = SWC_MOD_ALT;
else if (strcmp(string, "logo") == 0)
*modifier = SWC_MOD_LOGO;
else if (strcmp(string, "shift") == 0)
*modifier = SWC_MOD_SHIFT;
else if (strcmp(string, "any") == 0)
*modifier = SWC_MOD_ANY;
else
return false;
return true;
}
static bool
mod_set(struct config_node *node, const char *value)
{
return parse_modifier(value, &mod);
}
static bool
tap_to_click_set(struct config_node *node, const char *value)
{
return config_set_unsigned(&tap_to_click, value, 10);
}
static CONFIG_PROPERTY(mod, &mod_set);
static CONFIG_PROPERTY(tap_to_click, &tap_to_click_set);
static bool
section_match(const char *p, const char *q)
{
for (; *p == *q && *p; ++p, ++q)
;
return (*p == '.' || *p == '\0') && *q == '\0';
}
static struct config_node *
lookup(char *identifier)
{
struct config_node *group_node, *next_group_node, *node;
char *section;
for (group_node = &root_group; group_node; group_node = next_group_node) {
section = identifier;
identifier += strcspn(identifier, ".");
next_group_node = NULL;
wl_list_for_each (node, &group_node->group, link) {
if (section_match(section, node->name)) {
if (node->type == CONFIG_NODE_TYPE_GROUP) {
if (*identifier == '\0')
return NULL;
next_group_node = node;
++identifier;
} else {
return *identifier == '\0' ? node : NULL;
}
break;
}
}
}
return NULL;
}
static bool
handle_set(char *s)
{
struct config_node *node;
char *identifier, *value;
identifier = s;
s += strcspn(s, whitespace);
if (*s == '\0')
return false;
*s++ = '\0';
if (!(node = lookup(identifier)) || node->type != CONFIG_NODE_TYPE_PROPERTY) {
fprintf(stderr, "Unknown identifier '%s'\n", identifier);
return false;
}
s += strspn(s, whitespace);
value = s;
s += strcspn(s, whitespace);
*s = '\0';
node->property.set(node, value);
return true;
}
struct spawn_action {
struct config_node node;
char *command;
};
static void
spawn(struct config_node *node, const struct variant *v)
{
extern char **environ;
struct spawn_action *action = wl_container_of(node, action, node);
posix_spawn_file_actions_t file_actions;
pid_t pid;
if (posix_spawn_file_actions_init(&file_actions))
return;
if (posix_spawn_file_actions_addopen(&file_actions, 0, "/dev/null", O_RDWR, 0))
goto destroy;
if (posix_spawn_file_actions_adddup2(&file_actions, 0, 1))
goto destroy;
if (posix_spawn_file_actions_adddup2(&file_actions, 0, 2))
goto destroy;
posix_spawn(&pid, "/bin/sh", &file_actions, NULL, (char *[]){"sh", "-c", action->command, NULL}, environ);
destroy:
posix_spawn_file_actions_destroy(&file_actions);
}
static struct config_node *
spawn_action(char *command)
{
struct spawn_action *action;
if (!(action = malloc(sizeof(*action))))
goto error0;
action->node.action.run = &spawn;
if (!(action->command = strdup(command)))
goto error1;
return &action->node;
error1:
free(action);
error0:
return NULL;
}
static const struct {
const char *name;
struct config_node *(*create_action)(char *arguments);
} action_types[] = {
{ "spawn", &spawn_action }
};
static bool
handle_action(char *s)
{
char *identifier, *name, *type;
unsigned index;
struct config_node *node, *group_node;
if (!(identifier = strtok_r(s, whitespace, &s))) {
fprintf(stderr, "No action identifier specified\n");
goto error0;
}
name = strrchr(identifier, '.');
if (name) {
*name++ = '\0';
if (!(group_node = lookup(identifier))) {
fprintf(stderr, "Invalid group identifier '%s'\n", identifier);
goto error0;
}
} else {
name = identifier;
group_node = &root_group;
}
if (!(type = strtok_r(NULL, whitespace, &s))) {
fprintf(stderr, "No action type specified\n");
goto error0;
}
s += strspn(s, whitespace);
for (index = 0; index < ARRAY_LENGTH(action_types); ++index) {
if (strcmp(type, action_types[index].name) == 0) {
if (!(node = action_types[index].create_action(s))) {
fprintf(stderr, "Failed to create action '%s'\n", name);
goto error0;
}
if (!(node->name = strdup(name)))
goto error1;
node->type = CONFIG_NODE_TYPE_ACTION;
wl_list_insert(&group_node->group, &node->link);
}
}
return true;
error1:
free(node);
error0:
return false;
}
struct binding {
struct config_node *press, *release;
};
static void
key_binding(void *data, uint32_t time, uint32_t value, uint32_t state)
{
struct binding *binding = data;
if (state == WL_KEYBOARD_KEY_STATE_PRESSED && binding->press)
binding->press->action.run(binding->press, NULL);
else if (binding->release)
binding->release->action.run(binding->release, NULL);
}
static void
button_binding(void *data, uint32_t time, uint32_t value, uint32_t state)
{
struct binding *binding = data;
if (state == WL_POINTER_BUTTON_STATE_PRESSED && binding->press)
binding->press->action.run(binding->press, NULL);
else if (binding->release)
binding->release->action.run(binding->release, NULL);
}
static void (*binding_handler[])(void *, uint32_t, uint32_t, uint32_t) = {
[SWC_BINDING_KEY] = &key_binding,
[SWC_BINDING_BUTTON] = &button_binding
};
static bool
parse_key(char *s, uint32_t *value)
{
*value = xkb_keysym_from_name(s, 0);
if (*value == XKB_KEY_NoSymbol) {
fprintf(stderr, "Invalid key '%s'\n", s);
return false;
}
return true;
}
static bool
parse_button(char *s, uint32_t *value)
{
if (strcmp(s, "left") == 0)
*value = BTN_LEFT;
else if (strcmp(s, "right") == 0)
*value = BTN_RIGHT;
else if (strcmp(s, "middle") == 0)
*value = BTN_MIDDLE;
else if (strcmp(s, "side") == 0)
*value = BTN_SIDE;
else if (strcmp(s, "extra") == 0)
*value = BTN_EXTRA;
else
return false;
return true;
}
static bool (*parse_value[])(char *, uint32_t *) = {
[SWC_BINDING_KEY] = &parse_key,
[SWC_BINDING_BUTTON] = &parse_button
};
static bool
parse_action(char *s, struct config_node **node)
{
if (*s == '\0') {
*node = NULL;
return true;
}
return (*node = lookup(s)) && (*node)->type == CONFIG_NODE_TYPE_ACTION;
}
static bool
handle_binding(enum swc_binding_type type, char *s)
{
char *value_string, *mod_string, *mods_string, *actions_string, *action_identifier;
uint32_t value, mod, mods;
struct binding *binding;
if (!(binding = malloc(sizeof(*binding)))) {
fprintf(stderr, "Failed to allocate binding\n");
return false;
}
if (!(value_string = strtok_r(s, whitespace, &s))) {
fprintf(stderr, "No key specified\n");
return false;
}
if (!parse_value[type](value_string, &value))
return false;
if (!(mods_string = strtok_r(NULL, whitespace, &s))) {
fprintf(stderr, "No modifiers specified\n");
return false;
}
mods = 0;
for (mod_string = strtok_r(mods_string, ",", &mods_string); mod_string;
mod_string = strtok_r(NULL, ",", &mods_string)) {
if (!parse_modifier(mod_string, &mod)) {
fprintf(stderr, "Invalid modifier '%s'\n", mod_string);
return false;
}
mods |= mod;
}
if (!(actions_string = strtok_r(NULL, whitespace, &s))) {
fprintf(stderr, "No action specified\n");
return false;
}
action_identifier = actions_string;
actions_string += strcspn(actions_string, ":");
if (*actions_string != '\0')
*actions_string++ = '\0';
/* Lookup press action (if present) */
if (!parse_action(action_identifier, &binding->press)) {
fprintf(stderr, "Could not find action '%s'\n", action_identifier);
return false;
}
action_identifier = actions_string;
/* Lookup release action (if present) */
if (!parse_action(action_identifier, &binding->release)) {
fprintf(stderr, "Could not find action '%s'\n", action_identifier);
return false;
}
swc_add_binding(type, mods, value, binding_handler[type], binding);
return true;
}
static bool
handle_key(char *s)
{
return handle_binding(SWC_BINDING_KEY, s);
}
static bool
handle_button(char *s)
{
return handle_binding(SWC_BINDING_BUTTON, s);
}
static bool
handle_rule(char *s)
{
char *identifier, *type;
struct rule *rule;
struct config_node *action;
if (!(type = strtok_r(s, whitespace, &s))) {
fprintf(stderr, "No rule type specified\n");
goto error0;
}
s += strspn(s, whitespace);
switch (*s) {
case '"':
identifier = ++s;
if (!(s = strchr(s, '"'))) {
fprintf(stderr, "No closing quote found\n");
goto error0;
}
*s++ = '\0';
break;
case '\0':
fprintf(stderr, "No identifier specified\n");
goto error0;
default:
identifier = s;
s += strcspn(s, whitespace);
if (*s)
*s++ = '\0';
}
if (!*s) {
fprintf(stderr, "No action specified\n");
goto error0;
}
s += strspn(s, whitespace);
if (!(action = lookup(s)) || action->type != CONFIG_NODE_TYPE_ACTION) {
fprintf(stderr, "Could not find action '%s'\n", s);
goto error0;
}
if (!(rule = malloc(sizeof(*rule))))
goto error0;
if (strcmp(type, "title") == 0) {
rule->type = RULE_TYPE_WINDOW_TITLE;
} else if (strcmp(type, "app_id") == 0) {
rule->type = RULE_TYPE_APP_ID;
} else {
fprintf(stderr, "Unknown type '%s'\n", type);
goto error1;
}
if (!(rule->identifier = strdup(identifier))) {
goto error1;
}
rule->action = action;
wl_list_insert(&velox.rules, &rule->link);
return true;
error1:
free(rule);
error0:
return false;
}
static const struct {
const char *name;
bool (*handle)(char *arguments);
} commands[] = {
{ "set", &handle_set },
{ "action", &handle_action },
{ "key", &handle_key },
{ "button", &handle_button },
{ "rule", &handle_rule },
};
bool
config_set_unsigned(unsigned *value, const char *string, int base)
{
char *end;
unsigned result;
result = strtoul(string, &end, base);
if (*end != '\0')
return false;
*value = result;
return true;
}
static FILE *
open_config(void)
{
FILE *file;
char path[256];
snprintf(path, sizeof(path), "%s/.velox.conf", getenv("HOME"));
if ((file = fopen(path, "r")))
goto found;
strcpy(path, "/etc/velox.conf");
if ((file = fopen(path, "r")))
goto found;
fprintf(stderr, "Couldn't find velox.conf\n");
return NULL;
found:
fprintf(stderr, "Using config at '%s'\n", path);
return file;
}
bool
config_parse(void)
{
FILE *file;
char *line = NULL, *s, *command_name;
unsigned index;
bool handled;
size_t size;
ssize_t len;
wl_list_insert(&root_group.group, &mod_property.link);
wl_list_insert(&root_group.group, &tap_to_click_property.link);
if (!(file = open_config()))
goto error0;
while ((len = getline(&line, &size, file)) != -1) {
if (line[len - 1] == '\n')
line[len - 1] = '\0';
s = line + strspn(line, whitespace);
if (*s == '#' || *s == '\0')
continue;
command_name = s;
s += strcspn(s, whitespace);
if (!*s)
goto error1;
*s++ = '\0';
handled = false;
for (index = 0; index < ARRAY_LENGTH(commands); ++index) {
if (strcmp(commands[index].name, command_name) == 0) {
if (!commands[index].handle(s))
goto error1;
handled = true;
break;
}
}
if (!handled)
goto error1;
}
fclose(file);
return true;
error1:
fclose(file);
error0:
return false;
}