2 * Copyright (C) 1998-2012 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file gui.c Curses-based interface for paraslash. */
11 #include <sys/types.h>
14 #include "gui.cmdline.h"
18 #include "ringbuffer.h"
26 /** define the array of error lists needed by para_gui */
28 static char *stat_content
[NUM_STAT_ITEMS
];
30 #define STANDARD_STATUS_BAR "para_gui " PACKAGE_VERSION " (hit ? for help)"
32 static int signal_pipe
;
34 static struct win_data
{
40 } top
, bot
, sb
, in
, sep
;
42 #define RINGBUFFER_SIZE 512
48 static struct ringbuffer
*bot_win_rb
;
49 #define NUM_LINES(len) (1 + (len) / bot.cols)
51 static unsigned scroll_position
;
53 static int cmd_died
, curses_active
;
56 static int command_fds
[2];
57 static int stat_pipe
= -1;
58 static struct gui_args_info conf
;
60 enum {GETCH_MODE
, COMMAND_MODE
, EXTERNAL_MODE
};
63 #define COLOR_STATUSBAR 52
64 #define COLOR_COMMAND 53
65 #define COLOR_OUTPUT 54
67 #define COLOR_ERRMSG 56
68 #define COLOR_WELCOME 57
69 #define COLOR_SEPARATOR 58
76 const char *description
;
77 void (*handler
)(void);
83 char postfix
[MAXLINE
];
89 char content
[MAXLINE
];
92 static struct gui_theme theme
;
97 static void com_help(void);
98 static void com_reread_conf(void);
99 static void com_enlarge_top_win(void);
100 static void com_shrink_top_win(void);
101 static void com_version(void);
102 __noreturn
static void com_quit(void);
103 static void com_refresh(void);
104 static void com_ll_incr(void);
105 static void com_ll_decr(void);
106 static void com_prev_theme(void);
107 static void com_next_theme(void);
108 static void com_scroll_up(void);
109 static void com_scroll_down(void);
110 static void com_page_up(void);
111 static void com_page_down(void);
112 static void com_cancel_scrolling(void);
113 static void com_scroll_top(void);
115 static struct gui_command command_list
[] = {
119 .description
= "print help",
123 .name
= "enlarge_win",
124 .description
= "enlarge the top window",
125 .handler
= com_enlarge_top_win
128 .name
= "shrink_win",
129 .description
= "shrink the top window",
130 .handler
= com_shrink_top_win
133 .name
= "reread_conf",
134 .description
= "reread configuration file",
135 .handler
= com_reread_conf
139 .description
= "exit para_gui",
144 .description
= "redraw the screen",
145 .handler
= com_refresh
148 .name
= "next_theme",
149 .description
= "switch to next theme",
150 .handler
= com_next_theme
153 .name
= "prev_theme",
154 .description
= "switch to previous stream",
155 .handler
= com_prev_theme
159 .description
= "increase loglevel (decreases verbosity)",
160 .handler
= com_ll_incr
164 .description
= "decrease loglevel (increases verbosity)",
165 .handler
= com_ll_decr
169 .description
= "show the para_gui version",
170 .handler
= com_version
174 .description
= "scroll up one line",
175 .handler
= com_scroll_up
178 .name
= "scroll_down",
179 .description
= "scroll down one line",
180 .handler
= com_scroll_down
184 .description
= "scroll up one page",
185 .handler
= com_page_up
189 .description
= "scroll down one page",
190 .handler
= com_page_down
193 .name
= "scroll_top",
194 .description
= "scroll to top of buffer",
195 .handler
= com_scroll_top
198 .name
= "cancel_scroll",
199 .description
= "deactivate scroll mode",
200 .handler
= com_cancel_scrolling
206 static int find_cmd_byname(char *name
)
210 for (i
= 0; command_list
[i
].handler
; i
++)
211 if (!strcmp(command_list
[i
].name
, name
))
216 /* taken from mutt */
217 static char *km_keyname(int c
)
222 sprintf(buf
, "<up>");
226 sprintf(buf
, "<down>");
230 sprintf(buf
, "<left>");
233 if (c
== KEY_RIGHT
) {
234 sprintf(buf
, "<right>");
237 if (c
== KEY_NPAGE
) {
238 sprintf(buf
, "<npage>");
241 if (c
== KEY_PPAGE
) {
242 sprintf(buf
, "<ppage>");
246 sprintf(buf
, "<home>");
250 sprintf(buf
, "<end>");
253 if (c
< 256 && c
> -128 && iscntrl((unsigned char) c
)) {
258 buf
[1] = (c
+ '@') & 0x7f;
261 snprintf(buf
, sizeof(buf
), "\\%d%d%d", c
>> 6,
262 (c
>> 3) & 7, c
& 7);
263 } else if (c
>= KEY_F0
&& c
< KEY_F(256))
264 sprintf(buf
, "<F%d>", c
- KEY_F0
);
266 snprintf(buf
, sizeof(buf
), "%c", (unsigned char) c
);
268 snprintf(buf
, sizeof(buf
), "\\x%hx", (unsigned short) c
);
272 static char *configfile_exists(void)
274 static char *config_file
;
277 if (!conf
.config_file_given
) {
279 char *home
= para_homedir();
280 config_file
= make_message("%s/.paraslash/gui.conf",
286 tmp
= conf
.config_file_arg
;
287 return file_exists(tmp
)? tmp
: NULL
;
291 * print num spaces to curses window
293 static void add_spaces(WINDOW
* win
, unsigned int num
)
302 * print aligned string to curses window. This function always prints
305 static int align_str(WINDOW
* win
, char *str
, unsigned int len
,
308 int i
, num
; /* of spaces */
312 num
= len
- strlen(str
);
317 /* replace control characters by spaces */
318 for (i
= 0; i
< len
&& str
[i
]; i
++) {
319 if (str
[i
] == '\n' || str
[i
] == '\r' || str
[i
] == '\f')
324 add_spaces(win
, num
);
325 } else if (align
== RIGHT
) {
326 add_spaces(win
, num
);
329 add_spaces(win
, num
/ 2);
330 waddstr(win
, str
[0]? str
: "");
331 add_spaces(win
, num
- num
/ 2);
336 __printf_2_3
static void print_in_bar(int color
, const char *fmt
,...)
343 wattron(in
.win
, COLOR_PAIR(color
));
345 xvasprintf(&msg
, fmt
, ap
);
348 align_str(in
.win
, msg
, sb
.cols
, LEFT
);
354 * update the status bar
356 static void print_status_bar(void)
362 tmp
= para_strdup(STANDARD_STATUS_BAR
);
364 align_str(sb
.win
, tmp
, sb
.cols
, CENTER
);
370 * get the number of the oldest rbe that is (partially) visible. On return,
371 * lines contains the sum of the number of lines of all visable entries. If the
372 * first one is only partially visible, lines is greater than bot.lines.
374 static int first_visible_rbe(unsigned *lines
)
378 for (i
= scroll_position
; i
< RINGBUFFER_SIZE
; i
++) {
379 struct rb_entry
*rbe
= ringbuffer_get(bot_win_rb
, i
);
383 // fprintf(stderr, "found: %s\n", rbe->msg);
384 rbe_lines
= NUM_LINES(rbe
->len
);
385 if (rbe_lines
> bot
.lines
)
388 if (*lines
>= bot
.lines
)
391 return RINGBUFFER_SIZE
- 1;
394 static int draw_top_rbe(unsigned *lines
)
397 int offset
, fvr
= first_visible_rbe(lines
);
398 struct rb_entry
*rbe
;
402 wmove(bot
.win
, 0, 0);
403 rbe
= ringbuffer_get(bot_win_rb
, fvr
);
406 len
= strlen(rbe
->msg
);
407 if (*lines
> bot
.lines
) {
408 /* first rbe is only partially visible */
409 offset
= (*lines
- bot
.lines
) * bot
.cols
;
410 assert(offset
<= len
);
413 wattron(bot
.win
, COLOR_PAIR(rbe
->color
));
414 waddstr(bot
.win
, rbe
->msg
+ offset
);
415 *lines
= NUM_LINES(len
- offset
);
419 static void redraw_bot_win(void)
424 wmove(bot
.win
, 0, 0);
426 i
= draw_top_rbe(&lines
);
429 while (i
> 0 && lines
< bot
.lines
) {
430 struct rb_entry
*rbe
= ringbuffer_get(bot_win_rb
, --i
);
433 waddstr(bot
.win
, "\n");
436 lines
+= NUM_LINES(rbe
->len
);
437 wattron(bot
.win
, COLOR_PAIR(rbe
->color
));
438 waddstr(bot
.win
, "\n");
439 waddstr(bot
.win
, rbe
->msg
);
445 static void rb_add_entry(int color
, char *msg
)
447 struct rb_entry
*old
, *new = para_malloc(sizeof(struct rb_entry
));
450 new->len
= strlen(msg
);
452 old
= ringbuffer_add(bot_win_rb
, new);
453 // fprintf(stderr, "added: %s\n", new->msg);
458 if (scroll_position
) {
459 /* discard current scrolling, like xterm does */
464 wattron(bot
.win
, COLOR_PAIR(color
));
465 getyx(bot
.win
, y
, x
);
467 waddstr(bot
.win
, "\n");
468 waddstr(bot
.win
, msg
);
472 * print formated output to bot win and refresh
474 __printf_2_3
static void outputf(int color
, const char* fmt
,...)
482 xvasprintf(&msg
, fmt
, ap
);
484 rb_add_entry(color
, msg
);
488 static int add_output_line(char *line
, void *data
)
490 int color
= *(int *)data
? COLOR_ERRMSG
: COLOR_OUTPUT
;
493 rb_add_entry(color
, para_strdup(line
));
499 __printf_2_3
void curses_log(int ll
, const char *fmt
,...)
505 if (ll
< loglevel
|| !curses_active
)
514 color
= COLOR_ERRMSG
;
517 xvasprintf(&msg
, fmt
, ap
);
520 rb_add_entry(color
, msg
);
523 __printf_2_3
void (*para_log
)(int, const char*, ...) = curses_log
;
525 static void setup_signal_handling(void)
527 signal_pipe
= para_signal_init();
528 para_install_sighandler(SIGINT
);
529 para_install_sighandler(SIGTERM
);
530 para_install_sighandler(SIGCHLD
);
531 para_install_sighandler(SIGWINCH
);
532 para_install_sighandler(SIGUSR1
);
533 para_sigaction(SIGHUP
, SIG_IGN
);
536 __noreturn
static void do_exit(int ret
)
538 para_sigaction(SIGTERM
, SIG_IGN
);
543 static void shutdown_curses(void)
552 __noreturn
static void finish(int ret
)
559 * exit curses and print given message to stdout/stderr
561 __noreturn __printf_2_3
static void msg_n_exit(int ret
, const char* fmt
, ...)
564 FILE *outfd
= ret
? stderr
: stdout
;
568 vfprintf(outfd
, fmt
, argp
);
573 static void print_welcome(void)
575 if (loglevel
> LL_NOTICE
)
577 outputf(COLOR_WELCOME
, "Welcome to para_gui " PACKAGE_VERSION
578 " \"" CODENAME
"\". Theme: %s", theme
.name
);
585 static void init_wins(int top_lines
)
589 top
.lines
= top_lines
;
594 bot
.lines
= LINES
- top
.lines
- 3;
596 bot
.begy
= top
.lines
+ 1;
611 sep
.begy
= top
.lines
;
614 assume_default_colors(theme
.default_fg
, theme
.default_bg
);
616 mvwin(top
.win
, top
.begy
, top
.begx
);
617 wresize(top
.win
, top
.lines
, top
.cols
);
619 mvwin(sb
.win
, sb
.begy
, sb
.begx
);
620 wresize(sb
.win
, sb
.lines
, sb
.cols
);
622 mvwin(sep
.win
, sep
.begy
, sep
.begx
);
623 wresize(sep
.win
, sep
.lines
, sep
.cols
);
625 mvwin(bot
.win
, bot
.begy
, bot
.begx
);
626 wresize(bot
.win
, bot
.lines
, bot
.cols
);
628 mvwin(in
.win
, in
.begy
, in
.begx
);
629 wresize(in
.win
, in
.lines
, in
.cols
);
631 sep
.win
= newwin(sep
.lines
, sep
.cols
, sep
.begy
, sep
.begx
);
632 top
.win
= newwin(top
.lines
, top
.cols
, top
.begy
, top
.begx
);
633 bot
.win
= newwin(bot
.lines
, bot
.cols
, bot
.begy
, bot
.begx
);
634 sb
.win
= newwin(sb
.lines
, sb
.cols
, sb
.begy
, sb
.begx
);
635 in
.win
= newwin(in
.lines
, in
.cols
, in
.begy
, in
.begx
);
636 if (!top
.win
|| !bot
.win
|| !sb
.win
|| !in
.win
|| !sep
.win
)
637 msg_n_exit(1, "Error: Cannot create curses windows\n");
641 scrollok(bot
.win
, 1);
642 wattron(sb
.win
, COLOR_PAIR(COLOR_STATUSBAR
));
643 wattron(sep
.win
, COLOR_PAIR(COLOR_SEPARATOR
));
644 wattron(bot
.win
, COLOR_PAIR(COLOR_BOT
));
645 wattron(top
.win
, COLOR_PAIR(COLOR_TOP
));
657 wmove(sep
.win
, 0, 0);
658 for (i
= 1; i
<= COLS
; i
++)
659 waddstr(sep
.win
, theme
.sep_str
);
662 wnoutrefresh(top
.win
);
663 wnoutrefresh(bot
.win
);
664 //wnoutrefresh(sb.win);
666 wnoutrefresh(in
.win
);
667 wnoutrefresh(sep
.win
);
672 * Print stat item #i to curses window
674 static void print_stat_item(int i
)
677 struct stat_item_data d
= theme
.data
[i
];
678 char *c
= stat_content
[i
];
680 if (!curses_active
|| !d
.len
|| !c
)
682 tmp
= make_message("%s%s%s", d
.prefix
, c
, d
.postfix
);
683 wmove(top
.win
, d
.y
* top
.lines
/ 100, d
.x
* COLS
/ 100);
685 wattron(top
.win
, COLOR_PAIR(i
+ 1));
686 align_str(top
.win
, tmp
, d
.len
* COLS
/ 100, d
.align
);
691 static int update_item(int item_num
, char *buf
)
693 char **c
= stat_content
+ item_num
;
700 *c
= para_strdup("(artist tag not set)");
703 *c
= para_strdup("(title tag not set)");
706 *c
= para_strdup("????");
709 *c
= para_strdup("(album tag not set)");
712 *c
= para_strdup("(comment tag not set)");
716 *c
= para_strdup(buf
);
718 print_stat_item(item_num
);
722 static int read_stat_pipe(fd_set
*rfds
)
725 static int bufsize
, loaded
;
731 if (loaded
>= bufsize
) {
732 if (bufsize
> 1000 * 1000) {
736 bufsize
+= bufsize
+ 1000;
737 buf
= para_realloc(buf
, bufsize
);
739 assert(loaded
< bufsize
);
740 ret
= read_nonblock(stat_pipe
, buf
+ loaded
, bufsize
- loaded
,
743 ret2
= for_each_stat_item(buf
, loaded
, update_item
);
744 if (ret
< 0 || ret2
< 0) {
746 return ret2
< 0? ret2
: ret
;
748 sz
= ret2
; /* what is left */
749 if (sz
> 0 && sz
< loaded
)
750 memmove(buf
, buf
+ loaded
- sz
, sz
);
755 static void print_all_items(void)
761 FOR_EACH_STATUS_ITEM(i
)
765 static void clear_all_items(void)
769 FOR_EACH_STATUS_ITEM(i
) {
770 free(stat_content
[i
]);
771 stat_content
[i
] = para_strdup("");
775 static void init_pair_or_die(short pair
, short f
, short b
)
777 if (init_pair(pair
, f
, b
) == ERR
)
778 msg_n_exit(EXIT_FAILURE
, "fatal: init_pair() failed\n");
781 static void init_colors_or_die(void)
786 msg_n_exit(EXIT_FAILURE
, "fatal: No color term\n");
787 if (start_color() == ERR
)
788 msg_n_exit(EXIT_FAILURE
, "fatal: failed to start colors\n");
789 FOR_EACH_STATUS_ITEM(i
)
790 if (theme
.data
[i
].len
)
791 init_pair_or_die(i
+ 1, theme
.data
[i
].fg
,
793 init_pair_or_die(COLOR_STATUSBAR
, theme
.sb_fg
, theme
.sb_bg
);
794 init_pair_or_die(COLOR_COMMAND
, theme
.cmd_fg
, theme
.cmd_bg
);
795 init_pair_or_die(COLOR_OUTPUT
, theme
.output_fg
, theme
.output_bg
);
796 init_pair_or_die(COLOR_MSG
, theme
.msg_fg
, theme
.msg_bg
);
797 init_pair_or_die(COLOR_ERRMSG
, theme
.err_msg_fg
, theme
.err_msg_bg
);
798 init_pair_or_die(COLOR_WELCOME
, theme
.welcome_fg
, theme
.welcome_bg
);
799 init_pair_or_die(COLOR_SEPARATOR
, theme
.sep_fg
, theme
.sep_bg
);
800 init_pair_or_die(COLOR_TOP
, theme
.default_fg
, theme
.default_bg
);
801 init_pair_or_die(COLOR_BOT
, theme
.default_fg
, theme
.default_bg
);
804 /* (Re-)initialize the curses library. */
805 static void init_curses(void)
808 if (top
.win
&& refresh() == ERR
) /* refesh is really needed */
809 msg_n_exit(EXIT_FAILURE
, "refresh() failed\n");
810 if (LINES
< theme
.lines_min
|| COLS
< theme
.cols_min
)
811 msg_n_exit(EXIT_FAILURE
, "Error: Terminal (%dx%d) too small"
812 " (need at least %dx%d)\n", COLS
, LINES
,
813 theme
.cols_min
, theme
.lines_min
);
814 curs_set(0); /* make cursor invisible, ignore errors */
815 nonl(); /* do not NL->CR/NL on output, always returns OK */
816 /* don't echo input */
818 msg_n_exit(EXIT_FAILURE
, "fatal: noecho() failed\n");
819 /* take input chars one at a time, no wait for \n */
821 msg_n_exit(EXIT_FAILURE
, "fatal: cbreak() failed\n");
822 init_colors_or_die();
823 clear(); /* ignore non-fatal errors */
824 init_wins(theme
.top_lines_default
);
826 // noecho(); /* don't echo input */
829 static void check_sigchld(void)
834 ret
= para_reap_child(&pid
);
837 if (pid
== cmd_pid
) {
841 goto reap_next_child
;
845 * This sucker modifies its first argument. *handler and *arg are
846 * pointers to 0-terminated strings (inside line). Crap.
848 static int split_key_map(char *line
, char **handler
, char **arg
)
850 if (!(*handler
= strchr(line
+ 1, ':')))
854 if (!(*arg
= strchr(*handler
, ':')))
863 static int check_key_map_args(void)
867 char *tmp
= NULL
, *handler
, *arg
;
869 for (i
= 0; i
< conf
.key_map_given
; ++i
) {
870 s
= conf
.key_map_arg
[i
];
874 tmp
= para_strdup(s
);
875 if (!split_key_map(tmp
, &handler
, &arg
))
877 if (strlen(handler
) != 1)
886 if (find_cmd_byname(arg
) < 0)
896 * React to various signal-related events
898 static void handle_signal(int sig
)
902 msg_n_exit(EXIT_FAILURE
,
903 "only the good die young (caught SIGTERM))\n");
913 PARA_WARNING_LOG("caught SIGINT, reset");
914 /* Nothing to do. SIGINT killed our child which gets noticed
915 * by do_select and resets everything.
919 PARA_NOTICE_LOG("got SIGUSR1, rereading configuration");
928 static int open_stat_pipe(void)
931 int ret
, fds
[3] = {0, 1, 0};
938 * Sleep a bit to avoid a busy loop. As the call to sleep() may
939 * be interrupted by SIGCHLD, we simply wait until the call
944 ret
= para_exec_cmdline_pid(&pid
, conf
.stat_cmd_arg
, fds
);
947 ret
= mark_fd_nonblocking(fds
[1]);
954 #define COMMAND_BUF_SIZE 4096
957 * This is the core select loop. Besides the (internal) signal
958 * pipe, the following other fds are checked according to the mode:
960 * GETCH_MODE: check stdin, return when key is pressed
962 * COMMAND_MODE: check command fds and stdin. Return when peer has closed both
963 * stdout and stderr or when any key is pressed.
965 * EXTERNAL_MODE: Check only signal pipe. Used when an external command
966 * is running. During that time curses is disabled. Returns when
969 static int do_select(int mode
)
972 int ret
, i
, max_fileno
;
973 char command_buf
[2][COMMAND_BUF_SIZE
] = {"", ""};
974 int cbo
[2] = {0, 0}; /* command buf offsets */
978 tv
.tv_sec
= conf
.timeout_arg
/ 1000;
979 tv
.tv_usec
= (conf
.timeout_arg
% 1000) * 1000;
980 // ret = refresh_status();
984 stat_pipe
= open_stat_pipe();
986 para_fd_set(stat_pipe
, &rfds
, &max_fileno
);
988 para_fd_set(signal_pipe
, &rfds
, &max_fileno
);
989 /* command pipe only for COMMAND_MODE */
990 if (mode
== COMMAND_MODE
) {
991 if (command_fds
[0] >= 0)
992 para_fd_set(command_fds
[0], &rfds
, &max_fileno
);
993 if (command_fds
[1] >= 0)
994 para_fd_set(command_fds
[1], &rfds
, &max_fileno
);
996 ret
= para_select(max_fileno
+ 1, &rfds
, NULL
, &tv
);
998 goto check_return
; /* skip fd checks */
1000 ret
= para_next_signal(&rfds
);
1003 /* read command pipe if ready */
1004 if (mode
== COMMAND_MODE
) {
1005 for (i
= 0; i
< 2; i
++) {
1007 if (command_fds
[i
] < 0)
1009 ret
= read_nonblock(command_fds
[i
],
1010 command_buf
[i
] + cbo
[i
],
1011 COMMAND_BUF_SIZE
- 1 - cbo
[i
], &rfds
, &sz
);
1014 cbo
[i
] = for_each_line(command_buf
[i
], cbo
[i
],
1015 add_output_line
, &i
);
1019 PARA_NOTICE_LOG("closing command fd %d: %s",
1020 i
, para_strerror(-ret
));
1021 close(command_fds
[i
]);
1022 command_fds
[i
] = -1;
1023 if (command_fds
[!i
] < 0) /* both fds closed */
1028 ret
= read_stat_pipe(&rfds
);
1030 PARA_NOTICE_LOG("closing stat pipe: %s\n", para_strerror(-ret
));
1034 free(stat_content
[SI_BASENAME
]);
1035 stat_content
[SI_BASENAME
] =
1036 para_strdup("stat command terminated!?");
1042 ret
= wgetch(top
.win
);
1043 if (ret
!= ERR
&& ret
!= KEY_RESIZE
) {
1044 if (command_fds
[0] >= 0) {
1045 close(command_fds
[0]);
1046 command_fds
[0] = -1;
1048 if (command_fds
[1] >= 0) {
1049 close(command_fds
[1]);
1050 command_fds
[1] = -1;
1053 kill(cmd_pid
, SIGTERM
);
1058 ret
= wgetch(top
.win
);
1059 if (ret
!= ERR
&& ret
!= KEY_RESIZE
)
1072 * read from command pipe and print data to bot window
1074 static void send_output(void)
1078 ret
= mark_fd_nonblocking(command_fds
[0]);
1081 ret
= mark_fd_nonblocking(command_fds
[1]);
1084 if (do_select(COMMAND_MODE
) >= 0)
1085 PARA_INFO_LOG("command complete");
1087 PARA_NOTICE_LOG("command aborted");
1088 print_in_bar(COLOR_MSG
, " ");
1091 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
1092 close(command_fds
[0]);
1093 close(command_fds
[1]);
1096 static void para_cmd(char *cmd
)
1098 int ret
, fds
[3] = {0, 1, 1};
1099 char *c
= make_message(BINDIR
"/para_client -- %s", cmd
);
1101 outputf(COLOR_COMMAND
, "%s", c
);
1102 print_in_bar(COLOR_MSG
, "executing client command, hit any key to abort\n");
1103 ret
= para_exec_cmdline_pid(&cmd_pid
, c
, fds
);
1107 command_fds
[0] = fds
[1];
1108 command_fds
[1] = fds
[2];
1113 * exec command and print output to bot win
1115 static void display_cmd(char *cmd
)
1117 int fds
[3] = {0, 1, 1};
1119 print_in_bar(COLOR_MSG
, "executing display command, hit any key to abort");
1120 outputf(COLOR_COMMAND
, "%s", cmd
);
1121 if (para_exec_cmdline_pid(&cmd_pid
, cmd
, fds
) < 0)
1123 command_fds
[0] = fds
[1];
1124 command_fds
[1] = fds
[2];
1129 * shutdown curses and stat pipe before executing external commands
1131 static void external_cmd(char *cmd
)
1133 int fds
[3] = {-1, -1, -1};
1138 if (para_exec_cmdline_pid(&cmd_pid
, cmd
, fds
) < 0)
1141 do_select(EXTERNAL_MODE
);
1145 static void print_scroll_msg(void)
1147 unsigned lines_total
, filled
= ringbuffer_filled(bot_win_rb
);
1148 int first_rbe
= first_visible_rbe(&lines_total
);
1149 print_in_bar(COLOR_MSG
, "scrolled view: %d-%d/%d\n", filled
- first_rbe
,
1150 filled
- scroll_position
, ringbuffer_filled(bot_win_rb
));
1153 static void com_scroll_top(void)
1155 int i
= RINGBUFFER_SIZE
- 1;
1158 while (i
> 0 && !ringbuffer_get(bot_win_rb
, i
))
1160 /* i is oldest entry */
1161 for (; lines
< bot
.lines
&& i
>= 0; i
--) {
1162 struct rb_entry
*rbe
= ringbuffer_get(bot_win_rb
, i
);
1165 lines
+= NUM_LINES(strlen(rbe
->msg
));
1168 if (lines
> 0 && scroll_position
!= i
) {
1169 scroll_position
= i
;
1174 print_in_bar(COLOR_ERRMSG
, "top of buffer is shown\n");
1177 static void com_cancel_scrolling(void)
1180 if (scroll_position
== 0) {
1181 print_in_bar(COLOR_ERRMSG
, "bottom of buffer is shown\n");
1184 scroll_position
= 0;
1188 static void com_page_down(void)
1191 int i
= scroll_position
;
1192 while (lines
< bot
.lines
&& --i
> 0) {
1193 struct rb_entry
*rbe
= ringbuffer_get(bot_win_rb
, i
);
1196 lines
+= NUM_LINES(strlen(rbe
->msg
));
1199 scroll_position
= i
;
1204 print_in_bar(COLOR_ERRMSG
, "bottom of buffer is shown\n");
1207 static void com_page_up(void)
1210 int fvr
= first_visible_rbe(&lines
);
1212 if (fvr
< 0 || fvr
+ 1 >= ringbuffer_filled(bot_win_rb
)) {
1213 print_in_bar(COLOR_ERRMSG
, "top of buffer is shown\n");
1216 scroll_position
= fvr
+ 1;
1217 for (; scroll_position
> 0; scroll_position
--) {
1218 first_visible_rbe(&lines
);
1219 if (lines
== bot
.lines
)
1226 static void com_scroll_down(void)
1228 struct rb_entry
*rbe
;
1231 if (!scroll_position
) {
1232 print_in_bar(COLOR_ERRMSG
, "bottom of buffer is shown\n");
1236 rbe
= ringbuffer_get(bot_win_rb
, scroll_position
);
1237 rbe_lines
= NUM_LINES(rbe
->len
);
1238 wscrl(bot
.win
, rbe_lines
);
1239 wmove(bot
.win
, bot
.lines
- rbe_lines
, 0);
1240 wattron(bot
.win
, COLOR_PAIR(rbe
->color
));
1241 waddstr(bot
.win
, rbe
->msg
);
1246 static void com_scroll_up(void)
1248 struct rb_entry
*rbe
= NULL
;
1250 int i
, first_rbe
, num_scroll
;
1252 /* the entry that is going to vanish */
1253 rbe
= ringbuffer_get(bot_win_rb
, scroll_position
);
1256 num_scroll
= NUM_LINES(rbe
->len
);
1257 first_rbe
= first_visible_rbe(&lines
);
1258 if (first_rbe
< 0 || (first_rbe
== ringbuffer_filled(bot_win_rb
) - 1))
1261 wscrl(bot
.win
, -num_scroll
);
1262 i
= draw_top_rbe(&lines
);
1265 while (i
> 0 && lines
< num_scroll
) {
1267 rbe
= ringbuffer_get(bot_win_rb
, --i
);
1270 rbe_lines
= NUM_LINES(rbe
->len
);
1272 // fprintf(stderr, "msg: %s\n", rbe->msg);
1273 wattron(bot
.win
, COLOR_PAIR(rbe
->color
));
1274 waddstr(bot
.win
, "\n");
1275 waddstr(bot
.win
, rbe
->msg
);
1284 print_in_bar(COLOR_ERRMSG
, "top of buffer is shown\n");
1287 static void com_ll_decr(void)
1289 if (loglevel
<= LL_DEBUG
) {
1290 print_in_bar(COLOR_ERRMSG
,
1291 "loglevel already at maximal verbosity\n");
1295 print_in_bar(COLOR_MSG
, "loglevel set to %d\n", loglevel
);
1298 static void com_ll_incr(void)
1300 if (loglevel
>= LL_EMERG
) {
1301 print_in_bar(COLOR_ERRMSG
,
1302 "loglevel already at minimal verbosity\n");
1306 print_in_bar(COLOR_MSG
, "loglevel set to %d\n", loglevel
);
1310 * reread configuration, terminate on errors
1312 static void com_reread_conf(void)
1314 char *cf
=configfile_exists();
1315 struct gui_cmdline_parser_params params
= {
1318 .check_required
= 0,
1319 .check_ambiguity
= 0,
1324 PARA_WARNING_LOG("there is no configuration to read");
1327 PARA_INFO_LOG("rereading command line options and config file");
1328 gui_cmdline_parser_ext(_argc
, _argv
, &conf
, ¶ms
);
1329 if (gui_cmdline_parser_config_file(cf
, &conf
, ¶ms
) != 0) {
1330 PARA_EMERG_LOG("errors in config file");
1331 finish(EXIT_FAILURE
);
1333 PARA_NOTICE_LOG("config file reloaded");
1334 if (check_key_map_args() < 0)
1335 finish(EXIT_FAILURE
);
1338 static void com_help(void)
1342 for (i
= 0; i
< conf
.key_map_given
; ++i
) {
1343 char *handler
, *arg
, *tmp
= para_strdup(conf
.key_map_arg
[i
]);
1344 const char *handler_text
= "???", *desc
= NULL
;
1346 if (!split_key_map(tmp
, &handler
, &arg
)) {
1352 handler_text
= "internal";
1353 desc
= command_list
[find_cmd_byname(arg
)].description
;
1355 case 'x': handler_text
= "external"; break;
1356 case 'd': handler_text
= "display "; break;
1357 case 'p': handler_text
= "para "; break;
1359 outputf(COLOR_MSG
, "%s\t%s\t%s%s\t%s", tmp
, handler_text
, arg
,
1360 strlen(arg
) < 8? "\t" : "",
1364 for (i
= 0; command_list
[i
].handler
; i
++) {
1365 struct gui_command gc
= command_list
[i
];
1367 outputf(COLOR_MSG
, "%s\tinternal\t%s\t%s%s", gc
.key
, gc
.name
,
1368 strlen(gc
.name
) < 8? "\t" : "",
1371 print_in_bar(COLOR_MSG
, "try \"para_gui -h\" or \"para_client help\" "
1375 static void com_shrink_top_win(void)
1377 if (top
.lines
<= theme
.top_lines_min
) {
1378 PARA_WARNING_LOG("can not decrease top window");
1381 init_wins(top
.lines
- 1);
1384 print_in_bar(COLOR_MSG
, "%s", "decreased top window");
1387 static void com_enlarge_top_win(void)
1389 if (bot
.lines
< 3) {
1390 PARA_WARNING_LOG("can not increase top window");
1393 init_wins(top
.lines
+ 1);
1396 print_in_bar(COLOR_MSG
, "increased top window");
1399 static void com_version(void)
1401 print_in_bar(COLOR_MSG
, "para_gui " PACKAGE_VERSION
" \""
1405 __noreturn
static void com_quit(void)
1410 static void com_refresh(void)
1416 static void change_theme(int next
)
1422 /* This seems to be needed twice, why? */
1425 PARA_NOTICE_LOG("new theme: %s", theme
.name
);
1428 static void com_next_theme(void)
1433 static void com_prev_theme(void)
1439 static void handle_command(int c
)
1443 /* first check user's key bindings */
1444 for (i
= 0; i
< conf
.key_map_given
; ++i
) {
1445 char *tmp
, *handler
, *arg
;
1447 tmp
= para_strdup(conf
.key_map_arg
[i
]);
1448 if (!split_key_map(tmp
, &handler
, &arg
)) {
1452 if (strcmp(tmp
, km_keyname(c
))) {
1456 if (*handler
== 'd')
1458 else if (*handler
== 'x')
1460 else if (*handler
== 'p')
1462 else if (*handler
== 'i') {
1463 int num
= find_cmd_byname(arg
);
1465 command_list
[num
].handler();
1470 /* not found, check internal key bindings */
1471 for (i
= 0; command_list
[i
].handler
; i
++) {
1472 if (!strcmp(km_keyname(c
), command_list
[i
].key
)) {
1473 command_list
[i
].handler();
1477 print_in_bar(COLOR_ERRMSG
, "key '%s' is not bound, press ? for help",
1481 int main(int argc
, char *argv
[])
1489 if (gui_cmdline_parser(argc
, argv
, &conf
) != 0)
1491 HANDLE_VERSION_FLAG("gui", conf
);
1492 cf
= configfile_exists();
1493 if (!cf
&& conf
.config_file_given
) {
1494 fprintf(stderr
, "can not read config file %s\n",
1495 conf
.config_file_arg
);
1499 struct gui_cmdline_parser_params params
= {
1502 .check_required
= 0,
1503 .check_ambiguity
= 0,
1506 if (gui_cmdline_parser_config_file(cf
, &conf
, ¶ms
) != 0)
1509 loglevel
= get_loglevel_by_name(conf
.loglevel_arg
);
1510 if (check_key_map_args() < 0) {
1511 fprintf(stderr
, "invalid key map\n");
1514 init_theme_or_die(conf
.theme_arg
, &theme
);
1515 top
.lines
= theme
.top_lines_default
;
1516 setup_signal_handling();
1517 bot_win_rb
= ringbuffer_new(RINGBUFFER_SIZE
);
1518 initscr(); /* needed only once, always successful */
1523 ret
= do_select(GETCH_MODE
);
1526 print_in_bar(COLOR_MSG
, " ");
1527 handle_command(ret
);