-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmew.c
More file actions
1077 lines (947 loc) · 26.3 KB
/
Copy pathmew.c
File metadata and controls
1077 lines (947 loc) · 26.3 KB
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <ctype.h>
#include <locale.h>
#include <poll.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/timerfd.h>
#include <wayland-client.h>
#include <xkbcommon/xkbcommon.h>
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
#define LENGTH(X) (sizeof (X) / sizeof (X)[0])
#include "drwl.h"
#include "bufpool.h"
#include "xdg-activation-v1-protocol.h"
#include "wlr-layer-shell-unstable-v1-protocol.h"
#define TEXTW(X) (drwl_font_getwidth(drw, (X)) + lrpad)
enum { SchemeNorm, SchemeSel, SchemeOut }; /* color schemes */
struct item {
char *text;
struct item *left, *right;
int out;
};
static struct {
struct wl_keyboard *wl_keyboard;
struct xkb_context *xkb_context;
struct xkb_keymap *xkb_keymap;
struct xkb_state *xkb_state;
struct {
int delay;
int period;
int timer;
enum wl_keyboard_key_state key_state;
xkb_keysym_t sym;
} repeat;
int ctrl, shift, alt;
} kbd;
static char text[BUFSIZ] = "";
static int bh, mw, mh;
static int inputw = 0, promptw;
static int32_t scale = 1;
static int lrpad; /* sum of left and right padding */
static size_t cursor;
static struct item *items = NULL;
static struct item *matches, *matchend;
static struct item *prev, *curr, *next, *sel;
static int running = 0;
static struct wl_display *display;
static struct wl_compositor *compositor;
static struct wl_seat *seat;
static struct wl_shm *shm;
static struct wl_data_device_manager *data_device_manager;
static struct wl_data_device *data_device;
static struct wl_data_offer *data_offer;
static struct zwlr_layer_shell_v1 *layer_shell;
static struct zwlr_layer_surface_v1 *layer_surface;
static struct xdg_activation_v1 *activation;
static struct wl_surface *surface;
static struct wl_registry *registry;
static Drwl *drw;
static BufPool pool;
static struct wl_callback *frame_callback;
/* default output supplied by compositor */
static struct wl_output *output = NULL;
#include "config.h"
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
static char *(*fstrstr)(const char *, const char *) = strstr;
static int (*submit)(const char*) = puts;
static void
noop()
{
/*
* meow :3c
*/
}
static void
die(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
fputc(' ', stderr);
perror(NULL);
} else {
fputc('\n', stderr);
}
exit(EXIT_FAILURE);
}
static void
activation_token_handle_done(void *data,
struct xdg_activation_token_v1 *activation_token, const char *token)
{
char *argv[] = {"/bin/sh", "-c", (char*)data, NULL};
xdg_activation_token_v1_destroy(activation_token);
switch (fork()) {
case -1:
die("fork:");
case 0:
setenv("XDG_ACTIVATION_TOKEN", token, 1);
execv(argv[0], argv);
die("execvp:");
}
running = 0;
}
static const struct xdg_activation_token_v1_listener activation_token_listener = {
.done = activation_token_handle_done,
};
static int
exec_cmd(const char *text)
{
struct xdg_activation_token_v1 *activation_token;
activation_token = xdg_activation_v1_get_activation_token(activation);
xdg_activation_token_v1_set_surface(activation_token, surface);
xdg_activation_token_v1_add_listener(activation_token,
&activation_token_listener, (void *)text);
xdg_activation_token_v1_commit(activation_token);
return 0;
}
static void
parse_color(uint32_t *dest, const char *src)
{
int len;
if (src[0] == '#')
src++;
len = strlen(src);
if (len != 6 && len != 8)
die("bad color: %s", src);
*dest = strtoul(src, NULL, 16);
if (len == 6)
*dest = (*dest << 8) | 0xFF;
}
static void
loadfonts(void)
{
char fontattrs[12];
drwl_font_destroy(drw->font);
snprintf(fontattrs, sizeof(fontattrs), "dpi=%d", 96 * scale);
if (!(drwl_font_create(drw, LENGTH(fonts), fonts, fontattrs)))
die("no fonts could be loaded");
lrpad = drw->font->height;
bh = drw->font->height + 2;
lines = MAX(lines, 0);
mh = (lines + 1) * bh;
promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
}
static unsigned int
textw_clamp(const char *str, unsigned int n)
{
unsigned int w = drwl_font_getwidth_clamp(drw, str, n) + lrpad;
return MIN(w, n);
}
static void
appenditem(struct item *item, struct item **list, struct item **last)
{
if (*last)
(*last)->right = item;
else
*list = item;
item->left = *last;
item->right = NULL;
*last = item;
}
static void
calcoffsets(void)
{
int i, n;
if (lines > 0)
n = lines * bh;
else
n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">"));
/* calculate which items will begin the next page and previous page */
for (i = 0, next = curr; next; next = next->right)
if ((i += (lines > 0) ? bh : textw_clamp(next->text, n)) > n)
break;
for (i = 0, prev = curr; prev && prev->left; prev = prev->left)
if ((i += (lines > 0) ? bh : textw_clamp(prev->left->text, n)) > n)
break;
}
static void
cleanup(void)
{
size_t i;
for (i = 0; items && items[i].text; ++i)
free(items[i].text);
free(items);
bufpool_cleanup(&pool);
drwl_setimage(drw, NULL);
drwl_destroy(drw);
drwl_fini();
wl_data_device_release(data_device);
zwlr_layer_shell_v1_destroy(layer_shell);
xdg_activation_v1_destroy(activation);
wl_shm_destroy(shm);
wl_compositor_destroy(compositor);
wl_registry_destroy(registry);
wl_display_disconnect(display);
}
static char *
cistrstr(const char *h, const char *n)
{
size_t i;
if (!n[0])
return (char *)h;
for (; *h; ++h) {
for (i = 0; n[i] && tolower((unsigned char)n[i]) ==
tolower((unsigned char)h[i]); ++i)
;
if (n[i] == '\0')
return (char *)h;
}
return NULL;
}
static int
drawitem(struct item *item, int x, int y, int w)
{
if (item == sel)
drwl_setscheme(drw, colors[SchemeSel]);
else if (item->out)
drwl_setscheme(drw, colors[SchemeOut]);
else
drwl_setscheme(drw, colors[SchemeNorm]);
return drwl_text(drw, x, y, w, bh, lrpad / 2, item->text, 0);
}
static void
drawmenu(void)
{
unsigned int curpos;
struct item *item;
int x = 0, y = 0, w;
char *censort;
DrwBuf *buf;
errno = 0;
if (!(buf = bufpool_getbuf(&pool, shm, mw, mh)))
die(errno ? "bufpool_getbuf:" : "no buffer available");
drwl_setimage(drw, buf->image);
drwl_setscheme(drw, colors[SchemeNorm]);
drwl_rect(drw, 0, 0, mw, mh, 1, 1);
if (prompt && *prompt) {
drwl_setscheme(drw, colors[SchemeSel]);
x = drwl_text(drw, x, 0, promptw, bh, lrpad / 2, prompt, 0);
}
/* draw input field */
w = (lines > 0 || !matches) ? mw - x : inputw;
drwl_setscheme(drw, colors[SchemeNorm]);
if (passwd) {
censort = calloc(1, sizeof(text));
memset(censort, '*', strlen(text));
drwl_text(drw, x, 0, w, bh, lrpad / 2, censort, 0);
free(censort);
} else
drwl_text(drw, x, 0, w, bh, lrpad / 2, text, 0);
curpos = TEXTW(text) - TEXTW(&text[cursor]);
if ((curpos += lrpad / 2 - 1) < w) {
drwl_setscheme(drw, colors[SchemeNorm]);
drwl_rect(drw, x + curpos, (bh - drw->font->height) / 2 + 1,
2, drw->font->height - 2, 1, 0);
}
if (lines > 0) {
/* draw vertical list */
for (item = curr; item != next; item = item->right)
drawitem(item, x, y += bh, mw - x);
} else if (matches) {
/* draw horizontal list */
x += inputw;
w = TEXTW("<");
if (curr->left) {
drwl_setscheme(drw, colors[SchemeNorm]);
drwl_text(drw, x, 0, w, bh, lrpad / 2, "<", 0);
}
x += w;
for (item = curr; item != next; item = item->right)
x = drawitem(item, x, 0, textw_clamp(item->text, mw - x - TEXTW(">")));
if (next) {
w = TEXTW(">");
drwl_setscheme(drw, colors[SchemeNorm]);
drwl_text(drw, mw - w, 0, w, bh, lrpad / 2, ">", 0);
}
}
drwl_setimage(drw, NULL);
wl_surface_set_buffer_scale(surface, scale);
wl_surface_attach(surface, buf->wl_buf, 0, 0);
wl_surface_damage_buffer(surface, 0, 0, mw, mh);
wl_surface_commit(surface);
}
static void
frame_callback_handle_done(void *data, struct wl_callback *callback,
uint32_t time)
{
wl_callback_destroy(frame_callback);
frame_callback = NULL;
drawmenu();
}
static const struct wl_callback_listener frame_callback_listener = {
.done = frame_callback_handle_done,
};
static void
redraw()
{
if (frame_callback)
return;
frame_callback = wl_surface_frame(surface);
wl_callback_add_listener(frame_callback, &frame_callback_listener, NULL);
wl_surface_commit(surface);
}
static void
match(void)
{
static char **tokv = NULL;
static int tokn = 0;
char buf[sizeof text], *s;
int i, tokc = 0;
size_t len, textsize;
struct item *item, *lprefix, *lsubstr, *prefixend, *substrend;
strcpy(buf, text);
/* separate input text into tokens to be matched individually */
for (s = strtok(buf, " "); s; tokv[tokc - 1] = s, s = strtok(NULL, " "))
if (++tokc > tokn && !(tokv = realloc(tokv, ++tokn * sizeof *tokv)))
die("cannot realloc %zu bytes:", tokn * sizeof *tokv);
len = tokc ? strlen(tokv[0]) : 0;
matches = lprefix = lsubstr = matchend = prefixend = substrend = NULL;
textsize = strlen(text) + 1;
for (item = items; item && item->text; item++) {
for (i = 0; i < tokc; i++)
if (!fstrstr(item->text, tokv[i]))
break;
if (i != tokc) /* not all tokens match */
continue;
/* exact matches go first, then prefixes, then substrings */
if (!tokc || !fstrncmp(text, item->text, textsize))
appenditem(item, &matches, &matchend);
else if (!fstrncmp(tokv[0], item->text, len))
appenditem(item, &lprefix, &prefixend);
else
appenditem(item, &lsubstr, &substrend);
}
if (lprefix) {
if (matches) {
matchend->right = lprefix;
lprefix->left = matchend;
} else
matches = lprefix;
matchend = prefixend;
}
if (lsubstr) {
if (matches) {
matchend->right = lsubstr;
lsubstr->left = matchend;
} else
matches = lsubstr;
matchend = substrend;
}
curr = sel = matches;
calcoffsets();
}
static void
insert(const char *str, ssize_t n)
{
if (strlen(text) + n > sizeof text - 1)
return;
/* move existing text out of the way, insert new text, and update cursor */
memmove(&text[cursor + n], &text[cursor], sizeof text - cursor - MAX(n, 0));
if (str)
memcpy(&text[cursor], str, n);
cursor += n;
match();
}
static size_t
nextrune(int inc)
{
ssize_t n;
/* return location of next utf8 rune in the given direction (+1 or -1) */
for (n = cursor + inc; n + inc >= 0 && (text[n] & 0xc0) == 0x80; n += inc)
;
return n;
}
static void
movewordedge(int dir)
{
if (dir < 0) { /* move cursor to the start of the word*/
while (cursor > 0 && strchr(worddelimiters, text[nextrune(-1)]))
cursor = nextrune(-1);
while (cursor > 0 && !strchr(worddelimiters, text[nextrune(-1)]))
cursor = nextrune(-1);
} else { /* move cursor to the end of the word */
while (text[cursor] && strchr(worddelimiters, text[cursor]))
cursor = nextrune(+1);
while (text[cursor] && !strchr(worddelimiters, text[cursor]))
cursor = nextrune(+1);
}
}
static void
paste(void)
{
int fds[2];
ssize_t n;
char buf[1024];
if (!data_offer)
return;
if (pipe(fds) < 0)
die("pipe");
wl_data_offer_receive(data_offer, "text/plain", fds[1]);
close(fds[1]);
wl_display_roundtrip(display);
for (;;) {
n = read(fds[0], buf, sizeof(buf));
if (n <= 0)
break;
insert(buf, n);
}
close(fds[0]);
wl_data_offer_destroy(data_offer);
data_offer = NULL;
}
static void
keyboard_keypress(enum wl_keyboard_key_state state, xkb_keysym_t sym)
{
char buf[8];
if (state != WL_KEYBOARD_KEY_STATE_PRESSED)
return;
if (kbd.ctrl) {
switch (xkb_keysym_to_lower(sym)) {
case XKB_KEY_a: sym = XKB_KEY_Home; break;
case XKB_KEY_b: sym = XKB_KEY_Left; break;
case XKB_KEY_c: sym = XKB_KEY_Escape; break;
case XKB_KEY_d: sym = XKB_KEY_Delete; break;
case XKB_KEY_e: sym = XKB_KEY_End; break;
case XKB_KEY_f: sym = XKB_KEY_BackSpace; break;
case XKB_KEY_g: sym = XKB_KEY_Escape; break;
case XKB_KEY_h: sym = XKB_KEY_BackSpace; break;
case XKB_KEY_i: sym = XKB_KEY_Tab; break;
case XKB_KEY_j: /* fallthrough */
case XKB_KEY_J: /* fallthrough */
case XKB_KEY_m: /* fallthrough */
case XKB_KEY_M: sym = XKB_KEY_Return; break;
case XKB_KEY_n: sym = XKB_KEY_Down; break;
case XKB_KEY_p: sym = XKB_KEY_Up; break;
case XKB_KEY_k: /* delete right */
text[cursor] = '\0';
match();
goto draw;
case XKB_KEY_u: /* delete left */
insert(NULL, 0 - cursor);
goto draw;
case XKB_KEY_w: /* delete word */
while (cursor > 0 && strchr(worddelimiters, text[nextrune(-1)]))
insert(NULL, nextrune(-1) - cursor);
while (cursor > 0 && !strchr(worddelimiters, text[nextrune(-1)]))
insert(NULL, nextrune(-1) - cursor);
goto draw;
case XKB_KEY_y: /* paste selection */
case XKB_KEY_Y:
paste();
goto draw;
case XKB_KEY_Left:
case XKB_KEY_KP_Left:
movewordedge(-1);
goto draw;
case XKB_KEY_Right:
case XKB_KEY_KP_Right:
movewordedge(+1);
goto draw;
case XKB_KEY_Return:
case XKB_KEY_KP_Enter:
break;
case XKB_KEY_bracketleft:
cleanup();
exit(EXIT_FAILURE);
default:
return;
}
} else if (kbd.alt) {
switch(sym) {
case XKB_KEY_b:
movewordedge(-1);
goto draw;
case XKB_KEY_f:
movewordedge(+1);
goto draw;
case XKB_KEY_g: sym = XKB_KEY_Home; break;
case XKB_KEY_G: sym = XKB_KEY_End; break;
case XKB_KEY_h: sym = XKB_KEY_Up; break;
case XKB_KEY_j: sym = XKB_KEY_Next; break;
case XKB_KEY_k: sym = XKB_KEY_Prior; break;
case XKB_KEY_l: sym = XKB_KEY_Down; break;
default:
return;
}
}
switch (sym) {
case XKB_KEY_Delete:
case XKB_KEY_KP_Delete:
if (text[cursor] == '\0')
return;
cursor = nextrune(+1);
/* fallthrough */
case XKB_KEY_BackSpace:
if (cursor == 0)
return;
insert(NULL, nextrune(-1) - cursor);
break;
case XKB_KEY_End:
case XKB_KEY_KP_End:
if (text[cursor] != '\0') {
cursor = strlen(text);
break;
}
if (next) {
/* jump to end of list and position items in reverse */
curr = matchend;
calcoffsets();
curr = prev;
calcoffsets();
while (next && (curr = curr->right))
calcoffsets();
}
sel = matchend;
break;
case XKB_KEY_Escape:
cleanup();
exit(EXIT_FAILURE);
case XKB_KEY_Home:
case XKB_KEY_KP_Home:
if (sel == matches) {
cursor = 0;
break;
}
sel = curr = matches;
calcoffsets();
break;
case XKB_KEY_Left:
case XKB_KEY_KP_Left:
if (cursor > 0 && (!sel || !sel->left || lines > 0)) {
cursor = nextrune(-1);
break;
}
if (lines > 0)
return;
/* fallthrough */
case XKB_KEY_Up:
case XKB_KEY_KP_Up:
if (sel && sel->left && (sel = sel->left)->right == curr) {
curr = prev;
calcoffsets();
}
break;
case XKB_KEY_Next:
case XKB_KEY_KP_Next:
if (!next)
return;
sel = curr = next;
calcoffsets();
break;
case XKB_KEY_Prior:
case XKB_KEY_KP_Prior:
if (!prev)
return;
sel = curr = prev;
calcoffsets();
break;
case XKB_KEY_Return:
case XKB_KEY_KP_Enter:
submit((sel && !kbd.shift) ? sel->text : text);
if (!kbd.ctrl && submit != exec_cmd) {
running = 0;
return;
}
if (sel)
sel->out = 1;
break;
case XKB_KEY_Right:
case XKB_KEY_KP_Right:
if (text[cursor] != '\0') {
cursor = nextrune(+1);
break;
}
if (lines > 0)
return;
/* fallthrough */
case XKB_KEY_Down:
case XKB_KEY_KP_Down:
if (sel && sel->right && (sel = sel->right) == next) {
curr = next;
calcoffsets();
}
break;
case XKB_KEY_Tab:
if (!sel)
return;
cursor = strnlen(sel->text, sizeof text - 1);
memcpy(text, sel->text, cursor);
text[cursor] = '\0';
match();
break;
default:
if (xkb_keysym_to_utf8(sym, buf, 8))
insert(buf, strnlen(buf, 8));
}
draw:
redraw();
}
static void
keyboard_handle_keymap(void *data, struct wl_keyboard *wl_keyboard,
uint32_t format, int32_t fd, uint32_t size)
{
char *map_shm;
if (format != WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1)
die("unknown keymap");
map_shm = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0);
if (map_shm == MAP_FAILED)
die("mmap:");
kbd.xkb_keymap = xkb_keymap_new_from_string(kbd.xkb_context, map_shm,
XKB_KEYMAP_FORMAT_TEXT_V1, XKB_KEYMAP_COMPILE_NO_FLAGS);
munmap(map_shm, size);
close(fd);
kbd.xkb_state = xkb_state_new(kbd.xkb_keymap);
}
static void
keyboard_handle_leave(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, struct wl_surface *surface)
{
/*
* In dmenu(1), if the keyboard cannot be grabbed, it will
* immediately exit. This is done before dmenu is initialized,
* but can't be the same for Wayland. If a new layer surface
* wants keyboard, it will get keyboard, set_exclusivity doesn't
* seem to work.
*/
die("lost keyboard");
}
static void
keyboard_handle_key(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, uint32_t time, uint32_t key, uint32_t _key_state)
{
struct itimerspec spec = { 0 };
enum wl_keyboard_key_state key_state = _key_state;
xkb_keysym_t sym = xkb_state_key_get_one_sym(kbd.xkb_state, key + 8);
keyboard_keypress(key_state, sym);
if (key_state == WL_KEYBOARD_KEY_STATE_PRESSED && kbd.repeat.period >= 0) {
kbd.repeat.key_state = key_state;
kbd.repeat.sym = sym;
spec.it_value.tv_sec = kbd.repeat.delay / 1000;
spec.it_value.tv_nsec = (kbd.repeat.delay % 1000) * 1000000l;
}
timerfd_settime(kbd.repeat.timer, 0, &spec, NULL);
}
static void
keyboard_handle_modifiers(void *data, struct wl_keyboard *wl_keyboard,
uint32_t serial, uint32_t mods_depressed,
uint32_t mods_latched, uint32_t mods_locked, uint32_t group)
{
xkb_state_update_mask(kbd.xkb_state,
mods_depressed, mods_latched, mods_locked, 0, 0, group);
kbd.ctrl = xkb_state_mod_name_is_active(kbd.xkb_state,
XKB_MOD_NAME_CTRL,
XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED);
kbd.shift = xkb_state_mod_name_is_active(kbd.xkb_state,
XKB_MOD_NAME_SHIFT,
XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED);
kbd.alt = xkb_state_mod_name_is_active(kbd.xkb_state,
XKB_MOD_NAME_ALT,
XKB_STATE_MODS_DEPRESSED | XKB_STATE_MODS_LATCHED);
}
static void
keyboard_repeat(void)
{
struct itimerspec spec = { 0 };
keyboard_keypress(kbd.repeat.key_state, kbd.repeat.sym);
spec.it_value.tv_sec = kbd.repeat.period / 1000;
spec.it_value.tv_nsec = (kbd.repeat.period % 1000) * 1000000l;
timerfd_settime(kbd.repeat.timer, 0, &spec, NULL);
}
static void
keyboard_handle_repeat_info(void *data, struct wl_keyboard *wl_keyboard,
int32_t rate, int32_t delay)
{
kbd.repeat.delay = delay;
kbd.repeat.period = rate >= 0 ? 1000 / rate : -1;
}
static const struct wl_keyboard_listener keyboard_listener = {
.keymap = keyboard_handle_keymap,
.enter = noop,
.leave = keyboard_handle_leave,
.key = keyboard_handle_key,
.modifiers = keyboard_handle_modifiers,
.repeat_info = keyboard_handle_repeat_info,
};
static void
layer_surface_handle_configure(void *data, struct zwlr_layer_surface_v1 *layer_surface,
uint32_t serial, uint32_t width, uint32_t height)
{
if (mw / scale == width && mh / scale == height)
return;
mw = width * scale;
mh = height * scale;
inputw = mw / 3; /* input width: ~33% of output width */
match();
zwlr_layer_surface_v1_ack_configure(layer_surface, serial);
drawmenu();
}
static void
layer_surface_handle_closed(void *data, struct zwlr_layer_surface_v1 *surface)
{
running = 0;
}
static const struct zwlr_layer_surface_v1_listener layer_surface_listener = {
.configure = layer_surface_handle_configure,
.closed = layer_surface_handle_closed,
};
static void
surface_handle_preferred_scale(void *data,
struct wl_surface *wl_surface, int32_t factor)
{
if (scale == factor)
return;
scale = factor;
loadfonts();
/* the scale of the surface is only known after an initial draw, not before :( */
zwlr_layer_surface_v1_set_size(layer_surface, 0, mh / scale);
redraw();
}
static const struct wl_surface_listener surface_listener = {
.enter = noop,
.leave = noop,
.preferred_buffer_scale = surface_handle_preferred_scale,
.preferred_buffer_transform = noop,
};
static void
data_device_handle_selection(void *data, struct wl_data_device *data_device,
struct wl_data_offer *_data_offer)
{
if (data_offer)
wl_data_offer_destroy(data_offer);
data_offer = _data_offer;
}
static const struct wl_data_device_listener data_device_listener = {
.data_offer = noop,
.selection = data_device_handle_selection,
};
static void
output_handle_name(void *data, struct wl_output *wl_output, const char *name)
{
if (output_name && !strcmp(name, output_name))
output = wl_output;
else
wl_output_destroy(wl_output);
}
static const struct wl_output_listener output_listener = {
.geometry = noop,
.mode = noop,
.done = noop,
.scale = noop,
.name = output_handle_name,
.description = noop,
};
static void
seat_handle_capabilities(void *data, struct wl_seat *wl_seat, enum wl_seat_capability caps)
{
if (!(caps & WL_SEAT_CAPABILITY_KEYBOARD))
return;
kbd.wl_keyboard = wl_seat_get_keyboard(seat);
if (!(kbd.xkb_context = xkb_context_new(XKB_CONTEXT_NO_FLAGS)))
die("xkb_context_new failed");
if ((kbd.repeat.timer = timerfd_create(CLOCK_MONOTONIC, 0)) < 0)
die("timerfd_create:");
wl_keyboard_add_listener(kbd.wl_keyboard, &keyboard_listener, NULL);
}
static const struct wl_seat_listener seat_listener = {
.capabilities = seat_handle_capabilities,
.name = noop,
};
static void
registry_handle_global(void *data, struct wl_registry *registry,
uint32_t name, const char *interface, uint32_t version)
{
if (!strcmp(interface, wl_compositor_interface.name))
compositor = wl_registry_bind(registry, name, &wl_compositor_interface, 6);
else if (!strcmp(interface, wl_shm_interface.name))
shm = wl_registry_bind(registry, name, &wl_shm_interface, 1);
else if (!strcmp(interface, zwlr_layer_shell_v1_interface.name))
layer_shell = wl_registry_bind(registry, name,
&zwlr_layer_shell_v1_interface, 1);
else if (!strcmp(interface, wl_data_device_manager_interface.name))
data_device_manager = wl_registry_bind(registry, name,
&wl_data_device_manager_interface, 3);
else if (!strcmp(interface, xdg_activation_v1_interface.name))
activation = wl_registry_bind(registry, name, &xdg_activation_v1_interface, 1);
else if (!strcmp(interface, wl_output_interface.name)) {
struct wl_output *output = wl_registry_bind(registry, name,
&wl_output_interface, 4);
wl_output_add_listener(output, &output_listener, NULL);
} else if (!strcmp(interface, wl_seat_interface.name)) {
seat = wl_registry_bind (registry, name, &wl_seat_interface, 4);
wl_seat_add_listener(seat, &seat_listener, NULL);
}
}
static const struct wl_registry_listener registry_listener = {
.global = registry_handle_global,
.global_remove = noop,
};
static void
readstdin(void)
{
char *line = NULL;
size_t i, itemsiz = 0, linesiz = 0;
ssize_t len;
if (passwd) {
inputw = lines = 0;
return;
}
/* read each line from stdin and add it to the item list */
for (i = 0; (len = getline(&line, &linesiz, stdin)) != -1; i++) {
if (i + 1 >= itemsiz) {
itemsiz += 256;
if (!(items = realloc(items, itemsiz * sizeof(*items))))
die("cannot realloc %zu bytes:", itemsiz * sizeof(*items));
}
if (line[len - 1] == '\n')
line[len - 1] = '\0';
if (!(items[i].text = strdup(line)))
die("strdup:");
items[i].out = 0;
}
free(line);
if (items)
items[i].text = NULL;
lines = MIN(lines, i);
}
static void
run(void)
{
struct pollfd pfds[] = {
{ wl_display_get_fd(display), POLLIN },
{ kbd.repeat.timer, POLLIN },
};
running = 1;
while (running) {
wl_display_flush(display);
if (poll(pfds, LENGTH(pfds), -1) < 0)
die("poll:");
if (pfds[0].revents & POLLIN)
if (wl_display_dispatch(display) < 0)
die("display dispatch failed");
if (pfds[1].revents & POLLIN)
keyboard_repeat();
}
}
static void
setup(void)
{
if (!(display = wl_display_connect(NULL)))
die("failed to connect to wayland");
registry = wl_display_get_registry(display);
wl_registry_add_listener(registry, ®istry_listener, NULL);
wl_display_roundtrip(display);
wl_display_roundtrip(display); /* output & seat listeners */
if (!compositor)
die("wl_compositor not available");
if (!shm)
die("wl_shm not available");
if (!layer_shell)
die("layer_shell not available");
if (!data_device_manager)
die("data_device_manager not available");
if (output_name && !output)
die("output %s not found", output_name);
data_device = wl_data_device_manager_get_data_device(
data_device_manager, seat);
wl_data_device_add_listener(data_device, &data_device_listener, NULL);
drwl_init();
if (!(drw = drwl_create()))
die("cannot create drwl drawing context");