-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
578 lines (473 loc) · 14.5 KB
/
main.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
/*
* main.c
*
* Copyright (C) 2006, Octavio Alvarez Piza.
* License: GNU General Public License v2.
*
*/
/* Thanks to Natan "Whatah" Zohar for helping with tokenizer. */
#define _POSIX_C_SOURCE 2
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
#include <X11/extensions/XKBgeom.h>
#include <assert.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <limits.h>
#include <stdio.h>
#include <signal.h>
#include <stdarg.h>
#include <sys/wait.h>
#include <locale.h>
#include "superkb.h"
#include "imagelib.h"
#include "drawkblib.h"
#include "superkbrc.h"
#include "globals.h"
#include "debug.h"
#include "version.h"
#include "main-help-message.h"
#include "screeninfo.h"
#define WINH(i) (kbgeom->width_mm * scale[i])
#define WINV(i) (kbgeom->width_mm * scale[i])
superkb_p superkb;
struct sigaction action;
screeninfo_t *screens=NULL;
int screens_n=0;
Window *kbwin=NULL;
Pixmap *kbwin_backup=NULL;
GC *kbwin_gc=NULL;
config_t *config;
double *scale;
Window prev_kbwin_focus;
int prev_kbwin_revert;
Display *dpy;
drawkb_p draw1;
XkbDescPtr kbdesc;
XkbGeometryPtr kbgeom;
XColor background;
XColor foreground;
int fatal_error(const char * format, ...) {
va_list args;
va_start (args, format);
fprintf(stderr, format, args);
va_end(args);
abort();
return 0;
}
int IconQuery(KeySym keysym, unsigned int state, char buf[], int buf_n)
{
unsigned int i;
for (i = 0; i < config->key_bindings_n; i++)
{
if (keysym == XkbKeycodeToKeysym(dpy, config->key_bindings[i].keycode, 0, 0) &&
state == config->key_bindings[i].state) {
if (config->key_bindings[i].icon != NULL) {
strncpy(buf, config->key_bindings[i].icon, buf_n);
} else {
strncpy(buf, "", buf_n);
}
return EXIT_SUCCESS;
}
}
return EXIT_FAILURE;
}
int PutIcon(Drawable kbwin, int x, int y, int width, int height, const char *fn)
{
void *i;
i = NewImage(fn);
if (i == NULL) {
perror("puticon");
return EXIT_FAILURE;
}
LoadImage(i, fn);
ResizeImage(i, width, height);
DrawImage(i, kbwin, x, y);
FreeImage(i);
return EXIT_SUCCESS;
}
void kbwin_event(Display * dpy, XEvent ev)
{
int i;
if (ev.type == Expose) {
/* drawkb_draw(dpy, kbwin[i], kbwin_gc[i], DisplayWidth(dpy, 0), DisplayHeight(dpy, 0), kbdesc);*/
for (i=0; i < screens_n; i++) {
XCopyArea(dpy, kbwin_backup[i], kbwin[i], kbwin_gc[i], 0, 0, WINH(i), WINV(i), 0, 0);
}
XFlush(dpy);
} else if (ev.type == VisibilityNotify &&
ev.xvisibility.state != VisibilityUnobscured) {
for (i=0; i < screens_n; i++) {
XRaiseWindow(dpy, kbwin[i]);
}
}
}
void kbwin_map(Display * dpy)
{
/* XGetInputFocus(dpy, &prev_kbwin_focus, &prev_kbwin_revert); */
int i;
for (i=0; i < screens_n; i++) {
XSetTransientForHint(dpy, kbwin[i], DefaultRootWindow(dpy));
XMapWindow(dpy, kbwin[i]);
XRaiseWindow(dpy, kbwin[i]);
}
}
void kbwin_unmap(Display * dpy)
{
int i;
for (i=0; i < screens_n; i++) {
XUnmapWindow(dpy, kbwin[i]);
}
/* XSetInputFocus(dpy, prev_kbwin_focus, prev_kbwin_revert, CurrentTime); */
}
int kbwin_init(Display * dpy)
{
/* Initialize Window and pixmap to back it up. */
XColor background;
XColor foreground;
background.red = config->backcolor.red;
background.green = config->backcolor.green;
background.blue = config->backcolor.blue;
foreground.red = config->forecolor.red;
foreground.green = config->forecolor.green;
foreground.blue = config->forecolor.blue;
XAllocColor(dpy, XDefaultColormap(dpy, 0), &background);
XAllocColor(dpy, XDefaultColormap(dpy, 0), &foreground);
XSetWindowAttributes attr;
attr.override_redirect = True;
/* Create one windows per screen. */
screeninfo_t *xsi;
int i;
kbwin = malloc(screens_n * sizeof(Window));
if (kbwin == NULL) {
perror("superkb: kbwin_init(): kbwin = malloc() failed");
return EXIT_FAILURE;
}
kbwin_backup = malloc(screens_n * sizeof(Pixmap));
if (kbwin == NULL) {
perror("superkb: kbwin_init(): kbwin_backup = malloc() failed");
return EXIT_FAILURE;
}
scale = malloc(screens_n * sizeof(double));
if (kbwin == NULL) {
perror("superkb: kbwin_init(): scale = malloc() failed");
return EXIT_FAILURE;
}
kbwin_gc = malloc(screens_n * sizeof(GC));
if (kbwin == NULL) {
perror("superkb: kbwin_init(): kbwin_gc = malloc() failed");
return EXIT_FAILURE;
}
for (i = 0; i < screens_n; i++) {
int winv;
int winh;
/* Just as little shortcut. */
xsi = &screens[i];
debug (3, "Preparing screen #%d: %d, %d, %d, %d\n", i, xsi->x_org, xsi->y_org, xsi->width, xsi->height);
/* Get what scale should drawkb work with, according to drawable's
* width and height. */
winv = xsi->height;
winh = xsi->width;
double scalew = (float) winh / kbgeom->width_mm;
double scaleh = (float) winv / kbgeom->height_mm;
/* Work with the smallest scale. */
if (scalew < scaleh) {
scale[i] = scalew;
} else { /* scalew >= scaleh */
scale[i] = scaleh;
}
winv = kbgeom->height_mm * scale[i];
winh = kbgeom->width_mm * scale[i];
kbwin[i] = XCreateSimpleWindow(dpy, DefaultRootWindow(dpy),
(xsi->width - winh) / 2 + xsi->x_org,
(xsi->height - winv) / 2 + xsi->y_org, winh, winv,
0, 0, (background.pixel));
kbwin_gc[i] = XCreateGC(dpy, kbwin[i], 0, NULL);
XSetForeground(dpy, kbwin_gc[i], foreground.pixel);
XSetBackground(dpy, kbwin_gc[i], background.pixel);
XChangeWindowAttributes(dpy, kbwin[i], CWOverrideRedirect, &attr);
XSelectInput(dpy, kbwin[i], ExposureMask | VisibilityChangeMask);
draw1 = drawkb_create(dpy, config->drawkb_font, IconQuery, config->drawkb_painting_mode, scale[i], &debug, kbdesc, config->use_gradients);
if (draw1 == NULL) {
return EXIT_FAILURE;
}
kbwin_backup[i] = XCreatePixmap(dpy, kbwin[i], winh, winv, DefaultDepth(dpy, DefaultScreen(dpy)));
XSetForeground(dpy, kbwin_gc[i], background.pixel);
XFillRectangle(dpy, kbwin_backup[i], kbwin_gc[i], 0, 0, winh, winv);
XSetForeground(dpy, kbwin_gc[i], foreground.pixel);
XSetBackground(dpy, kbwin_gc[i], background.pixel);
drawkb_draw(draw1, kbwin_backup[i], kbwin_gc[i], winh, winv, kbdesc, PutIcon);
}
XFlush(dpy);
return EXIT_SUCCESS;
}
void __Superkb_Action(KeyCode keycode, unsigned int state)
{
unsigned int i;
char *argv[4] = { "sh", "-c", NULL, NULL };
for (i = 0; i < config->key_bindings_n; i++) {
if (config->key_bindings[i].keycode == keycode &&
config->key_bindings[i].state == state) {
switch (config->key_bindings[i].action_type) {
case AT_COMMAND:
if (fork() == 0) {
if (config->key_bindings[i].feedback_string &&
strcmp(config->key_bindings[i].feedback_string, "''") != 0) {
char *cmdline = malloc(strlen(config->feedback_handler) + strlen(config->key_bindings[i].feedback_string) + 4);
if (cmdline != NULL) {
strcpy (cmdline, config->feedback_handler);
strcat (cmdline, " ");
strcat (cmdline, config->key_bindings[i].feedback_string);
strcat (cmdline, " &");
system(cmdline);
}
free(cmdline);
}
argv[2] = config->key_bindings[i].action.command;
execvp(*argv, argv);
exit(EXIT_FAILURE);
}
break;
case AT_DOCUMENT:
if (fork() == 0) {
if (config->key_bindings[i].feedback_string &&
strcmp(config->key_bindings[i].feedback_string, "''") != 0) {
char *cmdline = malloc(strlen(config->feedback_handler) + strlen(config->key_bindings[i].feedback_string) + 4);
if (cmdline != NULL) {
strcpy (cmdline, config->feedback_handler);
strcat (cmdline, " ");
strcat (cmdline, config->key_bindings[i].feedback_string);
strcat (cmdline, " &");
system(cmdline);
free(cmdline);
}
}
char *cmdline = malloc(strlen(config->document_handler) + strlen(config->key_bindings[i].action.document) + 2);
if (cmdline != NULL) {
strcpy (cmdline, config->document_handler);
strcat (cmdline, " ");
strcat (cmdline, config->key_bindings[i].action.document);
argv[2] = cmdline;
execvp(*argv, argv);
}
exit(EXIT_FAILURE);
}
break;
case AT_FUNCTION:
if (fork() == 0) {
/* FIXME: Value should not be NULL. */
config->key_bindings[i].action.function(NULL);
exit(EXIT_SUCCESS);
}
}
}
}
}
void sighandler(int sig)
{
int chld_status;
int chld_p;
switch (sig) {
case SIGUSR1:
break;
case SIGCHLD:
chld_p = wait(&chld_status);
debug(6, "[chld] Got SIGCHLD. Process: %d. Status: %d\n", chld_p, chld_status);
break;
case SIGINT:
superkb_restore_auto_repeat(superkb);
signal(SIGINT, SIG_DFL);
kill(getpid(), SIGINT);
break;
}
}
void welcome_message() {
if (strcmp(config->welcome_cmd, "") != 0) {
char *cmdline = malloc(strlen(config->welcome_cmd)+3);
if (cmdline == NULL) {
perror("superkb: welcome_message(): malloc() failed");
return;
}
strcpy(cmdline, config->welcome_cmd);
strcat(cmdline, " &");
system(cmdline);
free(cmdline);
}
}
int main(int argc, char *argv[])
{
int cancel_after_ready = 0;
int c;
int errflg = 0;
int help = 0;
extern char *optarg;
extern int optind, optopt;
running_debug_level = 0;
while ((c = getopt(argc, argv, ":0d:hv")) != -1) {
switch(c) {
case '0':
cancel_after_ready++;
break;
case 'd':
/* FIXME: doesn't check if it is really an integer */
running_debug_level = atoi(optarg);
break;
case 'h':
/* FIXME: doesn't check if it is really an integer */
help++;
break;
case 'v':
printf("%s\n", VERSION VEXTRA);
exit(EXIT_SUCCESS);
break;
case ':':
/* -d level is optional, defaults to 1. */
if (optopt == 'd') {
running_debug_level++;
} else {
fprintf(stderr,
"superkb: option -%c requires an argument\n", optopt);
exit(EXIT_FAILURE);
}
break;
case '?':
fprintf(stderr, "superkb: unrecognized option: -%c\n", optopt);
exit(EXIT_FAILURE);
break;
}
}
if (errflg || help) {
printf(HELP_MESSAGE);
if (help)
exit(EXIT_SUCCESS);
else
exit(EXIT_FAILURE);
}
int status;
fprintf(stderr, "\nsuperkb " VERSION VEXTRA ": Welcome. This program is under development.\n\n"
"It's strongly recommended to set the following on xorg.conf:\n\n"
"| Section \"ServerFlags\"\n"
"| Option \"AllowDeactivateGrabs\" \"On\"\n"
"| Option \"AllowClosedownGrabs\" \"On\"\n"
"| EndSection\n\n"
"With these, if the program fails while drawing the keyboard, you "
" will be able\n"
"to kill it by pressing Ctrl-Alt-*, and restore Autorepeat with "
"'xset r on'.\n\n"
);
debug(1, "*** Debugging has been set to verbosity level %d.\n\n", running_debug_level);
/* Set SIGUSR1 handler. */
action.sa_handler = sighandler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
if (sigaction(SIGUSR1, &action, NULL) != 0) {
fprintf(stderr, "superkb: Error setting SIGUSR1 signal handler. "
"Quitting.\n");
return EXIT_FAILURE;
}
/* Set SIGCHLD handler. Needed to avoid zombie child processes. */
action.sa_handler = sighandler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
if (sigaction(SIGCHLD, &action, NULL) != 0) {
fprintf(stderr, "superkb: Error setting SIGCHLD signal handler. "
"Quitting.\n");
return EXIT_FAILURE;
}
/* Set SIGINT handler. Needed to restore autorepeat on Super keys. */
action.sa_handler = sighandler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
if (sigaction(SIGINT, &action, NULL) != 0) {
fprintf(stderr, "superkb: Error setting SIGINT signal handler. "
"Quitting.\n");
return EXIT_FAILURE;
}
/* Connect to display. */
dpy = XOpenDisplay(NULL);
if (dpy == NULL) {
fprintf(stderr, "superkb: Couldn't open display. Quitting.\n");
fprintf(stderr, "\nSuperkb must be run from inside the X Window System."
"\n");
return EXIT_FAILURE;
}
config = config_new(dpy);
setlocale(LC_ALL, "");
if (config == NULL) {
fprintf(stderr, "Superkb could not load configuration. Quitting.\n");
return EXIT_FAILURE;
}
if (config_load(config, dpy) == EXIT_FAILURE) {
fprintf(stderr, "\n");
fprintf(stderr, "== Make sure the .superkbrc file exists in your $HOME "
"directory. ==\n");
fprintf(stderr, "\n");
fprintf(stderr, "There is a sample configuration located at the "
"following URL:\n");
fprintf(stderr, "http://blog.alvarezp.org/files/superkbrc.sample "
"\n");
fprintf(stderr, "\n");
return EXIT_FAILURE;
}
/* Init XKB extension. */
status = XkbQueryExtension(dpy, NULL, NULL, NULL, NULL, NULL);
if (status == False) {
fprintf(stderr, "superkb: Couldn't initialize XKB extension. "
"Quitting.\n");
return EXIT_FAILURE;
}
kbdesc = XkbGetKeyboard(dpy, XkbAllComponentsMask, XkbUseCoreKbd);
if (kbdesc == NULL) {
fprintf(stderr, "superkb: Could not load keyboard information from "
"X. Quitting.\n");
fprintf(stderr, "\nIf using GNOME you might want to try adding a "
"keyboard layout and then\nremoving it, and making sure your "
"current layout is effectively selected as\ndefault.\n");
return EXIT_FAILURE;
}
status = XkbGetGeometry(dpy, kbdesc);
kbgeom = kbdesc->geom;
if (status != Success || kbgeom == NULL) {
fprintf(stderr, "superkb: Could not load keyboard geometry "
"information. Quitting.\n");
fprintf(stderr, "\nIf using GNOME you might want to try adding a "
"keyboard layout and then\nremoving it, and making sure your "
"default layout is effectively selected as\ndefault.\n");
return EXIT_FAILURE;
}
screeninfo_get_screens(dpy, &screens, &screens_n);
if (Init_Imagelib(dpy, config->drawkb_imagelib) == EXIT_FAILURE)
{
char vals[500] = "";
Imagelib_GetValues((char *) &vals, 499);
fprintf(stderr, "Failed to initialize image library: %s.\n\n"
"You might try any of the following as the value for IMAGELIB in\n"
"your $HOME/.superkbrc file: %s\n", config->drawkb_imagelib, vals);
return EXIT_FAILURE;
}
status = Init_drawkblib(config->drawkb_drawkblib);
if (status == EXIT_FAILURE) {
char vals[500] = "";
drawkblib_GetValues((char *) &vals, 499);
fprintf(stderr, "Failed to initialize drawkb library: %s.\n\n"
"You might try any of the following as the value for DRAWKBLIB in\n"
"your $HOME/.superkbrc file: %s\n", config->drawkb_drawkblib, vals);
return EXIT_FAILURE;
}
superkb = superkb_create();
superkb_kbwin_set(superkb, kbwin_init, kbwin_map, kbwin_unmap, kbwin_event);
status = superkb_init(superkb, dpy, "en", config->superkb_super1,
config->superkb_super2, config->drawkb_delay, __Superkb_Action, config->superkb_superkey_replay, config->superkb_superkey_release_cancels,
~config->squashed_states, &welcome_message);
if (status != EXIT_SUCCESS) {
return EXIT_FAILURE;
}
if (!cancel_after_ready)
superkb_start(superkb);
return EXIT_SUCCESS;
}