2c9de322eaca6f0f023a41e8c39b96f997685dc6
[paraslash.git] / interactive.c
1 /*
2  * Copyright (C) 2011-2012 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file interactive.c Readline abstraction for interactive sessions. */
8
9 #include <regex.h>
10 #include <stdbool.h>
11 #include <curses.h>
12 #include <readline/readline.h>
13 #include <readline/history.h>
14 #include <sys/ioctl.h>
15 #include <assert.h>
16 #include <signal.h>
17
18 #include "para.h"
19 #include "fd.h"
20 #include "buffer_tree.h"
21 #include "list.h"
22 #include "sched.h"
23 #include "interactive.h"
24 #include "string.h"
25 #include "error.h"
26
27 struct i9e_private {
28         struct i9e_client_info *ici;
29         FILE *stderr_stream;
30         char empty_line[1000];
31         struct task task;
32         struct btr_node *stdout_btrn;
33         bool line_handler_running;
34         bool input_eof;
35         bool caught_sigint;
36 };
37 static struct i9e_private i9e_private, *i9ep = &i9e_private;
38
39 static bool is_prefix(const char *partial, const char *full, size_t len)
40 {
41         if (len == 0)
42                 len = strlen(partial);
43         return !strncmp(partial, full, len);
44 }
45
46 /*
47  * Generator function for command completion. STATE lets us know whether
48  * to start from scratch; without any state (i.e. STATE == 0), then we
49  * start at the top of the list.
50  */
51 static char *command_generator(const char *text, int state)
52 {
53         static int list_index, len;
54         const char *name;
55         struct i9e_client_info *ici = i9ep->ici;
56
57         rl_attempted_completion_over = 1; /* disable filename completion */
58         /*
59          * If this is a new word to complete, initialize now. This includes
60          * saving the length of TEXT for efficiency, and initializing the index
61          * variable to 0.
62          */
63         if (state == 0) {
64                 list_index = 0;
65                 len = strlen(text);
66         }
67         /* Return the next name which partially matches from the command list. */
68         while ((name = ici->completers[list_index].name)) {
69                 list_index++;
70                 if (is_prefix(text, name, len))
71                         return para_strdup(name);
72         }
73         return NULL; /* no names matched */
74 }
75
76 static void reset_completion_result(struct i9e_completion_result *cr)
77 {
78         cr->dont_append_space = false;
79         cr->filename_completion_desired = false;
80         cr->matches = NULL;
81 }
82
83 static void create_matches(struct i9e_completion_info *ci,
84                 struct i9e_completer *completers,
85                 struct i9e_completion_result *cr)
86 {
87         int i, ret;
88
89         reset_completion_result(cr);
90
91         ret = create_argv(ci->buffer, " ", &ci->argv);
92         if (ret < 0 || !ci->argv[0])
93                 return;
94
95         ci->argc = ret;
96         ci->word_num = compute_word_num(ci->buffer, " ", ci->point);
97         for (i = 0; completers[i].name; i++) {
98                 if (strcmp(completers[i].name, ci->argv[0]) != 0)
99                         continue;
100                 completers[i].completer(ci, cr);
101                 break;
102         }
103         PARA_DEBUG_LOG("current word: %d (%s)\n", ci->word_num,
104                 ci->argv[ci->word_num]);
105         if (cr->matches)
106                 for (i = 0; cr->matches[i]; i++)
107                         PARA_DEBUG_LOG("match %d: %s\n", i, cr->matches[i]);
108 }
109
110 static char *completion_generator(const char *word, int state)
111 {
112         static int list_index;
113         static char **argv, **matches;
114         struct i9e_completer *completers = i9ep->ici->completers;
115         struct i9e_completion_info ci = {
116                 .word = (char *)word,
117                 .point = rl_point,
118                 .buffer = rl_line_buffer,
119         };
120         struct i9e_completion_result cr = {.matches = NULL};
121
122         if (state != 0)
123                 goto out;
124         /* clean up previous matches and set defaults */
125         free(matches);
126         matches = NULL;
127         free_argv(argv);
128         argv = NULL;
129         list_index = 0;
130         rl_completion_append_character = ' ';
131         rl_completion_suppress_append = false;
132         rl_attempted_completion_over = true;
133
134         create_matches(&ci, completers, &cr);
135
136         matches = cr.matches;
137         argv = ci.argv;
138         rl_completion_suppress_append = cr.dont_append_space;
139         rl_attempted_completion_over = !cr.filename_completion_desired;
140 out:
141         if (!matches)
142                 return NULL;
143         return matches[list_index++];
144 }
145
146 /*
147  * Attempt to complete on the contents of TEXT. START and END bound the
148  * region of rl_line_buffer that contains the word to complete.  TEXT is
149  * the word to complete.  We can use the entire contents of rl_line_buffer
150  * in case we want to do some simple parsing. Return the array of matches,
151  * or NULL if there aren't any.
152  */
153 static char **i9e_completer(const char *text, int start, __a_unused int end)
154 {
155         struct i9e_client_info *ici = i9ep->ici;
156
157         if (!ici->completers)
158                 return NULL;
159         /* Complete on command names if this is the first word in the line. */
160         if (start == 0)
161                 return rl_completion_matches(text, command_generator);
162         return rl_completion_matches(text, completion_generator);
163 }
164
165 /**
166  * Prepare writing to stdout.
167  *
168  * \param producer The buffer tree node which produces output.
169  *
170  * The i9e subsystem maintains a buffer tree node which may be attached to
171  * another node which generates output (a "producer"). When attached, the i9e
172  * buffer tree node copies the buffers generated by the producer to stdout.
173  *
174  * This function attaches the i9e input queue to an output queue of \a
175  * producer.
176  *
177  * \return Standard.
178  */
179 void i9e_attach_to_stdout(struct btr_node *producer)
180 {
181         assert(!i9ep->stdout_btrn);
182         i9ep->stdout_btrn = btr_new_node(&(struct btr_node_description)
183                 EMBRACE(.name = "interactive_stdout", .parent = producer));
184 }
185
186 /**
187  * Reset the terminal and save the in-memory command line history.
188  *
189  * This should be called before the caller exits.
190  */
191 void i9e_close(void)
192 {
193         char *hf = i9ep->ici->history_file;
194
195         rl_deprep_terminal();
196         fprintf(i9ep->stderr_stream, "\n");
197         if (hf)
198                 write_history(hf);
199 }
200
201 static void wipe_bottom_line(void)
202 {
203         fprintf(i9ep->stderr_stream, "\r%s\r", i9ep->empty_line);
204 }
205
206 static void clear_bottom_line(void)
207 {
208         int point;
209         char *text;
210
211         if (rl_point == 0 && rl_end == 0)
212                 return wipe_bottom_line();
213         /*
214          * We might have a multi-line input that needs to be wiped here, so the
215          * simple printf("\r<space>\r") is insufficient. To workaround this, we
216          * remove the whole line, redisplay and restore the killed text.
217          */
218         point = rl_point;
219         text = rl_copy_text(0, rl_end);
220         rl_kill_full_line(0, 0);
221         rl_redisplay();
222         wipe_bottom_line(); /* wipe out the prompt */
223         rl_insert_text(text);
224         rl_point = point;
225 }
226
227 static bool input_available(void)
228 {
229         fd_set rfds;
230         struct timeval tv = {0, 0};
231         int ret;
232
233         FD_ZERO(&rfds);
234         FD_SET(i9ep->ici->fds[0], &rfds);
235         ret = para_select(1, &rfds, NULL, &tv);
236         return ret > 0;
237 }
238
239 static void i9e_line_handler(char *line)
240 {
241         int ret;
242
243         i9ep->line_handler_running = true;
244         ret = i9ep->ici->line_handler(line);
245         i9ep->line_handler_running = false;
246         if (ret < 0)
247                 PARA_WARNING_LOG("%s\n", para_strerror(-ret));
248         rl_set_prompt("");
249         if (line) {
250                 if (!*line)
251                         rl_set_prompt(i9ep->ici->prompt);
252                 else
253                         add_history(line);
254                 free(line);
255         } else {
256                 rl_set_prompt("");
257                 i9ep->input_eof = true;
258         }
259 }
260
261 static void i9e_input(void)
262 {
263         do {
264                 rl_callback_read_char();
265         } while (input_available());
266 }
267
268 static void i9e_post_select(struct sched *s, struct task *t)
269 {
270         int ret;
271         struct btr_node *btrn = i9ep->stdout_btrn;
272         struct i9e_client_info *ici = i9ep->ici;
273         char *buf;
274         size_t sz;
275
276         if (i9ep->input_eof) {
277                 t->error = -E_I9E_EOF;
278                 return;
279         }
280         if (!btrn) {
281                 i9ep->caught_sigint = false;
282                 if (FD_ISSET(ici->fds[0], &s->rfds))
283                         i9e_input();
284                 return;
285         }
286         if (i9ep->caught_sigint)
287                 goto rm_btrn;
288         ret = btr_node_status(i9ep->stdout_btrn, 0, BTR_NT_LEAF);
289         if (ret < 0)
290                 goto rm_btrn;
291         sz = btr_next_buffer(btrn, &buf);
292         if (sz == 0)
293                 goto out;
294         ret = xwrite(ici->fds[1], buf, sz);
295         if (ret < 0)
296                 goto rm_btrn;
297         btr_consume(btrn, ret);
298         goto out;
299 rm_btrn:
300         btr_remove_node(&i9ep->stdout_btrn);
301         rl_set_prompt(i9ep->ici->prompt);
302         rl_forced_update_display();
303 out:
304         t->error = 0;
305 }
306
307 static void i9e_pre_select(struct sched *s, __a_unused struct task *t)
308 {
309         int ret;
310
311         if (i9ep->input_eof || i9ep->caught_sigint) {
312                 sched_min_delay(s);
313                 return;
314         }
315         if (i9ep->stdout_btrn) {
316                 ret = btr_node_status(i9ep->stdout_btrn, 0, BTR_NT_LEAF);
317                 if (ret < 0) {
318                         sched_min_delay(s);
319                         return;
320                 }
321                 if (ret > 0)
322                         para_fd_set(i9ep->ici->fds[1], &s->wfds, &s->max_fileno);
323         }
324         /*
325          * fd[0] might have been reset to blocking mode if our job was moved to
326          * the background due to CTRL-Z or SIGSTOP, so set the fd back to
327          * nonblocking mode.
328          */
329         ret = mark_fd_nonblocking(i9ep->ici->fds[0]);
330         if (ret < 0)
331                 PARA_WARNING_LOG("set to nonblock failed: (fd0 %d, %s)\n",
332                         i9ep->ici->fds[0], para_strerror(-ret));
333         para_fd_set(i9ep->ici->fds[0], &s->rfds, &s->max_fileno);
334 }
335
336 static void update_winsize(void)
337 {
338         struct winsize w;
339         int ret = ioctl(i9ep->ici->fds[2], TIOCGWINSZ, (char *)&w);
340         int num_columns = 80;
341
342         if (ret >= 0) {
343                 assert(w.ws_col < sizeof(i9ep->empty_line));
344                 num_columns = w.ws_col;
345         }
346         memset(i9ep->empty_line, ' ', num_columns);
347         i9ep->empty_line[num_columns] = '\0';
348 }
349
350 /**
351  * Register the i9e task and initialize readline.
352  *
353  * \param ici The i9e configuration parameters set by the caller.
354  * \param s The scheduler instance to add the i9e task to.
355  *
356  * The caller must allocate and initialize the structure \a ici points to.
357  *
358  * \return Standard.
359  * \sa \ref register_task().
360  */
361 int i9e_open(struct i9e_client_info *ici, struct sched *s)
362 {
363         int ret;
364
365         if (!isatty(ici->fds[0]))
366                 return -E_I9E_SETUPTERM;
367         ret = mark_fd_nonblocking(ici->fds[0]);
368         if (ret < 0)
369                 return ret;
370         ret = mark_fd_nonblocking(ici->fds[1]);
371         if (ret < 0)
372                 return ret;
373         i9ep->task.pre_select = i9e_pre_select;
374         i9ep->task.post_select = i9e_post_select;
375         sprintf(i9ep->task.status, "i9e");
376         register_task(s, &i9ep->task);
377         rl_readline_name = "para_i9e";
378         rl_basic_word_break_characters = " ";
379         rl_attempted_completion_function = i9e_completer;
380         i9ep->ici = ici;
381         i9ep->stderr_stream = fdopen(ici->fds[2], "w");
382         setvbuf(i9ep->stderr_stream, NULL, _IONBF, 0);
383
384         if (ici->history_file)
385                 read_history(ici->history_file);
386         update_winsize();
387         rl_callback_handler_install(i9ep->ici->prompt, i9e_line_handler);
388         return 1;
389 }
390
391 static void reset_line_state(void)
392 {
393         if (i9ep->line_handler_running)
394                 return;
395         rl_on_new_line();
396         rl_reset_line_state();
397         rl_forced_update_display();
398 }
399
400 /**
401  * The log function of the i9e subsystem.
402  *
403  * \param ll Severity log level.
404  * \param fmt Printf-like format string.
405  *
406  * This clears the bottom line of the terminal if necessary and writes the
407  * string given by \a fmt to fd[2], where fd[] is the array provided earlier in
408  * \ref i9e_open().
409  */
410 __printf_2_3 void i9e_log(int ll, const char* fmt,...)
411 {
412         va_list argp;
413
414         if (ll < i9ep->ici->loglevel)
415                 return;
416         if (i9ep->line_handler_running == false)
417                 clear_bottom_line();
418         va_start(argp, fmt);
419         vfprintf(i9ep->stderr_stream, fmt, argp);
420         va_end(argp);
421         reset_line_state();
422 }
423
424 /**
425  * Tell i9e that the caller received a signal.
426  *
427  * \param sig_num The number of the signal received.
428  *
429  * Currently the function only cares about \p SIGINT, but this may change.
430  */
431 void i9e_signal_dispatch(int sig_num)
432 {
433         if (sig_num == SIGINT) {
434                 fprintf(i9ep->stderr_stream, "\n");
435                 rl_replace_line ("", false /* clear_undo */);
436                 reset_line_state();
437                 i9ep->caught_sigint = true;
438         }
439 }
440
441 /**
442  * Wrapper for select(2) which does not restart on interrupts.
443  *
444  * \param n \sa \ref para_select().
445  * \param readfds \sa \ref para_select().
446  * \param writefds \sa \ref para_select().
447  * \param timeout_tv \sa \ref para_select().
448  *
449  * \return \sa \ref para_select().
450  *
451  * The only difference between this function and \ref para_select() is that
452  * \ref i9e_select() returns zero if the select call returned \p EINTR.
453  */
454 int i9e_select(int n, fd_set *readfds, fd_set *writefds,
455                 struct timeval *timeout_tv)
456 {
457         int ret = select(n, readfds, writefds, NULL, timeout_tv);
458
459         if (ret < 0) {
460                 if (errno == EINTR)
461                         ret = 0;
462                 else
463                         ret = -ERRNO_TO_PARA_ERROR(errno);
464         }
465         return ret;
466 }
467
468 /**
469  * Return the possible completions for a given word.
470  *
471  * \param word The word to complete.
472  * \param string_list All possible words in this context.
473  * \param result String list is returned here.
474  *
475  * This function never fails. If no completion was found, a string list of
476  * length zero is returned. In any case, the result must be freed by the caller
477  * using \ref free_argv().
478  *
479  * This function is independent of readline and may be called before
480  * i9e_open().
481  *
482  * \return The number of possible completions.
483  */
484 int i9e_extract_completions(const char *word, char **string_list,
485                 char ***result)
486 {
487         char **matches = para_malloc(sizeof(char *));
488         int match_count = 0, matches_len = 1;
489         char **p;
490         int len = strlen(word);
491
492         for (p = string_list; *p; p++) {
493                 if (!is_prefix(word, *p, len))
494                         continue;
495                 match_count++;
496                 if (match_count >= matches_len) {
497                         matches_len *= 2;
498                         matches = para_realloc(matches,
499                                 matches_len * sizeof(char *));
500                 }
501                 matches[match_count - 1] = para_strdup(*p);
502         }
503         matches[match_count] = NULL;
504         *result = matches;
505         return match_count;
506 }
507
508 /**
509  * Return the list of partially matching words.
510  *
511  * \param word The command to complete.
512  * \param completers The array containing all command names.
513  *
514  * This is similar to \ref i9e_extract_completions(), but completes on the
515  * command names in \a completers.
516  *
517  * \return See \ref i9e_extract_completions().
518  */
519 char **i9e_complete_commands(const char *word, struct i9e_completer *completers)
520 {
521         char **matches;
522         const char *cmd;
523         int i, match_count, len = strlen(word);
524
525         /*
526          * In contrast to completing against an arbitrary string list, here we
527          * know all possible completions and expect that there will not be many
528          * of them. So it should be OK to iterate twice over all commands which
529          * simplifies the code a bit.
530          */
531         for (i = 0, match_count = 0; (cmd = completers[i].name); i++) {
532                 if (is_prefix(word, cmd, len))
533                         match_count++;
534         }
535         matches = para_malloc((match_count + 1) * sizeof(*matches));
536         for (i = 0, match_count = 0; (cmd = completers[i].name); i++)
537                 if (is_prefix(word, cmd, len))
538                         matches[match_count++] = para_strdup(cmd);
539         matches[match_count] = NULL;
540         return matches;
541 }
542
543 /**
544  * Complete according to the given options.
545  *
546  * \param opts All available options.
547  * \param ci Information which was passed to the completer.
548  * \param cr Result pointer.
549  *
550  * This convenience helper can be used to complete an option. The array of all
551  * possible options is passed as the first argument. Flags, i.e. options
552  * without an argument, are expected to be listed as strings of type "-X" in \a
553  * opts while options which require an argument should be passed with a
554  * trailing "=" character like "-X=".
555  *
556  * If the word can be uniquely completed to a flag option, an additional space
557  * character is appended to the output. For non-flag options no space character
558  * is appended.
559  */
560 void i9e_complete_option(char **opts, struct i9e_completion_info *ci,
561                 struct i9e_completion_result *cr)
562 {
563         int num_matches;
564
565         num_matches = i9e_extract_completions(ci->word, opts, &cr->matches);
566         if (num_matches == 1) {
567                 char *opt = cr->matches[0];
568                 char c = opt[strlen(opt) - 1];
569                 if (c == '=')
570                         cr->dont_append_space = true;
571         }
572 }
573
574 /**
575  * Print possible completions to stdout.
576  *
577  * \param completers The array of completion functions.
578  *
579  * At the end of the output a line starting with "-o=", followed by the
580  * (possibly empty) list of completion options is printed. Currently, the only
581  * two completion options are "nospace" and "filenames". The former indicates
582  * that no space should be appended even for a unique match while the latter
583  * indicates that usual filename completion should be performed in addition to
584  * the previously printed options.
585  *
586  * \return Standard.
587  */
588 int i9e_print_completions(struct i9e_completer *completers)
589 {
590         struct i9e_completion_result cr;
591         struct i9e_completion_info ci;
592         char *buf;
593         const char *end, *p;
594         int i, n, ret;
595
596         reset_completion_result(&cr);
597         buf = getenv("COMP_POINT");
598         ci.point = buf? atoi(buf) : 0;
599         ci.buffer = para_strdup(getenv("COMP_LINE"));
600
601         ci.argc = create_argv(ci.buffer, " ", &ci.argv);
602         ci.word_num = compute_word_num(ci.buffer, " ", ci.point);
603
604         end = ci.buffer + ci.point;
605         for (p = end; p > ci.buffer && *p != ' '; p--)
606                 ; /* nothing */
607         if (*p == ' ')
608                 p++;
609
610         n = end - p + 1;
611         ci.word = para_malloc(n + 1);
612         strncpy(ci.word, p, n);
613         ci.word[n] = '\0';
614
615         PARA_DEBUG_LOG("line: %s, point: %d (%c), wordnum: %d, word: %s\n",
616                 ci.buffer, ci.point, ci.buffer[ci.point], ci.word_num, ci.word);
617         if (ci.word_num == 0)
618                 cr.matches = i9e_complete_commands(ci.word, completers);
619         else
620                 create_matches(&ci, completers, &cr);
621         ret = 0;
622         if (cr.matches && cr.matches[0]) {
623                 for (i = 0; cr.matches[i]; i++)
624                         printf("%s\n", cr.matches[i]);
625                 ret = 1;
626         }
627         printf("-o=");
628         if (cr.dont_append_space)
629                 printf("nospace");
630         if (cr.filename_completion_desired)
631                 printf(",filenames");
632         printf("\n");
633         free_argv(cr.matches);
634         free_argv(ci.argv);
635         free(ci.buffer);
636         free(ci.word);
637         return ret;
638 }