3 * selector is a simple command line utility for selection of strings
4 * with a dynamic pattern-matching.
6 * Copyright (c) 2009, 2010, 2011 Francois Fleuret
7 * Written by Francois Fleuret <francois@fleuret.org>
9 * This file is part of selector.
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.
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.
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/>.
27 To use it as a super-history-search for bash:
28 selector --bash <(history)
41 #include <sys/ioctl.h>
48 #define VERSION "1.1.5"
50 #define BUFFER_SIZE 4096
52 /* Yeah, global variables! */
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;
62 int inverse_order = 0;
63 int remove_duplicates = 0;
65 int case_sensitive = 0;
68 int upper_caps_makes_case_sensitive = 0;
69 int show_long_lines = 0;
72 int attr_modeline, attr_focus_line, attr_error, attr_hits;
74 /********************************************************************/
76 /* malloc with error checking. */
78 void *safe_malloc(size_t n) {
82 "selector: can not allocate memory: %s\n", strerror(errno));
88 /*********************************************************************/
90 void inject_into_tty_buffer(char *string, int add_control_qs) {
91 struct termios oldtio, newtio;
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);
104 ioctl(STDIN_FILENO, TIOCSTI, k);
106 /* Restore the old settings */
107 tcsetattr(STDIN_FILENO, TCSANOW, &oldtio);
110 /*********************************************************************/
112 void str_to_positive_integers(char *string, int *values, int nb) {
113 int current_value, gotone;
123 if(*s >= '0' && *s <= '9') {
124 current_value = current_value * 10 + (int) (*s - '0');
126 } else if(*s == ',' || *s == '\0') {
129 values[n++] = current_value;
135 "selector: Missing value in `%s'.\n", string);
143 "selector: Too many values in `%s'.\n", string);
148 "selector: Empty value in `%s'.\n", string);
153 "selector: Syntax error in `%s'.\n", string);
160 void error_feedback() {
168 void usage(FILE *out) {
170 fprintf(out, "Selector version %s (%s)\n", VERSION, UNAME);
171 fprintf(out, "Written by Francois Fleuret <francois@fleuret.org>.\n");
173 fprintf(out, "Usage: selector [options] [<filename1> [<filename2> ...]]\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");
223 /*********************************************************************/
225 /* A quick and dirty hash table */
227 #define MAGIC_HASH_MULTIPLIER 387433
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. */
233 struct hash_table_t {
238 struct hash_table_t *new_hash_table(int size) {
240 struct hash_table_t *hash_table;
242 hash_table = safe_malloc(sizeof(struct hash_table_t));
244 hash_table->size = size;
245 hash_table->entries = safe_malloc(hash_table->size * sizeof(int));
247 for(k = 0; k < hash_table->size; k++) {
248 hash_table->entries[k] = -1;
254 void free_hash_table(struct hash_table_t *hash_table) {
255 free(hash_table->entries);
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. */
263 int add_and_get_previous_index(struct hash_table_t *hash_table,
264 const char *new_string, int new_index,
267 unsigned int code = 0, start;
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
274 for(k = 0; new_string[k]; k++) {
275 code = code * MAGIC_HASH_MULTIPLIER + (unsigned int) (new_string[k]);
278 code = code % hash_table->size;
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 */
291 /* This collision was not the same string, let's move to the next
293 code = (code + 1) % hash_table->size;
294 /* We came back to our original code, which means that the table
298 "Full hash table (that should not happen)\n");
303 /* This string was not already in there, store the index in the
304 table and return -1 */
306 hash_table->entries[code] = new_index;
310 /*********************************************************************
311 A matcher matches either with a collection of substrings, or with a
319 char *splitted_patterns, **patterns;
322 /* Routine to add an interval to a sorted list of intervals
323 extermities. Returns the number of extremities. This is an effing
326 int add_interval(int n, int *switches, int start, int end) {
329 if(start == end) { return n; }
332 while(f < n && switches[f] <= start) { f++; }
334 while(g < n && switches[g] <= end) { g++; }
337 /* switches[n] start end */
347 /* switches[f-1] start switches[f] switches[g-1] end switches[g] */
348 /* |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| ... |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| */
349 for(k = f; k < n; k++) { switches[k] = switches[k + (g - f)]; }
352 /* switches[f-1] start switches[f] switches[g-1] end switches[g] */
353 /* |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| ... XXXXXXXXXXXX| |XXXXXXXXXX */
354 switches[g - 1] = end;
355 for(k = f; k < n; k++) { switches[k] = switches[k + ((g - 1) - f)]; }
356 return n - ((g - 1) - f);
362 /* switches[f-1] start end switches[f] */
363 /* XXXXXXXXXXXX| |XXXXXXXXXX */
364 for(k = n - 1; k >= f; k--) {
365 switches[k + 2] = switches[k];
368 switches[f + 1] = end;
373 /* switches[f-1] start switches[f] switches[g-1] end switches[g] */
374 /* XXXXXXXXXXXX| |XXXXXXXXXX ... |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX| */
376 for(k = f + 1; k < n; k++) { switches[k] = switches[k + (g - (f + 1))]; }
377 return n - (g - (f + 1));
379 /* switches[f-1] start switches[f] switches[g-1] end switches[g] */
380 /* XXXXXXXXXXXX| |XXXXXXXXXX ... XXXXXXXXXXXX| |XXXXXXXXXX */
382 switches[g - 1] = end;
383 for(k = f + 1; k < n; k++) { switches[k] = switches[k + ((g - 1) - (f + 1))]; }
384 return n - ((g - 1) - (f + 1));
389 int match(struct matcher *matcher, char *string, int *nb_switches, int *switches) {
394 if(nb_switches) { *nb_switches = 0; }
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;
401 *nb_switches = add_interval(*nb_switches, switches,
402 (int) (where - string),
403 (int) (where - string) + strlen(matcher->patterns[n]));
407 for(n = 0; n < matcher->nb_patterns; n++) {
408 if((where = strcasestr(string, matcher->patterns[n])) == 0) return 0;
410 *nb_switches = add_interval(*nb_switches, switches,
411 (int) (where - string),
412 (int) (where - string) + strlen(matcher->patterns[n]));
413 #warning CHECK THE INTERVALS
416 /* FILE *out = fopen("/tmp/intervals", "w"); */
417 /* for(k = 0; k < (*nb_switches)/2; k++) { */
419 /* for(; i < switches[2 * k]; i++) fprintf(out, "-"); */
420 /* for(; i < switches[2 * k + 1]; i++) fprintf(out, "%c", string[i]); */
421 /* for(; i < strlen(string); i++) fprintf(out, "-"); */
422 /* fprintf(out, "\n"); */
426 for(k = 0; k < *nb_switches - 1; k++) {
427 if(switches[k] > switches[k+1]) {
438 if(regexec(&matcher->preg, string, 1, &matches, 0) == 0) {
440 switches[0] = matches.rm_so;
441 switches[1] = matches.rm_eo;
447 return regexec(&matcher->preg, string, 0, 0, 0) == 0;
452 void free_matcher(struct matcher *matcher) {
453 if(matcher->nb_patterns < 0) {
454 if(!matcher->regexp_error) regfree(&matcher->preg);
456 free(matcher->splitted_patterns);
457 free(matcher->patterns);
461 void initialize_matcher(struct matcher *matcher,
462 int use_regexp, int case_sensitive,
463 const char *pattern) {
465 char *t, *last_pattern_start;
469 matcher->case_sensitive = case_sensitive;
470 matcher->nb_patterns = -1;
471 matcher->regexp_error = regcomp(&matcher->preg, pattern,
472 case_sensitive ? 0 : REG_ICASE);
474 matcher->regexp_error = 0;
475 matcher->nb_patterns = 1;
477 if(upper_caps_makes_case_sensitive) {
478 for(s = pattern; *s && !case_sensitive; s++) {
479 case_sensitive = (*s >= 'A' && *s <= 'Z');
483 matcher->case_sensitive = case_sensitive;
485 for(s = pattern; *s; s++) {
486 if(*s == pattern_separator) {
487 matcher->nb_patterns++;
491 matcher->splitted_patterns =
492 safe_malloc((strlen(pattern) + 1) * sizeof(char));
495 safe_malloc(matcher->nb_patterns * sizeof(char *));
497 strcpy(matcher->splitted_patterns, pattern);
500 last_pattern_start = matcher->splitted_patterns;
501 for(t = matcher->splitted_patterns; n < matcher->nb_patterns; t++) {
502 if(*t == pattern_separator || *t == '\0') {
504 matcher->patterns[n++] = last_pattern_start;
505 last_pattern_start = t + 1;
511 /*********************************************************************
514 void delete_char(char *buffer, int *position) {
515 if(buffer[*position]) {
517 while(c < BUFFER_SIZE && buffer[c]) {
518 buffer[c] = buffer[c+1];
521 } else error_feedback();
524 void backspace_char(char *buffer, int *position) {
526 if(buffer[*position]) {
527 int c = *position - 1;
529 buffer[c] = buffer[c+1];
533 buffer[*position - 1] = '\0';
537 } else error_feedback();
540 void insert_char(char *buffer, int *position, char character) {
541 if(strlen(buffer) < BUFFER_SIZE - 1) {
543 char t = buffer[c], u;
552 buffer[(*position)++] = character;
553 } else error_feedback();
556 void kill_before_cursor(char *buffer, int *position) {
558 while(buffer[*position + s]) {
559 buffer[s] = buffer[*position + s];
566 void kill_after_cursor(char *buffer, int *position) {
567 buffer[*position] = '\0';
570 /*********************************************************************/
572 int previous_visible(int current_line, char **lines, struct matcher *matcher) {
573 int line = current_line - 1;
574 while(line >= 0 && !match(matcher, lines[line], 0, 0)) line--;
578 int next_visible(int current_line, int nb_lines, char **lines,
579 struct matcher *matcher) {
580 int line = current_line + 1;
581 while(line < nb_lines && !match(matcher, lines[line], 0, 0)) line++;
589 /*********************************************************************/
591 void print_string_with_switches(char *buffer, int line_width,
593 int nb_patterns, int *switches) {
594 int w, current = 0, next;
596 for(w = 0; w < nb_patterns && switches[2 * w] < line_width; w++) {
597 if(switches[2 * w] < switches[2 * w + 1]) {
598 next = switches[2 * w];
599 if(next > line_width) { next = line_width; }
600 if(next > current) { addnstr(buffer + current, next - current); }
603 next = switches[2 * w + 1];
604 if(next > line_width) { next = line_width; }
605 if(next > current) { addnstr(buffer + current, next - current); }
610 if(current < line_width) {
611 addnstr(buffer + current, console_width - current);
614 addnstr(buffer, console_width);
618 /* The line highlighted is the first one matching the matcher in that
619 order: (1) current_focus_line after motion, if it does not match,
620 then (2) the first with a greater index, if none matches, then (3)
621 the first with a lesser index.
623 The index of the line actually shown highlighted is written in
624 displayed_focus_line (it can be -1 if no line at all matches the
627 If there is a motion and a line is actually shown highlighted, its
628 value is written in current_focus_line. */
630 void update_screen(int *current_focus_line, int *displayed_focus_line,
632 int nb_lines, char **lines,
636 char buffer[BUFFER_SIZE];
637 struct matcher matcher;
639 int console_width, console_height;
640 int nb_printed_lines = 0;
644 initialize_matcher(&matcher, use_regexp, case_sensitive, pattern);
646 if(show_hits && matcher.nb_patterns >= 0) {
647 switches = safe_malloc(sizeof(int) * matcher.nb_patterns * 2);
649 switches = safe_malloc(sizeof(int) * 2);
652 console_width = getmaxx(stdscr);
653 console_height = getmaxy(stdscr);
655 use_default_colors();
657 /* Add an empty line where we will print the modeline at the end */
661 /* If the regexp is erroneous, print a message saying so */
663 if(matcher.regexp_error) {
665 addnstr("Regexp syntax error", console_width);
669 /* Else, and we do have lines to select from, find a visible line. */
671 else if(nb_lines > 0) {
673 if(match(&matcher, lines[*current_focus_line], 0, 0)) {
674 new_focus_line = *current_focus_line;
676 new_focus_line = next_visible(*current_focus_line, nb_lines, lines,
678 if(new_focus_line < 0) {
679 new_focus_line = previous_visible(*current_focus_line, lines, &matcher);
683 /* If we found a visible line and we should move, let's move */
685 if(new_focus_line >= 0 && motion != 0) {
686 int l = new_focus_line;
688 /* We want to go down, let's find the first visible line below */
689 for(m = 0; l >= 0 && m < motion; m++) {
690 l = next_visible(l, nb_lines, lines, &matcher);
696 /* We want to go up, let's find the first visible line above */
697 for(m = 0; l >= 0 && m < -motion; m++) {
698 l = previous_visible(l, lines, &matcher);
706 /* Here new_focus_line is either a line number matching the
709 if(new_focus_line >= 0) {
711 int first_line = new_focus_line, last_line = new_focus_line;
714 /* We find the first and last lines to show, so that the total
715 of visible lines between them (them included) is
718 while(nb_match < console_height-1 &&
719 (first_line > 0 || last_line < nb_lines - 1)) {
723 while(first_line > 0 && !match(&matcher, lines[first_line], 0, 0)) {
726 if(match(&matcher, lines[first_line], 0, 0)) {
731 if(nb_match < console_height - 1 && last_line < nb_lines - 1) {
733 while(last_line < nb_lines - 1 && !match(&matcher, lines[last_line], 0, 0)) {
737 if(match(&matcher, lines[last_line], 0, 0)) {
743 /* Now we display them */
745 for(l = first_line; l <= last_line; l++) {
746 if(match(&matcher, lines[l], &nb_switches, switches)) {
749 while(lines[l][k] && k < BUFFER_SIZE - 2 && k < console_width) {
750 buffer[k] = lines[l][k];
754 /* Highlight the highlighted line ... */
756 if(l == new_focus_line) {
757 if(show_long_lines && k >= console_width) {
758 if(console_width >= 4) {
759 buffer[console_width - 4] = ' ';
760 buffer[console_width - 3] = '.';
761 buffer[console_width - 2] = '.';
762 buffer[console_width - 1] = '.';
765 while(k < console_width) {
769 attron(attr_focus_line);
770 print_string_with_switches(buffer, k, console_width,
771 nb_switches / 2, switches);
772 attroff(attr_focus_line);
774 if(show_long_lines && k >= console_width) {
775 if(console_width >= 4) {
776 buffer[console_width - 4] = ' ';
777 buffer[console_width - 3] = '.';
778 buffer[console_width - 2] = '.';
779 buffer[console_width - 1] = '.';
786 print_string_with_switches(buffer, k, console_width,
787 nb_switches / 2, switches);
794 /* If we are on a focused line and we moved, this become the new
798 *current_focus_line = new_focus_line;
802 *displayed_focus_line = new_focus_line;
804 if(nb_printed_lines == 0) {
806 addnstr("No selection", console_width);
811 /* Else, print a message saying that there are no lines to select from */
815 addnstr("Empty choice", console_width);
821 /* Draw the modeline */
825 attron(attr_modeline);
827 for(k = 0; k < console_width; k++) buffer[k] = ' ';
828 buffer[console_width] = '\0';
829 addnstr(buffer, console_width);
833 /* There must be a more elegant way of moving the cursor at a
834 location met during display */
841 cursor_x += strlen(title) + 1;
844 sprintf(buffer, "%d/%d ", nb_printed_lines, nb_lines);
846 cursor_x += strlen(buffer);
848 addnstr(pattern, cursor_position);
849 cursor_x += cursor_position;
851 if(pattern[cursor_position]) {
852 addstr(pattern + cursor_position);
857 /* Add a few info about the mode we are in (regexp and/or case
860 if(use_regexp || matcher.case_sensitive) {
866 if(matcher.case_sensitive) {
877 attroff(attr_modeline);
882 if(switches) { free(switches); }
883 free_matcher(&matcher);
886 /*********************************************************************/
888 void store_line(struct hash_table_t *hash_table,
889 const char *new_line,
890 int *nb_lines, char **lines) {
893 /* Remove the zsh history prefix */
895 if(zsh_history && *new_line == ':') {
896 while(*new_line && *new_line != ';') new_line++;
897 if(*new_line == ';') new_line++;
900 /* Remove the bash history prefix */
903 while(*new_line == ' ') new_line++;
904 while(*new_line >= '0' && *new_line <= '9') new_line++;
905 while(*new_line == ' ') new_line++;
908 /* Check for duplicates with the hash table and insert the line in
909 the list if necessary */
912 dup = add_and_get_previous_index(hash_table,
913 new_line, *nb_lines, lines);
919 lines[*nb_lines] = safe_malloc((strlen(new_line) + 1) * sizeof(char));
920 strcpy(lines[*nb_lines], new_line);
922 /* The string was already in there, so we do not allocate a new
923 string but use the pointer to the first occurence of it */
924 lines[*nb_lines] = lines[dup];
931 void read_file(struct hash_table_t *hash_table,
932 const char *input_filename,
933 int nb_lines_max, int *nb_lines, char **lines) {
935 char raw_line[BUFFER_SIZE];
939 file = fopen(input_filename, "r");
942 fprintf(stderr, "selector: Can not open `%s'.\n", input_filename);
946 while(*nb_lines < nb_lines_max && fgets(raw_line, BUFFER_SIZE, file)) {
947 for(s = raw_line + strlen(raw_line) - 1; s > raw_line && *s == '\n'; s--) {
950 store_line(hash_table, raw_line, nb_lines, lines);
956 /*********************************************************************/
958 /* For long options that have no equivalent short option, use a
959 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
962 OPT_BASH_MODE = CHAR_MAX + 1
965 static struct option long_options[] = {
966 { "output-file", 1, 0, 'o' },
967 { "pattern-separator", 1, 0, 's' },
968 { "label-separator", 1, 0, 'x' },
969 { "inject-in-tty", no_argument, 0, 'v' },
970 { "add-control-qs", no_argument, 0, 'w' },
971 { "monochrome", no_argument, 0, 'm' },
972 { "no-beep", no_argument, 0, 'q' },
973 { "revert-order", no_argument, 0, 'i' },
974 { "remove-bash-prefix", no_argument, 0, 'b' },
975 { "remove-zsh-prefix", no_argument, 0, 'z' },
976 { "remove-duplicates", no_argument, 0, 'd' },
977 { "regexp", no_argument, 0, 'e' },
978 { "case-sensitive", no_argument, 0, 'a' },
979 { "show-long-lines", no_argument, 0, 'j'},
980 { "show-hits", no_argument, 0, 'j'},
981 { "upper-case-makes-case-sensitive", no_argument, 0, 'u' },
982 { "title", 1, 0, 't' },
983 { "number-of-lines", 1, 0, 'l' },
984 { "colors", 1, 0, 'c' },
985 { "bash", no_argument, 0, OPT_BASH_MODE },
986 { "help", no_argument, 0, 'h' },
990 int main(int argc, char **argv) {
992 char output_filename[BUFFER_SIZE];
993 char pattern[BUFFER_SIZE];
996 int error = 0, show_help = 0, done = 0;
998 int current_focus_line, displayed_focus_line;
1001 int color_fg_modeline, color_bg_modeline;
1002 int color_fg_highlight, color_bg_highlight;
1004 char **lines, **labels;
1006 struct hash_table_t *hash_table;
1007 char *bash_histsize;
1009 if(!isatty(STDIN_FILENO)) {
1010 fprintf(stderr, "selector: The standard input is not a tty.\n");
1014 color_fg_modeline = COLOR_WHITE;
1015 color_bg_modeline = COLOR_BLACK;
1016 color_fg_highlight = COLOR_BLACK;
1017 color_bg_highlight = COLOR_YELLOW;
1019 setlocale(LC_ALL, "");
1021 strcpy(output_filename, "");
1023 while ((c = getopt_long(argc, argv, "o:s:x:vwmqf:ibzdeajyunt:l:c:-h",
1024 long_options, NULL)) != -1) {
1029 strncpy(output_filename, optarg, BUFFER_SIZE);
1033 pattern_separator = optarg[0];
1037 label_separator = optarg[0];
1041 output_to_vt_buffer = 1;
1069 remove_duplicates = 1;
1081 show_long_lines = 1;
1089 upper_caps_makes_case_sensitive = 1;
1094 title = safe_malloc((strlen(optarg) + 1) * sizeof(char));
1095 strcpy(title, optarg);
1099 str_to_positive_integers(optarg, &nb_lines_max, 1);
1103 str_to_positive_integers(optarg, colors, 4);
1104 color_fg_modeline = colors[0];
1105 color_bg_modeline = colors[1];
1106 color_fg_highlight = colors[2];
1107 color_bg_highlight = colors[3];
1115 /* Same as -c 7,4,0,3 -q */
1116 /* color_fg_modeline = 7; */
1117 /* color_bg_modeline = 4; */
1118 /* color_fg_highlight = 0; */
1119 /* color_bg_highlight = 3; */
1120 /* error_flash = 1; */
1121 /* Same as -b -i -d -v -w */
1124 remove_duplicates = 1;
1125 output_to_vt_buffer = 1;
1127 bash_histsize = getenv("HISTSIZE");
1129 str_to_positive_integers(bash_histsize, &nb_lines_max, 1);
1149 lines = safe_malloc(nb_lines_max * sizeof(char *));
1153 if(remove_duplicates) {
1154 hash_table = new_hash_table(nb_lines_max * 10);
1159 while(optind < argc) {
1160 read_file(hash_table,
1162 nb_lines_max, &nb_lines, lines);
1167 free_hash_table(hash_table);
1170 /* Now remove the null strings */
1173 for(k = 0; k < nb_lines; k++) {
1175 lines[n++] = lines[k];
1182 for(l = 0; l < nb_lines / 2; l++) {
1183 char *s = lines[nb_lines - 1 - l];
1184 lines[nb_lines - 1 - l] = lines[l];
1189 /* Build the labels from the strings, take only the part before the
1190 label_separator and transform control characters to printable
1193 labels = safe_malloc(nb_lines * sizeof(char *));
1195 for(l = 0; l < nb_lines; l++) {
1201 while(*t && *t != label_separator) {
1206 labels[l] = safe_malloc((e + 1) * sizeof(char));
1209 while(*t && *t != label_separator) {
1211 while(*u) { *s++ = *u++; }
1218 cursor_position = 0;
1220 /* Here we start to display with curse */
1225 intrflush(stdscr, FALSE);
1227 /* So that the arrow keys work */
1228 keypad(stdscr, TRUE);
1230 attr_error = A_STANDOUT;
1231 attr_modeline = A_REVERSE;
1232 attr_focus_line = A_STANDOUT;
1235 if(with_colors && has_colors()) {
1239 if(color_fg_modeline < 0 || color_fg_modeline >= COLORS ||
1240 color_bg_modeline < 0 || color_bg_modeline >= COLORS ||
1241 color_fg_highlight < 0 || color_bg_highlight >= COLORS ||
1242 color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
1245 fprintf(stderr, "selector: Color numbers have to be between 0 and %d.\n",
1250 init_pair(1, color_fg_modeline, color_bg_modeline);
1251 attr_modeline = COLOR_PAIR(1);
1253 init_pair(2, color_fg_highlight, color_bg_highlight);
1254 attr_focus_line = COLOR_PAIR(2);
1256 init_pair(3, COLOR_WHITE, COLOR_RED);
1257 attr_error = COLOR_PAIR(3);
1261 current_focus_line = 0;
1262 displayed_focus_line = 0;
1264 update_screen(¤t_focus_line, &displayed_focus_line,
1266 nb_lines, labels, cursor_position, pattern);
1273 if(key >= ' ' && key <= '~') { /* Insert character */
1274 insert_char(pattern, &cursor_position, key);
1277 else if(key == KEY_BACKSPACE ||
1278 key == '\010' || /* ^H */
1279 key == '\177') { /* ^? */
1280 backspace_char(pattern, &cursor_position);
1283 else if(key == KEY_DC ||
1284 key == '\004') { /* ^D */
1285 delete_char(pattern, &cursor_position);
1288 else if(key == KEY_HOME) {
1289 current_focus_line = 0;
1292 else if(key == KEY_END) {
1293 current_focus_line = nb_lines - 1;
1296 else if(key == KEY_NPAGE) {
1300 else if(key == KEY_PPAGE) {
1304 else if(key == KEY_DOWN ||
1305 key == '\016') { /* ^N */
1309 else if(key == KEY_UP ||
1310 key == '\020') { /* ^P */
1314 else if(key == KEY_LEFT ||
1315 key == '\002') { /* ^B */
1316 if(cursor_position > 0) cursor_position--;
1317 else error_feedback();
1320 else if(key == KEY_RIGHT ||
1321 key == '\006') { /* ^F */
1322 if(pattern[cursor_position]) cursor_position++;
1323 else error_feedback();
1326 else if(key == '\001') { /* ^A */
1327 cursor_position = 0;
1330 else if(key == '\005') { /* ^E */
1331 cursor_position = strlen(pattern);
1334 else if(key == '\022') { /* ^R */
1335 use_regexp = !use_regexp;
1338 else if(key == '\011') { /* ^I */
1339 case_sensitive = !case_sensitive;
1342 else if(key == '\025') { /* ^U */
1343 kill_before_cursor(pattern, &cursor_position);
1346 else if(key == '\013') { /* ^K */
1347 kill_after_cursor(pattern, &cursor_position);
1350 else if(key == '\014') { /* ^L */
1351 /* I suspect that we may sometime mess up the display, so ^L is
1352 here to force a full refresh */
1356 else if(key == '\007' || /* ^G */
1357 key == '\033' || /* ^[ (escape) */
1363 else if(key == KEY_RESIZE || key == -1) {
1364 /* Do nothing when the tty is resized */
1372 update_screen(¤t_focus_line, &displayed_focus_line,
1374 nb_lines, labels, cursor_position, pattern);
1381 /* Here we come back to standard display */
1383 if(key == KEY_ENTER || key == '\n') {
1387 if(displayed_focus_line >= 0 && displayed_focus_line < nb_lines) {
1388 t = lines[displayed_focus_line];
1389 if(label_separator) {
1390 while(*t && *t != label_separator) t++;
1397 if(output_to_vt_buffer && t) {
1398 inject_into_tty_buffer(t, add_control_qs);
1401 if(output_filename[0]) {
1402 FILE *out = fopen(output_filename, "w");
1405 fprintf(out, "%s", t);
1410 "selector: Can not open %s for writing.\n",
1418 printf("Aborted.\n");
1421 for(l = 0; l < nb_lines; l++) {