*** empty log message ***
[selector.git] / selector.cc
index c63a1d3..f1b4ad8 100644 (file)
  *
  */
 
-/*
-
-  Here is the magical shell script for a smart bash-history. Note that
-  the line remains in /tmp/selector.out, which may be a security
-  concern.
-
-  ./selector -f ~/.bash_history
-  OLD_SETTINGS=`stty -g`
-  stty -echo raw
-  writevt `tty` "`cat /tmp/selector.out`"
-  stty ${OLD_SETTINGS}
+// Here is how to use it as a super-history-search
+// ./selector -v -f ${HISTFILE}
 
-*/
+#include <fstream>
+#include <iostream>
 
 #include <stdio.h>
-#include <ncurses.h>
-#include <iostream>
-#include <fstream>
-#include <string.h>
 #include <stdlib.h>
-#include <sys/types.h>
-#include <sys/stat.h>
+#include <string.h>
+#include <ncurses.h>
 #include <fcntl.h>
 #include <sys/ioctl.h>
-#include <fcntl.h>
 #include <termios.h>
-#include <strings.h>
 
 using namespace std;
 
+// Yeah, global variables!
+
 int buffer_size = 1024;
 int nb_lines_max = 1000;
 char pattern_separator = ';';
 int output_to_vt_buffer = 0;
 
+//////////////////////////////////////////////////////////////////////
+
 int match(char *string, int nb_patterns, char **patterns) {
   for(int n = 0; n < nb_patterns; n++) {
     if(strstr(string, patterns[n]) == 0) return 0;
@@ -63,6 +53,8 @@ int match(char *string, int nb_patterns, char **patterns) {
   return 1;
 }
 
+//////////////////////////////////////////////////////////////////////
+
 void check_opt(int argc, char **argv, int n_opt, int n, const char *help) {
   if(n_opt + n >= argc) {
     cerr << "Missing argument for " << argv[n_opt] << "."
@@ -73,6 +65,8 @@ void check_opt(int argc, char **argv, int n_opt, int n, const char *help) {
   }
 }
 
+//////////////////////////////////////////////////////////////////////
+
 int previous_visible(int current_line, int nb_lines, char **lines, int nb_patterns, char **patterns) {
   int line = current_line - 1;
   while(line >= 0 && !match(lines[line], nb_patterns, patterns)) line--;
@@ -216,6 +210,9 @@ void update_screen(int *current_line, int *temporary_line, int motion,
           k++;
         }
 
+        // We fill the rest of the line with blanks if either we did
+        // not clear() or if this is the highlighted line
+
         if(no_blink || l == new_line) {
           while(k < console_width) {
             buffer[k++] = ' ';
@@ -225,6 +222,8 @@ void update_screen(int *current_line, int *temporary_line, int motion,
         buffer[k++] = '\n';
         buffer[k++] = '\0';
 
+        // Highlight the highlighted line ...
+
         if(l == new_line) {
           attron(COLOR_PAIR(2));
           addnstr(buffer, console_width);
@@ -243,10 +242,10 @@ void update_screen(int *current_line, int *temporary_line, int motion,
     }
   }
 
-  // if(nb_printed_lines == 1) {
-  // addnstr("[no selection]\n", console_width);
-  // nb_printed_lines++;
-  // }
+  if(nb_printed_lines == 1) {
+    addnstr("[no selection]\n", console_width);
+    nb_printed_lines++;
+  }
 
   if(no_blink) { // Erase the rest of the window. That's slightly ugly.
     int k = 0;
@@ -275,7 +274,9 @@ void update_screen(int *current_line, int *temporary_line, int motion,
   addnstr(buffer, console_width);
   attroff(COLOR_PAIR(1));
 
-  refresh();       // After doing something on the display, we refresh it
+  // We are done
+
+  refresh();
 }
 
 //////////////////////////////////////////////////////////////////////
@@ -438,13 +439,10 @@ int main(int argc, char **argv) {
         // Save current port settings
         tcgetattr(fd,&oldtio);
         bzero(&newtio, sizeof(newtio));
-        newtio.c_cflag = 0;
-        newtio.c_iflag = 0;
-        newtio.c_oflag = 0;
         // Set input mode (non-canonical, *no echo*,...)
-        newtio.c_lflag = 0;
         tcflush(fd, TCIFLUSH);
         tcsetattr(fd,TCSANOW, &newtio);
+        // Put the selected line in the tty input buffer
         for(char *k = lines[temporary_line]; *k; k++) {
           ioctl(fd, TIOCSTI, k);
         }
@@ -452,12 +450,11 @@ int main(int argc, char **argv) {
         tcsetattr(fd,TCSANOW, &oldtio);
         close(fd);
       } else {
-        cerr << "Can not open " << tty << endl;
+        cerr << "Can not open " << tty << "." << endl;
         exit(1);
       }
     }
   } else {
-
     ofstream out(output_filename);
     if(out.fail()) {
       cerr << "Can not open " << output_filename << " for writing." << endl;