Changed bb_regcomp to xregcomp and #if 0'ed out destroy_cmd_strs in sed.c
[oweals/busybox.git] / cmdedit.c
index ebc6b969653b89b5110dfc563c15eeed0ec098e7..515685f553eedc2fcd62ac5957000f6f9430af35 100644 (file)
--- a/cmdedit.c
+++ b/cmdedit.c
@@ -39,7 +39,7 @@
 #include <unistd.h>
 #include <stdlib.h>
 #include <string.h>
-#include <termio.h>
+#include <sys/ioctl.h>
 #include <ctype.h>
 #include <signal.h>
 
 
 static struct history *his_front = NULL;       /* First element in command line list */
 static struct history *his_end = NULL; /* Last element in command line list */
-static struct termio old_term, new_term;       /* Current termio and the previous termio before starting ash */
+
+/* ED: sparc termios is broken: revert back to old termio handling. */
+#ifdef BB_FEATURE_USE_TERMIOS
+
+#if #cpu(sparc)
+#      include <termio.h>
+#      define termios termio
+#      define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
+#      define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
+#else
+#      include <termios.h>
+#      define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
+#      define getTermSettings(fd,argp) tcgetattr(fd, argp);
+#endif
+
+/* Current termio and the previous termio before starting sh */
+struct termios initial_settings, new_settings;
+
+
+#ifndef        _POSIX_VDISABLE
+#define        _POSIX_VDISABLE '\0'
+#endif
+
+#endif
+
+
 
 static int cmdedit_termw = 80;  /* actual terminal width */
 static int cmdedit_scroll = 27; /* width of EOL scrolling region */
@@ -84,14 +109,15 @@ void cmdedit_reset_term(void)
 {
        if (reset_term)
                /* sparc and other have broken termios support: use old termio handling. */
-               ioctl(fileno(stdin), TCSETA, (void *) &old_term);
+               setTermSettings(fileno(stdin), (void*) &initial_settings);
 }
 
 void clean_up_and_die(int sig)
 {
        cmdedit_reset_term();
        fprintf(stdout, "\n");
-       exit(TRUE);
+       if (sig!=SIGINT)
+               exit(TRUE);
 }
 
 /* Go to HOME position */
@@ -117,6 +143,12 @@ void input_backspace(char* command, int outputFd, int *cursor, int *len)
 {
        int j = 0;
 
+/* Debug crap */
+//fprintf(stderr, "\nerik: len=%d, cursor=%d, strlen(command)='%d'\n", *len, *cursor, strlen(command));
+//xwrite(outputFd, command, *len);
+//*cursor = *len;
+
+
        if (*cursor > 0) {
                xwrite(outputFd, "\b \b", 3);
                --*cursor;
@@ -233,7 +265,7 @@ char** exe_n_cwd_tab_completion(char* command, int *num_matches)
        return (matches);
 }
 
-void input_tab(char* command, int outputFd, int *cursor, int *len)
+void input_tab(char* command, char* prompt, int outputFd, int *cursor, int *len)
 {
        /* Do TAB completion */
        static int num_matches=0;
@@ -246,7 +278,7 @@ void input_tab(char* command, int outputFd, int *cursor, int *len)
 
                /* For now, we will not bother with trying to distinguish
                 * whether the cursor is in/at a command extression -- we
-                * will always try all possable matches.  If you don't like
+                * will always try all possible matches.  If you don't like
                 * that then feel free to fix it.
                 */
 
@@ -379,19 +411,17 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
 
        memset(command, 0, sizeof(command));
        if (!reset_term) {
-               /* sparc and other have broken termios support: use old termio handling. */
-               ioctl(inputFd, TCGETA, (void *) &old_term);
-               memcpy(&new_term, &old_term, sizeof(struct termio));
-
-               new_term.c_cc[VMIN] = 1;
-               new_term.c_cc[VTIME] = 0;
-               new_term.c_lflag &= ~ICANON;    /* unbuffered input */
-               new_term.c_lflag &= ~ECHO;
+               
+               getTermSettings(inputFd, (void*) &initial_settings);
+               memcpy(&new_settings, &initial_settings, sizeof(struct termios));
+               new_settings.c_cc[VMIN] = 1;
+               new_settings.c_cc[VTIME] = 0;
+               new_settings.c_cc[VINTR] = _POSIX_VDISABLE; /* Turn off CTRL-C, so we can trap it */
+               new_settings.c_lflag &= ~ICANON;        /* unbuffered input */
+               new_settings.c_lflag &= ~(ECHO|ECHOCTL|ECHONL); /* Turn off echoing */
                reset_term = 1;
-               ioctl(inputFd, TCSETA, (void *) &new_term);
-       } else {
-               ioctl(inputFd, TCSETA, (void *) &new_term);
        }
+       setTermSettings(inputFd, (void*) &new_settings);
 
        memset(command, 0, BUFSIZ);
 
@@ -399,6 +429,7 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
 
                if ((ret = read(inputFd, &c, 1)) < 1)
                        return;
+               //fprintf(stderr, "got a '%c' (%d)\n", c, c);
 
                switch (c) {
                case '\n':
@@ -414,6 +445,21 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
                case 2:
                        /* Control-b -- Move back one character */
                        input_backward(outputFd, &cursor);
+                       break;
+               case 3:
+                       /* Control-c -- leave the current line, 
+                        * and start over on the next line */ 
+
+                       /* Go to the next line */
+                       xwrite(outputFd, "\n", 1);
+
+                       /* Rewrite the prompt */
+                       xwrite(outputFd, prompt, strlen(prompt));
+
+                       /* Reset the command string */
+                       memset(command, 0, sizeof(command));
+                       len = cursor = 0;
+
                        break;
                case 4:
                        /* Control-d -- Delete one character, or exit 
@@ -435,12 +481,12 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
                        break;
                case '\b':
                case DEL:
-                       /* control-h and DEL */
+                       /* Control-h and DEL */
                        input_backspace(command, outputFd, &cursor, &len);
                        break;
                case '\t':
 #ifdef BB_FEATURE_SH_TAB_COMPLETION
-                       input_tab(command, outputFd, &cursor, &len);
+                       input_tab(command, prompt, outputFd, &cursor, &len);
 #endif
                        break;
                case 14:
@@ -494,7 +540,10 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
                                          rewrite_line:
                                                /* erase old command from command line */
                                                len = strlen(command)-strlen(hp->s);
-                                               while (len>0)
+
+                                               while (len>cursor)
+                                                       input_delete(command, outputFd, cursor, &len);
+                                               while (cursor>0)
                                                        input_backspace(command, outputFd, &cursor, &len);
                                                input_home(outputFd, &cursor);
                                                
@@ -591,8 +640,7 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
        }
 
        nr = len + 1;
-       /* sparc and other have broken termios support: use old termio handling. */
-       ioctl(inputFd, TCSETA, (void *) &old_term);
+       setTermSettings(inputFd, (void *) &initial_settings);
        reset_term = 0;
 
 
@@ -644,6 +692,7 @@ extern void cmdedit_read_input(char* prompt, char command[BUFSIZ])
 extern void cmdedit_init(void)
 {
        atexit(cmdedit_reset_term);
+       signal(SIGKILL, clean_up_and_die);
        signal(SIGINT, clean_up_and_die);
        signal(SIGQUIT, clean_up_and_die);
        signal(SIGTERM, clean_up_and_die);