Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 /*
18 * Ncurses UI for telescope.
19 *
20 * Text scrolling
21 * ==============
22 *
23 * ncurses allows you to scroll a window, but when a line goes out of
24 * the visible area it's forgotten. We keep a list of formatted lines
25 * (``visual lines'') that we know fits in the window, and draw them.
26 *
27 * This means that on every resize we have to clear our list of lines
28 * and re-render everything. A clever approach would be to do this
29 * ``on-demand'', but it's still missing.
30 *
31 */
33 #include "telescope.h"
35 #include <assert.h>
36 #include <curses.h>
37 #include <event.h>
38 #include <limits.h>
39 #include <locale.h>
40 #include <signal.h>
41 #include <stdarg.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <unistd.h>
46 static struct event stdioev, winchev;
48 static void global_key_unbound(void);
49 static void minibuffer_hist_save_entry(void);
50 static void minibuffer_self_insert(void);
51 static void yornp_self_insert(void);
52 static void yornp_abort(void);
53 static void read_self_insert(void);
54 static void read_abort(void);
55 static void read_select(void);
57 static struct vline *nth_line(struct buffer*, size_t);
58 static struct buffer *current_buffer(void);
59 static int readkey(void);
60 static void dispatch_stdio(int, short, void*);
61 static void handle_clear_minibuf(int, short, void*);
62 static void handle_resize(int, short, void*);
63 static void handle_resize_nodelay(int, short, void*);
64 static int wrap_page(struct buffer*, int);
65 static void print_vline(int, int, WINDOW*, struct vline*);
66 static void redraw_tabline(void);
67 static void redraw_window(WINDOW*, int, int, struct buffer*);
68 static void redraw_help(void);
69 static void redraw_body(struct tab*);
70 static void redraw_modeline(struct tab*);
71 static void redraw_minibuffer(void);
72 static void redraw_tab(struct tab*);
73 static void emit_help_item(char*, void*);
74 static void rec_compute_help(struct kmap*, char*, size_t);
75 static void recompute_help(void);
76 static void update_loading_anim(int, short, void*);
77 static void stop_loading_anim(struct tab*);
78 static void session_new_tab_cb(const char*);
79 static void usage(void);
81 static int x_offset;
83 struct thiskey thiskey;
85 static struct event resizeev;
86 static struct timeval resize_timer = { 0, 250000 };
88 static WINDOW *tabline, *body, *modeline, *minibuf;
90 int body_lines, body_cols;
92 static WINDOW *help;
93 static struct buffer helpwin;
94 static int help_lines, help_cols;
96 static int side_window;
98 static struct event clminibufev;
99 static struct timeval clminibufev_timer = { 5, 0 };
100 static struct timeval loadingev_timer = { 0, 250000 };
102 static uint32_t tab_counter;
104 static char keybuf[64];
106 static void (*yornp_cb)(int, unsigned int);
107 static unsigned int yornp_data;
109 static void (*read_cb)(const char*, unsigned int);
110 static unsigned int read_data;
112 struct kmap global_map,
113 minibuffer_map,
114 *current_map,
115 *base_map;
117 struct histhead eecmd_history,
118 ir_history,
119 lu_history,
120 read_history;
122 int in_minibuffer;
124 struct ministate ministate;
126 static inline void
127 update_x_offset(void)
129 if (olivetti_mode && fill_column < body_cols)
130 x_offset = (body_cols - fill_column)/2;
131 else
132 x_offset = 0;
135 void
136 save_excursion(struct excursion *place, struct buffer *buffer)
138 place->curs_x = buffer->curs_x;
139 place->curs_y = buffer->curs_y;
140 place->line_off = buffer->line_off;
141 place->current_line = buffer->current_line;
142 place->cpoff = buffer->cpoff;
145 void
146 restore_excursion(struct excursion *place, struct buffer *buffer)
148 buffer->curs_x = place->curs_x;
149 buffer->curs_y = place->curs_y;
150 buffer->line_off = place->line_off;
151 buffer->current_line = place->current_line;
152 buffer->cpoff = place->cpoff;
155 void
156 restore_cursor(struct buffer *buffer)
158 struct vline *vl;
159 const char *prfx;
161 vl = buffer->current_line;
162 if (vl == NULL || vl->line == NULL)
163 buffer->curs_x = buffer->cpoff = 0;
164 else
165 buffer->curs_x = utf8_snwidth(vl->line, buffer->cpoff);
167 buffer->curs_x += x_offset;
169 if (vl != NULL) {
170 prfx = line_prefixes[vl->parent->type].prfx1;
171 buffer->curs_x += utf8_swidth(prfx);
175 static void
176 global_key_unbound(void)
178 message("%s is undefined", keybuf);
181 static void
182 minibuffer_hist_save_entry(void)
184 struct hist *hist;
186 if (ministate.history == NULL)
187 return;
189 if ((hist = calloc(1, sizeof(*hist))) == NULL)
190 abort();
192 strlcpy(hist->h, ministate.buf, sizeof(hist->h));
194 if (TAILQ_EMPTY(&ministate.history->head))
195 TAILQ_INSERT_HEAD(&ministate.history->head, hist, entries);
196 else
197 TAILQ_INSERT_TAIL(&ministate.history->head, hist, entries);
198 ministate.history->len++;
201 /*
202 * taint the minibuffer cache: if we're currently showing a history
203 * element, copy that to the current buf and reset the "history
204 * navigation" thing.
205 */
206 void
207 minibuffer_taint_hist(void)
209 if (ministate.hist_cur == NULL)
210 return;
212 strlcpy(ministate.buf, ministate.hist_cur->h, sizeof(ministate.buf));
213 ministate.hist_cur = NULL;
216 static void
217 minibuffer_self_insert(void)
219 char *c, tmp[5] = {0};
220 size_t len;
222 minibuffer_taint_hist();
224 if (thiskey.cp == 0)
225 return;
227 len = utf8_encode(thiskey.cp, tmp);
228 c = utf8_nth(ministate.buffer.current_line->line, ministate.buffer.cpoff);
229 if (c + len > ministate.buf + sizeof(ministate.buf) - 1)
230 return;
232 memmove(c + len, c, strlen(c)+1);
233 memcpy(c, tmp, len);
234 ministate.buffer.cpoff++;
237 void
238 eecmd_self_insert(void)
240 if (thiskey.meta || unicode_isspace(thiskey.cp) ||
241 !unicode_isgraph(thiskey.cp)) {
242 global_key_unbound();
243 return;
246 minibuffer_self_insert();
249 void
250 eecmd_select(void)
252 struct cmd *cmd;
254 for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
255 if (!strcmp(cmd->cmd, ministate.buf)) {
256 exit_minibuffer();
257 minibuffer_hist_save_entry();
258 cmd->fn(current_buffer());
259 return;
263 message("No match");
266 void
267 ir_self_insert(void)
269 minibuffer_self_insert();
272 void
273 ir_select(void)
275 char buf[1025] = {0};
276 struct phos_uri uri;
277 struct tab *tab;
279 tab = current_tab();
281 exit_minibuffer();
282 minibuffer_hist_save_entry();
284 /* a bit ugly but... */
285 memcpy(&uri, &tab->uri, sizeof(tab->uri));
286 phos_uri_set_query(&uri, ministate.buf);
287 phos_serialize_uri(&uri, buf, sizeof(buf));
288 load_url_in_tab(tab, buf);
291 void
292 lu_self_insert(void)
294 if (thiskey.meta || unicode_isspace(thiskey.key) ||
295 !unicode_isgraph(thiskey.key)) {
296 global_key_unbound();
297 return;
300 minibuffer_self_insert();
303 void
304 lu_select(void)
306 exit_minibuffer();
307 minibuffer_hist_save_entry();
308 load_url_in_tab(current_tab(), ministate.buf);
311 void
312 bp_select(void)
314 exit_minibuffer();
315 if (*ministate.buf != '\0')
316 add_to_bookmarks(ministate.buf);
317 else
318 message("Abort.");
321 static void
322 yornp_self_insert(void)
324 if (thiskey.key != 'y' && thiskey.key != 'n') {
325 message("Please answer y or n");
326 return;
329 exit_minibuffer();
330 yornp_cb(thiskey.key == 'y', yornp_data);
333 static void
334 yornp_abort(void)
336 exit_minibuffer();
337 yornp_cb(0, yornp_data);
340 static void
341 read_self_insert(void)
343 if (thiskey.meta || !unicode_isgraph(thiskey.cp)) {
344 global_key_unbound();
345 return;
348 minibuffer_self_insert();
351 static void
352 read_abort(void)
354 exit_minibuffer();
355 read_cb(NULL, read_data);
358 static void
359 read_select(void)
361 exit_minibuffer();
362 minibuffer_hist_save_entry();
363 read_cb(ministate.buf, read_data);
366 static struct vline *
367 nth_line(struct buffer *buffer, size_t n)
369 struct vline *vl;
370 size_t i;
372 i = 0;
373 TAILQ_FOREACH(vl, &buffer->head, vlines) {
374 if (i == n)
375 return vl;
376 i++;
379 /* unreachable */
380 abort();
383 struct tab *
384 current_tab(void)
386 struct tab *t;
388 TAILQ_FOREACH(t, &tabshead, tabs) {
389 if (t->flags & TAB_CURRENT)
390 return t;
393 /* unreachable */
394 abort();
397 struct buffer *
398 current_buffer(void)
400 if (in_minibuffer)
401 return &ministate.buffer;
402 return &current_tab()->buffer;
405 static int
406 readkey(void)
408 uint32_t state = 0;
410 if ((thiskey.key = wgetch(body)) == ERR)
411 return 0;
413 thiskey.meta = thiskey.key == 27;
414 if (thiskey.meta) {
415 thiskey.key = wgetch(body);
416 if (thiskey.key == ERR || thiskey.key == 27) {
417 thiskey.meta = 0;
418 thiskey.key = 27;
422 thiskey.cp = 0;
423 if ((unsigned int)thiskey.key < UINT8_MAX) {
424 while (1) {
425 if (!utf8_decode(&state, &thiskey.cp, (uint8_t)thiskey.key))
426 break;
427 if ((thiskey.key = wgetch(body)) == ERR) {
428 message("Error decoding user input");
429 return 0;
434 return 1;
437 static void
438 dispatch_stdio(int fd, short ev, void *d)
440 struct keymap *k;
441 const char *keyname;
442 char tmp[5] = {0};
444 if (!readkey())
445 return;
447 if (keybuf[0] != '\0')
448 strlcat(keybuf, " ", sizeof(keybuf));
449 if (thiskey.meta)
450 strlcat(keybuf, "M-", sizeof(keybuf));
451 if (thiskey.cp != 0) {
452 utf8_encode(thiskey.cp, tmp);
453 strlcat(keybuf, tmp, sizeof(keybuf));
454 } else {
455 if ((keyname = unkbd(thiskey.key)) != NULL)
456 strlcat(keybuf, keyname, sizeof(keybuf));
457 else {
458 tmp[0] = thiskey.key;
459 strlcat(keybuf, tmp, sizeof(keybuf));
463 TAILQ_FOREACH(k, &current_map->m, keymaps) {
464 if (k->meta == thiskey.meta &&
465 k->key == thiskey.key) {
466 if (k->fn == NULL)
467 current_map = &k->map;
468 else {
469 current_map = base_map;
470 strlcpy(keybuf, "", sizeof(keybuf));
471 k->fn(current_buffer());
473 goto done;
477 if (current_map->unhandled_input != NULL)
478 current_map->unhandled_input();
479 else
480 global_key_unbound();
482 strlcpy(keybuf, "", sizeof(keybuf));
483 current_map = base_map;
485 done:
486 if (side_window)
487 recompute_help();
489 redraw_tab(current_tab());
492 static void
493 handle_clear_minibuf(int fd, short ev, void *d)
495 free(ministate.curmesg);
496 ministate.curmesg = NULL;
498 redraw_minibuffer();
499 if (in_minibuffer) {
500 wrefresh(body);
501 wrefresh(minibuf);
502 } else {
503 wrefresh(minibuf);
504 wrefresh(body);
508 static void
509 handle_resize(int sig, short ev, void *d)
511 if (event_pending(&resizeev, EV_TIMEOUT, NULL)) {
512 event_del(&resizeev);
514 evtimer_set(&resizeev, handle_resize_nodelay, NULL);
515 evtimer_add(&resizeev, &resize_timer);
518 static void
519 handle_resize_nodelay(int s, short ev, void *d)
521 struct tab *tab;
523 endwin();
524 refresh();
525 clear();
527 /* move and resize the windows, in reverse order! */
529 mvwin(minibuf, LINES-1, 0);
530 wresize(minibuf, 1, COLS);
532 mvwin(modeline, LINES-2, 0);
533 wresize(modeline, 1, COLS);
535 body_lines = LINES-3;
536 body_cols = COLS;
538 if (side_window) {
539 help_cols = 0.3 * COLS;
540 help_lines = LINES-3;
541 mvwin(help, 1, 0);
542 wresize(help, help_lines, help_cols);
544 wrap_page(&helpwin, help_cols);
546 body_cols = COLS - help_cols - 1;
547 mvwin(body, 1, help_cols);
548 } else
549 mvwin(body, 1, 0);
551 update_x_offset();
552 wresize(body, body_lines, body_cols);
554 wresize(tabline, 1, COLS);
556 tab = current_tab();
558 wrap_page(&tab->buffer, body_cols);
559 redraw_tab(tab);
562 static int
563 wrap_page(struct buffer *buffer, int width)
565 struct line *l;
566 const struct line *orig;
567 struct vline *vl;
568 int pre_width;
569 const char *prfx;
571 orig = buffer->current_line == NULL
572 ? NULL
573 : buffer->current_line->parent;
574 buffer->current_line = NULL;
576 buffer->force_redraw = 1;
577 buffer->curs_y = 0;
578 buffer->line_off = 0;
580 empty_vlist(buffer);
582 TAILQ_FOREACH(l, &buffer->page.head, lines) {
583 prfx = line_prefixes[l->type].prfx1;
584 switch (l->type) {
585 case LINE_TEXT:
586 case LINE_LINK:
587 case LINE_TITLE_1:
588 case LINE_TITLE_2:
589 case LINE_TITLE_3:
590 case LINE_ITEM:
591 case LINE_QUOTE:
592 case LINE_PRE_START:
593 case LINE_PRE_END:
594 wrap_text(buffer, prfx, l, MIN(fill_column, width));
595 break;
596 case LINE_PRE_CONTENT:
597 if (olivetti_mode)
598 pre_width = MIN(fill_column, width);
599 else
600 pre_width = width;
601 hardwrap_text(buffer, l, pre_width);
602 break;
605 if (orig == l && buffer->current_line == NULL) {
606 buffer->line_off = buffer->line_max-1;
607 buffer->current_line = TAILQ_LAST(&buffer->head, vhead);
609 while (1) {
610 vl = TAILQ_PREV(buffer->current_line, vhead, vlines);
611 if (vl == NULL || vl->parent != orig)
612 break;
613 buffer->current_line = vl;
614 buffer->line_off--;
619 if (buffer->current_line == NULL)
620 buffer->current_line = TAILQ_FIRST(&buffer->head);
622 return 1;
625 static void
626 print_vline(int off, int width, WINDOW *window, struct vline *vl)
628 const char *text;
629 const char *prfx;
630 struct line_face *f;
631 int i, left, x, y;
633 f = &line_faces[vl->parent->type];
635 /* unused, set by getyx */
636 (void)y;
638 if (!vl->flags)
639 prfx = line_prefixes[vl->parent->type].prfx1;
640 else
641 prfx = line_prefixes[vl->parent->type].prfx2;
643 text = vl->line;
644 if (text == NULL)
645 text = "";
647 wattr_on(window, body_face.left, NULL);
648 for (i = 0; i < off; i++)
649 waddch(window, ' ');
650 wattr_off(window, body_face.left, NULL);
652 wattr_on(window, f->prefix, NULL);
653 wprintw(window, "%s", prfx);
654 wattr_off(window, f->prefix, NULL);
656 wattr_on(window, f->text, NULL);
657 wprintw(window, "%s", text);
658 wattr_off(window, f->text, NULL);
660 getyx(window, y, x);
662 left = width - x;
664 wattr_on(window, f->trail, NULL);
665 for (i = 0; i < left - off - 1; ++i)
666 waddch(window, ' ');
667 wattr_off(window, f->trail, NULL);
669 wattr_on(window, body_face.right, NULL);
670 for (i = 0; i < off; i++)
671 waddch(window, ' ');
672 wattr_off(window, body_face.right, NULL);
676 static void
677 redraw_tabline(void)
679 struct tab *tab;
680 size_t toskip, ots, tabwidth, space, x;
681 int current, y, truncated;
682 const char *title;
683 char buf[25];
685 x = 0;
687 /* unused, but setted by a getyx */
688 (void)y;
690 tabwidth = sizeof(buf)+1;
691 space = COLS-2;
693 toskip = 0;
694 TAILQ_FOREACH(tab, &tabshead, tabs) {
695 toskip++;
696 if (tab->flags & TAB_CURRENT)
697 break;
700 if (toskip * tabwidth < space)
701 toskip = 0;
702 else {
703 ots = toskip;
704 toskip--;
705 while (toskip != 0 &&
706 (ots - toskip+1) * tabwidth < space)
707 toskip--;
710 werase(tabline);
711 wattr_on(tabline, tab_face.background, NULL);
712 wprintw(tabline, toskip == 0 ? " " : "<");
713 wattr_off(tabline, tab_face.background, NULL);
715 truncated = 0;
716 TAILQ_FOREACH(tab, &tabshead, tabs) {
717 if (truncated)
718 break;
719 if (toskip != 0) {
720 toskip--;
721 continue;
724 getyx(tabline, y, x);
725 if (x + sizeof(buf)+2 >= (size_t)COLS)
726 truncated = 1;
728 current = tab->flags & TAB_CURRENT;
730 if (*(title = tab->buffer.page.title) == '\0')
731 title = tab->hist_cur->h;
733 if (tab->flags & TAB_URGENT)
734 strlcpy(buf, "!", sizeof(buf));
735 else
736 strlcpy(buf, " ", sizeof(buf));
738 if (strlcat(buf, title, sizeof(buf)) >= sizeof(buf)) {
739 /* truncation happens */
740 strlcpy(&buf[sizeof(buf)-4], "...", 4);
741 } else {
742 /* pad with spaces */
743 while (strlcat(buf, " ", sizeof(buf)) < sizeof(buf))
744 /* nop */ ;
747 if (current)
748 wattr_on(tabline, tab_face.current, NULL);
749 else
750 wattr_on(tabline, tab_face.tab, NULL);
752 wprintw(tabline, "%s", buf);
753 if (TAILQ_NEXT(tab, tabs) != NULL)
754 wprintw(tabline, " ");
756 if (current)
757 wattr_off(tabline, tab_face.current, NULL);
758 else
759 wattr_off(tabline, tab_face.tab, NULL);
762 wattr_on(tabline, tab_face.background, NULL);
763 for (; x < (size_t)COLS; ++x)
764 waddch(tabline, ' ');
765 if (truncated)
766 mvwprintw(tabline, 0, COLS-1, ">");
767 wattr_off(tabline, tab_face.background, NULL);
770 static void
771 redraw_window(WINDOW *win, int height, int width, struct buffer *buffer)
773 struct vline *vl;
774 int l;
776 /*
777 * Don't bother redraw the body if nothing changed. Cursor
778 * movements count as "nothing changed" if it hasn't produced
779 * a scroll. Ensure that wmove is called though!
780 */
781 if (!buffer->force_redraw &&
782 buffer->last_line_off == buffer->line_off)
783 goto end;
785 werase(win);
787 buffer->line_off = MIN(buffer->line_max-1, buffer->line_off);
788 buffer->force_redraw = 0;
789 buffer->last_line_off = buffer->line_off;
791 if (TAILQ_EMPTY(&buffer->head))
792 goto end;
794 l = 0;
795 vl = nth_line(buffer, buffer->line_off);
796 for (; vl != NULL; vl = TAILQ_NEXT(vl, vlines)) {
797 wmove(win, l, 0);
798 print_vline(x_offset, width, win, vl);
799 l++;
800 if (l == height)
801 break;
804 end:
805 wmove(win, buffer->curs_y, buffer->curs_x);
808 static void
809 redraw_help(void)
811 redraw_window(help, help_lines, help_cols, &helpwin);
814 static void
815 redraw_body(struct tab *tab)
817 static struct tab *last_tab;
819 if (last_tab != tab)
820 tab->buffer.force_redraw =1;
821 last_tab = tab;
823 redraw_window(body, body_lines, body_cols, &tab->buffer);
826 static inline char
827 trust_status_char(enum trust_state ts)
829 switch (ts) {
830 case TS_UNKNOWN: return 'u';
831 case TS_UNTRUSTED: return '!';
832 case TS_TRUSTED: return 'v';
833 case TS_VERIFIED: return 'V';
834 default: return 'X';
838 static void
839 redraw_modeline(struct tab *tab)
841 double pct;
842 int x, y, max_x, max_y;
843 const char *mode = tab->buffer.page.name;
844 const char *spin = "-\\|/";
846 werase(modeline);
847 wattr_on(modeline, modeline_face.background, NULL);
848 wmove(modeline, 0, 0);
850 wprintw(modeline, "-%c%c %s ",
851 spin[tab->loading_anim_step],
852 trust_status_char(tab->trust),
853 mode == NULL ? "(none)" : mode);
855 pct = (tab->buffer.line_off + tab->buffer.curs_y) * 100.0 / tab->buffer.line_max;
857 if (tab->buffer.line_max <= (size_t)body_lines)
858 wprintw(modeline, "All ");
859 else if (tab->buffer.line_off == 0)
860 wprintw(modeline, "Top ");
861 else if (tab->buffer.line_off + body_lines >= tab->buffer.line_max)
862 wprintw(modeline, "Bottom ");
863 else
864 wprintw(modeline, "%.0f%% ", pct);
866 wprintw(modeline, "%d/%d %s ",
867 tab->buffer.line_off + tab->buffer.curs_y,
868 tab->buffer.line_max,
869 tab->hist_cur->h);
871 getyx(modeline, y, x);
872 getmaxyx(modeline, max_y, max_x);
874 (void)y;
875 (void)max_y;
877 for (; x < max_x; ++x)
878 waddstr(modeline, "-");
880 wattr_off(modeline, modeline_face.background, NULL);
883 static void
884 redraw_minibuffer(void)
886 struct tab *tab;
887 size_t off_y, off_x = 0;
888 char *start = NULL, *c = NULL;
890 /* unused, but set by getyx */
891 (void)off_y;
893 wattr_on(minibuf, minibuffer_face.background, NULL);
894 werase(minibuf);
896 if (in_minibuffer) {
897 mvwprintw(minibuf, 0, 0, "%s", ministate.prompt);
898 if (ministate.hist_cur != NULL)
899 wprintw(minibuf, "(%zu/%zu) ",
900 ministate.hist_off + 1,
901 ministate.history->len);
903 getyx(minibuf, off_y, off_x);
905 start = ministate.hist_cur != NULL
906 ? ministate.hist_cur->h
907 : ministate.buf;
908 c = utf8_nth(ministate.buffer.current_line->line,
909 ministate.buffer.cpoff);
910 while (utf8_swidth_between(start, c) > (size_t)COLS/2) {
911 start = utf8_next_cp(start);
914 waddstr(minibuf, start);
917 if (ministate.curmesg != NULL)
918 wprintw(minibuf, in_minibuffer ? " [%s]" : "%s",
919 ministate.curmesg);
921 if (!in_minibuffer && ministate.curmesg == NULL)
922 waddstr(minibuf, keybuf);
924 /* If nothing else, show the URL at point */
925 if (!in_minibuffer && ministate.curmesg == NULL && *keybuf == '\0') {
926 tab = current_tab();
927 if (tab->buffer.current_line != NULL &&
928 tab->buffer.current_line->parent->type == LINE_LINK)
929 waddstr(minibuf, tab->buffer.current_line->parent->alt);
932 if (in_minibuffer)
933 wmove(minibuf, 0, off_x + utf8_swidth_between(start, c));
935 wattr_off(minibuf, minibuffer_face.background, NULL);
938 static void
939 redraw_tab(struct tab *tab)
941 if (side_window) {
942 redraw_help();
943 wnoutrefresh(help);
946 restore_cursor(&tab->buffer);
948 redraw_tabline();
949 redraw_body(tab);
950 redraw_modeline(tab);
951 redraw_minibuffer();
953 wnoutrefresh(tabline);
954 wnoutrefresh(modeline);
956 if (in_minibuffer) {
957 wnoutrefresh(body);
958 wnoutrefresh(minibuf);
959 } else {
960 wnoutrefresh(minibuf);
961 wnoutrefresh(body);
964 doupdate();
967 static void
968 emit_help_item(char *prfx, void *fn)
970 struct line *l;
971 struct cmd *cmd;
973 for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
974 if (fn == cmd->fn)
975 break;
977 assert(cmd != NULL);
979 if ((l = calloc(1, sizeof(*l))) == NULL)
980 abort();
982 l->type = LINE_TEXT;
983 l->alt = NULL;
985 asprintf(&l->line, "%s %s", prfx, cmd->cmd);
987 if (TAILQ_EMPTY(&helpwin.page.head))
988 TAILQ_INSERT_HEAD(&helpwin.page.head, l, lines);
989 else
990 TAILQ_INSERT_TAIL(&helpwin.page.head, l, lines);
993 static void
994 rec_compute_help(struct kmap *keymap, char *prfx, size_t len)
996 struct keymap *k;
997 char p[32];
998 const char *kn;
1000 TAILQ_FOREACH(k, &keymap->m, keymaps) {
1001 strlcpy(p, prfx, sizeof(p));
1002 if (*p != '\0')
1003 strlcat(p, " ", sizeof(p));
1004 if (k->meta)
1005 strlcat(p, "M-", sizeof(p));
1006 if ((kn = unkbd(k->key)) != NULL)
1007 strlcat(p, kn, sizeof(p));
1008 else
1009 strlcat(p, keyname(k->key), sizeof(p));
1011 if (k->fn == NULL)
1012 rec_compute_help(&k->map, p, sizeof(p));
1013 else
1014 emit_help_item(p, k->fn);
1018 static void
1019 recompute_help(void)
1021 char p[32] = { 0 };
1023 empty_vlist(&helpwin);
1024 empty_linelist(&helpwin);
1025 rec_compute_help(current_map, p, sizeof(p));
1026 wrap_page(&helpwin, help_cols);
1029 void
1030 vmessage(const char *fmt, va_list ap)
1032 if (evtimer_pending(&clminibufev, NULL))
1033 evtimer_del(&clminibufev);
1035 free(ministate.curmesg);
1036 ministate.curmesg = NULL;
1038 if (fmt != NULL) {
1039 evtimer_set(&clminibufev, handle_clear_minibuf, NULL);
1040 evtimer_add(&clminibufev, &clminibufev_timer);
1042 /* TODO: what to do if the allocation fails here? */
1043 if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
1044 ministate.curmesg = NULL;
1047 redraw_minibuffer();
1048 if (in_minibuffer) {
1049 wrefresh(body);
1050 wrefresh(minibuf);
1051 } else {
1052 wrefresh(minibuf);
1053 wrefresh(body);
1057 void
1058 message(const char *fmt, ...)
1060 va_list ap;
1062 va_start(ap, fmt);
1063 vmessage(fmt, ap);
1064 va_end(ap);
1067 void
1068 start_loading_anim(struct tab *tab)
1070 if (tab->loading_anim)
1071 return;
1072 tab->loading_anim = 1;
1073 evtimer_set(&tab->loadingev, update_loading_anim, tab);
1074 evtimer_add(&tab->loadingev, &loadingev_timer);
1077 static void
1078 update_loading_anim(int fd, short ev, void *d)
1080 struct tab *tab = d;
1082 tab->loading_anim_step = (tab->loading_anim_step+1)%4;
1084 if (tab->flags & TAB_CURRENT) {
1085 redraw_modeline(tab);
1086 wrefresh(modeline);
1087 wrefresh(body);
1088 if (in_minibuffer)
1089 wrefresh(minibuf);
1092 evtimer_add(&tab->loadingev, &loadingev_timer);
1095 static void
1096 stop_loading_anim(struct tab *tab)
1098 if (!tab->loading_anim)
1099 return;
1100 evtimer_del(&tab->loadingev);
1101 tab->loading_anim = 0;
1102 tab->loading_anim_step = 0;
1104 if (!(tab->flags & TAB_CURRENT))
1105 return;
1107 redraw_modeline(tab);
1109 wrefresh(modeline);
1110 wrefresh(body);
1111 if (in_minibuffer)
1112 wrefresh(minibuf);
1115 void
1116 load_url_in_tab(struct tab *tab, const char *url)
1118 message("Loading %s...", url);
1119 start_loading_anim(tab);
1120 load_url(tab, url);
1122 tab->buffer.curs_x = 0;
1123 tab->buffer.curs_y = 0;
1124 redraw_tab(tab);
1127 void
1128 enter_minibuffer(void (*self_insert_fn)(void), void (*donefn)(void),
1129 void (*abortfn)(void), struct histhead *hist)
1131 in_minibuffer = 1;
1132 base_map = &minibuffer_map;
1133 current_map = &minibuffer_map;
1135 base_map->unhandled_input = self_insert_fn;
1137 ministate.donefn = donefn;
1138 ministate.abortfn = abortfn;
1139 memset(ministate.buf, 0, sizeof(ministate.buf));
1140 ministate.buffer.current_line = &ministate.vline;
1141 ministate.buffer.current_line->line = ministate.buf;
1142 ministate.buffer.cpoff = 0;
1143 strlcpy(ministate.buf, "", sizeof(ministate.prompt));
1145 ministate.history = hist;
1146 ministate.hist_cur = NULL;
1147 ministate.hist_off = 0;
1150 void
1151 exit_minibuffer(void)
1153 werase(minibuf);
1155 in_minibuffer = 0;
1156 base_map = &global_map;
1157 current_map = &global_map;
1160 void
1161 switch_to_tab(struct tab *tab)
1163 struct tab *t;
1165 TAILQ_FOREACH(t, &tabshead, tabs) {
1166 t->flags &= ~TAB_CURRENT;
1169 tab->flags |= TAB_CURRENT;
1170 tab->flags &= ~TAB_URGENT;
1173 unsigned int
1174 tab_new_id(void)
1176 return tab_counter++;
1179 struct tab *
1180 new_tab(const char *url)
1182 struct tab *tab;
1184 if ((tab = calloc(1, sizeof(*tab))) == NULL) {
1185 event_loopbreak();
1186 return NULL;
1188 tab->fd = -1;
1190 TAILQ_INIT(&tab->hist.head);
1192 TAILQ_INIT(&tab->buffer.head);
1194 tab->id = tab_new_id();
1195 switch_to_tab(tab);
1197 if (TAILQ_EMPTY(&tabshead))
1198 TAILQ_INSERT_HEAD(&tabshead, tab, tabs);
1199 else
1200 TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
1202 load_url_in_tab(tab, url);
1203 return tab;
1206 static void
1207 session_new_tab_cb(const char *url)
1209 new_tab(url);
1212 static void
1213 usage(void)
1215 fprintf(stderr, "USAGE: %s [-hn] [-c config] [url]\n", getprogname());
1216 fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1219 int
1220 ui_init(int argc, char * const *argv)
1222 char path[PATH_MAX];
1223 const char *url = NEW_TAB_URL;
1224 int ch, configtest = 0, fonf = 0;
1226 if (getenv("NO_COLOR") != NULL)
1227 enable_colors = 0;
1229 strlcpy(path, getenv("HOME"), sizeof(path));
1230 strlcat(path, "/.telescope/config", sizeof(path));
1232 while ((ch = getopt(argc, argv, "c:hn")) != -1) {
1233 switch (ch) {
1234 case 'c':
1235 fonf = 1;
1236 strlcpy(path, optarg, sizeof(path));
1237 break;
1238 case 'n':
1239 configtest = 1;
1240 break;
1241 case 'h':
1242 usage();
1243 return 0;
1244 default:
1245 usage();
1246 return 1;
1249 argc -= optind;
1250 argv += optind;
1252 /* setup keys before reading the config */
1253 TAILQ_INIT(&global_map.m);
1254 global_map.unhandled_input = global_key_unbound;
1256 TAILQ_INIT(&minibuffer_map.m);
1258 config_init();
1259 parseconfig(path, fonf);
1260 if (configtest){
1261 puts("config OK");
1262 exit(0);
1265 if (argc != 0)
1266 url = argv[0];
1268 setlocale(LC_ALL, "");
1270 TAILQ_INIT(&eecmd_history.head);
1271 TAILQ_INIT(&ir_history.head);
1272 TAILQ_INIT(&lu_history.head);
1274 ministate.line.type = LINE_TEXT;
1275 ministate.vline.parent = &ministate.line;
1276 ministate.buffer.current_line = &ministate.vline;
1278 /* initialize help window */
1279 TAILQ_INIT(&helpwin.head);
1281 base_map = &global_map;
1282 current_map = &global_map;
1284 initscr();
1286 if (enable_colors) {
1287 if (has_colors()) {
1288 start_color();
1289 use_default_colors();
1290 } else
1291 enable_colors = 0;
1294 config_apply_style();
1296 raw();
1297 noecho();
1298 nonl();
1299 intrflush(stdscr, FALSE);
1301 if ((tabline = newwin(1, COLS, 0, 0)) == NULL)
1302 return 0;
1303 if ((body = newwin(LINES - 3, COLS, 1, 0)) == NULL)
1304 return 0;
1305 if ((modeline = newwin(1, COLS, LINES-2, 0)) == NULL)
1306 return 0;
1307 if ((minibuf = newwin(1, COLS, LINES-1, 0)) == NULL)
1308 return 0;
1309 if ((help = newwin(1, 1, 1, 0)) == NULL)
1310 return 0;
1312 body_lines = LINES-3;
1313 body_cols = COLS;
1315 wbkgd(body, body_face.body);
1316 wbkgd(minibuf, minibuffer_face.background);
1318 update_x_offset();
1320 keypad(body, TRUE);
1321 scrollok(body, FALSE);
1323 /* non-blocking input */
1324 wtimeout(body, 0);
1326 mvwprintw(body, 0, 0, "");
1328 event_set(&stdioev, 0, EV_READ | EV_PERSIST, dispatch_stdio, NULL);
1329 event_add(&stdioev, NULL);
1331 signal_set(&winchev, SIGWINCH, handle_resize, NULL);
1332 signal_add(&winchev, NULL);
1334 load_last_session(session_new_tab_cb);
1335 if (strcmp(url, NEW_TAB_URL) || TAILQ_EMPTY(&tabshead))
1336 new_tab(url);
1338 return 1;
1341 void
1342 ui_on_tab_loaded(struct tab *tab)
1344 stop_loading_anim(tab);
1345 message("Loaded %s", tab->hist_cur->h);
1347 redraw_tabline();
1348 wrefresh(tabline);
1349 if (in_minibuffer)
1350 wrefresh(minibuf);
1351 else
1352 wrefresh(body);
1355 void
1356 ui_on_tab_refresh(struct tab *tab)
1358 wrap_page(&tab->buffer, body_cols);
1359 if (tab->flags & TAB_CURRENT) {
1360 restore_cursor(&tab->buffer);
1361 redraw_tab(tab);
1362 } else
1363 tab->flags |= TAB_URGENT;
1366 const char *
1367 ui_keyname(int k)
1369 return keyname(k);
1372 void
1373 ui_toggle_side_window(void)
1375 side_window = !side_window;
1376 if (side_window)
1377 recompute_help();
1380 * ugly hack, but otherwise the window doesn't get updated
1381 * until I call handle_resize a second time (i.e. C-l). I
1382 * will be happy to know why something like this is needed.
1384 handle_resize_nodelay(0, 0, NULL);
1385 handle_resize_nodelay(0, 0, NULL);
1388 void
1389 ui_schedule_redraw(void)
1391 handle_resize_nodelay(0, 0, NULL);
1394 void
1395 ui_require_input(struct tab *tab, int hide)
1397 /* TODO: hard-switching to another tab is ugly */
1398 switch_to_tab(tab);
1400 enter_minibuffer(ir_self_insert, ir_select, exit_minibuffer,
1401 &ir_history);
1402 strlcpy(ministate.prompt, "Input required: ",
1403 sizeof(ministate.prompt));
1404 redraw_tab(tab);
1407 void
1408 ui_yornp(const char *prompt, void (*fn)(int, unsigned int),
1409 unsigned int data)
1411 size_t len;
1413 if (in_minibuffer) {
1414 fn(0, data);
1415 return;
1418 yornp_cb = fn;
1419 yornp_data = data;
1420 enter_minibuffer(yornp_self_insert, yornp_self_insert,
1421 yornp_abort, NULL);
1423 len = sizeof(ministate.prompt);
1424 strlcpy(ministate.prompt, prompt, len);
1425 strlcat(ministate.prompt, " (y or n) ", len);
1426 redraw_tab(current_tab());
1429 void
1430 ui_read(const char *prompt, void (*fn)(const char*, unsigned int),
1431 unsigned int data)
1433 size_t len;
1435 if (in_minibuffer)
1436 return;
1438 read_cb = fn;
1439 read_data = data;
1440 enter_minibuffer(read_self_insert, read_select, read_abort,
1441 &read_history);
1443 len = sizeof(ministate.prompt);
1444 strlcpy(ministate.prompt, prompt, len);
1445 strlcat(ministate.prompt, ": ", len);
1446 redraw_tab(current_tab());
1449 void
1450 ui_end(void)
1452 endwin();