Wrote the nightmarish add_interval.
[selector.git] / selector.c
1
2 /*
3  *  selector is a simple command line utility for selection of strings
4  *  with a dynamic pattern-matching.
5  *
6  *  Copyright (c) 2009, 2010, 2011 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 /*
26
27   To use it as a super-history-search for bash:
28   selector --bash <(history)
29
30 */
31
32 #define _GNU_SOURCE
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <unistd.h>
37 #include <string.h>
38 #include <errno.h>
39 #include <ncurses.h>
40 #include <fcntl.h>
41 #include <sys/ioctl.h>
42 #include <termios.h>
43 #include <regex.h>
44 #include <locale.h>
45 #include <getopt.h>
46 #include <limits.h>
47
48 #define VERSION "1.1.5"
49
50 #define BUFFER_SIZE 4096
51
52 /* Yeah, global variables! */
53
54 int nb_lines_max = 1000;
55 char pattern_separator = ';';
56 char label_separator = '\0';
57 int output_to_vt_buffer = 0;
58 int add_control_qs = 0;
59 int with_colors = 1;
60 int zsh_history = 0;
61 int bash_history = 0;
62 int inverse_order = 0;
63 int remove_duplicates = 0;
64 int use_regexp = 0;
65 int case_sensitive = 0;
66 char *title = 0;
67 int error_flash = 0;
68 int upper_caps_makes_case_sensitive = 0;
69 int show_long_lines = 0;
70 int show_hits = 0;
71
72 int attr_modeline, attr_focus_line, attr_error, attr_hits;
73
74 /********************************************************************/
75
76 /* malloc with error checking.  */
77
78 void *safe_malloc(size_t n) {
79   void *p = malloc(n);
80   if(!p && n != 0) {
81     fprintf(stderr,
82             "selector: can not allocate memory: %s\n", strerror(errno));
83     exit(EXIT_FAILURE);
84   }
85   return p;
86 }
87
88 /*********************************************************************/
89
90 void inject_into_tty_buffer(char *string, int add_control_qs) {
91   struct termios oldtio, newtio;
92   const char *k;
93   const char control_q = '\021';
94   tcgetattr(STDIN_FILENO, &oldtio);
95   memset(&newtio, 0, sizeof(newtio));
96   /* Set input mode (non-canonical, *no echo*,...) */
97   tcsetattr(STDIN_FILENO, TCSANOW, &newtio);
98   /* Put the selected string in the tty input buffer */
99   for(k = string; *k; k++) {
100     if(add_control_qs && !(*k >= ' ' && *k <= '~')) {
101       /* Add ^Q to quote control characters */
102       ioctl(STDIN_FILENO, TIOCSTI, &control_q);
103     }
104     ioctl(STDIN_FILENO, TIOCSTI, k);
105   }
106   /* Restore the old settings */
107   tcsetattr(STDIN_FILENO, TCSANOW, &oldtio);
108 }
109
110 /*********************************************************************/
111
112 void str_to_positive_integers(char *string, int *values, int nb) {
113   int current_value, gotone;
114   char *s;
115   int n;
116
117   n = 0;
118   current_value = 0;
119   gotone = 0;
120   s = string;
121
122   while(1) {
123     if(*s >= '0' && *s <= '9') {
124       current_value = current_value * 10 + (int) (*s - '0');
125       gotone = 1;
126     } else if(*s == ',' || *s == '\0') {
127       if(gotone) {
128         if(n < nb) {
129           values[n++] = current_value;
130           if(*s == '\0') {
131             if(n == nb) {
132               return;
133             } else {
134               fprintf(stderr,
135                       "selector: Missing value in `%s'.\n", string);
136               exit(EXIT_FAILURE);
137             }
138           }
139           current_value = 0;
140           gotone = 0;
141         } else {
142           fprintf(stderr,
143                   "selector: Too many values in `%s'.\n", string);
144           exit(EXIT_FAILURE);
145         }
146       } else {
147         fprintf(stderr,
148                 "selector: Empty value in `%s'.\n", string);
149         exit(EXIT_FAILURE);
150       }
151     } else {
152       fprintf(stderr,
153               "selector: Syntax error in `%s'.\n", string);
154       exit(EXIT_FAILURE);
155     }
156     s++;
157   }
158 }
159
160 void error_feedback() {
161   if(error_flash) {
162     flash();
163   } else {
164     beep();
165   }
166 }
167
168 void usage(FILE *out) {
169
170   fprintf(out, "Selector version %s (%s)\n", VERSION, UNAME);
171   fprintf(out, "Written by Francois Fleuret <francois@fleuret.org>.\n");
172   fprintf(out, "\n");
173   fprintf(out, "Usage: selector [options] [<filename1> [<filename2> ...]]\n");
174   fprintf(out, "\n");
175   fprintf(out, " -h, --help\n");
176   fprintf(out, "         show this help\n");
177   fprintf(out, " -v, --inject-in-tty\n");
178   fprintf(out, "         inject the selected line in the tty\n");
179   fprintf(out, " -w, --add-control-qs\n");
180   fprintf(out, "         quote control characters with ^Qs when using -v\n");
181   fprintf(out, " -d, --remove-duplicates\n");
182   fprintf(out, "         remove duplicated lines\n");
183   fprintf(out, " -b, --remove-bash-prefix\n");
184   fprintf(out, "         remove the bash history line prefix\n");
185   fprintf(out, " -z, --remove-zsh-prefix\n");
186   fprintf(out, "         remove the zsh history line prefix\n");
187   fprintf(out, " -i, --revert-order\n");
188   fprintf(out, "         invert the order of lines\n");
189   fprintf(out, " -e, --regexp\n");
190   fprintf(out, "         start in regexp mode\n");
191   fprintf(out, " -a, --case-sensitive\n");
192   fprintf(out, "         start in case sensitive mode\n");
193   fprintf(out, " -j, --show-long-lines\n");
194   fprintf(out, "         print three dots at the end of truncated lines\n");
195   fprintf(out, " -y, --show-hits\n");
196   fprintf(out, "         highlight the matching substrings\n");
197   fprintf(out, " -u, --upper-case-makes-case-sensitive\n");
198   fprintf(out, "         using an upper case character in the matching string makes\n");
199   fprintf(out, "         the matching case-sensitive\n");
200   fprintf(out, " -m, --monochrome\n");
201   fprintf(out, "         monochrome mode\n");
202   fprintf(out, " -q, --no-beep\n");
203   fprintf(out, "         make a flash instead of a beep on an edition error\n");
204   fprintf(out, " --bash\n");
205   fprintf(out, "         setting for bash history search, same as -b -i -d -v -w -l ${HISTSIZE}\n");
206   fprintf(out, " --      all following arguments are filenames\n");
207   fprintf(out, " -t <title>, --title <title>\n");
208   fprintf(out, "         add a title in the modeline\n");
209   fprintf(out, " -c <colors>, --colors <colors>\n");
210   fprintf(out, "         set the display colors with an argument of the form\n");
211   fprintf(out, "         <fg_modeline>,<bg_modeline>,<fg_highlight>,<bg_highlight>\n");
212   fprintf(out, " -o <output filename>, --output-file <output filename>\n");
213   fprintf(out, "         set a file to write the selected line to\n");
214   fprintf(out, " -s <pattern separator>, --pattern-separator <pattern separator>\n");
215   fprintf(out, "         set the symbol to separate substrings in the pattern\n");
216   fprintf(out, " -x <label separator>, --label-separator <label separator>\n");
217   fprintf(out, "         set the symbol to terminate the label\n");
218   fprintf(out, " -l <max number of lines>, --number-of-lines <max number of lines>\n");
219   fprintf(out, "         set the maximum number of lines to take into account\n");
220   fprintf(out, "\n");
221 }
222
223 /*********************************************************************/
224
225 /* A quick and dirty hash table */
226
227 #define MAGIC_HASH_MULTIPLIER 387433
228
229 /* The table itself stores indexes of the strings taken in a char**
230    table. When a string is added, if it was already in the table, the
231    new index replaces the previous one.  */
232
233 struct hash_table_t {
234   int size;
235   int *entries;
236 };
237
238 struct hash_table_t *new_hash_table(int size) {
239   int k;
240   struct hash_table_t *hash_table;
241
242   hash_table = safe_malloc(sizeof(struct hash_table_t));
243
244   hash_table->size = size;
245   hash_table->entries = safe_malloc(hash_table->size * sizeof(int));
246
247   for(k = 0; k < hash_table->size; k++) {
248     hash_table->entries[k] = -1;
249   }
250
251   return hash_table;
252 }
253
254 void free_hash_table(struct hash_table_t *hash_table) {
255   free(hash_table->entries);
256   free(hash_table);
257 }
258
259 /* Adds new_string in the table, associated to new_index. If this
260    string was not already in the table, returns -1. Otherwise, returns
261    the previous index it had. */
262
263 int add_and_get_previous_index(struct hash_table_t *hash_table,
264                                const char *new_string, int new_index,
265                                char **strings) {
266
267   unsigned int code = 0, start;
268   int k;
269
270   /* This is my recipe. I checked, it seems to work (as long as
271      hash_table->size is not a multiple of MAGIC_HASH_MULTIPLIER that
272      should be okay) */
273
274   for(k = 0; new_string[k]; k++) {
275     code = code * MAGIC_HASH_MULTIPLIER + (unsigned int) (new_string[k]);
276   }
277
278   code = code % hash_table->size;
279   start = code;
280
281   while(hash_table->entries[code] >= 0) {
282     /* There is a string with that code */
283     if(strcmp(new_string, strings[hash_table->entries[code]]) == 0) {
284       /* It is the same string, we keep a copy of the stored index */
285       int result = hash_table->entries[code];
286       /* Put the new one */
287       hash_table->entries[code] = new_index;
288       /* And return the previous one */
289       return result;
290     }
291     /* This collision was not the same string, let's move to the next
292        in the table */
293     code = (code + 1) % hash_table->size;
294     /* We came back to our original code, which means that the table
295        is full */
296     if(code == start) {
297       fprintf(stderr,
298               "Full hash table (that should not happen)\n");
299       exit(EXIT_FAILURE);
300    }
301   }
302
303   /* This string was not already in there, store the index in the
304      table and return -1 */
305
306   hash_table->entries[code] = new_index;
307   return -1;
308 }
309
310 /*********************************************************************
311  A matcher matches either with a collection of substrings, or with a
312  regexp */
313
314 struct matcher {
315   regex_t preg;
316   int regexp_error;
317   int nb_patterns;
318   int case_sensitive;
319   char *splitted_patterns, **patterns;
320 };
321
322 /* Routine to add an interval to a sorted list of intervals
323    extermities. Returns the number of extremities. This is an effing
324    nightmare */
325
326 int add_interval(int n, int *switches, int start, int end) {
327   int f, g, k;
328
329   f = 0;
330   while(f < n && switches[f] <= start) { f++; }
331   g = f;
332   while(g < n && switches[g] <= end) { g++; }
333
334   if(f == n) {
335     /* switches[n]   start  end  */
336     /* XXXXXXXXXX|               */
337     switches[f] = start;
338     switches[f+1] = end;
339     return n + 2;
340   }
341
342   if(f%2) {
343
344     if(f == g) {
345       /* switches[f-1]   start  end   switches[f]  */
346       /* |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|  */
347       return n;
348     }
349
350     if(g%2) {
351       /* switches[f-1]   start   switches[f]         switches[g-1]   end    switches[g] */
352       /* |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|   ...   |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| */
353       for(k = f; k < n; k++) { switches[k] = switches[(k - f) + g]; }
354       return n - (g - f);
355     } else {
356       /* switches[f-1]   start   switches[f]         switches[g-1]   end    switches[g] */
357       /* |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX|   ...   XXXXXXXXXXXX|          |XXXXXXXXXX */
358       switches[g - 1] = end;
359       for(k = f; k < n; k++) { switches[k] = switches[(k - f) + (g - 1)]; }
360       return n - ((g - 1) - f);
361     }
362
363   } else {
364
365     if(f == g) {
366       /* switches[f-1]   start  end   switches[f]  */
367       /* XXXXXXXXXXXX|                |XXXXXXXXXX  */
368       for(k = n; k >= f; k--) {
369         switches[k + 2] = switches[k];
370       }
371       switches[f] = start;
372       switches[f + 1] = end;
373       return n + 2;
374     }
375
376     if(g%2) {
377       /* switches[f-1]   start   switches[f]         switches[g-1]   end    switches[g] */
378       /* XXXXXXXXXXXX|           |XXXXXXXXXX   ...   |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| */
379       switches[f] = start;
380       for(k = f + 1; k < n; k++) { switches[k] = switches[(k - (f + 1)) + g]; }
381       return n - (g - (f + 1));
382     } else {
383       /* switches[f-1]   start   switches[f]         switches[g-1]   end    switches[g] */
384       /* XXXXXXXXXXXX|           |XXXXXXXXXX   ...   XXXXXXXXXXXX|          |XXXXXXXXXX */
385       switches[f] = start;
386       switches[g - 1] = end;
387       for(k = f + 1; k < n; k++) { switches[k] = switches[(k - (f + 1)) + (g - 1)]; }
388       return n - ((g - 1) - (f + 1));
389     }
390   }
391 }
392
393 int match(struct matcher *matcher, char *string, int *switches) {
394   int n, nb_switches = 0;
395   char *where;
396   if(matcher->nb_patterns >= 0) {
397     if(matcher->case_sensitive) {
398       for(n = 0; n < matcher->nb_patterns; n++) {
399         if((where = strstr(string, matcher->patterns[n])) == 0) return 0;
400         if(switches) {
401           nb_switches = add_interval(nb_switches, switches,
402                                      (int) (where - string),
403                                      (int) (where - string) + strlen(matcher->patterns[n]));
404         }
405       }
406     } else {
407       for(n = 0; n < matcher->nb_patterns; n++) {
408         if((where = strcasestr(string, matcher->patterns[n])) == 0) return 0;
409         if(switches) {
410           nb_switches = add_interval(nb_switches, switches,
411                                      (int) (where - string),
412                                      (int) (where - string) + strlen(matcher->patterns[n]));
413         }
414       }
415     }
416     return 1;
417   } else {
418     return regexec(&matcher->preg, string, 0, 0, 0) == 0;
419   }
420 }
421
422 void free_matcher(struct matcher *matcher) {
423   if(matcher->nb_patterns < 0) {
424     if(!matcher->regexp_error) regfree(&matcher->preg);
425   } else {
426     free(matcher->splitted_patterns);
427     free(matcher->patterns);
428   }
429 }
430
431 void initialize_matcher(struct matcher *matcher,
432                         int use_regexp, int case_sensitive,
433                         const char *pattern) {
434   const char *s;
435   char *t, *last_pattern_start;
436   int n;
437
438   if(use_regexp) {
439     matcher->case_sensitive = case_sensitive;
440     matcher->nb_patterns = -1;
441     matcher->regexp_error = regcomp(&matcher->preg, pattern,
442                                     case_sensitive ? 0 : REG_ICASE);
443   } else {
444     matcher->regexp_error = 0;
445     matcher->nb_patterns = 1;
446
447     if(upper_caps_makes_case_sensitive) {
448       for(s = pattern; *s && !case_sensitive; s++) {
449         case_sensitive = (*s >= 'A' && *s <= 'Z');
450       }
451     }
452
453     matcher->case_sensitive = case_sensitive;
454
455     for(s = pattern; *s; s++) {
456       if(*s == pattern_separator) {
457         matcher->nb_patterns++;
458       }
459     }
460
461     matcher->splitted_patterns =
462       safe_malloc((strlen(pattern) + 1) * sizeof(char));
463
464     matcher->patterns =
465       safe_malloc(matcher->nb_patterns * sizeof(char *));
466
467     strcpy(matcher->splitted_patterns, pattern);
468
469     n = 0;
470     last_pattern_start = matcher->splitted_patterns;
471     for(t = matcher->splitted_patterns; n < matcher->nb_patterns; t++) {
472       if(*t == pattern_separator || *t == '\0') {
473         *t = '\0';
474         matcher->patterns[n++] = last_pattern_start;
475         last_pattern_start = t + 1;
476       }
477     }
478   }
479 }
480
481 /*********************************************************************
482  Buffer edition */
483
484 void delete_char(char *buffer, int *position) {
485   if(buffer[*position]) {
486     int c = *position;
487     while(c < BUFFER_SIZE && buffer[c]) {
488       buffer[c] = buffer[c+1];
489       c++;
490     }
491   } else error_feedback();
492 }
493
494 void backspace_char(char *buffer, int *position) {
495   if(*position > 0) {
496     if(buffer[*position]) {
497       int c = *position - 1;
498       while(buffer[c]) {
499         buffer[c] = buffer[c+1];
500         c++;
501       }
502     } else {
503       buffer[*position - 1] = '\0';
504     }
505
506     (*position)--;
507   } else error_feedback();
508 }
509
510 void insert_char(char *buffer, int *position, char character) {
511   if(strlen(buffer) < BUFFER_SIZE - 1) {
512     int c = *position;
513     char t = buffer[c], u;
514     while(t) {
515       c++;
516       u = buffer[c];
517       buffer[c] = t;
518       t = u;
519     }
520     c++;
521     buffer[c] = '\0';
522     buffer[(*position)++] = character;
523   } else error_feedback();
524 }
525
526 void kill_before_cursor(char *buffer, int *position) {
527   int s = 0;
528   while(buffer[*position + s]) {
529     buffer[s] = buffer[*position + s];
530     s++;
531   }
532   buffer[s] = '\0';
533   *position = 0;
534 }
535
536 void kill_after_cursor(char *buffer, int *position) {
537   buffer[*position] = '\0';
538 }
539
540 /*********************************************************************/
541
542 int previous_visible(int current_line, char **lines, struct matcher *matcher) {
543   int line = current_line - 1;
544   while(line >= 0 && !match(matcher, lines[line], 0)) line--;
545   return line;
546 }
547
548 int next_visible(int current_line, int nb_lines, char **lines,
549                  struct matcher *matcher) {
550   int line = current_line + 1;
551   while(line < nb_lines && !match(matcher, lines[line], 0)) line++;
552
553   if(line < nb_lines)
554     return line;
555   else
556     return -1;
557 }
558
559 /*********************************************************************/
560
561 void print_string_with_switches(char *buffer, int line_width,
562                                 int console_width,
563                                 int nb_patterns, int *switches) {
564   int w, current = 0, next;
565   if(switches) {
566     for(w = 0; w < nb_patterns && switches[2 * w] < line_width; w++) {
567       if(switches[2 * w] < switches[2 * w + 1]) {
568         next = switches[2 * w];
569         if(next > line_width) { next = line_width; }
570         addnstr(buffer + current,  next - current);
571         attron(attr_hits);
572         current = next;
573         next = switches[2 * w + 1];
574         if(next > line_width) { next = line_width; }
575         addnstr(buffer + current,  next - current);
576         attroff(attr_hits);
577         current = next;
578       }
579     }
580     if(current < line_width) {
581       addnstr(buffer + current, console_width - current);
582     }
583   } else {
584     addnstr(buffer, console_width);
585   }
586 }
587
588 /* The line highlighted is the first one matching the matcher in that
589    order: (1) current_focus_line after motion, if it does not match,
590    then (2) the first with a greater index, if none matches, then (3)
591    the first with a lesser index.
592
593    The index of the line actually shown highlighted is written in
594    displayed_focus_line (it can be -1 if no line at all matches the
595    matcher)
596
597    If there is a motion and a line is actually shown highlighted, its
598    value is written in current_focus_line. */
599
600 void update_screen(int *current_focus_line, int *displayed_focus_line,
601                    int motion,
602                    int nb_lines, char **lines,
603                    int cursor_position,
604                    char *pattern) {
605   int *switches;
606   char buffer[BUFFER_SIZE];
607   struct matcher matcher;
608   int k, l, m;
609   int console_width, console_height;
610   int nb_printed_lines = 0;
611   int cursor_x;
612
613   initialize_matcher(&matcher, use_regexp, case_sensitive, pattern);
614
615   if(show_hits && matcher.nb_patterns > 0) {
616     switches = safe_malloc(sizeof(int) * matcher.nb_patterns * 2);
617   } else {
618     switches = 0;
619   }
620
621   console_width = getmaxx(stdscr);
622   console_height = getmaxy(stdscr);
623
624   use_default_colors();
625
626   /* Add an empty line where we will print the modeline at the end */
627
628   addstr("\n");
629
630   /* If the regexp is erroneous, print a message saying so */
631
632   if(matcher.regexp_error) {
633     attron(attr_error);
634     addnstr("Regexp syntax error", console_width);
635     attroff(attr_error);
636   }
637
638   /* Else, and we do have lines to select from, find a visible line. */
639
640   else if(nb_lines > 0) {
641     int new_focus_line;
642     if(match(&matcher, lines[*current_focus_line], 0)) {
643       new_focus_line = *current_focus_line;
644     } else {
645       new_focus_line = next_visible(*current_focus_line, nb_lines, lines,
646                                     &matcher);
647       if(new_focus_line < 0) {
648         new_focus_line = previous_visible(*current_focus_line, lines, &matcher);
649       }
650     }
651
652     /* If we found a visible line and we should move, let's move */
653
654     if(new_focus_line >= 0 && motion != 0) {
655       int l = new_focus_line;
656       if(motion > 0) {
657         /* We want to go down, let's find the first visible line below */
658         for(m = 0; l >= 0 && m < motion; m++) {
659           l = next_visible(l, nb_lines, lines, &matcher);
660           if(l >= 0) {
661             new_focus_line = l;
662           }
663         }
664       } else {
665         /* We want to go up, let's find the first visible line above */
666         for(m = 0; l >= 0 && m < -motion; m++) {
667           l = previous_visible(l, lines, &matcher);
668           if(l >= 0) {
669             new_focus_line = l;
670           }
671         }
672       }
673     }
674
675     /* Here new_focus_line is either a line number matching the
676        pattern, or -1 */
677
678     if(new_focus_line >= 0) {
679
680       int first_line = new_focus_line, last_line = new_focus_line;
681       int nb_match = 1;
682
683       /* We find the first and last lines to show, so that the total
684          of visible lines between them (them included) is
685          console_height-1 */
686
687       while(nb_match < console_height-1 &&
688             (first_line > 0 || last_line < nb_lines - 1)) {
689
690         if(first_line > 0) {
691           first_line--;
692           while(first_line > 0 && !match(&matcher, lines[first_line], 0)) {
693             first_line--;
694           }
695           if(match(&matcher, lines[first_line], 0)) {
696             nb_match++;
697           }
698         }
699
700         if(nb_match < console_height - 1 && last_line < nb_lines - 1) {
701           last_line++;
702           while(last_line < nb_lines - 1 && !match(&matcher, lines[last_line], 0)) {
703             last_line++;
704           }
705
706           if(match(&matcher, lines[last_line], 0)) {
707             nb_match++;
708           }
709         }
710       }
711
712       /* Now we display them */
713
714       for(l = first_line; l <= last_line; l++) {
715         if(match(&matcher, lines[l], switches)) {
716           int k = 0;
717
718           while(lines[l][k] && k < BUFFER_SIZE - 2 && k < console_width) {
719             buffer[k] = lines[l][k];
720             k++;
721           }
722
723           /* Highlight the highlighted line ... */
724
725           if(l == new_focus_line) {
726             if(show_long_lines && k >= console_width) {
727               if(console_width >= 4) {
728                 buffer[console_width - 4] = ' ';
729                 buffer[console_width - 3] = '.';
730                 buffer[console_width - 2] = '.';
731                 buffer[console_width - 1] = '.';
732               }
733             } else {
734               while(k < console_width) {
735                 buffer[k++] = ' ';
736               }
737             }
738             attron(attr_focus_line);
739             print_string_with_switches(buffer, k, console_width,
740                                        matcher.nb_patterns, switches);
741             attroff(attr_focus_line);
742           } else {
743             if(show_long_lines && k >= console_width) {
744               if(console_width >= 4) {
745                 buffer[console_width - 4] = ' ';
746                 buffer[console_width - 3] = '.';
747                 buffer[console_width - 2] = '.';
748                 buffer[console_width - 1] = '.';
749               }
750             } else {
751               buffer[k++] = '\n';
752               buffer[k++] = '\0';
753             }
754             print_string_with_switches(buffer, k, console_width,
755                                        matcher.nb_patterns, switches);
756           }
757
758           nb_printed_lines++;
759         }
760       }
761
762       /* If we are on a focused line and we moved, this become the new
763          focus line */
764
765       if(motion != 0) {
766         *current_focus_line = new_focus_line;
767       }
768     }
769
770     *displayed_focus_line = new_focus_line;
771
772     if(nb_printed_lines == 0) {
773       attron(attr_error);
774       addnstr("No selection", console_width);
775       attroff(attr_error);
776     }
777   }
778
779   /* Else, print a message saying that there are no lines to select from */
780
781   else {
782     attron(attr_error);
783     addnstr("Empty choice", console_width);
784     attroff(attr_error);
785   }
786
787   clrtobot();
788
789   /* Draw the modeline */
790
791   move(0, 0);
792
793   attron(attr_modeline);
794
795   for(k = 0; k < console_width; k++) buffer[k] = ' ';
796   buffer[console_width] = '\0';
797   addnstr(buffer, console_width);
798
799   move(0, 0);
800
801   /* There must be a more elegant way of moving the cursor at a
802      location met during display */
803
804   cursor_x = 0;
805
806   if(title) {
807     addstr(title);
808     addstr(" ");
809     cursor_x += strlen(title) + 1;
810   }
811
812   sprintf(buffer, "%d/%d ", nb_printed_lines, nb_lines);
813   addstr(buffer);
814   cursor_x += strlen(buffer);
815
816   addnstr(pattern, cursor_position);
817   cursor_x += cursor_position;
818
819   if(pattern[cursor_position]) {
820     addstr(pattern + cursor_position);
821   } else {
822     addstr(" ");
823   }
824
825   /* Add a few info about the mode we are in (regexp and/or case
826      sensitive) */
827
828   if(use_regexp || matcher.case_sensitive) {
829     addstr(" [");
830     if(use_regexp) {
831       addstr("regexp");
832     }
833
834     if(matcher.case_sensitive) {
835       if(use_regexp) {
836         addstr(",");
837       }
838       addstr("case");
839     }
840     addstr("]");
841   }
842
843   move(0, cursor_x);
844
845   attroff(attr_modeline);
846
847   /* We are done */
848
849   refresh();
850   if(switches) { free(switches); }
851   free_matcher(&matcher);
852 }
853
854 /*********************************************************************/
855
856 void store_line(struct hash_table_t *hash_table,
857                 const char *new_line,
858                 int *nb_lines, char **lines) {
859   int dup;
860
861   /* Remove the zsh history prefix */
862
863   if(zsh_history && *new_line == ':') {
864     while(*new_line && *new_line != ';') new_line++;
865     if(*new_line == ';') new_line++;
866   }
867
868   /* Remove the bash history prefix */
869
870   if(bash_history) {
871     while(*new_line == ' ') new_line++;
872     while(*new_line >= '0' && *new_line <= '9') new_line++;
873     while(*new_line == ' ') new_line++;
874   }
875
876   /* Check for duplicates with the hash table and insert the line in
877      the list if necessary */
878
879   if(hash_table) {
880     dup = add_and_get_previous_index(hash_table,
881                                      new_line, *nb_lines, lines);
882   } else {
883     dup = -1;
884   }
885
886   if(dup < 0) {
887     lines[*nb_lines] = safe_malloc((strlen(new_line) + 1) * sizeof(char));
888     strcpy(lines[*nb_lines], new_line);
889   } else {
890     /* The string was already in there, so we do not allocate a new
891        string but use the pointer to the first occurence of it */
892     lines[*nb_lines] = lines[dup];
893     lines[dup] = 0;
894   }
895
896   (*nb_lines)++;
897 }
898
899 void read_file(struct hash_table_t *hash_table,
900                const char *input_filename,
901                int nb_lines_max, int *nb_lines, char **lines) {
902
903   char raw_line[BUFFER_SIZE];
904   char *s;
905   FILE *file;
906
907   file = fopen(input_filename, "r");
908
909   if(!file) {
910     fprintf(stderr, "selector: Can not open `%s'.\n", input_filename);
911     exit(EXIT_FAILURE);
912   }
913
914   while(*nb_lines < nb_lines_max && fgets(raw_line, BUFFER_SIZE, file)) {
915     for(s = raw_line + strlen(raw_line) - 1; s > raw_line && *s == '\n'; s--) {
916       *s = '\0';
917     }
918     store_line(hash_table, raw_line, nb_lines, lines);
919   }
920
921   fclose(file);
922 }
923
924 /*********************************************************************/
925
926 /* For long options that have no equivalent short option, use a
927    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
928 enum
929 {
930   OPT_BASH_MODE = CHAR_MAX + 1
931 };
932
933 static struct option long_options[] = {
934   { "output-file", 1, 0, 'o' },
935   { "pattern-separator", 1, 0, 's' },
936   { "label-separator", 1, 0, 'x' },
937   { "inject-in-tty", no_argument, 0, 'v' },
938   { "add-control-qs", no_argument, 0, 'w' },
939   { "monochrome", no_argument, 0, 'm' },
940   { "no-beep", no_argument, 0, 'q' },
941   { "revert-order", no_argument, 0, 'i' },
942   { "remove-bash-prefix", no_argument, 0, 'b' },
943   { "remove-zsh-prefix", no_argument, 0, 'z' },
944   { "remove-duplicates", no_argument, 0, 'd' },
945   { "regexp", no_argument, 0, 'e' },
946   { "case-sensitive", no_argument, 0, 'a' },
947   { "show-long-lines", no_argument, 0, 'j'},
948   { "upper-case-makes-case-sensitive", no_argument, 0, 'u' },
949   { "title", 1, 0, 't' },
950   { "number-of-lines", 1, 0, 'l' },
951   { "colors", 1, 0, 'c' },
952   { "bash", no_argument, 0, OPT_BASH_MODE },
953   { "help", no_argument, 0, 'h' },
954   { 0, 0, 0, 0 }
955 };
956
957 int main(int argc, char **argv) {
958
959   char output_filename[BUFFER_SIZE];
960   char pattern[BUFFER_SIZE];
961   int c, k, l, n;
962   int cursor_position;
963   int error = 0, show_help = 0, done = 0;
964   int key;
965   int current_focus_line, displayed_focus_line;
966
967   int colors[4];
968   int color_fg_modeline, color_bg_modeline;
969   int color_fg_highlight, color_bg_highlight;
970
971   char **lines, **labels;
972   int nb_lines;
973   struct hash_table_t *hash_table;
974   char *bash_histsize;
975
976   if(!isatty(STDIN_FILENO)) {
977     fprintf(stderr, "selector: The standard input is not a tty.\n");
978     exit(EXIT_FAILURE);
979   }
980
981   color_fg_modeline  = COLOR_WHITE;
982   color_bg_modeline  = COLOR_BLACK;
983   color_fg_highlight = COLOR_BLACK;
984   color_bg_highlight = COLOR_YELLOW;
985
986   setlocale(LC_ALL, "");
987
988   strcpy(output_filename, "");
989
990   while ((c = getopt_long(argc, argv, "o:s:x:vwmqf:ibzdeajyunt:l:c:-h",
991                           long_options, NULL)) != -1) {
992
993     switch(c) {
994
995     case 'o':
996       strncpy(output_filename, optarg, BUFFER_SIZE);
997       break;
998
999     case 's':
1000       pattern_separator = optarg[0];
1001       break;
1002
1003     case 'x':
1004       label_separator = optarg[0];
1005       break;
1006
1007     case 'v':
1008       output_to_vt_buffer = 1;
1009       break;
1010
1011     case 'w':
1012       add_control_qs = 1;
1013       break;
1014
1015     case 'm':
1016       with_colors = 0;
1017       break;
1018
1019     case 'q':
1020       error_flash = 1;
1021       break;
1022
1023     case 'i':
1024       inverse_order = 1;
1025       break;
1026
1027     case 'b':
1028       bash_history = 1;
1029       break;
1030
1031     case 'z':
1032       zsh_history = 1;
1033       break;
1034
1035     case 'd':
1036       remove_duplicates = 1;
1037       break;
1038
1039     case 'e':
1040       use_regexp = 1;
1041       break;
1042
1043     case 'a':
1044       case_sensitive = 1;
1045       break;
1046
1047     case 'j':
1048       show_long_lines = 1;
1049       break;
1050
1051     case 'y':
1052       show_hits = 1;
1053       break;
1054
1055     case 'u':
1056       upper_caps_makes_case_sensitive = 1;
1057       break;
1058
1059     case 't':
1060       free(title);
1061       title = safe_malloc((strlen(optarg) + 1) * sizeof(char));
1062       strcpy(title, optarg);
1063       break;
1064
1065     case 'l':
1066       str_to_positive_integers(optarg, &nb_lines_max, 1);
1067       break;
1068
1069     case 'c':
1070       str_to_positive_integers(optarg, colors, 4);
1071       color_fg_modeline = colors[0];
1072       color_bg_modeline = colors[1];
1073       color_fg_highlight = colors[2];
1074       color_bg_highlight = colors[3];
1075       break;
1076
1077     case 'h':
1078       show_help = 1;
1079       break;
1080
1081     case OPT_BASH_MODE:
1082       /* Same as -c 7,4,0,3 -q */
1083       /* color_fg_modeline = 7; */
1084       /* color_bg_modeline = 4; */
1085       /* color_fg_highlight = 0; */
1086       /* color_bg_highlight = 3; */
1087       /* error_flash = 1; */
1088       /* Same as -b -i -d -v -w */
1089       bash_history = 1;
1090       inverse_order = 1;
1091       remove_duplicates = 1;
1092       output_to_vt_buffer = 1;
1093       add_control_qs = 1;
1094       bash_histsize = getenv("HISTSIZE");
1095       if(bash_histsize) {
1096         str_to_positive_integers(bash_histsize, &nb_lines_max, 1);
1097       }
1098       break;
1099
1100     default:
1101       error = 1;
1102       break;
1103     }
1104   }
1105
1106   if(error) {
1107     usage(stderr);
1108     exit(EXIT_FAILURE);
1109   }
1110
1111   if(show_help) {
1112     usage(stdout);
1113     exit(EXIT_SUCCESS);
1114   }
1115
1116   lines = safe_malloc(nb_lines_max * sizeof(char *));
1117
1118   nb_lines = 0;
1119
1120   if(remove_duplicates) {
1121     hash_table = new_hash_table(nb_lines_max * 10);
1122   } else {
1123     hash_table = 0;
1124   }
1125
1126   while(optind < argc) {
1127     read_file(hash_table,
1128               argv[optind],
1129               nb_lines_max, &nb_lines, lines);
1130     optind++;
1131   }
1132
1133   if(hash_table) {
1134     free_hash_table(hash_table);
1135   }
1136
1137   /* Now remove the null strings */
1138
1139   n = 0;
1140   for(k = 0; k < nb_lines; k++) {
1141     if(lines[k]) {
1142       lines[n++] = lines[k];
1143     }
1144   }
1145
1146   nb_lines = n;
1147
1148   if(inverse_order) {
1149     for(l = 0; l < nb_lines / 2; l++) {
1150       char *s = lines[nb_lines - 1 - l];
1151       lines[nb_lines - 1 - l] = lines[l];
1152       lines[l] = s;
1153     }
1154   }
1155
1156   /* Build the labels from the strings, take only the part before the
1157      label_separator and transform control characters to printable
1158      ones */
1159
1160   labels = safe_malloc(nb_lines * sizeof(char *));
1161
1162   for(l = 0; l < nb_lines; l++) {
1163     char *s, *t;
1164     int e = 0;
1165     const char *u;
1166     t = lines[l];
1167
1168     while(*t && *t != label_separator) {
1169       u = unctrl(*t++);
1170       e += strlen(u);
1171     }
1172
1173     labels[l] = safe_malloc((e + 1) * sizeof(char));
1174     t = lines[l];
1175     s = labels[l];
1176     while(*t && *t != label_separator) {
1177       u = unctrl(*t++);
1178       while(*u) { *s++ = *u++; }
1179     }
1180     *s = '\0';
1181   }
1182
1183   pattern[0] = '\0';
1184
1185   cursor_position = 0;
1186
1187   /* Here we start to display with curse */
1188
1189   initscr();
1190   cbreak();
1191   noecho();
1192   intrflush(stdscr, FALSE);
1193
1194   /* So that the arrow keys work */
1195   keypad(stdscr, TRUE);
1196
1197   attr_error = A_STANDOUT;
1198   attr_modeline = A_REVERSE;
1199   attr_focus_line = A_STANDOUT;
1200   attr_hits = A_BOLD;
1201
1202   if(with_colors && has_colors()) {
1203
1204     start_color();
1205
1206     if(color_fg_modeline < 0  || color_fg_modeline >= COLORS ||
1207        color_bg_modeline < 0  || color_bg_modeline >= COLORS ||
1208        color_fg_highlight < 0 || color_bg_highlight >= COLORS ||
1209        color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
1210       echo();
1211       endwin();
1212       fprintf(stderr, "selector: Color numbers have to be between 0 and %d.\n",
1213               COLORS - 1);
1214       exit(EXIT_FAILURE);
1215     }
1216
1217     init_pair(1, color_fg_modeline, color_bg_modeline);
1218     attr_modeline = COLOR_PAIR(1);
1219
1220     init_pair(2, color_fg_highlight, color_bg_highlight);
1221     attr_focus_line = COLOR_PAIR(2);
1222
1223     init_pair(3, COLOR_WHITE, COLOR_RED);
1224     attr_error = COLOR_PAIR(3);
1225
1226   }
1227
1228   current_focus_line = 0;
1229   displayed_focus_line = 0;
1230
1231   update_screen(&current_focus_line, &displayed_focus_line,
1232                 0,
1233                 nb_lines, labels, cursor_position, pattern);
1234
1235   do {
1236     int motion = 0;
1237
1238     key = getch();
1239
1240     if(key >= ' ' && key <= '~') { /* Insert character */
1241       insert_char(pattern, &cursor_position, key);
1242     }
1243
1244     else if(key == KEY_BACKSPACE ||
1245             key == '\010' || /* ^H */
1246             key == '\177') { /* ^? */
1247       backspace_char(pattern, &cursor_position);
1248     }
1249
1250     else if(key == KEY_DC ||
1251             key == '\004') { /* ^D */
1252       delete_char(pattern, &cursor_position);
1253     }
1254
1255     else if(key == KEY_HOME) {
1256       current_focus_line = 0;
1257     }
1258
1259     else if(key == KEY_END) {
1260       current_focus_line = nb_lines - 1;
1261     }
1262
1263     else if(key == KEY_NPAGE) {
1264       motion = 10;
1265     }
1266
1267     else if(key == KEY_PPAGE) {
1268       motion = -10;
1269     }
1270
1271     else if(key == KEY_DOWN ||
1272             key == '\016') { /* ^N */
1273       motion = 1;
1274     }
1275
1276     else if(key == KEY_UP ||
1277             key == '\020') { /* ^P */
1278       motion = -1;
1279     }
1280
1281     else if(key == KEY_LEFT ||
1282             key == '\002') { /* ^B */
1283       if(cursor_position > 0) cursor_position--;
1284       else error_feedback();
1285     }
1286
1287     else if(key == KEY_RIGHT ||
1288             key == '\006') { /* ^F */
1289       if(pattern[cursor_position]) cursor_position++;
1290       else error_feedback();
1291     }
1292
1293     else if(key == '\001') { /* ^A */
1294       cursor_position = 0;
1295     }
1296
1297     else if(key == '\005') { /* ^E */
1298       cursor_position = strlen(pattern);
1299     }
1300
1301     else if(key == '\022') { /* ^R */
1302       use_regexp = !use_regexp;
1303     }
1304
1305     else if(key == '\011') { /* ^I */
1306       case_sensitive = !case_sensitive;
1307     }
1308
1309     else if(key == '\025') { /* ^U */
1310       kill_before_cursor(pattern, &cursor_position);
1311     }
1312
1313     else if(key == '\013') { /* ^K */
1314       kill_after_cursor(pattern, &cursor_position);
1315     }
1316
1317     else if(key == '\014') { /* ^L */
1318       /* I suspect that we may sometime mess up the display, so ^L is
1319          here to force a full refresh */
1320       clear();
1321     }
1322
1323     else if(key == '\007' || /* ^G */
1324             key == '\033' || /* ^[ (escape) */
1325             key == '\n' ||
1326             key == KEY_ENTER) {
1327       done = 1;
1328     }
1329
1330     else if(key == KEY_RESIZE || key == -1) {
1331       /* Do nothing when the tty is resized */
1332     }
1333
1334     else {
1335       /* Unknown key */
1336       error_feedback();
1337     }
1338
1339     update_screen(&current_focus_line, &displayed_focus_line,
1340                   motion,
1341                   nb_lines, labels, cursor_position, pattern);
1342
1343   } while(!done);
1344
1345   echo();
1346   endwin();
1347
1348   /* Here we come back to standard display */
1349
1350   if(key == KEY_ENTER || key == '\n') {
1351
1352     char *t;
1353
1354     if(displayed_focus_line >= 0 && displayed_focus_line < nb_lines) {
1355       t = lines[displayed_focus_line];
1356       if(label_separator) {
1357         while(*t && *t != label_separator) t++;
1358         if(*t) t++;
1359       }
1360     } else {
1361       t = 0;
1362     }
1363
1364     if(output_to_vt_buffer && t) {
1365       inject_into_tty_buffer(t, add_control_qs);
1366     }
1367
1368     if(output_filename[0]) {
1369       FILE *out = fopen(output_filename, "w");
1370       if(out) {
1371         if(t) {
1372           fprintf(out, "%s", t);
1373         }
1374         fprintf(out, "\n");
1375       } else {
1376         fprintf(stderr,
1377                 "selector: Can not open %s for writing.\n",
1378                 output_filename);
1379         exit(EXIT_FAILURE);
1380       }
1381       fclose(out);
1382     }
1383
1384   } else {
1385     printf("Aborted.\n");
1386   }
1387
1388   for(l = 0; l < nb_lines; l++) {
1389     free(lines[l]);
1390     free(labels[l]);
1391   }
1392
1393   free(labels);
1394   free(lines);
1395   free(title);
1396
1397   exit(EXIT_SUCCESS);
1398 }