forked from martanne/vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vis-menu.c
605 lines (559 loc) · 14.7 KB
/
vis-menu.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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/*
* MIT/X Consortium License
*
* © 2011 Rafael Garcia Gallego <[email protected]>
*
* Based on dmenu:
* © 2010-2011 Connor Lane Smith <[email protected]>
* © 2006-2011 Anselm R Garbe <[email protected]>
* © 2009 Gottox <[email protected]>
* © 2009 Markus Schnalke <[email protected]>
* © 2009 Evan Gates <[email protected]>
* © 2006-2008 Sander van Dijk <a dot h dot vandijk at gmail dot com>
* © 2006-2007 Michał Janeczek <janeczek at gmail dot com>
*
* 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 <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <ctype.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <termios.h>
#include <unistd.h>
#define CONTROL(ch) (ch ^ 0x40)
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
typedef enum {
C_Normal,
C_Reverse
} Color;
typedef struct Item Item;
struct Item {
char *text;
Item *left, *right;
};
static char text[BUFSIZ] = "";
static int barpos = 0;
static int mw, mh;
static int lines = 0;
static int inputw, promptw;
static size_t cursor;
static char *prompt = NULL;
static Item *items = NULL;
static Item *matches, *matchend;
static Item *prev, *curr, *next, *sel;
static struct termios tio_old, tio_new;
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
static void
appenditem(Item *item, Item **list, Item **last) {
if (!*last)
*list = item;
else
(*last)->right = item;
item->left = *last;
item->right = NULL;
*last = item;
}
static size_t
textwn(const char *s, int l) {
int b, c; /* bytes and UTF-8 characters */
for(b=c=0; s && s[b] && (l<0 || b<l); b++) if((s[b] & 0xc0) != 0x80) c++;
return c+4; /* Accomodate for the leading and trailing spaces */
}
static size_t
textw(const char *s) {
return textwn(s, -1);
}
static void
calcoffsets(void) {
int i, n;
if (lines > 0)
n = lines;
else
n = mw - (promptw + inputw + textw("<") + textw(">"));
for (i = 0, next = curr; next; next = next->right)
if ((i += (lines>0 ? 1 : MIN(textw(next->text), n))) > n)
break;
for (i = 0, prev = curr; prev && prev->left; prev = prev->left)
if ((i += (lines>0 ? 1 : MIN(textw(prev->left->text), n))) > n)
break;
}
static void
cleanup() {
if (barpos == 0) fprintf(stderr, "\n");
else fprintf(stderr, "\033[G\033[K");
tcsetattr(0, TCSANOW, &tio_old);
}
static void
die(const char *s) {
tcsetattr(0, TCSANOW, &tio_old);
fprintf(stderr, "%s\n", s);
exit(EXIT_FAILURE);
}
static void
drawtext(const char *t, size_t w, Color col) {
const char *prestr, *poststr;
int i, tw;
char *buf;
if (w<5) return; /* This is the minimum size needed to write a label: 1 char + 4 padding spaces */
tw = w-4; /* This is the text width, without the padding */
if (!(buf = calloc(1, tw+1))) die("Can't calloc.");
switch (col) {
case C_Reverse:
prestr="\033[7m";
poststr="\033[0m";
break;
case C_Normal:
default:
prestr=poststr="";
}
memset(buf, ' ', tw);
buf[tw] = '\0';
memcpy(buf, t, MIN(strlen(t), tw));
if (textw(t) > w) /* Remember textw returns the width WITH padding */
for (i = MAX((tw-4), 0); i < tw; i++) buf[i] = '.';
fprintf(stderr, "%s %s %s", prestr, buf, poststr);
free(buf);
}
static void
resetline(void) {
if (barpos != 0) fprintf(stderr, "\033[%iH", barpos > 0 ? 0 : (mh-lines));
else fprintf(stderr, "\033[%iF", lines);
}
static void
drawmenu(void) {
Item *item;
int rw;
/* use default colors */
fprintf(stderr, "\033[0m");
/* place cursor in first column, clear it */
fprintf(stderr, "\033[0G");
fprintf(stderr, "\033[K");
if (prompt)
drawtext(prompt, promptw, C_Reverse);
drawtext(text, (lines==0 && matches) ? inputw : mw-promptw, C_Normal);
if (lines > 0) {
if (barpos != 0) resetline();
for (rw = 0, item = curr; item != next; rw++, item = item->right) {
fprintf(stderr, "\n");
drawtext(item->text, mw, (item == sel) ? C_Reverse : C_Normal);
}
for (; rw < lines; rw++)
fprintf(stderr, "\n\033[K");
resetline();
} else if (matches) {
rw = mw-(4+promptw+inputw);
if (curr->left)
drawtext("<", 5 /*textw("<")*/, C_Normal);
for (item = curr; item != next; item = item->right) {
drawtext(item->text, MIN(textw(item->text), rw), (item == sel) ? C_Reverse : C_Normal);
if ((rw -= textw(item->text)) <= 0) break;
}
if (next) {
fprintf(stderr, "\033[%iG", mw-5);
drawtext(">", 5 /*textw(">")*/, C_Normal);
}
}
fprintf(stderr, "\033[%iG", (int)(promptw+textwn(text, cursor)-1));
fflush(stderr);
}
static char*
fstrstr(const char *s, const char *sub) {
for (size_t len = strlen(sub); *s; s++)
if (!fstrncmp(s, sub, len))
return (char*)s;
return NULL;
}
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;
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("Can't realloc.");
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;
memmove(&text[cursor + n], &text[cursor], sizeof text - cursor - MAX(n, 0));
if (n > 0)
memcpy(&text[cursor], str, n);
cursor += n;
match();
}
static size_t
nextrune(int inc) {
ssize_t n;
for(n = cursor + inc; n + inc >= 0 && (text[n] & 0xc0) == 0x80; n += inc);
return n;
}
static void
readstdin() {
char buf[sizeof text], *p, *maxstr = NULL;
size_t i, max = 0, size = 0;
for(i = 0; fgets(buf, sizeof buf, stdin); i++) {
if (i+1 >= size / sizeof *items)
if (!(items = realloc(items, (size += BUFSIZ))))
die("Can't realloc.");
if ((p = strchr(buf, '\n')))
*p = '\0';
if (!(items[i].text = strdup(buf)))
die("Can't strdup.");
if (strlen(items[i].text) > max)
max = textw(maxstr = items[i].text);
}
if (items)
items[i].text = NULL;
inputw = textw(maxstr);
}
static void
xread(int fd, void *buf, size_t nbyte) {
ssize_t r = read(fd, buf, nbyte);
if (r < 0 || (size_t)r != nbyte)
die("Can not read.");
}
static void
setup(void) {
int fd, result = -1;
struct winsize ws;
/* re-open stdin to read keyboard */
if (!freopen("/dev/tty", "r", stdin)) die("Can't reopen tty as stdin.");
if (!freopen("/dev/tty", "w", stderr)) die("Can't reopen tty as stderr.");
/* ioctl() the tty to get size */
fd = open("/dev/tty", O_RDWR);
if (fd == -1) {
mh = 24;
mw = 80;
} else {
result = ioctl(fd, TIOCGWINSZ, &ws);
close(fd);
if (result < 0) {
mw = 80;
mh = 24;
} else {
mw = ws.ws_col;
mh = ws.ws_row;
}
}
/* change terminal attributes, save old */
tcgetattr(0, &tio_old);
tio_new = tio_old;
tio_new.c_iflag &= ~(BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
tio_new.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
tio_new.c_cflag &= ~(CSIZE|PARENB);
tio_new.c_cflag |= CS8;
tio_new.c_cc[VMIN] = 1;
tcsetattr(0, TCSANOW, &tio_new);
lines = MIN(MAX(lines, 0), mh);
promptw = prompt ? textw(prompt) : 0;
inputw = MIN(inputw, mw/3);
match();
if (barpos != 0) resetline();
drawmenu();
}
static int
run(void) {
char buf[32];
char c;
for (;;) {
xread(0, &c, 1);
memset(buf, '\0', sizeof buf);
buf[0] = c;
switch_top:
switch(c) {
case CONTROL('['):
xread(0, &c, 1);
esc_switch_top:
switch(c) {
case CONTROL('['): /* ESC, need to press twice due to console limitations */
c = CONTROL('C');
goto switch_top;
case '[':
xread(0, &c, 1);
switch(c) {
case '1': /* Home */
case '7':
case 'H':
if (c != 'H') xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = CONTROL('A');
goto switch_top;
case '2': /* Insert */
xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = CONTROL('Y');
goto switch_top;
case '3': /* Delete */
xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = CONTROL('D');
goto switch_top;
case '4': /* End */
case '8':
case 'F':
if (c != 'F') xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = CONTROL('E');
goto switch_top;
case '5': /* PageUp */
xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = CONTROL('V');
goto switch_top;
case '6': /* PageDown */
xread(0, &c, 1); /* Remove trailing '~' from stdin */
c = 'v';
goto esc_switch_top;
case 'A': /* Up arrow */
c = CONTROL('P');
goto switch_top;
case 'B': /* Down arrow */
c = CONTROL('N');
goto switch_top;
case 'C': /* Right arrow */
c = CONTROL('F');
goto switch_top;
case 'D': /* Left arrow */
c = CONTROL('B');
goto switch_top;
}
break;
case 'b':
while (cursor > 0 && text[nextrune(-1)] == ' ')
cursor = nextrune(-1);
while (cursor > 0 && text[nextrune(-1)] != ' ')
cursor = nextrune(-1);
break;
case 'f':
while (text[cursor] != '\0' && text[nextrune(+1)] == ' ')
cursor = nextrune(+1);
if (text[cursor] != '\0') {
do {
cursor = nextrune(+1);
} while (text[cursor] != '\0' && text[cursor] != ' ');
}
break;
case 'd':
while (text[cursor] != '\0' && text[nextrune(+1)] == ' ') {
cursor = nextrune(+1);
insert(NULL, nextrune(-1) - cursor);
}
if (text[cursor] != '\0') {
do {
cursor = nextrune(+1);
insert(NULL, nextrune(-1) - cursor);
} while (text[cursor] != '\0' && text[cursor] != ' ');
}
break;
case 'v':
if (!next)
break;
sel = curr = next;
calcoffsets();
break;
default:
break;
}
break;
case CONTROL('C'):
return EXIT_FAILURE;
case CONTROL('M'): /* Return */
case CONTROL('J'):
if (sel) strncpy(text, sel->text, sizeof(text)-1); /* Complete the input first, when hitting return */
cursor = strlen(text);
match();
drawmenu();
/* fallthrough */
case CONTROL(']'):
case CONTROL('\\'): /* These are usually close enough to RET to replace Shift+RET, again due to console limitations */
puts(text);
return EXIT_SUCCESS;
case CONTROL('A'):
if (sel == matches) {
cursor = 0;
break;
}
sel = curr = matches;
calcoffsets();
break;
case CONTROL('E'):
if (text[cursor] != '\0') {
cursor = strlen(text);
break;
}
if (next) {
curr = matchend;
calcoffsets();
curr = prev;
calcoffsets();
while(next && (curr = curr->right))
calcoffsets();
}
sel = matchend;
break;
case CONTROL('B'):
if (cursor > 0 && (!sel || !sel->left || lines > 0)) {
cursor = nextrune(-1);
break;
}
/* fallthrough */
case CONTROL('P'):
if (sel && sel->left && (sel = sel->left)->right == curr) {
curr = prev;
calcoffsets();
}
break;
case CONTROL('F'):
if (text[cursor] != '\0') {
cursor = nextrune(+1);
break;
}
/* fallthrough */
case CONTROL('N'):
if (sel && sel->right && (sel = sel->right) == next) {
curr = next;
calcoffsets();
}
break;
case CONTROL('D'):
if (text[cursor] == '\0')
break;
cursor = nextrune(+1);
/* fallthrough */
case CONTROL('H'):
case CONTROL('?'): /* Backspace */
if (cursor == 0)
break;
insert(NULL, nextrune(-1) - cursor);
break;
case CONTROL('I'): /* TAB */
if (!sel)
break;
strncpy(text, sel->text, sizeof text);
cursor = strlen(text);
match();
break;
case CONTROL('K'):
text[cursor] = '\0';
match();
break;
case CONTROL('U'):
insert(NULL, 0 - cursor);
break;
case CONTROL('W'):
while (cursor > 0 && text[nextrune(-1)] == ' ')
insert(NULL, nextrune(-1) - cursor);
while (cursor > 0 && text[nextrune(-1)] != ' ')
insert(NULL, nextrune(-1) - cursor);
break;
case CONTROL('V'):
if (!prev)
break;
sel = curr = prev;
calcoffsets();
break;
default:
if (!iscntrl(*buf))
insert(buf, strlen(buf));
break;
}
drawmenu();
}
}
static void
usage(void) {
fputs("usage: vis-menu [-b|-t] [-i] [-l lines] [-p prompt] [initial selection]\n", stderr);
exit(EXIT_FAILURE);
}
int
main(int argc, char **argv) {
for (int i = 1; i < argc; i++) {
if (!strcmp(argv[i], "-v")) {
puts("vis-menu " VERSION);
exit(EXIT_SUCCESS);
} else if (!strcmp(argv[i], "-i")) {
fstrncmp = strncasecmp;
} else if (!strcmp(argv[i], "-t")) {
barpos = +1;
} else if (!strcmp(argv[i], "-b")) {
barpos = -1;
} else if (argv[i][0] != '-') {
strncpy(text, argv[i], sizeof(text)-1);
cursor = strlen(text);
} else if (i + 1 == argc) {
usage();
} else if (!strcmp(argv[i], "-p")) {
prompt = argv[++i];
if (prompt && !prompt[0])
prompt = NULL;
} else if (!strcmp(argv[i], "-l")) {
lines = atoi(argv[++i]);
} else {
usage();
}
}
readstdin();
setup();
int status = run();
cleanup();
return status;
}