Add multi-file input.
[selector.git] / selector.cc
1
2 /*
3  *  selector is a simple shell command for selection of strings with a
4  *  dynamic pattern-matching.
5  *
6  *  Copyright (c) 2009 Francois Fleuret
7  *  Written by Francois Fleuret <francois@fleuret.org>
8  *
9  *  This file is part of selector.
10  *
11  *  selector is free software: you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License version 3 as
13  *  published by the Free Software Foundation.
14  *
15  *  selector is distributed in the hope that it will be useful, but
16  *  WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  *  General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with selector.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  */
24
25 // To use it as a super-history-search for bash:
26 // alias h='selector -d -i -b -v -f <(history)'
27
28 #include <fstream>
29 #include <iostream>
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <ncurses.h>
35 #include <fcntl.h>
36 #include <sys/ioctl.h>
37 #include <termios.h>
38 #include <regex.h>
39
40 using namespace std;
41
42 #define VERSION "1.0"
43
44 const int buffer_size = 4096;
45
46 // Yeah, global variables!
47
48 int nb_lines_max = 1000;
49 char pattern_separator = ';';
50 int output_to_vt_buffer = 0;
51 int with_colors = 1;
52 int zsh_history = 0, bash_history = 0;
53 int inverse_order = 0;
54 int remove_duplicates = 0;
55 int use_regexp = 0;
56 int case_sensitive = 0;
57 char *title = 0;
58
59 //////////////////////////////////////////////////////////////////////
60
61 void inject_into_tty_buffer(char *string) {
62   struct termios oldtio, newtio;
63   tcgetattr(STDIN_FILENO, &oldtio);
64   memset(&newtio, 0, sizeof(newtio));
65   // Set input mode (non-canonical, *no echo*,...)
66   tcsetattr(STDIN_FILENO, TCSANOW, &newtio);
67   // Put the selected string in the tty input buffer
68   for(char *k = string; *k; k++) {
69     ioctl(STDIN_FILENO, TIOCSTI, k);
70   }
71   // Restore the old settings
72   tcsetattr(STDIN_FILENO, TCSANOW, &oldtio);
73 }
74
75 //////////////////////////////////////////////////////////////////////
76
77 void check_opt(int argc, char **argv, int n_opt, int n, const char *help) {
78   if(n_opt + n >= argc) {
79     cerr << "Missing argument for " << argv[n_opt] << "."
80          << " "
81          << "Expecting " << help << "."
82          << endl;
83     exit(1);
84   }
85 }
86
87 //////////////////////////////////////////////////////////////////////
88 // A quick and dirty hash table
89
90 // The table itself stores index of the strings in a char
91 // **table. When a string is added, if it was already in the table,
92 // the new index replaces the previous one.
93
94 int *new_hash_table(int hash_table_size) {
95   int *result;
96   result = new int[hash_table_size];
97   for(int k = 0; k < hash_table_size; k++) {
98     result[k] = -1;
99   }
100   return result;
101 }
102
103 // Adds new_string in the table, associated to new_index. If this
104 // string was not already in the table, returns -1. Otherwise, returns
105 // the previous index it had.
106
107 int test_and_add(char *new_string, int new_index,
108                  char **strings, int *hash_table, int hash_table_size) {
109   unsigned int code = 0;
110
111   // This is my recipe. I checked, it seems to work (as long as
112   // hash_table_size is not a multiple of 387433 that should be okay)
113
114   for(int k = 0; new_string[k]; k++) {
115     code = code * 387433 + (unsigned int) (new_string[k]);
116   }
117
118   code = code % hash_table_size;
119
120   while(hash_table[code] >= 0) {
121     // There is a string with that code
122     if(strcmp(new_string, strings[hash_table[code]]) == 0) {
123       // It is the same string, we keep a copy of the stored index
124       int result = hash_table[code];
125       // Put the new one
126       hash_table[code] = new_index;
127       // And return the previous one
128       return result;
129     }
130     // This collision was not the same string, let's move to the next
131     // in the table
132     code = (code + 1) % hash_table_size;
133   }
134
135   // This string was not already in there, store the index in the
136   // table and return -1
137   hash_table[code] = new_index;
138   return -1;
139 }
140
141 //////////////////////////////////////////////////////////////////////
142 // A matcher matches either with a collection of substrings, or with a
143 // regexp
144
145 struct matcher_t {
146   regex_t preg;
147   int regexp_error;
148   int nb_patterns;
149   int case_sensitive;
150   char *splitted_patterns, **patterns;
151 };
152
153 int match(char *string, matcher_t *matcher) {
154   if(matcher->nb_patterns >= 0) {
155     if(matcher->case_sensitive) {
156       for(int n = 0; n < matcher->nb_patterns; n++) {
157         if(strstr(string, matcher->patterns[n]) == 0) return 0;
158       }
159     } else {
160       for(int n = 0; n < matcher->nb_patterns; n++) {
161         if(strcasestr(string, matcher->patterns[n]) == 0) return 0;
162       }
163     }
164     return 1;
165   } else {
166     return regexec(&matcher->preg, string, 0, 0, 0) == 0;
167   }
168 }
169
170 void free_matcher(matcher_t *matcher) {
171   if(matcher->nb_patterns >= 0) {
172     delete[] matcher->splitted_patterns;
173     delete[] matcher->patterns;
174   } else {
175     if(!matcher->regexp_error) regfree(&matcher->preg);
176   }
177 }
178
179 void initialize_matcher(int use_regexp, int case_sensitive,
180                         matcher_t *matcher, const char *pattern) {
181
182   if(use_regexp) {
183     matcher->nb_patterns = -1;
184     matcher->regexp_error = regcomp(&matcher->preg, pattern, case_sensitive ? 0 : REG_ICASE);
185   } else {
186     matcher->regexp_error = 0;
187     matcher->nb_patterns = 1;
188     matcher->case_sensitive = case_sensitive;
189
190     for(const char *s = pattern; *s; s++) {
191       if(*s == pattern_separator) {
192         matcher->nb_patterns++;
193       }
194     }
195
196     matcher->splitted_patterns = new char[strlen(pattern) + 1];
197     matcher->patterns = new char*[matcher->nb_patterns];
198
199     strcpy(matcher->splitted_patterns, pattern);
200
201     int n = 0;
202     char *last_pattern_start = matcher->splitted_patterns;
203     for(char *s = matcher->splitted_patterns; n < matcher->nb_patterns; s++) {
204       if(*s == pattern_separator || *s == '\0') {
205         *s = '\0';
206         matcher->patterns[n++] = last_pattern_start;
207         last_pattern_start = s + 1;
208       }
209     }
210   }
211 }
212
213 //////////////////////////////////////////////////////////////////////
214 // Buffer edition
215
216 void delete_char(char *buffer, int *position) {
217   if(buffer[*position]) {
218     int c = *position;
219     while(c < buffer_size && buffer[c]) {
220       buffer[c] = buffer[c+1];
221       c++;
222     }
223   }
224 }
225
226 void backspace_char(char *buffer, int *position) {
227   if(*position > 0) {
228     if(buffer[*position]) {
229       int c = *position - 1;
230       while(buffer[c]) {
231         buffer[c] = buffer[c+1];
232         c++;
233       }
234     } else {
235       buffer[*position - 1] = '\0';
236     }
237
238     (*position)--;
239   }
240 }
241
242 void insert_char(char *buffer, int *position, char character) {
243   if(strlen(buffer) < buffer_size - 1) {
244     int c = *position;
245     char t = buffer[c], u;
246     while(t) {
247       c++;
248       u = buffer[c];
249       buffer[c] = t;
250       t = u;
251     }
252     c++;
253     buffer[c] = '\0';
254     buffer[(*position)++] = character;
255   }
256 }
257
258 void kill_before_cursor(char *buffer, int *position) {
259   int s = 0;
260   while(buffer[*position + s]) {
261     buffer[s] = buffer[*position + s];
262     s++;
263   }
264   buffer[s] = '\0';
265   *position = 0;
266 }
267
268 void kill_after_cursor(char *buffer, int *position) {
269   buffer[*position] = '\0';
270 }
271
272 //////////////////////////////////////////////////////////////////////
273
274 int previous_visible(int current_line, int nb_lines, char **lines, matcher_t *matcher) {
275   int line = current_line - 1;
276   while(line >= 0 && !match(lines[line], matcher)) line--;
277   return line;
278 }
279
280 int next_visible(int current_line, int nb_lines, char **lines, matcher_t *matcher) {
281   int line = current_line + 1;
282   while(line < nb_lines && !match(lines[line], matcher)) line++;
283
284   if(line < nb_lines)
285     return line;
286   else
287     return -1;
288 }
289
290 //////////////////////////////////////////////////////////////////////
291
292 void update_screen(int *current_line, int *temporary_line, int motion,
293                    int nb_lines, char **lines,
294                    int cursor_position,
295                    char *pattern) {
296
297   char buffer[buffer_size];
298   matcher_t matcher;
299
300   initialize_matcher(use_regexp, case_sensitive, &matcher, pattern);
301
302   // We now take care of printing the lines per se
303
304   int console_width = getmaxx(stdscr);
305   int console_height = getmaxy(stdscr);
306
307   // First, we find a visible line. In priority: The current, or the
308   // first visible after it, or the first visible before it.
309
310   int nb_printed_lines = 0;
311
312   clear();
313   use_default_colors();
314   addstr("\n");
315
316   if(matcher.regexp_error) {
317     addstr("[regexp error]");
318   } else if(nb_lines > 0) {
319     int new_line;
320     if(match(lines[*current_line], &matcher)) {
321       new_line = *current_line;
322     } else {
323       new_line = next_visible(*current_line, nb_lines, lines, &matcher);
324       if(new_line < 0) {
325         new_line = previous_visible(*current_line, nb_lines, lines, &matcher);
326       }
327     }
328
329     // If we found a visible line and we should move, let's move
330
331     if(new_line >= 0 && motion != 0) {
332       int l = new_line;
333       if(motion > 0) {
334         // We want to go down, let's find the first visible line below
335         for(int m = 0; l >= 0 && m < motion; m++) {
336           l = next_visible(l, nb_lines, lines, &matcher);
337           if(l >= 0) {
338             new_line = l;
339           }
340         }
341       } else {
342         // We want to go up, let's find the first visible line above
343         for(int m = 0; l >= 0 && m < -motion; m++) {
344           l = previous_visible(l, nb_lines, lines, &matcher);
345           if(l >= 0) {
346             new_line = l;
347           }
348         }
349       }
350     }
351
352     // Here new_line is either a line number matching the patterns, or -1
353
354     if(new_line >= 0) {
355
356       int first_line = new_line, last_line = new_line, nb_match = 1;
357
358       // We find the first and last line to show, so that the total of
359       // visible lines between them (them include) is console_height - 1
360
361       while(nb_match < console_height-1 && (first_line > 0 || last_line < nb_lines - 1)) {
362
363         if(first_line > 0) {
364           first_line--;
365           while(first_line > 0 && !match(lines[first_line], &matcher)) {
366             first_line--;
367           }
368           if(match(lines[first_line], &matcher)) {
369             nb_match++;
370           }
371         }
372
373         if(nb_match < console_height - 1 && last_line < nb_lines - 1) {
374           last_line++;
375           while(last_line < nb_lines - 1 && !match(lines[last_line], &matcher)) {
376             last_line++;
377           }
378
379           if(match(lines[last_line], &matcher)) {
380             nb_match++;
381           }
382         }
383       }
384
385       // Now we display them
386
387       for(int l = first_line; l <= last_line; l++) {
388         if(match(lines[l], &matcher)) {
389           int k = 0;
390
391           while(lines[l][k] && k < buffer_size - 2 && k < console_width - 2) {
392             buffer[k] = lines[l][k];
393             k++;
394           }
395
396           // We fill the rest of the line with blanks if either we did
397           // not clear() or if this is the highlighted line
398
399           if(l == new_line) {
400             while(k < console_width) {
401               buffer[k++] = ' ';
402             }
403           }
404
405           buffer[k++] = '\n';
406           buffer[k++] = '\0';
407
408           // Highlight the highlighted line ...
409
410           if(l == new_line) {
411             if(with_colors) {
412               attron(COLOR_PAIR(2));
413               addnstr(buffer, console_width);
414               attroff(COLOR_PAIR(2));
415             } else {
416               attron(A_STANDOUT);
417               addnstr(buffer, console_width);
418               attroff(A_STANDOUT);
419             }
420           } else {
421             addnstr(buffer, console_width);
422           }
423
424           nb_printed_lines++;
425         }
426       }
427
428       if(motion != 0) {
429         *current_line = new_line;
430       }
431     }
432
433     *temporary_line = new_line;
434
435     if(nb_printed_lines == 0) {
436       addnstr("[no selection]\n", console_width);
437     }
438   } else {
439     addnstr("[empty choice]\n", console_width);
440   }
441
442   // Draw the modeline
443
444   move(0, 0);
445
446   if(with_colors) {
447     attron(COLOR_PAIR(1));
448   } else {
449     attron(A_REVERSE);
450   }
451
452   for(int k = 0; k < console_width; k++) buffer[k] = ' ';
453   buffer[console_width] = '\0';
454   addnstr(buffer, console_width);
455
456   move(0, 0);
457
458   // There must be a more elegant way of moving the cursor at a
459   // location met during display
460
461   int cursor_x = 0;
462
463   if(title) {
464     addstr(title);
465     addstr(" ");
466     cursor_x += strlen(title) + 1;
467   }
468
469   sprintf(buffer, "%d/%d ", nb_printed_lines, nb_lines);
470   addstr(buffer);
471   cursor_x += strlen(buffer);
472
473   addnstr(pattern, cursor_position);
474   cursor_x += cursor_position;
475
476   if(pattern[cursor_position]) {
477     addstr(pattern + cursor_position);
478   } else {
479     addstr(" ");
480   }
481
482   if(use_regexp) {
483     addstr(" [regexp]");
484   }
485
486   move(0, cursor_x);
487
488   if(with_colors) {
489     attroff(COLOR_PAIR(1));
490   } else {
491     attroff(A_REVERSE);
492   }
493
494   // We are done
495
496   refresh();
497   free_matcher(&matcher);
498 }
499
500 //////////////////////////////////////////////////////////////////////
501
502 void read_file(const char *input_filename,
503                int nb_lines_max, int *nb_lines, char **lines,
504                int hash_table_size, int *hash_table) {
505
506   char buffer[buffer_size], raw_line[buffer_size];;
507
508   ifstream file(input_filename);
509
510   if(file.fail()) {
511     cerr << "Can not open " << input_filename << endl;
512     exit(1);
513   }
514
515   while(*nb_lines < nb_lines_max && !file.eof()) {
516
517     file.getline(raw_line, buffer_size);
518
519     if(raw_line[0]) {
520
521       if(file.fail()) {
522         cerr << "Line too long:" << endl;
523         cerr << raw_line << endl;
524         exit(1);
525       }
526
527       char *s, *t;
528       const char *u;
529
530       s = buffer;
531       t = raw_line;
532       while(*t) {
533         u = unctrl(*t++);
534         while(*u) { *s++ = *u++; }
535       }
536       *s = '\0';
537
538       s = buffer;
539
540       if(zsh_history && *s == ':') {
541         while(*s && *s != ';') s++;
542         if(*s == ';') s++;
543       }
544
545       if(bash_history && (*s == ' ' || (*s >= '0' && *s <= '9'))) {
546         while(*s == ' ' || (*s >= '0' && *s <= '9')) s++;
547       }
548
549       int dup;
550
551       if(hash_table) {
552         dup = test_and_add(s, *nb_lines, lines, hash_table, hash_table_size);
553       } else {
554         dup = -1;
555       }
556
557       if(dup < 0) {
558         lines[*nb_lines] = new char[strlen(s) + 1];
559         strcpy(lines[*nb_lines], s);
560       } else {
561         // The string was already in there, so we do not allocate a
562         // new string but use the pointer to the first occurence of it
563         lines[*nb_lines] = lines[dup];
564         lines[dup] = 0;
565       }
566
567       (*nb_lines)++;
568     }
569   }
570 }
571
572 //////////////////////////////////////////////////////////////////////
573
574 int main(int argc, char **argv) {
575
576   if(!ttyname(STDIN_FILENO)) {
577     cerr << "The standard input is not a tty." << endl;
578     exit(1);
579   }
580
581   int color_fg_modeline, color_bg_modeline;
582   int color_fg_highlight, color_bg_highlight;
583
584   color_fg_modeline  = COLOR_WHITE;
585   color_bg_modeline  = COLOR_BLACK;
586   color_fg_highlight = COLOR_BLACK;
587   color_bg_highlight = COLOR_YELLOW;
588
589   setlocale(LC_ALL, "");
590
591   char input_filename[buffer_size], output_filename[buffer_size];
592
593   strcpy(input_filename, "");
594   strcpy(output_filename, "");
595
596   int i = 1;
597   int error = 0, show_help = 0;
598   int rest_are_files = 0;
599
600   while(!error && !show_help && i < argc && argv[i][0] == '-' && !rest_are_files) {
601
602     if(strcmp(argv[i], "-o") == 0) {
603       check_opt(argc, argv, i, 1, "<output filename>");
604       strncpy(output_filename, argv[i+1], buffer_size);
605       i += 2;
606     }
607
608     else if(strcmp(argv[i], "-s") == 0) {
609       check_opt(argc, argv, i, 1, "<pattern separator>");
610       pattern_separator = argv[i+1][0];
611       i += 2;
612     }
613
614     else if(strcmp(argv[i], "-v") == 0) {
615       output_to_vt_buffer = 1;
616       i++;
617     }
618
619     else if(strcmp(argv[i], "-m") == 0) {
620       with_colors = 0;
621       i++;
622     }
623
624     else if(strcmp(argv[i], "-f") == 0) {
625       check_opt(argc, argv, i, 1, "<input filename>");
626       strncpy(input_filename, argv[i+1], buffer_size);
627       i += 2;
628     }
629
630     else if(strcmp(argv[i], "-i") == 0) {
631       inverse_order = 1;
632       i++;
633     }
634
635     else if(strcmp(argv[i], "-b") == 0) {
636       bash_history = 1;
637       i++;
638     }
639
640     else if(strcmp(argv[i], "-z") == 0) {
641       zsh_history = 1;
642       i++;
643     }
644
645     else if(strcmp(argv[i], "-d") == 0) {
646       remove_duplicates = 1;
647       i++;
648     }
649
650     else if(strcmp(argv[i], "-e") == 0) {
651       use_regexp = 1;
652       i++;
653     }
654
655     else if(strcmp(argv[i], "-a") == 0) {
656       case_sensitive = 1;
657       i++;
658     }
659
660     else if(strcmp(argv[i], "-t") == 0) {
661       check_opt(argc, argv, i, 1, "<title>");
662       delete[] title;
663       title = new char[strlen(argv[i+1]) + 1];
664       strcpy(title, argv[i+1]);
665       i += 2;
666     }
667
668     else if(strcmp(argv[i], "-l") == 0) {
669       check_opt(argc, argv, i, 1, "<maximum number of lines>");
670       nb_lines_max = atoi(argv[i+1]);
671       i += 2;
672     }
673
674     else if(strcmp(argv[i], "-c") == 0) {
675       check_opt(argc, argv, i, 4, "<fg modeline> <bg modeline> <fg highlight> <bg highlight>");
676       color_fg_modeline = atoi(argv[i+1]);
677       color_bg_modeline = atoi(argv[i+2]);
678       color_fg_highlight = atoi(argv[i+3]);
679       color_bg_highlight = atoi(argv[i+4]);
680       i += 5;
681     }
682
683     else if(strcmp(argv[i], "--") == 0) {
684       rest_are_files = 1;
685       i++;
686     }
687
688     else if(strcmp(argv[i], "-h") == 0) {
689       show_help = 1;
690       i++;
691     }
692
693     else {
694       cerr << "Unknown option " << argv[i] << "." << endl;
695       error = 1;
696     }
697   }
698
699   if(show_help || error) {
700     cerr << "Selector version " << VERSION << "-R" << REVISION_NUMBER
701          << endl
702          << "Written by Francois Fleuret <francois@fleuret.org>."
703          << endl
704          << endl
705          << "Usage: " << argv[0] << " [options] [<filename1> [<filename2> ...]]" << endl
706          << endl
707          << " -h      show this help" << endl
708          << " -v      inject the selected line in the tty" << endl
709          << " -d      remove duplicated lines" << endl
710          << " -b      remove the bash history line prefix" << endl
711          << " -z      remove the zsh history line prefix" << endl
712          << " -i      invert the order of lines" << endl
713          << " -e      start in regexp mode" << endl
714          << " -a      case sensitive" << endl
715          << " -m      monochrome mode" << endl
716          << " --      rest of the arguments are filenames" << endl
717          << " -t <title>" << endl
718          << "         add a title in the modeline" << endl
719          << " -c <fg modeline> <bg modeline> <fg highlight> <bg highlight>" << endl
720          << "         set the display colors" << endl
721          << " -o <output filename>" << endl
722          << "         set a file to write the selected line to" << endl
723          << " -s <pattern separator>" << endl
724          << "         set the symbol to separate substrings in the pattern" << endl
725          << " -l <max number of lines>" << endl
726          << "         set the maximum number of lines to take into account" << endl
727          << endl;
728
729     exit(error);
730   }
731
732   char **lines = new char *[nb_lines_max];
733
734   int nb_lines = 0;
735   int hash_table_size = nb_lines_max * 10;
736   int *hash_table = 0;
737
738   if(remove_duplicates) {
739     hash_table = new_hash_table(hash_table_size);
740   }
741
742   // if(i == argc && !input_filename[0]) {
743     // cerr << "You must provide a filename." << endl;
744     // exit(1);
745   // }
746
747   if(input_filename[0]) {
748     read_file(input_filename,
749               nb_lines_max, &nb_lines, lines,
750               hash_table_size, hash_table);
751   }
752
753   while(i < argc) {
754     read_file(argv[i],
755               nb_lines_max, &nb_lines, lines,
756               hash_table_size, hash_table);
757     i++;
758   }
759
760   delete[] hash_table;
761
762   // Now remove the null strings
763
764   int n = 0;
765   for(int k = 0; k < nb_lines; k++) {
766     if(lines[k]) {
767       lines[n++] = lines[k];
768     }
769   }
770
771   nb_lines = n;
772
773   if(inverse_order) {
774     for(int i = 0; i < nb_lines / 2; i++) {
775       char *s = lines[nb_lines - 1 - i];
776       lines[nb_lines - 1 - i] = lines[i];
777       lines[i] = s;
778     }
779   }
780
781   char pattern[buffer_size];
782   pattern[0] = '\0';
783   int cursor_position;
784   cursor_position = 0;
785
786   //////////////////////////////////////////////////////////////////////
787   // Here we start to display with curse
788
789   initscr();
790
791   noecho();
792
793   // Hide the cursor
794   // curs_set(0);
795
796   // So that the arrow keys work
797   keypad(stdscr, TRUE);
798
799   if(with_colors) {
800     if(has_colors()) {
801       start_color();
802       if(color_fg_modeline < 0  || color_fg_modeline >= COLORS ||
803          color_bg_modeline < 0  || color_bg_modeline >= COLORS ||
804          color_fg_highlight < 0 || color_bg_highlight >= COLORS ||
805          color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
806         echo();
807         // curs_set(1);
808         endwin();
809         cerr << "Color numbers have to be between 0 and " << COLORS - 1 << "." << endl;
810         exit(1);
811       }
812       init_pair(1, color_fg_modeline, color_bg_modeline);
813       init_pair(2, color_fg_highlight, color_bg_highlight);
814       init_pair(3, color_bg_modeline, color_fg_modeline);
815     } else {
816       with_colors = 0;
817     }
818   }
819
820   int key;
821   int current_line = 0, temporary_line = 0;
822
823   update_screen(&current_line, &temporary_line, 0, nb_lines, lines, cursor_position, pattern);
824
825   do {
826
827     key = getch();
828
829     int motion = 0;
830
831     if(key >= ' ' && key <= '~') { // Insert character
832       insert_char(pattern, &cursor_position, key);
833     }
834
835     else if(key == KEY_BACKSPACE ||
836             key == '\010' || // ^H
837             key == '\177') { // ^?
838       backspace_char(pattern, &cursor_position);
839     }
840
841     else if(key == KEY_DC ||
842             key == '\004') { // ^D
843       delete_char(pattern, &cursor_position);
844     }
845
846     else if(key == KEY_HOME) {
847       current_line = 0;
848     }
849
850     else if(key == KEY_END) {
851       current_line = nb_lines - 1;
852     }
853
854     else if(key == KEY_NPAGE) {
855       motion = 10;
856     }
857
858     else if(key == KEY_PPAGE) {
859       motion = -10;
860     }
861
862     else if(key == KEY_DOWN ||
863             key == '\016') { // ^N
864       motion = 1;
865     }
866
867     else if(key == KEY_UP ||
868             key == '\020') { // ^P
869       motion = -1;
870     }
871
872     else if(key == KEY_LEFT ||
873             key == '\002') { // ^B
874       if(cursor_position > 0) cursor_position--;
875     }
876
877     else if(key == KEY_RIGHT ||
878             key == '\006') { // ^F
879       if(pattern[cursor_position]) cursor_position++;
880     }
881
882     else if(key == '\001') { // ^A
883       cursor_position = 0;
884     }
885
886     else if(key == '\005') { // ^E
887       cursor_position = strlen(pattern);
888     }
889
890     else if(key == '\022') { // ^R
891       use_regexp = !use_regexp;
892     }
893
894     else if(key == '\025') { // ^U
895       kill_before_cursor(pattern, &cursor_position);
896     }
897
898     else if(key == '\013') { // ^K
899       kill_after_cursor(pattern, &cursor_position);
900     }
901
902     update_screen(&current_line, &temporary_line, motion,
903                   nb_lines, lines, cursor_position, pattern);
904
905   } while(key != '\n' && key != KEY_ENTER && key != '\007'); // ^G
906
907   echo();
908   // curs_set(1);
909   endwin();
910
911   //////////////////////////////////////////////////////////////////////
912   // Here we come back to standard display
913
914   if((key == KEY_ENTER || key == '\n')) {
915
916     if(output_to_vt_buffer) {
917       if(temporary_line >= 0 && temporary_line < nb_lines) {
918         inject_into_tty_buffer(lines[temporary_line]);
919       }
920     }
921
922     if(output_filename[0]) {
923       ofstream out(output_filename);
924       if(out.fail()) {
925         cerr << "Can not open " << output_filename << " for writing." << endl;
926         exit(1);
927       } else {
928         if(temporary_line >= 0 && temporary_line < nb_lines) {
929           out << lines[temporary_line] << endl;
930         } else {
931           out << endl;
932         }
933       }
934       out.flush();
935     }
936
937   }
938
939   for(int l = 0; l < nb_lines; l++) {
940     delete[] lines[l];
941   }
942
943   delete[] lines;
944   delete[] title;
945
946   exit(0);
947 }