1 /* Copyright (C) 2011 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
3 /** \file interactive.c Readline abstraction for interactive sessions. */
8 #include <readline/readline.h>
9 #include <readline/history.h>
10 #include <sys/ioctl.h>
14 #include "buffer_tree.h"
17 #include "interactive.h"
22 struct i9e_client_info *ici;
26 char empty_line[1000];
27 char key_sequence[32];
28 unsigned key_sequence_length;
30 struct btr_node *stdout_btrn;
31 bool last_write_was_status;
39 static struct i9e_private i9e_private, *i9ep = &i9e_private;
42 * Return the error state of the i9e task.
44 * This is mainly useful for other tasks to tell whether the i9e task is still
47 * \return A negative return value of zero means the i9e task terminated. Only
48 * in this case it is safe to call i9e_close().
50 int i9e_get_error(void)
52 return task_status(i9ep->task);
55 static bool is_prefix(const char *partial, const char *full, size_t len)
58 len = strlen(partial);
59 return !strncmp(partial, full, len);
63 * Generator function for command completion. STATE lets us know whether
64 * to start from scratch; without any state (i.e. STATE == 0), then we
65 * start at the top of the list.
67 static char *command_generator(const char *text, int state)
69 static int list_index, len;
71 struct i9e_client_info *ici = i9ep->ici;
73 rl_attempted_completion_over = 1; /* disable filename completion */
75 * If this is a new word to complete, initialize now. This includes
76 * saving the length of TEXT for efficiency, and initializing the index
83 /* Return the next name which partially matches from the command list. */
84 while ((name = ici->completers[list_index].name)) {
86 if (is_prefix(text, name, len))
87 return para_strdup(name);
89 return NULL; /* no names matched */
92 static void reset_completion_result(struct i9e_completion_result *cr)
94 cr->dont_append_space = false;
95 cr->filename_completion_desired = false;
99 static void create_matches(struct i9e_completion_info *ci,
100 struct i9e_completer *completers,
101 struct i9e_completion_result *cr)
105 reset_completion_result(cr);
107 ret = create_argv(ci->buffer, " ", &ci->argv);
108 if (ret < 0 || !ci->argv[0])
112 ci->word_num = compute_word_num(ci->buffer, " ", ci->point);
113 for (i = 0; completers[i].name; i++) {
114 if (strcmp(completers[i].name, ci->argv[0]) != 0)
116 completers[i].completer(ci, cr);
119 PARA_DEBUG_LOG("current word: %d (%s)\n", ci->word_num,
120 ci->argv[ci->word_num]);
122 for (i = 0; cr->matches[i]; i++)
123 PARA_DEBUG_LOG("match %d: %s\n", i, cr->matches[i]);
126 static char *completion_generator(const char *word, int state)
128 static int list_index;
129 static char **argv, **matches;
130 struct i9e_completer *completers = i9ep->ici->completers;
131 struct i9e_completion_info ci = {
132 .word = (char *)word,
134 .buffer = rl_line_buffer,
136 struct i9e_completion_result cr = {.matches = NULL};
140 /* clean up previous matches and set defaults */
146 rl_completion_append_character = ' ';
147 rl_completion_suppress_append = false;
148 rl_attempted_completion_over = true;
150 create_matches(&ci, completers, &cr);
152 matches = cr.matches;
154 rl_completion_suppress_append = cr.dont_append_space;
155 rl_attempted_completion_over = !cr.filename_completion_desired;
159 return matches[list_index++];
163 * Attempt to complete on the contents of TEXT. START and END bound the
164 * region of rl_line_buffer that contains the word to complete. TEXT is
165 * the word to complete. We can use the entire contents of rl_line_buffer
166 * in case we want to do some simple parsing. Return the array of matches,
167 * or NULL if there aren't any.
169 static char **i9e_completer(const char *text, int start, __a_unused int end)
171 struct i9e_client_info *ici = i9ep->ici;
173 if (!ici->completers)
175 /* Complete on command names if this is the first word in the line. */
177 return rl_completion_matches(text, command_generator);
178 return rl_completion_matches(text, completion_generator);
182 * Prepare writing to stdout.
184 * \param producer The buffer tree node which produces output.
186 * The i9e subsystem maintains a buffer tree node which may be attached to
187 * another node which generates output (a "producer"). When attached, the i9e
188 * buffer tree node copies the buffers generated by the producer to stdout.
190 * This function attaches the i9e input queue to an output queue of \a
193 void i9e_attach_to_stdout(struct btr_node *producer)
195 btr_remove_node(&i9ep->stdout_btrn);
196 i9ep->stdout_btrn = btr_new_node(&(struct btr_node_description)
197 EMBRACE(.name = "interactive_stdout", .parent = producer));
198 rl_set_keymap(i9ep->bare_km);
201 static void wipe_bottom_line(void)
203 fprintf(i9ep->stderr_stream, "\r%s\r", i9ep->empty_line);
206 #ifndef RL_FREE_KEYMAP_DECLARED
208 * Free all storage associated with a keymap.
210 * This function is not declared in the readline headers although the symbol is
211 * exported and the function is documented in the readline info file. So we
212 * have to declare it here.
214 * \param keymap The keymap to deallocate.
216 void rl_free_keymap(Keymap keymap);
220 * Reset the terminal and save the in-memory command line history.
222 * This should be called before the caller exits.
226 char *hf = i9ep->ici->history_file;
228 rl_free_keymap(i9ep->bare_km);
229 rl_callback_handler_remove();
233 fcntl(i9ep->ici->fds[0], F_SETFL, i9ep->fd_flags[0]);
234 fcntl(i9ep->ici->fds[1], F_SETFL, i9ep->fd_flags[1]);
237 static void clear_bottom_line(void)
242 if (rl_point == 0 && rl_end == 0)
243 return wipe_bottom_line();
245 * We might have a multi-line input that needs to be wiped here, so the
246 * simple printf("\r<space>\r") is insufficient. To workaround this, we
247 * remove the whole line, redisplay and restore the killed text.
250 text = rl_copy_text(0, rl_end);
251 rl_kill_full_line(0, 0);
253 wipe_bottom_line(); /* wipe out the prompt */
254 rl_insert_text(text);
259 static void i9e_line_handler(char *line)
262 struct btr_node *dummy;
265 i9ep->input_eof = true;
271 dummy = btr_new_node(&(struct btr_node_description)
272 EMBRACE(.name = "dummy line handler"));
273 i9e_attach_to_stdout(dummy);
274 ret = i9ep->ici->line_handler(line);
276 PARA_WARNING_LOG("%s\n", para_strerror(-ret));
278 btr_remove_node(&dummy);
283 static int i9e_post_monitor(__a_unused struct sched *s, __a_unused void *context)
286 struct i9e_client_info *ici = i9ep->ici;
288 size_t sz, consumed = 0;
293 ret = -E_I9E_TERM_RQ;
294 if (i9ep->caught_sigterm)
297 if (i9ep->caught_sigint)
299 while (read_ok(i9ep->ici->fds[0]) > 0) {
300 if (i9ep->stdout_btrn) {
301 while (i9ep->key_sequence_length < sizeof(i9ep->key_sequence) - 1) {
302 buf = i9ep->key_sequence + i9ep->key_sequence_length;
303 ret = read(i9ep->ici->fds[0], buf, 1);
305 ret = -ERRNO_TO_PARA_ERROR(errno);
313 i9ep->key_sequence_length++;
314 rl_stuff_char((int)(unsigned char)*buf);
315 rl_callback_read_char();
316 if (read_ok(i9ep->ici->fds[0]) <= 0)
319 i9ep->key_sequence_length = 0;
321 rl_callback_read_char();
324 if (!i9ep->stdout_btrn)
326 ret = btr_node_status(i9ep->stdout_btrn, 0, BTR_NT_LEAF);
334 sz = btr_next_buffer(i9ep->stdout_btrn, &buf);
337 if (i9ep->last_write_was_status)
338 fprintf(i9ep->stderr_stream, "\n");
339 i9ep->last_write_was_status = false;
340 ret = xwrite(ici->fds[1], buf, sz);
343 btr_consume(i9ep->stdout_btrn, ret);
345 if (ret == sz && consumed < 10000)
349 if (i9ep->stdout_btrn) {
351 btr_remove_node(&i9ep->stdout_btrn);
352 rl_set_keymap(i9ep->standard_km);
353 rl_set_prompt(i9ep->ici->prompt);
359 i9ep->caught_sigint = false;
363 static void i9e_pre_monitor(struct sched *s, __a_unused void *context)
367 if (i9ep->input_eof || i9ep->caught_sigint || i9ep->caught_sigterm) {
371 if (i9ep->stdout_btrn) {
372 ret = btr_node_status(i9ep->stdout_btrn, 0, BTR_NT_LEAF);
378 sched_monitor_writefd(i9ep->ici->fds[1], s);
381 * fd[0] might have been reset to blocking mode if our job was moved to
382 * the background due to CTRL-Z or SIGSTOP, so set the fd back to
385 ret = mark_fd_nonblocking(i9ep->ici->fds[0]);
387 PARA_WARNING_LOG("set to nonblock failed: (fd0 %d, %s)\n",
388 i9ep->ici->fds[0], para_strerror(-ret));
389 sched_monitor_readfd(i9ep->ici->fds[0], s);
392 static void update_winsize(void)
395 int ret = ioctl(i9ep->ici->fds[2], TIOCGWINSZ, (char *)&w);
398 assert(w.ws_col < sizeof(i9ep->empty_line));
399 i9ep->num_columns = w.ws_col;
401 i9ep->num_columns = 80;
403 memset(i9ep->empty_line, ' ', i9ep->num_columns);
404 i9ep->empty_line[i9ep->num_columns] = '\0';
407 static int dispatch_key(__a_unused int count, __a_unused int key)
412 if (i9ep->key_sequence_length == 0)
414 for (i = i9ep->num_key_bindings - 1; i >= 0; i--) {
415 if (strcmp(i9ep->key_sequence, i9ep->ici->bound_keyseqs[i]))
417 i9ep->key_sequence[0] = '\0';
418 i9ep->key_sequence_length = 0;
419 ret = i9ep->ici->key_handler(i);
420 return ret < 0? ret : 0;
422 PARA_WARNING_LOG("ignoring key %d\n", i9ep->key_sequence[0]);
424 * We received an undefined key sequence. Throw away the first byte,
425 * and try to parse the remainder.
427 memmove(i9ep->key_sequence, i9ep->key_sequence + 1,
428 i9ep->key_sequence_length); /* move also terminating zero byte */
429 i9ep->key_sequence_length--;
434 * Register the i9e task and initialize readline.
436 * \param ici The i9e configuration parameters set by the caller.
437 * \param s The scheduler instance to add the i9e task to.
439 * The caller must allocate and initialize the structure \a ici points to.
443 int i9e_open(struct i9e_client_info *ici, struct sched *s)
447 memset(i9ep, 0, sizeof(struct i9e_private));
448 if (!isatty(ici->fds[0]))
449 return -E_I9E_SETUPTERM;
450 ret = fcntl(ici->fds[0], F_GETFL);
452 return -E_I9E_SETUPTERM;
453 i9ep->fd_flags[0] = ret;
454 ret = fcntl(ici->fds[1], F_GETFL);
456 return -E_I9E_SETUPTERM;
457 i9ep->fd_flags[1] = ret;
458 ret = mark_fd_nonblocking(ici->fds[0]);
461 ret = mark_fd_nonblocking(ici->fds[1]);
464 i9ep->task = task_register(&(struct task_info) {
466 .pre_monitor = i9e_pre_monitor,
467 .post_monitor = i9e_post_monitor,
471 rl_readline_name = "para_i9e";
472 rl_basic_word_break_characters = " ";
473 rl_attempted_completion_function = i9e_completer;
475 i9ep->stderr_stream = fdopen(ici->fds[2], "w");
476 setvbuf(i9ep->stderr_stream, NULL, _IONBF, 0);
478 i9ep->standard_km = rl_get_keymap();
479 i9ep->bare_km = rl_make_bare_keymap();
480 if (ici->bound_keyseqs) {
483 /* bind each key sequence to our dispatcher */
484 for (i = 0; (seq = ici->bound_keyseqs[i]); i++) {
485 if (strlen(seq) >= sizeof(i9ep->key_sequence) - 1) {
486 PARA_WARNING_LOG("ignoring overlong key %s\n",
490 if (rl_bind_keyseq_in_map(seq,
491 dispatch_key, i9ep->bare_km) != 0)
492 PARA_WARNING_LOG("could not bind #%d: %s\n", i, seq);
494 i9ep->num_key_bindings = i;
496 if (ici->history_file)
497 read_history(ici->history_file);
500 rl_callback_handler_install("", i9e_line_handler);
501 i9e_attach_to_stdout(ici->producer);
503 rl_callback_handler_install(i9ep->ici->prompt, i9e_line_handler);
507 static void reset_line_state(void)
509 if (i9ep->stdout_btrn)
512 rl_reset_line_state();
513 rl_forced_update_display();
517 * The log function of the i9e subsystem.
519 * \param ll Severity log level.
520 * \param fmt Printf-like format string.
522 * This clears the bottom line of the terminal if necessary and writes the
523 * string given by \a fmt to fd[2], where fd[] is the array provided earlier in
526 __printf_2_3 void i9e_log(int ll, const char* fmt,...)
530 if (ll < i9ep->ici->loglevel)
534 vfprintf(i9ep->stderr_stream, fmt, argp);
537 i9ep->last_write_was_status = false;
541 * Print the current status to stderr.
543 * \param buf The text to print.
544 * \param len The number of bytes in \a buf.
546 * This clears the bottom line, moves to the beginning of the line and prints
547 * the given text. If the length of this text exceeds the width of the
548 * terminal, the text is shortened by leaving out a part in the middle.
550 void i9e_print_status_bar(char *buf, unsigned len)
552 size_t x = i9ep->num_columns, y = (x - 4) / 2;
557 fprintf(i9ep->stderr_stream, "\r%s", buf);
558 fprintf(i9ep->stderr_stream, " .. ");
559 fprintf(i9ep->stderr_stream, "%s", buf + len - y);
565 strcpy(scratch + 1, buf);
566 memset(scratch + 1 + len, ' ', y);
567 scratch[1 + len + y] = '\r';
568 scratch[2 + len + y] = '\0';
569 fprintf(i9ep->stderr_stream, "\r%s", scratch);
571 i9ep->last_write_was_status = true;
575 * Tell i9e that the caller received a signal.
577 * \param sig_num The number of the signal received.
579 void i9e_signal_dispatch(int sig_num)
581 if (sig_num == SIGWINCH)
582 return update_winsize();
583 if (sig_num == SIGINT) {
584 fprintf(i9ep->stderr_stream, "\n");
585 rl_replace_line ("", false /* clear_undo */);
587 i9ep->caught_sigint = true;
589 if (sig_num == SIGTERM)
590 i9ep->caught_sigterm = true;
594 * Wrapper for poll(2) which handles EINTR and returns paraslash error codes.
596 * \param fds See poll(2).
597 * \param nfds See poll(2).
598 * \param timeout See poll(2).
600 * \return See poll(2).
602 * The only difference between this function and \ref xpoll() is that \ref
603 * i9e_poll() returns zero if the system call was interrupted while xpoll()
604 * restarts the system call in this case.
606 int i9e_poll(struct pollfd *fds, nfds_t nfds, int timeout)
608 int ret = poll(fds, nfds, timeout);
613 ret = -ERRNO_TO_PARA_ERROR(errno);
619 * Return the possible completions for a given word.
621 * \param word The word to complete.
622 * \param string_list All possible words in this context.
623 * \param result String list is returned here.
625 * This function never fails. If no completion was found, a string list of
626 * length zero is returned. In any case, the result must be freed by the caller
627 * using \ref free_argv().
629 * This function is independent of readline and may be called before
632 * \return The number of possible completions.
634 int i9e_extract_completions(const char *word, char **string_list,
637 char **matches = alloc(sizeof(char *));
638 int match_count = 0, matches_len = 1;
640 int len = strlen(word);
642 for (p = string_list; *p; p++) {
643 if (!is_prefix(word, *p, len))
646 if (match_count >= matches_len) {
648 matches = arr_realloc(matches, matches_len,
651 matches[match_count - 1] = para_strdup(*p);
653 matches[match_count] = NULL;
659 * Return the list of partially matching words.
661 * \param word The command to complete.
662 * \param completers The array containing all command names.
664 * This is similar to \ref i9e_extract_completions(), but completes on the
665 * command names in \a completers.
667 * \return See \ref i9e_extract_completions().
669 char **i9e_complete_commands(const char *word, struct i9e_completer *completers)
673 int i, match_count, len = strlen(word);
676 * In contrast to completing against an arbitrary string list, here we
677 * know all possible completions and expect that there will not be many
678 * of them. So it should be OK to iterate twice over all commands which
679 * simplifies the code a bit.
681 for (i = 0, match_count = 0; (cmd = completers[i].name); i++) {
682 if (is_prefix(word, cmd, len))
685 matches = arr_alloc(match_count + 1, sizeof(*matches));
686 for (i = 0, match_count = 0; (cmd = completers[i].name); i++)
687 if (is_prefix(word, cmd, len))
688 matches[match_count++] = para_strdup(cmd);
689 matches[match_count] = NULL;
694 * Complete according to the given options.
696 * \param opts All available options.
697 * \param ci Information which was passed to the completer.
698 * \param cr Result pointer.
700 * This convenience helper can be used to complete an option. The array of all
701 * possible options is passed as the first argument. Flags, i.e. options
702 * without an argument, are expected to be listed as strings of type "-X" in \a
703 * opts while options which require an argument should be passed with a
704 * trailing "=" character like "-X=".
706 * If the word can be uniquely completed to a flag option, an additional space
707 * character is appended to the output. For non-flag options no space character
710 void i9e_complete_option(char **opts, struct i9e_completion_info *ci,
711 struct i9e_completion_result *cr)
715 num_matches = i9e_extract_completions(ci->word, opts, &cr->matches);
716 if (num_matches == 1) {
717 char *opt = cr->matches[0];
718 char c = opt[strlen(opt) - 1];
720 cr->dont_append_space = true;
725 * Print possible completions to stdout.
727 * \param completers The array of completion functions.
729 * At the end of the output a line starting with "-o=", followed by the
730 * (possibly empty) list of completion options is printed. Currently, the only
731 * two completion options are "nospace" and "filenames". The former indicates
732 * that no space should be appended even for a unique match while the latter
733 * indicates that usual filename completion should be performed in addition to
734 * the previously printed options.
738 int i9e_print_completions(struct i9e_completer *completers)
740 struct i9e_completion_result cr;
741 struct i9e_completion_info ci;
746 reset_completion_result(&cr);
747 buf = getenv("COMP_POINT");
748 ci.point = buf? atoi(buf) : 0;
749 ci.buffer = para_strdup(getenv("COMP_LINE"));
751 ci.argc = create_argv(ci.buffer, " ", &ci.argv);
752 ci.word_num = compute_word_num(ci.buffer, " ", ci.point);
754 /* determine the current word to complete */
755 end = ci.buffer + ci.point;
758 if (ci.point == 0 || ci.buffer[ci.point - 1] == ' ') {
759 ci.word = para_strdup(NULL);
761 } else /* The cursor is positioned right after a word */
764 for (p = end; p > ci.buffer && *p != ' '; p--)
769 ci.word = alloc(n + 1);
770 strncpy(ci.word, p, n);
773 PARA_DEBUG_LOG("line: %s, point: %d (%c), wordnum: %d, word: %s\n",
774 ci.buffer, ci.point, ci.buffer[ci.point], ci.word_num, ci.word);
775 if (ci.word_num == 0)
776 cr.matches = i9e_complete_commands(ci.word, completers);
778 create_matches(&ci, completers, &cr);
780 if (cr.matches && cr.matches[0]) {
781 for (i = 0; cr.matches[i]; i++)
782 printf("%s\n", cr.matches[i]);
786 if (cr.dont_append_space)
788 if (cr.filename_completion_desired)
789 printf(",filenames");
791 free_argv(cr.matches);
799 * Complete on severity strings.
801 * \param ci See struct \ref i9e_completer.
802 * \param cr See struct \ref i9e_completer.
804 * This is used by para_client and para_audioc which need the same completion
805 * primitive for the ll server/audiod command. Both define their own completer
806 * which is implemented as a trivial wrapper that calls this function.
808 void i9e_ll_completer(struct i9e_completion_info *ci,
809 struct i9e_completion_result *cr)
811 char *sev[] = {SEVERITIES, NULL};
813 if (ci->word_num != 1) {
817 i9e_extract_completions(ci->word, sev, &cr->matches);