Removed all the no-blink hacks, which did not work anyway.
[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 //
27 // alias h='./selector -i -b -v -f <(history)'
28
29 // This software is highly Linux-specific, but I would be glad to get
30 // patches to make it work on other OS
31
32 #include <fstream>
33 #include <iostream>
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <ncurses.h>
39 #include <fcntl.h>
40 #include <sys/ioctl.h>
41 #include <termios.h>
42
43 using namespace std;
44
45 #define VERSION "1.0"
46
47 const int buffer_size = 1024;
48
49 // Yeah, global variables!
50
51 int nb_lines_max = 10000;
52 char pattern_separator = ';';
53 int output_to_vt_buffer = 0;
54 int with_colors = 1;
55 int zsh_history = 0, bash_history = 0;
56 int inverse_order = 0;
57
58 //////////////////////////////////////////////////////////////////////
59
60 // This looks severely Linux-only ...
61
62 void inject_into_tty_buffer(char *line) {
63   char *tty = ttyname(STDIN_FILENO);
64   int fd = open(tty, O_RDWR);
65
66   struct termios oldtio, newtio;
67
68   if (fd >= 0) {
69     // Save current port settings
70     tcgetattr(fd,&oldtio);
71     memset(&newtio, 0, sizeof(newtio));
72     // Set input mode (non-canonical, *no echo*,...)
73     tcflush(fd, TCIFLUSH);
74     tcsetattr(fd,TCSANOW, &newtio);
75     // Put the selected line in the tty input buffer
76     for(char *k = line; *k; k++) {
77       ioctl(fd, TIOCSTI, k);
78     }
79     // Restore the old settings
80     tcsetattr(fd,TCSANOW, &oldtio);
81     close(fd);
82   } else {
83     cerr << "Can not open " << tty << "." << endl;
84     exit(1);
85   }
86 }
87
88 //////////////////////////////////////////////////////////////////////
89
90 int match(char *string, int nb_patterns, char **patterns) {
91   for(int n = 0; n < nb_patterns; n++) {
92     if(strstr(string, patterns[n]) == 0) return 0;
93   }
94   return 1;
95 }
96
97 //////////////////////////////////////////////////////////////////////
98
99 void check_opt(int argc, char **argv, int n_opt, int n, const char *help) {
100   if(n_opt + n >= argc) {
101     cerr << "Missing argument for " << argv[n_opt] << "."
102          << " "
103          << "Expecting " << help << "."
104          << endl;
105     exit(1);
106   }
107 }
108
109 //////////////////////////////////////////////////////////////////////
110
111 int previous_visible(int current_line, int nb_lines, char **lines, int nb_patterns, char **patterns) {
112   int line = current_line - 1;
113   while(line >= 0 && !match(lines[line], nb_patterns, patterns)) line--;
114   return line;
115 }
116
117 int next_visible(int current_line, int nb_lines, char **lines, int nb_patterns, char **patterns) {
118   int line = current_line + 1;
119   while(line < nb_lines && !match(lines[line], nb_patterns, patterns)) line++;
120
121   if(line < nb_lines)
122     return line;
123   else
124     return -1;
125 }
126
127 void update_screen(int *current_line, int *temporary_line, int motion,
128                    int nb_lines, char **lines,
129                    char *pattern_list) {
130
131   char buffer[buffer_size];
132
133   // We split the pattern list into individual patterns
134
135   int nb_patterns = 1;
136
137   for(char *s = pattern_list; *s; s++) {
138     if(*s == pattern_separator) {
139       nb_patterns++;
140     }
141   }
142
143   char splitted_patterns[strlen(pattern_list) + 1];
144   char *patterns[nb_patterns];
145
146   strcpy(splitted_patterns, pattern_list);
147
148   int n = 0;
149   char *last_pattern_start = splitted_patterns;
150   for(char *s = splitted_patterns; n < nb_patterns; s++) {
151     if(*s == pattern_separator || *s == '\0') {
152       *s = '\0';
153       patterns[n++] = last_pattern_start;
154       last_pattern_start = s + 1;
155     }
156   }
157
158   // We now take care of printing the lines per se
159
160   int console_width = getmaxx(stdscr);
161   int console_height = getmaxy(stdscr);
162
163   // First, we find a visible line. In priority: The current, or the
164   // first visible after it, or the first visible before it.
165
166   int new_line;
167   if(match(lines[*current_line], nb_patterns, patterns)) {
168     new_line = *current_line;
169   } else {
170     new_line = next_visible(*current_line, nb_lines, lines, nb_patterns, patterns);
171     if(new_line < 0) {
172       new_line = previous_visible(*current_line, nb_lines, lines, nb_patterns, patterns);
173     }
174   }
175
176   // If we found a visible line and we should move, let's move
177
178   if(new_line >= 0 && motion != 0) {
179     int l = new_line;
180     if(motion > 0) {
181       // We want to go down, let's find the first visible line below
182       for(int m = 0; l >= 0 && m < motion; m++) {
183         l = next_visible(l, nb_lines, lines, nb_patterns, patterns);
184         if(l >= 0) {
185           new_line = l;
186         }
187       }
188     } else {
189       // We want to go up, let's find the first visible line above
190       for(int m = 0; l >= 0 && m < -motion; m++) {
191         l = previous_visible(l, nb_lines, lines, nb_patterns, patterns);
192         if(l >= 0) {
193           new_line = l;
194         }
195       }
196     }
197   }
198
199   clear();
200
201   use_default_colors();
202
203   addstr("\n");
204
205   int nb_printed_lines = 1;
206
207   // Here new_line is either a line number matching the patterns, or -1
208
209   if(new_line >= 0) {
210
211     int first_line = new_line, last_line = new_line, nb_match = 1;
212
213     // We find the first and last line to show, so that the total of
214     // visible lines between them (them include) is console_height - 1
215
216     while(nb_match < console_height-1 && (first_line > 0 || last_line < nb_lines - 1)) {
217
218       if(first_line > 0) {
219         first_line--;
220         while(first_line > 0 && !match(lines[first_line], nb_patterns, patterns)) {
221           first_line--;
222         }
223         if(match(lines[first_line], nb_patterns, patterns)) {
224           nb_match++;
225         }
226       }
227
228       if(last_line < nb_lines - 1) {
229         last_line++;
230         while(last_line < nb_lines - 1 && !match(lines[last_line], nb_patterns, patterns)) {
231           last_line++;
232         }
233
234         if(match(lines[last_line], nb_patterns, patterns)) {
235           nb_match++;
236         }
237       }
238     }
239
240     // Now we display them
241
242     for(int l = first_line; l <= last_line; l++) {
243       if(match(lines[l], nb_patterns, patterns)) {
244         int k = 0;
245
246         while(lines[l][k] && k < buffer_size - 2 && k < console_width - 2) {
247           buffer[k] = lines[l][k];
248           k++;
249         }
250
251         // We fill the rest of the line with blanks if either we did
252         // not clear() or if this is the highlighted line
253
254         if(l == new_line) {
255           while(k < console_width) {
256             buffer[k++] = ' ';
257           }
258         }
259
260         buffer[k++] = '\n';
261         buffer[k++] = '\0';
262
263         // Highlight the highlighted line ...
264
265         if(l == new_line) {
266           if(with_colors) {
267             attron(COLOR_PAIR(2));
268             addnstr(buffer, console_width);
269             attroff(COLOR_PAIR(2));
270           } else {
271             attron(A_STANDOUT);
272             addnstr(buffer, console_width);
273             attroff(A_STANDOUT);
274           }
275         } else {
276           addnstr(buffer, console_width);
277         }
278
279         nb_printed_lines++;
280       }
281     }
282
283     if(motion != 0) {
284       *current_line = new_line;
285     }
286   }
287
288   *temporary_line = new_line;
289
290   if(nb_printed_lines == 1) {
291     addnstr("[no selection]\n", console_width);
292     nb_printed_lines++;
293   }
294
295   // Draw the modeline
296
297   sprintf(buffer, "%d/%d pattern: %s",
298           nb_printed_lines - 1,
299           nb_lines,
300           pattern_list);
301
302   for(int k = strlen(buffer); k < console_width; k++) buffer[k] = ' ';
303   buffer[console_width] = '\0';
304
305   move(0, 0);
306   if(with_colors) {
307     attron(COLOR_PAIR(1));
308     addnstr(buffer, console_width);
309     attroff(COLOR_PAIR(1));
310   } else {
311     attron(A_REVERSE);
312     addnstr(buffer, console_width);
313     attroff(A_REVERSE);
314   }
315
316   // We are done
317
318   refresh();
319 }
320
321 //////////////////////////////////////////////////////////////////////
322
323 int main(int argc, char **argv) {
324   char buffer[buffer_size];
325   char *lines[nb_lines_max];
326   int color_fg_modeline, color_bg_modeline;
327   int color_fg_highlight, color_bg_highlight;
328
329   color_fg_modeline  = COLOR_WHITE;
330   color_bg_modeline  = COLOR_BLACK;
331   color_fg_highlight = COLOR_BLACK;
332   color_bg_highlight = COLOR_YELLOW;
333
334   setlocale(LC_ALL, "");
335
336   char input_filename[buffer_size], output_filename[buffer_size];
337
338   strcpy(input_filename, "");
339   strcpy(output_filename, "");
340
341   int i = 1;
342   while(i < argc) {
343
344     if(strcmp(argv[i], "-o") == 0) {
345       check_opt(argc, argv, i, 1, "<output filename>");
346       strncpy(output_filename, argv[i+1], buffer_size);
347       i += 2;
348     }
349
350     else if(strcmp(argv[i], "-s") == 0) {
351       check_opt(argc, argv, i, 1, "<pattern separator>");
352       pattern_separator = argv[i+1][0];
353       i += 2;
354     }
355
356     else if(strcmp(argv[i], "-v") == 0) {
357       output_to_vt_buffer = 1;
358       i++;
359     }
360
361     else if(strcmp(argv[i], "-m") == 0) {
362       with_colors = 0;
363       i++;
364     }
365
366     else if(strcmp(argv[i], "-f") == 0) {
367       check_opt(argc, argv, i, 1, "<input filename>");
368       strncpy(input_filename, argv[i+1], buffer_size);
369       i += 2;
370     }
371
372     else if(strcmp(argv[i], "-i") == 0) {
373       inverse_order = 1;
374       i++;
375     }
376
377     else if(strcmp(argv[i], "-z") == 0) {
378       zsh_history = 1;
379       i++;
380     }
381
382     else if(strcmp(argv[i], "-b") == 0) {
383       bash_history = 1;
384       i++;
385     }
386
387     else if(strcmp(argv[i], "-l") == 0) {
388       check_opt(argc, argv, i, 1, "<maximum number of lines>");
389       nb_lines_max = atoi(argv[i+1]);
390       i += 2;
391     }
392
393     else if(strcmp(argv[i], "-c") == 0) {
394       check_opt(argc, argv, i, 4, "<fg modeline> <bg modeline> <fg highlight> <bg highlight>");
395       color_fg_modeline = atoi(argv[i+1]);
396       color_bg_modeline = atoi(argv[i+2]);
397       color_fg_highlight = atoi(argv[i+3]);
398       color_bg_highlight = atoi(argv[i+4]);
399       i += 5;
400     }
401
402     else {
403       cerr << "Selector version " << VERSION
404            << endl
405            << "Written by Francois Fleuret <francois@fleuret.org>"
406            << endl
407            << argv[0]
408            << " [-h]"
409            << " [-v]"
410            << " [-m]"
411            << " [-z]"
412            << " [-i]"
413            << " [-c <fg modeline> <bg modeline> <fg highlight> <bg highlight>]"
414            << " [-o <output filename>]"
415            << " [-s <pattern separator>]"
416            << " [-l <max number of lines>]"
417            << " -f <input filename>"
418            << endl;
419       if(strcmp(argv[i], "-h") == 0) {
420         exit(0);
421       } else {
422         exit(1);
423       }
424     }
425   }
426
427   if(!input_filename[0]) {
428     cerr << "You must specify a input file with -f." << endl;
429     exit(1);
430   }
431
432   int nb_lines = 0;
433
434   ifstream file(input_filename);
435
436   if(file.fail()) {
437     cerr << "Can not open " << input_filename << endl;
438     return 1;
439   }
440
441   while(nb_lines < nb_lines_max && !file.eof()) {
442     file.getline(buffer, buffer_size);
443     if(strcmp(buffer, "") != 0) {
444       char *s = buffer;
445       if(zsh_history && *s == ':') {
446         while(*s && *s != ';') s++;
447         if(*s == ';') s++;
448       }
449
450       if(bash_history && (*s == ' ' || (*s >= '0' && *s <= '9'))) {
451         while(*s == ' ' || (*s >= '0' && *s <= '9')) s++;
452       }
453
454       lines[nb_lines] = new char[strlen(s) + 1];
455       strcpy(lines[nb_lines], s);
456       nb_lines++;
457     }
458   }
459
460   if(inverse_order) {
461     for(int i = 0; i < nb_lines/2; i++) {
462       char *s = lines[nb_lines - 1 - i];
463       lines[nb_lines - 1 - i] = lines[i];
464       lines[i] = s;
465     }
466   }
467
468   char patterns[buffer_size];
469   patterns[0] = '\0';
470   int patterns_point;
471   patterns_point = 0;
472
473   initscr();
474
475   if(with_colors) {
476     if(has_colors()) {
477       start_color();
478       if(color_fg_modeline < 0  || color_fg_modeline >= COLORS ||
479          color_bg_modeline < 0  || color_bg_modeline >= COLORS ||
480          color_fg_highlight < 0 || color_bg_highlight >= COLORS ||
481          color_bg_highlight < 0 || color_bg_highlight >= COLORS) {
482         echo();
483         curs_set(1);
484         endwin();
485         cerr << "Color numbers have to be between 0 and " << COLORS - 1 << "." << endl;
486         exit(1);
487       }
488       init_pair(1, color_fg_modeline, color_bg_modeline);
489       init_pair(2, color_fg_highlight, color_bg_highlight);
490     } else {
491       with_colors = 0;
492     }
493   }
494
495   noecho();
496   curs_set(0); // Hide the cursor
497   keypad(stdscr, TRUE); // So that the arrow keys work
498
499   int key;
500   int current_line = 0, temporary_line = 0;
501
502   update_screen(&current_line, &temporary_line, 0, nb_lines, lines, patterns);
503
504   do {
505
506     key = getch();
507
508     int motion = 0;
509
510     if(key >= ' ' && key <= '~') {
511       patterns[patterns_point++] = key;
512       patterns[patterns_point] = '\0';
513     }
514
515     else if(key == KEY_BACKSPACE || key == '\b' ||
516             key == KEY_DC || key == '\ 4') {
517       if(patterns_point > 0) {
518         patterns_point--;
519         patterns[patterns_point] = '\0';
520       }
521     }
522
523     else if(key == KEY_HOME) {
524       current_line = 0;
525     }
526
527     else if(key == KEY_END) {
528       current_line = nb_lines - 1;
529     }
530
531     else if(key == KEY_NPAGE) {
532       motion = 10;
533     }
534
535     else if(key == KEY_PPAGE) {
536       motion = -10;
537     }
538
539     else if(key == KEY_UP || key == '\10') {
540       motion = -1;
541     }
542
543     else if(key == KEY_DOWN || key == '\ e') {
544       motion = 1;
545     }
546
547     update_screen(&current_line, &temporary_line, motion,
548                   nb_lines, lines, patterns);
549
550   } while(key != '\n' && key != KEY_ENTER && key != '\a');
551
552   echo();
553   curs_set(1);
554   endwin();
555
556   if((key == KEY_ENTER || key == '\n')) {
557
558     if(output_to_vt_buffer) {
559       if(temporary_line >= 0 && temporary_line < nb_lines) {
560         inject_into_tty_buffer(lines[temporary_line]);
561       }
562     }
563
564     if(output_filename[0]) {
565       ofstream out(output_filename);
566       if(out.fail()) {
567         cerr << "Can not open " << output_filename << " for writing." << endl;
568         exit(1);
569       } else {
570         if(temporary_line >= 0 && temporary_line < nb_lines) {
571           out << lines[temporary_line] << endl;
572         } else {
573           out << endl;
574         }
575       }
576       out.flush();
577     }
578
579   }
580
581   for(int l = 0; l < nb_lines; l++) {
582     delete[] lines[l];
583   }
584
585   exit(0);
586 }