Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 3 | * Termios command line History and Editing. |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | 81fe123 | 2003-07-29 06:38:40 +0000 | [diff] [blame] | 5 | * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license. |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 6 | * Written by: Vladimir Oleynik <dzo@simtreas.ru> |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 7 | * |
| 8 | * Used ideas: |
| 9 | * Adam Rogoyski <rogoyski@cs.utexas.edu> |
| 10 | * Dave Cinege <dcinege@psychosis.com> |
| 11 | * Jakub Jelinek (c) 1995 |
Eric Andersen | 81fe123 | 2003-07-29 06:38:40 +0000 | [diff] [blame] | 12 | * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 13 | * |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 14 | * This code is 'as is' with no warranty. |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | /* |
Denis Vlasenko | 78ff819 | 2008-06-28 21:03:43 +0000 | [diff] [blame] | 18 | * Usage and known bugs: |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 19 | * Terminal key codes are not extensive, more needs to be added. |
| 20 | * This version was created on Debian GNU/Linux 2.x. |
Denis Vlasenko | 78ff819 | 2008-06-28 21:03:43 +0000 | [diff] [blame] | 21 | * Delete, Backspace, Home, End, and the arrow keys were tested |
| 22 | * to work in an Xterm and console. Ctrl-A also works as Home. |
| 23 | * Ctrl-E also works as End. |
| 24 | * |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 25 | * The following readline-like commands are not implemented: |
| 26 | * ESC-b -- Move back one word |
| 27 | * ESC-f -- Move forward one word |
| 28 | * ESC-d -- Delete forward one word |
| 29 | * CTL-t -- Transpose two characters |
| 30 | * |
Denis Vlasenko | 78ff819 | 2008-06-28 21:03:43 +0000 | [diff] [blame] | 31 | * lineedit does not know that the terminal escape sequences do not |
| 32 | * take up space on the screen. The redisplay code assumes, unless |
| 33 | * told otherwise, that each character in the prompt is a printable |
| 34 | * character that takes up one character position on the screen. |
| 35 | * You need to tell lineedit that some sequences of characters |
| 36 | * in the prompt take up no screen space. Compatibly with readline, |
| 37 | * use the \[ escape to begin a sequence of non-printing characters, |
| 38 | * and the \] escape to signal the end of such a sequence. Example: |
| 39 | * |
| 40 | * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 41 | */ |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 43 | #include "unicode.h" |
Glenn L McGrath | 475820c | 2004-01-22 12:42:23 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 45 | /* FIXME: obsolete CONFIG item? */ |
| 46 | #define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0 |
| 47 | |
Glenn L McGrath | 3b25185 | 2004-01-03 12:07:32 +0000 | [diff] [blame] | 48 | #ifdef TEST |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 49 | # define ENABLE_FEATURE_EDITING 0 |
| 50 | # define ENABLE_FEATURE_TAB_COMPLETION 0 |
| 51 | # define ENABLE_FEATURE_USERNAME_COMPLETION 0 |
| 52 | # define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0 |
| 53 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 54 | |
Eric Andersen | 5165fbe | 2001-02-20 06:42:29 +0000 | [diff] [blame] | 55 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 56 | /* Entire file (except TESTing part) sits inside this #if */ |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 57 | #if ENABLE_FEATURE_EDITING |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 59 | |
Denis Vlasenko | 7e46cf7 | 2006-12-23 01:21:55 +0000 | [diff] [blame] | 60 | #define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 61 | (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 62 | #define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 63 | #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 64 | #undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR |
| 65 | #define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 66 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 67 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 68 | |
| 69 | #undef CHAR_T |
| 70 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 71 | # define BB_NUL L'\0' |
| 72 | # define CHAR_T wchar_t |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 73 | static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); } |
| 74 | static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); } |
| 75 | static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 76 | # undef isspace |
| 77 | # undef isalnum |
| 78 | # undef ispunct |
| 79 | # undef isprint |
| 80 | # define isspace isspace_must_not_be_used |
| 81 | # define isalnum isalnum_must_not_be_used |
| 82 | # define ispunct ispunct_must_not_be_used |
| 83 | # define isprint isprint_must_not_be_used |
| 84 | #else |
| 85 | # define BB_NUL '\0' |
| 86 | # define CHAR_T char |
| 87 | # define BB_isspace(c) isspace(c) |
| 88 | # define BB_isalnum(c) isalnum(c) |
| 89 | # define BB_ispunct(c) ispunct(c) |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 90 | #endif |
| 91 | |
| 92 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 93 | enum { |
| 94 | /* We use int16_t for positions, need to limit line len */ |
| 95 | MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0 |
Denis Vlasenko | 6b40443 | 2008-01-07 16:13:14 +0000 | [diff] [blame] | 96 | ? CONFIG_FEATURE_EDITING_MAX_LEN |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 97 | : 0x7ff0 |
| 98 | }; |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 99 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 100 | #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
| 101 | static const char null_str[] ALIGN1 = ""; |
| 102 | #endif |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 103 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 104 | /* We try to minimize both static and stack usage. */ |
Denis Vlasenko | 5d89fba | 2008-04-22 00:08:27 +0000 | [diff] [blame] | 105 | struct lineedit_statics { |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 106 | line_input_t *state; |
Erik Andersen | 8ea7d8c | 2000-05-20 00:40:08 +0000 | [diff] [blame] | 107 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 108 | volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */ |
| 109 | sighandler_t previous_SIGWINCH_handler; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 110 | |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 111 | unsigned cmdedit_x; /* real x (col) terminal position */ |
| 112 | unsigned cmdedit_y; /* pseudoreal y (row) terminal position */ |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 113 | unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 114 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 115 | unsigned cursor; |
Denys Vlasenko | 2f3f09c | 2009-09-29 00:00:12 +0200 | [diff] [blame] | 116 | int command_len; /* must be signed */ |
| 117 | /* signed maxsize: we want x in "if (x > S.maxsize)" |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 118 | * to _not_ be promoted to unsigned */ |
| 119 | int maxsize; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 120 | CHAR_T *command_ps; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 121 | |
| 122 | const char *cmdedit_prompt; |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 123 | #if ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 124 | int num_ok_lines; /* = 1; */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 125 | #endif |
| 126 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 127 | #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 128 | char *user_buf; |
| 129 | char *home_pwd_buf; /* = (char*)null_str; */ |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 130 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 131 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 132 | #if ENABLE_FEATURE_TAB_COMPLETION |
| 133 | char **matches; |
| 134 | unsigned num_matches; |
| 135 | #endif |
| 136 | |
| 137 | #if ENABLE_FEATURE_EDITING_VI |
| 138 | #define DELBUFSIZ 128 |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 139 | CHAR_T *delptr; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 140 | smallint newdelflag; /* whether delbuf should be reused yet */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 141 | CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 142 | #endif |
| 143 | |
| 144 | /* Formerly these were big buffers on stack: */ |
| 145 | #if ENABLE_FEATURE_TAB_COMPLETION |
| 146 | char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN]; |
| 147 | char input_tab__matchBuf[MAX_LINELEN]; |
| 148 | int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */ |
| 149 | int16_t find_match__pos_buf[MAX_LINELEN + 1]; |
| 150 | #endif |
| 151 | }; |
| 152 | |
Denis Vlasenko | 5d89fba | 2008-04-22 00:08:27 +0000 | [diff] [blame] | 153 | /* See lineedit_ptr_hack.c */ |
| 154 | extern struct lineedit_statics *const lineedit_ptr_to_statics; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 155 | |
Denis Vlasenko | 5d89fba | 2008-04-22 00:08:27 +0000 | [diff] [blame] | 156 | #define S (*lineedit_ptr_to_statics) |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 157 | #define state (S.state ) |
| 158 | #define cmdedit_termw (S.cmdedit_termw ) |
| 159 | #define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler) |
| 160 | #define cmdedit_x (S.cmdedit_x ) |
| 161 | #define cmdedit_y (S.cmdedit_y ) |
| 162 | #define cmdedit_prmt_len (S.cmdedit_prmt_len) |
| 163 | #define cursor (S.cursor ) |
| 164 | #define command_len (S.command_len ) |
| 165 | #define command_ps (S.command_ps ) |
| 166 | #define cmdedit_prompt (S.cmdedit_prompt ) |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 167 | #define num_ok_lines (S.num_ok_lines ) |
Denis Vlasenko | f7be20e | 2007-12-24 14:09:19 +0000 | [diff] [blame] | 168 | #define user_buf (S.user_buf ) |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 169 | #define home_pwd_buf (S.home_pwd_buf ) |
| 170 | #define matches (S.matches ) |
| 171 | #define num_matches (S.num_matches ) |
| 172 | #define delptr (S.delptr ) |
| 173 | #define newdelflag (S.newdelflag ) |
| 174 | #define delbuf (S.delbuf ) |
| 175 | |
| 176 | #define INIT_S() do { \ |
Denis Vlasenko | 5d89fba | 2008-04-22 00:08:27 +0000 | [diff] [blame] | 177 | (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \ |
Denis Vlasenko | 574f2f4 | 2008-02-27 18:41:59 +0000 | [diff] [blame] | 178 | barrier(); \ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 179 | cmdedit_termw = 80; \ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 180 | IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \ |
| 181 | IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 182 | } while (0) |
| 183 | static void deinit_S(void) |
| 184 | { |
| 185 | #if ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 186 | /* This one is allocated only if FANCY_PROMPT is on |
| 187 | * (otherwise it points to verbatim prompt (NOT malloced) */ |
| 188 | free((char*)cmdedit_prompt); |
| 189 | #endif |
| 190 | #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
| 191 | free(user_buf); |
| 192 | if (home_pwd_buf != null_str) |
| 193 | free(home_pwd_buf); |
| 194 | #endif |
Denis Vlasenko | 5d89fba | 2008-04-22 00:08:27 +0000 | [diff] [blame] | 195 | free(lineedit_ptr_to_statics); |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 196 | } |
| 197 | #define DEINIT_S() deinit_S() |
| 198 | |
Denis Vlasenko | 2c84495 | 2008-04-25 18:44:35 +0000 | [diff] [blame] | 199 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 200 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 201 | static size_t load_string(const char *src, int maxsize) |
| 202 | { |
| 203 | ssize_t len = mbstowcs(command_ps, src, maxsize - 1); |
| 204 | if (len < 0) |
| 205 | len = 0; |
| 206 | command_ps[len] = L'\0'; |
| 207 | return len; |
| 208 | } |
| 209 | static size_t save_string(char *dst, int maxsize) |
| 210 | { |
| 211 | ssize_t len = wcstombs(dst, command_ps, maxsize - 1); |
| 212 | if (len < 0) |
| 213 | len = 0; |
| 214 | dst[len] = '\0'; |
| 215 | return len; |
| 216 | } |
| 217 | /* I thought just fputwc(c, stdout) would work. But no... */ |
| 218 | static void BB_PUTCHAR(wchar_t c) |
| 219 | { |
| 220 | char buf[MB_CUR_MAX + 1]; |
| 221 | mbstate_t mbst = { 0 }; |
| 222 | ssize_t len = wcrtomb(buf, c, &mbst); |
| 223 | |
| 224 | if (len > 0) { |
| 225 | buf[len] = '\0'; |
| 226 | fputs(buf, stdout); |
| 227 | } |
| 228 | } |
| 229 | #else |
| 230 | static size_t load_string(const char *src, int maxsize) |
| 231 | { |
| 232 | safe_strncpy(command_ps, src, maxsize); |
| 233 | return strlen(command_ps); |
| 234 | } |
Denys Vlasenko | 9038d6f | 2009-07-15 20:02:19 +0200 | [diff] [blame] | 235 | # if ENABLE_FEATURE_TAB_COMPLETION |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 236 | static void save_string(char *dst, int maxsize) |
| 237 | { |
| 238 | safe_strncpy(dst, command_ps, maxsize); |
| 239 | } |
Denys Vlasenko | 7dd0ce4 | 2009-07-15 18:27:47 +0200 | [diff] [blame] | 240 | # endif |
| 241 | # define BB_PUTCHAR(c) bb_putchar(c) |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 242 | #endif |
| 243 | |
| 244 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 245 | /* Put 'command_ps[cursor]', cursor++. |
| 246 | * Advance cursor on screen. If we reached right margin, scroll text up |
| 247 | * and remove terminal margin effect by printing 'next_char' */ |
Denis Vlasenko | 2c84495 | 2008-04-25 18:44:35 +0000 | [diff] [blame] | 248 | #define HACK_FOR_WRONG_WIDTH 1 |
| 249 | #if HACK_FOR_WRONG_WIDTH |
| 250 | static void cmdedit_set_out_char(void) |
| 251 | #define cmdedit_set_out_char(next_char) cmdedit_set_out_char() |
| 252 | #else |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 253 | static void cmdedit_set_out_char(int next_char) |
Denis Vlasenko | 2c84495 | 2008-04-25 18:44:35 +0000 | [diff] [blame] | 254 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 255 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 256 | CHAR_T c = command_ps[cursor]; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 257 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 258 | if (c == BB_NUL) { |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 259 | /* erase character after end of input string */ |
| 260 | c = ' '; |
| 261 | } |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 262 | #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 263 | /* Display non-printable characters in reverse */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 264 | if (!BB_isprint(c)) { |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 265 | if (c >= 128) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 266 | c -= 128; |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 267 | if (c < ' ') |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 268 | c += '@'; |
| 269 | if (c == 127) |
| 270 | c = '?'; |
| 271 | printf("\033[7m%c\033[0m", c); |
| 272 | } else |
| 273 | #endif |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 274 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 275 | BB_PUTCHAR(c); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 276 | } |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 277 | if (++cmdedit_x >= cmdedit_termw) { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 278 | /* terminal is scrolled down */ |
| 279 | cmdedit_y++; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 280 | cmdedit_x = 0; |
Denis Vlasenko | 2c84495 | 2008-04-25 18:44:35 +0000 | [diff] [blame] | 281 | #if HACK_FOR_WRONG_WIDTH |
| 282 | /* This works better if our idea of term width is wrong |
| 283 | * and it is actually wider (often happens on serial lines). |
| 284 | * Printing CR,LF *forces* cursor to next line. |
| 285 | * OTOH if terminal width is correct AND terminal does NOT |
| 286 | * have automargin (IOW: it is moving cursor to next line |
| 287 | * by itself (which is wrong for VT-10x terminals)), |
| 288 | * this will break things: there will be one extra empty line */ |
| 289 | puts("\r"); /* + implicit '\n' */ |
| 290 | #else |
| 291 | /* Works ok only if cmdedit_termw is correct */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 292 | /* destroy "(auto)margin" */ |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 293 | bb_putchar(next_char); |
| 294 | bb_putchar('\b'); |
Denis Vlasenko | 2c84495 | 2008-04-25 18:44:35 +0000 | [diff] [blame] | 295 | #endif |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 296 | } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 297 | // Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 298 | cursor++; |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 299 | } |
| 300 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 301 | /* Move to end of line (by printing all chars till the end) */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 302 | static void input_end(void) |
| 303 | { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 304 | while (cursor < command_len) |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 305 | cmdedit_set_out_char(' '); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /* Go to the next line */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 309 | static void goto_new_line(void) |
| 310 | { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 311 | input_end(); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 312 | if (cmdedit_x) |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 313 | bb_putchar('\n'); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 317 | static void out1str(const char *s) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 318 | { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 319 | if (s) |
Robert Griebl | b230159 | 2002-07-30 23:13:51 +0000 | [diff] [blame] | 320 | fputs(s, stdout); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 321 | } |
Eric Andersen | 81fe123 | 2003-07-29 06:38:40 +0000 | [diff] [blame] | 322 | |
Rob Landley | 88621d7 | 2006-08-29 19:41:06 +0000 | [diff] [blame] | 323 | static void beep(void) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 324 | { |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 325 | bb_putchar('\007'); |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 328 | /* Move back one character */ |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 329 | /* (optimized for slow terminals) */ |
| 330 | static void input_backward(unsigned num) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 331 | { |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 332 | int count_y; |
| 333 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 334 | if (num > cursor) |
| 335 | num = cursor; |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 336 | if (!num) |
| 337 | return; |
| 338 | cursor -= num; |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 339 | |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 340 | if (cmdedit_x >= num) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 341 | cmdedit_x -= num; |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 342 | if (num <= 4) { |
Denis Vlasenko | 6f04391 | 2008-02-18 22:28:03 +0000 | [diff] [blame] | 343 | /* This is longer by 5 bytes on x86. |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 344 | * Also gets miscompiled for ARM users |
| 345 | * (busybox.net/bugs/view.php?id=2274). |
Denis Vlasenko | 6f04391 | 2008-02-18 22:28:03 +0000 | [diff] [blame] | 346 | * printf(("\b\b\b\b" + 4) - num); |
| 347 | * return; |
| 348 | */ |
| 349 | do { |
| 350 | bb_putchar('\b'); |
| 351 | } while (--num); |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 352 | return; |
| 353 | } |
| 354 | printf("\033[%uD", num); |
| 355 | return; |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 356 | } |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 357 | |
| 358 | /* Need to go one or more lines up */ |
| 359 | num -= cmdedit_x; |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 360 | { |
| 361 | unsigned w = cmdedit_termw; /* volatile var */ |
| 362 | count_y = 1 + (num / w); |
| 363 | cmdedit_y -= count_y; |
| 364 | cmdedit_x = w * count_y - num; |
| 365 | } |
Denis Vlasenko | 35d4da0 | 2007-01-22 14:04:27 +0000 | [diff] [blame] | 366 | /* go to 1st column; go up; go to correct column */ |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 367 | printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x); |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 370 | static void put_prompt(void) |
| 371 | { |
| 372 | out1str(cmdedit_prompt); |
Denys Vlasenko | c396fe6 | 2009-05-17 19:28:14 +0200 | [diff] [blame] | 373 | if (ENABLE_FEATURE_EDITING_ASK_TERMINAL) { |
| 374 | /* Ask terminal where is the cursor now. |
| 375 | * lineedit_read_key handles response and corrects |
| 376 | * our idea of current cursor position. |
| 377 | * Testcase: run "echo -n long_line_long_line_long_line", |
| 378 | * then type in a long, wrapping command and try to |
| 379 | * delete it using backspace key. |
| 380 | * Note: we print it _after_ prompt, because |
| 381 | * prompt may contain CR. Example: PS1='\[\r\n\]\w ' |
| 382 | */ |
| 383 | out1str("\033" "[6n"); |
| 384 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 385 | cursor = 0; |
Denis Vlasenko | b267ed9 | 2008-05-25 21:52:03 +0000 | [diff] [blame] | 386 | { |
| 387 | unsigned w = cmdedit_termw; /* volatile var */ |
| 388 | cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */ |
| 389 | cmdedit_x = cmdedit_prmt_len % w; |
| 390 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 391 | } |
| 392 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 393 | /* draw prompt, editor line, and clear tail */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 394 | static void redraw(int y, int back_cursor) |
| 395 | { |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 396 | if (y > 0) /* up to start y */ |
| 397 | printf("\033[%uA", y); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 398 | bb_putchar('\r'); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 399 | put_prompt(); |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 400 | input_end(); /* rewrite */ |
| 401 | printf("\033[J"); /* erase after cursor */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 402 | input_backward(back_cursor); |
| 403 | } |
| 404 | |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 405 | /* Delete the char in front of the cursor, optionally saving it |
| 406 | * for later putback */ |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 407 | #if !ENABLE_FEATURE_EDITING_VI |
| 408 | static void input_delete(void) |
| 409 | #define input_delete(save) input_delete() |
| 410 | #else |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 411 | static void input_delete(int save) |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 412 | #endif |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 413 | { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 414 | int j = cursor; |
Erik Andersen | a268573 | 2000-04-09 18:27:46 +0000 | [diff] [blame] | 415 | |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 416 | if (j == (int)command_len) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 417 | return; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 418 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 419 | #if ENABLE_FEATURE_EDITING_VI |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 420 | if (save) { |
| 421 | if (newdelflag) { |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 422 | delptr = delbuf; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 423 | newdelflag = 0; |
| 424 | } |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 425 | if ((delptr - delbuf) < DELBUFSIZ) |
| 426 | *delptr++ = command_ps[j]; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 427 | } |
| 428 | #endif |
| 429 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 430 | memmove(command_ps + j, command_ps + j + 1, |
Denys Vlasenko | 9531f7d | 2009-07-16 14:33:16 +0200 | [diff] [blame] | 431 | /* (command_len + 1 [because of NUL]) - (j + 1) |
| 432 | * simplified into (command_len - j) */ |
| 433 | (command_len - j) * sizeof(command_ps[0])); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 434 | command_len--; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 435 | input_end(); /* rewrite new line */ |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 436 | cmdedit_set_out_char(' '); /* erase char */ |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 437 | input_backward(cursor - j); /* back to old pos cursor */ |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 438 | } |
| 439 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 440 | #if ENABLE_FEATURE_EDITING_VI |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 441 | static void put(void) |
| 442 | { |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 443 | int ocursor; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 444 | int j = delptr - delbuf; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 445 | |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 446 | if (j == 0) |
| 447 | return; |
| 448 | ocursor = cursor; |
| 449 | /* open hole and then fill it */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 450 | memmove(command_ps + cursor + j, command_ps + cursor, |
| 451 | (command_len - cursor + 1) * sizeof(command_ps[0])); |
| 452 | memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0])); |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 453 | command_len += j; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 454 | input_end(); /* rewrite new line */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 455 | input_backward(cursor - ocursor - j + 1); /* at end of new text */ |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 456 | } |
| 457 | #endif |
| 458 | |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 459 | /* Delete the char in back of the cursor */ |
| 460 | static void input_backspace(void) |
| 461 | { |
| 462 | if (cursor > 0) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 463 | input_backward(1); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 464 | input_delete(0); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 465 | } |
| 466 | } |
| 467 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 468 | /* Move forward one character */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 469 | static void input_forward(void) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 470 | { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 471 | if (cursor < command_len) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 472 | cmdedit_set_out_char(command_ps[cursor + 1]); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 473 | } |
| 474 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 475 | #if ENABLE_FEATURE_TAB_COMPLETION |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 476 | |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 477 | static void free_tab_completion_data(void) |
| 478 | { |
| 479 | if (matches) { |
| 480 | while (num_matches) |
| 481 | free(matches[--num_matches]); |
| 482 | free(matches); |
| 483 | matches = NULL; |
| 484 | } |
| 485 | } |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 486 | |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 487 | static void add_match(char *matched) |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 488 | { |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 489 | matches = xrealloc_vector(matches, 4, num_matches); |
| 490 | matches[num_matches] = matched; |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 491 | num_matches++; |
| 492 | } |
| 493 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 494 | #if ENABLE_FEATURE_USERNAME_COMPLETION |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 495 | static void username_tab_completion(char *ud, char *with_shash_flg) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 496 | { |
| 497 | struct passwd *entry; |
| 498 | int userlen; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 499 | |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 500 | ud++; /* ~user/... to user/... */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 501 | userlen = strlen(ud); |
| 502 | |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 503 | if (with_shash_flg) { /* "~/..." or "~user/..." */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 504 | char *sav_ud = ud - 1; |
Denis Vlasenko | 86b29ea | 2007-09-27 10:17:16 +0000 | [diff] [blame] | 505 | char *home = NULL; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 506 | |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 507 | if (*ud == '/') { /* "~/..." */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 508 | home = home_pwd_buf; |
| 509 | } else { |
| 510 | /* "~user/..." */ |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 511 | char *temp; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 512 | temp = strchr(ud, '/'); |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 513 | *temp = '\0'; /* ~user\0 */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 514 | entry = getpwnam(ud); |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 515 | *temp = '/'; /* restore ~user/... */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 516 | ud = temp; |
| 517 | if (entry) |
| 518 | home = entry->pw_dir; |
| 519 | } |
| 520 | if (home) { |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 521 | if ((userlen + strlen(home) + 1) < MAX_LINELEN) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 522 | /* /home/user/... */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 523 | sprintf(sav_ud, "%s%s", home, ud); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 524 | } |
| 525 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 526 | } else { |
| 527 | /* "~[^/]*" */ |
Denis Vlasenko | 5df955f | 2007-03-13 13:01:14 +0000 | [diff] [blame] | 528 | /* Using _r function to avoid pulling in static buffers */ |
Denis Vlasenko | 6b343dd | 2007-03-18 00:57:15 +0000 | [diff] [blame] | 529 | char line_buff[256]; |
Denis Vlasenko | 5df955f | 2007-03-13 13:01:14 +0000 | [diff] [blame] | 530 | struct passwd pwd; |
| 531 | struct passwd *result; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 532 | |
Denis Vlasenko | 5df955f | 2007-03-13 13:01:14 +0000 | [diff] [blame] | 533 | setpwent(); |
| 534 | while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 535 | /* Null usernames should result in all users as possible completions. */ |
Denis Vlasenko | 5df955f | 2007-03-13 13:01:14 +0000 | [diff] [blame] | 536 | if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) { |
| 537 | add_match(xasprintf("~%s/", pwd.pw_name)); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 540 | endpwent(); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 541 | } |
| 542 | } |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 543 | #endif /* FEATURE_COMMAND_USERNAME_COMPLETION */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 544 | |
| 545 | enum { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 546 | FIND_EXE_ONLY = 0, |
| 547 | FIND_DIR_ONLY = 1, |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 548 | FIND_FILE_ONLY = 2, |
| 549 | }; |
Erik Andersen | 1dbe340 | 2000-03-19 10:46:06 +0000 | [diff] [blame] | 550 | |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 551 | static int path_parse(char ***p, int flags) |
| 552 | { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 553 | int npth; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 554 | const char *pth; |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 555 | char *tmp; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 556 | char **res; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 557 | |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 558 | /* if not setenv PATH variable, to search cur dir "." */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 559 | if (flags != FIND_EXE_ONLY) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 560 | return 1; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 561 | |
| 562 | if (state->flags & WITH_PATH_LOOKUP) |
| 563 | pth = state->path_lookup; |
| 564 | else |
| 565 | pth = getenv("PATH"); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 566 | /* PATH=<empty> or PATH=:<empty> */ |
| 567 | if (!pth || !pth[0] || LONE_CHAR(pth, ':')) |
| 568 | return 1; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 569 | |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 570 | tmp = (char*)pth; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 571 | npth = 1; /* path component count */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 572 | while (1) { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 573 | tmp = strchr(tmp, ':'); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 574 | if (!tmp) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 575 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 576 | if (*++tmp == '\0') |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 577 | break; /* :<empty> */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 578 | npth++; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 581 | res = xmalloc(npth * sizeof(char*)); |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 582 | res[0] = tmp = xstrdup(pth); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 583 | npth = 1; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 584 | while (1) { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 585 | tmp = strchr(tmp, ':'); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 586 | if (!tmp) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 587 | break; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 588 | *tmp++ = '\0'; /* ':' -> '\0' */ |
| 589 | if (*tmp == '\0') |
| 590 | break; /* :<empty> */ |
| 591 | res[npth++] = tmp; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 592 | } |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 593 | *p = res; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 594 | return npth; |
| 595 | } |
| 596 | |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 597 | static void exe_n_cwd_tab_completion(char *command, int type) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 598 | { |
Erik Andersen | 1dbe340 | 2000-03-19 10:46:06 +0000 | [diff] [blame] | 599 | DIR *dir; |
| 600 | struct dirent *next; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 601 | struct stat st; |
| 602 | char *path1[1]; |
| 603 | char **paths = path1; |
| 604 | int npaths; |
| 605 | int i; |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 606 | char *found; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 607 | char *pfind = strrchr(command, '/'); |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 608 | /* char dirbuf[MAX_LINELEN]; */ |
| 609 | #define dirbuf (S.exe_n_cwd_tab_completion__dirbuf) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 610 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 611 | npaths = 1; |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 612 | path1[0] = (char*)"."; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 613 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 614 | if (pfind == NULL) { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 615 | /* no dir, if flags==EXE_ONLY - get paths, else "." */ |
| 616 | npaths = path_parse(&paths, type); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 617 | pfind = command; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 618 | } else { |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 619 | /* dirbuf = ".../.../.../" */ |
| 620 | safe_strncpy(dirbuf, command, (pfind - command) + 2); |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 621 | #if ENABLE_FEATURE_USERNAME_COMPLETION |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 622 | if (dirbuf[0] == '~') /* ~/... or ~user/... */ |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 623 | username_tab_completion(dirbuf, dirbuf); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 624 | #endif |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 625 | paths[0] = dirbuf; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 626 | /* point to 'l' in "..../last_component" */ |
| 627 | pfind++; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 628 | } |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 629 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 630 | for (i = 0; i < npaths; i++) { |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 631 | dir = opendir(paths[i]); |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 632 | if (!dir) |
| 633 | continue; /* don't print an error */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 634 | |
| 635 | while ((next = readdir(dir)) != NULL) { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 636 | int len1; |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 637 | const char *str_found = next->d_name; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 638 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 639 | /* matched? */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 640 | if (strncmp(str_found, pfind, strlen(pfind))) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 641 | continue; |
| 642 | /* not see .name without .match */ |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 643 | if (*str_found == '.' && *pfind == '\0') { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 644 | if (NOT_LONE_CHAR(paths[i], '/') || str_found[1]) |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 645 | continue; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 646 | str_found = ""; /* only "/" */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 647 | } |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 648 | found = concat_path_file(paths[i], str_found); |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 649 | /* hmm, remove in progress? */ |
| 650 | /* NB: stat() first so that we see is it a directory; |
| 651 | * but if that fails, use lstat() so that |
| 652 | * we still match dangling links */ |
| 653 | if (stat(found, &st) && lstat(found, &st)) |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 654 | goto cont; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 655 | /* find with dirs? */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 656 | if (paths[i] != dirbuf) |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 657 | strcpy(found, next->d_name); /* only name */ |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 658 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 659 | len1 = strlen(found); |
| 660 | found = xrealloc(found, len1 + 2); |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 661 | found[len1] = '\0'; |
| 662 | found[len1+1] = '\0'; |
| 663 | |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 664 | if (S_ISDIR(st.st_mode)) { |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 665 | /* name is a directory */ |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 666 | if (found[len1-1] != '/') { |
| 667 | found[len1] = '/'; |
| 668 | } |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 669 | } else { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 670 | /* not put found file if search only dirs for cd */ |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 671 | if (type == FIND_DIR_ONLY) |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 672 | goto cont; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 673 | } |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 674 | /* Add it to the list */ |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 675 | add_match(found); |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 676 | continue; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 677 | cont: |
Eric Andersen | e5dfced | 2001-04-09 22:48:12 +0000 | [diff] [blame] | 678 | free(found); |
Erik Andersen | 1dbe340 | 2000-03-19 10:46:06 +0000 | [diff] [blame] | 679 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 680 | closedir(dir); |
Erik Andersen | 1dbe340 | 2000-03-19 10:46:06 +0000 | [diff] [blame] | 681 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 682 | if (paths != path1) { |
Denis Vlasenko | b520271 | 2008-04-24 04:42:52 +0000 | [diff] [blame] | 683 | free(paths[0]); /* allocated memory is only in first member */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 684 | free(paths); |
| 685 | } |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 686 | #undef dirbuf |
Erik Andersen | 6273f65 | 2000-03-17 01:12:41 +0000 | [diff] [blame] | 687 | } |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 688 | |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 689 | /* QUOT is used on elements of int_buf[], which are bytes, |
| 690 | * not Unicode chars. Therefore it works correctly even in Unicode mode. |
| 691 | */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 692 | #define QUOT (UCHAR_MAX+1) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 693 | |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 694 | #define int_buf (S.find_match__int_buf) |
| 695 | #define pos_buf (S.find_match__pos_buf) |
Denys Vlasenko | 5c2e81b | 2009-07-16 14:14:34 +0200 | [diff] [blame] | 696 | /* is must be <= in */ |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 697 | static void collapse_pos(int is, int in) |
| 698 | { |
Denys Vlasenko | 5c2e81b | 2009-07-16 14:14:34 +0200 | [diff] [blame] | 699 | memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0])); |
| 700 | memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0])); |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 701 | } |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 702 | static NOINLINE int find_match(char *matchBuf, int *len_with_quotes) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 703 | { |
| 704 | int i, j; |
| 705 | int command_mode; |
| 706 | int c, c2; |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 707 | /* Were local, but it uses too much stack */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 708 | /* int16_t int_buf[MAX_LINELEN + 1]; */ |
| 709 | /* int16_t pos_buf[MAX_LINELEN + 1]; */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 710 | |
| 711 | /* set to integer dimension characters and own positions */ |
| 712 | for (i = 0;; i++) { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 713 | int_buf[i] = (unsigned char)matchBuf[i]; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 714 | if (int_buf[i] == 0) { |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 715 | pos_buf[i] = -1; /* end-fo-line indicator */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 716 | break; |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 717 | } |
| 718 | pos_buf[i] = i; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | /* mask \+symbol and convert '\t' to ' ' */ |
| 722 | for (i = j = 0; matchBuf[i]; i++, j++) |
| 723 | if (matchBuf[i] == '\\') { |
| 724 | collapse_pos(j, j + 1); |
| 725 | int_buf[j] |= QUOT; |
| 726 | i++; |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 727 | #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 728 | if (matchBuf[i] == '\t') /* algorithm equivalent */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 729 | int_buf[j] = ' ' | QUOT; |
| 730 | #endif |
| 731 | } |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 732 | #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 733 | else if (matchBuf[i] == '\t') |
| 734 | int_buf[j] = ' '; |
| 735 | #endif |
| 736 | |
| 737 | /* mask "symbols" or 'symbols' */ |
| 738 | c2 = 0; |
| 739 | for (i = 0; int_buf[i]; i++) { |
| 740 | c = int_buf[i]; |
| 741 | if (c == '\'' || c == '"') { |
| 742 | if (c2 == 0) |
| 743 | c2 = c; |
| 744 | else { |
| 745 | if (c == c2) |
| 746 | c2 = 0; |
| 747 | else |
| 748 | int_buf[i] |= QUOT; |
| 749 | } |
| 750 | } else if (c2 != 0 && c != '$') |
| 751 | int_buf[i] |= QUOT; |
| 752 | } |
| 753 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 754 | /* skip commands with arguments if line has commands delimiters */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 755 | /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */ |
| 756 | for (i = 0; int_buf[i]; i++) { |
| 757 | c = int_buf[i]; |
| 758 | c2 = int_buf[i + 1]; |
| 759 | j = i ? int_buf[i - 1] : -1; |
| 760 | command_mode = 0; |
| 761 | if (c == ';' || c == '&' || c == '|') { |
| 762 | command_mode = 1 + (c == c2); |
| 763 | if (c == '&') { |
| 764 | if (j == '>' || j == '<') |
| 765 | command_mode = 0; |
| 766 | } else if (c == '|' && j == '>') |
| 767 | command_mode = 0; |
| 768 | } |
| 769 | if (command_mode) { |
| 770 | collapse_pos(0, i + command_mode); |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 771 | i = -1; /* hack incremet */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 772 | } |
| 773 | } |
| 774 | /* collapse `command...` */ |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 775 | for (i = 0; int_buf[i]; i++) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 776 | if (int_buf[i] == '`') { |
| 777 | for (j = i + 1; int_buf[j]; j++) |
| 778 | if (int_buf[j] == '`') { |
| 779 | collapse_pos(i, j + 1); |
| 780 | j = 0; |
| 781 | break; |
| 782 | } |
| 783 | if (j) { |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 784 | /* not found closing ` - command mode, collapse all previous */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 785 | collapse_pos(0, i + 1); |
| 786 | break; |
| 787 | } else |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 788 | i--; /* hack incremet */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 789 | } |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 790 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 791 | |
| 792 | /* collapse (command...(command...)...) or {command...{command...}...} */ |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 793 | c = 0; /* "recursive" level */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 794 | c2 = 0; |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 795 | for (i = 0; int_buf[i]; i++) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 796 | if (int_buf[i] == '(' || int_buf[i] == '{') { |
| 797 | if (int_buf[i] == '(') |
| 798 | c++; |
| 799 | else |
| 800 | c2++; |
| 801 | collapse_pos(0, i + 1); |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 802 | i = -1; /* hack incremet */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 803 | } |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 804 | } |
| 805 | for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 806 | if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) { |
| 807 | if (int_buf[i] == ')') |
| 808 | c--; |
| 809 | else |
| 810 | c2--; |
| 811 | collapse_pos(0, i + 1); |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 812 | i = -1; /* hack incremet */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 813 | } |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 814 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 815 | |
| 816 | /* skip first not quote space */ |
| 817 | for (i = 0; int_buf[i]; i++) |
| 818 | if (int_buf[i] != ' ') |
| 819 | break; |
| 820 | if (i) |
| 821 | collapse_pos(0, i); |
| 822 | |
| 823 | /* set find mode for completion */ |
| 824 | command_mode = FIND_EXE_ONLY; |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 825 | for (i = 0; int_buf[i]; i++) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 826 | if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') { |
| 827 | if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 828 | && matchBuf[pos_buf[0]] == 'c' |
| 829 | && matchBuf[pos_buf[1]] == 'd' |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 830 | ) { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 831 | command_mode = FIND_DIR_ONLY; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 832 | } else { |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 833 | command_mode = FIND_FILE_ONLY; |
| 834 | break; |
| 835 | } |
| 836 | } |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 837 | } |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 838 | for (i = 0; int_buf[i]; i++) |
| 839 | /* "strlen" */; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 840 | /* find last word */ |
| 841 | for (--i; i >= 0; i--) { |
| 842 | c = int_buf[i]; |
| 843 | if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') { |
| 844 | collapse_pos(0, i + 1); |
| 845 | break; |
| 846 | } |
| 847 | } |
| 848 | /* skip first not quoted '\'' or '"' */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 849 | for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++) |
| 850 | /*skip*/; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 851 | /* collapse quote or unquote // or /~ */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 852 | while ((int_buf[i] & ~QUOT) == '/' |
| 853 | && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~') |
| 854 | ) { |
Mark Whitley | 7e5291f | 2001-03-08 19:31:12 +0000 | [diff] [blame] | 855 | i++; |
| 856 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 857 | |
| 858 | /* set only match and destroy quotes */ |
| 859 | j = 0; |
Eric Andersen | 4f99053 | 2001-05-31 17:15:57 +0000 | [diff] [blame] | 860 | for (c = 0; pos_buf[i] >= 0; i++) { |
| 861 | matchBuf[c++] = matchBuf[pos_buf[i]]; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 862 | j = pos_buf[i] + 1; |
| 863 | } |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 864 | matchBuf[c] = '\0'; |
Denis Vlasenko | f74194e | 2007-10-18 12:54:39 +0000 | [diff] [blame] | 865 | /* old length matchBuf with quotes symbols */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 866 | *len_with_quotes = j ? j - pos_buf[0] : 0; |
| 867 | |
| 868 | return command_mode; |
Denys Vlasenko | 5c2e81b | 2009-07-16 14:14:34 +0200 | [diff] [blame] | 869 | } |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 870 | #undef int_buf |
| 871 | #undef pos_buf |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 872 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 873 | /* |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 874 | * display by column (original idea from ls applet, |
| 875 | * very optimized by me :) |
| 876 | */ |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 877 | static void showfiles(void) |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 878 | { |
| 879 | int ncols, row; |
| 880 | int column_width = 0; |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 881 | int nfiles = num_matches; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 882 | int nrows = nfiles; |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 883 | int l; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 884 | |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 885 | /* find the longest file name - use that as the column width */ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 886 | for (row = 0; row < nrows; row++) { |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 887 | l = bb_mbstrlen(matches[row]); |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 888 | if (column_width < l) |
| 889 | column_width = l; |
| 890 | } |
| 891 | column_width += 2; /* min space for columns */ |
| 892 | ncols = cmdedit_termw / column_width; |
| 893 | |
| 894 | if (ncols > 1) { |
| 895 | nrows /= ncols; |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 896 | if (nfiles % ncols) |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 897 | nrows++; /* round up fractionals */ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 898 | } else { |
| 899 | ncols = 1; |
| 900 | } |
| 901 | for (row = 0; row < nrows; row++) { |
| 902 | int n = row; |
| 903 | int nc; |
| 904 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 905 | for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) { |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 906 | printf("%s%-*s", matches[n], |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 907 | (int)(column_width - bb_mbstrlen(matches[n])), "" |
| 908 | ); |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 909 | } |
Denis Vlasenko | feb7ae7 | 2007-10-01 12:05:12 +0000 | [diff] [blame] | 910 | puts(matches[n]); |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 911 | } |
| 912 | } |
| 913 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 914 | static char *add_quote_for_spec_chars(char *found) |
| 915 | { |
| 916 | int l = 0; |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 917 | char *s = xzalloc((strlen(found) + 1) * 2); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 918 | |
| 919 | while (*found) { |
Denys Vlasenko | 5c2e81b | 2009-07-16 14:14:34 +0200 | [diff] [blame] | 920 | if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found)) |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 921 | s[l++] = '\\'; |
| 922 | s[l++] = *found++; |
| 923 | } |
Denys Vlasenko | 53fd1bf | 2009-07-16 02:19:39 +0200 | [diff] [blame] | 924 | /* s[l] = '\0'; - already is */ |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 925 | return s; |
| 926 | } |
| 927 | |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 928 | /* Do TAB completion */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 929 | static void input_tab(smallint *lastWasTab) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 930 | { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 931 | if (!(state->flags & TAB_COMPLETION)) |
| 932 | return; |
| 933 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 934 | if (!*lastWasTab) { |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 935 | char *tmp, *tmp1; |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 936 | size_t len_found; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 937 | /* char matchBuf[MAX_LINELEN]; */ |
| 938 | #define matchBuf (S.input_tab__matchBuf) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 939 | int find_type; |
| 940 | int recalc_pos; |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 941 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 942 | /* cursor pos in command converted to multibyte form */ |
| 943 | int cursor_mb; |
| 944 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 945 | |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 946 | *lastWasTab = TRUE; /* flop trigger */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 947 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 948 | /* Make a local copy of the string -- |
| 949 | * up to the position of the cursor */ |
| 950 | save_string(matchBuf, cursor + 1); |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 951 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 952 | cursor_mb = strlen(matchBuf); |
| 953 | #endif |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 954 | tmp = matchBuf; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 955 | |
| 956 | find_type = find_match(matchBuf, &recalc_pos); |
| 957 | |
| 958 | /* Free up any memory already allocated */ |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 959 | free_tab_completion_data(); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 960 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 961 | #if ENABLE_FEATURE_USERNAME_COMPLETION |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 962 | /* If the word starts with `~' and there is no slash in the word, |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 963 | * then try completing this word as a username. */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 964 | if (state->flags & USERNAME_COMPLETION) |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 965 | if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL) |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 966 | username_tab_completion(matchBuf, NULL); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 967 | #endif |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 968 | /* Try to match any executable in our path and everything |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 969 | * in the current working directory */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 970 | if (!matches) |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 971 | exe_n_cwd_tab_completion(matchBuf, find_type); |
Denis Vlasenko | f58906b | 2006-12-19 19:30:37 +0000 | [diff] [blame] | 972 | /* Sort, then remove any duplicates found */ |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 973 | if (matches) { |
Denis Vlasenko | 6b06cb8 | 2008-05-15 21:30:45 +0000 | [diff] [blame] | 974 | unsigned i; |
| 975 | int n = 0; |
Denis Vlasenko | fb29038 | 2008-03-02 12:51:26 +0000 | [diff] [blame] | 976 | qsort_string_vector(matches, num_matches); |
Denis Vlasenko | f58906b | 2006-12-19 19:30:37 +0000 | [diff] [blame] | 977 | for (i = 0; i < num_matches - 1; ++i) { |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 978 | if (matches[i] && matches[i+1]) { /* paranoia */ |
Denis Vlasenko | f58906b | 2006-12-19 19:30:37 +0000 | [diff] [blame] | 979 | if (strcmp(matches[i], matches[i+1]) == 0) { |
| 980 | free(matches[i]); |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 981 | matches[i] = NULL; /* paranoia */ |
Denis Vlasenko | f58906b | 2006-12-19 19:30:37 +0000 | [diff] [blame] | 982 | } else { |
Denis Vlasenko | f58906b | 2006-12-19 19:30:37 +0000 | [diff] [blame] | 983 | matches[n++] = matches[i]; |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 984 | } |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 985 | } |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 986 | } |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 987 | matches[n] = matches[i]; |
| 988 | num_matches = n + 1; |
Glenn L McGrath | 78b0e37 | 2001-06-26 02:06:08 +0000 | [diff] [blame] | 989 | } |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 990 | /* Did we find exactly one match? */ |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 991 | if (!matches || num_matches > 1) { /* no */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 992 | beep(); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 993 | if (!matches) |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 994 | return; /* not found */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 995 | /* find minimal match */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 996 | tmp1 = xstrdup(matches[0]); |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 997 | for (tmp = tmp1; *tmp; tmp++) { |
| 998 | for (len_found = 1; len_found < num_matches; len_found++) { |
| 999 | if (matches[len_found][tmp - tmp1] != *tmp) { |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1000 | *tmp = '\0'; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1001 | break; |
| 1002 | } |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1003 | } |
| 1004 | } |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1005 | if (*tmp1 == '\0') { /* have unique */ |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 1006 | free(tmp1); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1007 | return; |
| 1008 | } |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 1009 | tmp = add_quote_for_spec_chars(tmp1); |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 1010 | free(tmp1); |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 1011 | } else { /* one match */ |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 1012 | tmp = add_quote_for_spec_chars(matches[0]); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1013 | /* for next completion current found */ |
| 1014 | *lastWasTab = FALSE; |
Denis Vlasenko | d56b47f | 2006-12-21 22:24:46 +0000 | [diff] [blame] | 1015 | |
| 1016 | len_found = strlen(tmp); |
| 1017 | if (tmp[len_found-1] != '/') { |
| 1018 | tmp[len_found] = ' '; |
| 1019 | tmp[len_found+1] = '\0'; |
| 1020 | } |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1021 | } |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1022 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1023 | len_found = strlen(tmp); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1024 | #if !ENABLE_FEATURE_ASSUME_UNICODE |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1025 | /* have space to place the match? */ |
| 1026 | /* The result consists of three parts with these lengths: */ |
| 1027 | /* (cursor - recalc_pos) + len_found + (command_len - cursor) */ |
| 1028 | /* it simplifies into: */ |
| 1029 | if ((int)(len_found + command_len - recalc_pos) < S.maxsize) { |
| 1030 | /* save tail */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1031 | strcpy(matchBuf, command_ps + cursor); |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1032 | /* add match and tail */ |
| 1033 | sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf); |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1034 | command_len = strlen(command_ps); |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1035 | /* new pos */ |
| 1036 | recalc_pos = cursor - recalc_pos + len_found; |
| 1037 | /* write out the matched command */ |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1038 | redraw(cmdedit_y, command_len - recalc_pos); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1039 | } |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1040 | #else |
| 1041 | { |
| 1042 | char command[MAX_LINELEN]; |
| 1043 | int len = save_string(command, sizeof(command)); |
| 1044 | /* have space to place the match? */ |
| 1045 | /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */ |
| 1046 | if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) { |
| 1047 | /* save tail */ |
| 1048 | strcpy(matchBuf, command + cursor_mb); |
| 1049 | /* where do we want to have cursor after all? */ |
| 1050 | strcpy(&command[cursor_mb - recalc_pos], tmp); |
| 1051 | len = load_string(command, S.maxsize); |
| 1052 | /* add match and tail */ |
| 1053 | sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf); |
| 1054 | command_len = load_string(command, S.maxsize); |
| 1055 | /* write out the matched command */ |
| 1056 | redraw(cmdedit_y, command_len - len); |
| 1057 | } |
| 1058 | } |
| 1059 | #endif |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 1060 | free(tmp); |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1061 | #undef matchBuf |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1062 | } else { |
| 1063 | /* Ok -- the last char was a TAB. Since they |
| 1064 | * just hit TAB again, print a list of all the |
| 1065 | * available choices... */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1066 | if (matches && num_matches > 0) { |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1067 | /* changed by goto_new_line() */ |
| 1068 | int sav_cursor = cursor; |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1069 | |
| 1070 | /* Go to the next line */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1071 | goto_new_line(); |
"Vladimir N. Oleynik" | fdb871c | 2006-01-25 11:53:47 +0000 | [diff] [blame] | 1072 | showfiles(); |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1073 | redraw(0, command_len - sav_cursor); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1074 | } |
| 1075 | } |
| 1076 | } |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1077 | |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 1078 | #endif /* FEATURE_COMMAND_TAB_COMPLETION */ |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1079 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1080 | |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1081 | line_input_t* FAST_FUNC new_line_input_t(int flags) |
| 1082 | { |
| 1083 | line_input_t *n = xzalloc(sizeof(*n)); |
| 1084 | n->flags = flags; |
| 1085 | return n; |
| 1086 | } |
| 1087 | |
| 1088 | |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 1089 | #if MAX_HISTORY > 0 |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1090 | |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1091 | static void save_command_ps_at_cur_history(void) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1092 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1093 | if (command_ps[0] != BB_NUL) { |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1094 | int cur = state->cur_history; |
| 1095 | free(state->history[cur]); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1096 | |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1097 | # if ENABLE_FEATURE_ASSUME_UNICODE |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1098 | { |
| 1099 | char tbuf[MAX_LINELEN]; |
| 1100 | save_string(tbuf, sizeof(tbuf)); |
| 1101 | state->history[cur] = xstrdup(tbuf); |
| 1102 | } |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1103 | # else |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1104 | state->history[cur] = xstrdup(command_ps); |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1105 | # endif |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 1106 | } |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1107 | } |
| 1108 | |
| 1109 | /* state->flags is already checked to be nonzero */ |
| 1110 | static int get_previous_history(void) |
| 1111 | { |
| 1112 | if ((state->flags & DO_HISTORY) && state->cur_history) { |
| 1113 | save_command_ps_at_cur_history(); |
| 1114 | state->cur_history--; |
| 1115 | return 1; |
| 1116 | } |
| 1117 | beep(); |
| 1118 | return 0; |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1119 | } |
| 1120 | |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 1121 | static int get_next_history(void) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1122 | { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1123 | if (state->flags & DO_HISTORY) { |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1124 | if (state->cur_history < state->cnt_history) { |
| 1125 | save_command_ps_at_cur_history(); /* save the current history line */ |
| 1126 | return ++state->cur_history; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1127 | } |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 1128 | } |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1129 | beep(); |
| 1130 | return 0; |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1131 | } |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1132 | |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1133 | # if ENABLE_FEATURE_EDITING_SAVEHISTORY |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1134 | /* We try to ensure that concurrent additions to the history |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1135 | * do not overwrite each other. |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1136 | * Otherwise shell users get unhappy. |
| 1137 | * |
| 1138 | * History file is trimmed lazily, when it grows several times longer |
| 1139 | * than configured MAX_HISTORY lines. |
| 1140 | */ |
| 1141 | |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1142 | static void free_line_input_t(line_input_t *n) |
| 1143 | { |
| 1144 | int i = n->cnt_history; |
| 1145 | while (i > 0) |
| 1146 | free(n->history[--i]); |
| 1147 | free(n); |
| 1148 | } |
| 1149 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1150 | /* state->flags is already checked to be nonzero */ |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1151 | static void load_history(line_input_t *st_parm) |
Glenn L McGrath | fdbbb04 | 2002-12-09 11:10:40 +0000 | [diff] [blame] | 1152 | { |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1153 | char *temp_h[MAX_HISTORY]; |
| 1154 | char *line; |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1155 | FILE *fp; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1156 | unsigned idx, i, line_len; |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1157 | |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 1158 | /* NB: do not trash old history if file can't be opened */ |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1159 | |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1160 | fp = fopen_for_read(st_parm->hist_file); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1161 | if (fp) { |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 1162 | /* clean up old history */ |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1163 | for (idx = st_parm->cnt_history; idx > 0;) { |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1164 | idx--; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1165 | free(st_parm->history[idx]); |
| 1166 | st_parm->history[idx] = NULL; |
Denis Vlasenko | 08ec67b | 2008-03-26 13:32:30 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1169 | /* fill temp_h[], retaining only last MAX_HISTORY lines */ |
| 1170 | memset(temp_h, 0, sizeof(temp_h)); |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1171 | st_parm->cnt_history_in_file = idx = 0; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1172 | while ((line = xmalloc_fgetline(fp)) != NULL) { |
| 1173 | if (line[0] == '\0') { |
| 1174 | free(line); |
Glenn L McGrath | fdbbb04 | 2002-12-09 11:10:40 +0000 | [diff] [blame] | 1175 | continue; |
| 1176 | } |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1177 | free(temp_h[idx]); |
| 1178 | temp_h[idx] = line; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1179 | st_parm->cnt_history_in_file++; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1180 | idx++; |
| 1181 | if (idx == MAX_HISTORY) |
| 1182 | idx = 0; |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1183 | } |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1184 | fclose(fp); |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1185 | |
| 1186 | /* find first non-NULL temp_h[], if any */ |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1187 | if (st_parm->cnt_history_in_file) { |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1188 | while (temp_h[idx] == NULL) { |
| 1189 | idx++; |
| 1190 | if (idx == MAX_HISTORY) |
| 1191 | idx = 0; |
| 1192 | } |
| 1193 | } |
| 1194 | |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1195 | /* copy temp_h[] to st_parm->history[] */ |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1196 | for (i = 0; i < MAX_HISTORY;) { |
| 1197 | line = temp_h[idx]; |
| 1198 | if (!line) |
| 1199 | break; |
| 1200 | idx++; |
| 1201 | if (idx == MAX_HISTORY) |
| 1202 | idx = 0; |
| 1203 | line_len = strlen(line); |
| 1204 | if (line_len >= MAX_LINELEN) |
| 1205 | line[MAX_LINELEN-1] = '\0'; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1206 | st_parm->history[i++] = line; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1207 | } |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1208 | st_parm->cnt_history = i; |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1209 | } |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1210 | } |
| 1211 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1212 | /* state->flags is already checked to be nonzero */ |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1213 | static void save_history(char *str) |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1214 | { |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1215 | int fd; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1216 | int len, len2; |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 1217 | |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1218 | fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666); |
| 1219 | if (fd < 0) |
| 1220 | return; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1221 | xlseek(fd, 0, SEEK_END); /* paranoia */ |
| 1222 | len = strlen(str); |
| 1223 | str[len] = '\n'; /* we (try to) do atomic write */ |
| 1224 | len2 = full_write(fd, str, len + 1); |
| 1225 | str[len] = '\0'; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1226 | close(fd); |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1227 | if (len2 != len + 1) |
| 1228 | return; /* "wtf?" */ |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1229 | |
| 1230 | /* did we write so much that history file needs trimming? */ |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1231 | state->cnt_history_in_file++; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1232 | if (state->cnt_history_in_file > MAX_HISTORY * 4) { |
| 1233 | FILE *fp; |
| 1234 | char *new_name; |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1235 | line_input_t *st_temp; |
| 1236 | int i; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1237 | |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1238 | /* we may have concurrently written entries from others. |
| 1239 | * load them */ |
| 1240 | st_temp = new_line_input_t(state->flags); |
| 1241 | st_temp->hist_file = state->hist_file; |
| 1242 | load_history(st_temp); |
| 1243 | |
| 1244 | /* write out temp file and replace hist_file atomically */ |
| 1245 | new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid()); |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1246 | fp = fopen_for_write(new_name); |
| 1247 | if (fp) { |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1248 | for (i = 0; i < st_temp->cnt_history; i++) |
| 1249 | fprintf(fp, "%s\n", st_temp->history[i]); |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1250 | fclose(fp); |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1251 | if (rename(new_name, state->hist_file) == 0) |
| 1252 | state->cnt_history_in_file = st_temp->cnt_history; |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1253 | } |
| 1254 | free(new_name); |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1255 | free_line_input_t(st_temp); |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1256 | } |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1257 | } |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1258 | # else |
| 1259 | # define load_history(a) ((void)0) |
| 1260 | # define save_history(a) ((void)0) |
| 1261 | # endif /* FEATURE_COMMAND_SAVEHISTORY */ |
Robert Griebl | 350d26b | 2002-12-03 22:45:46 +0000 | [diff] [blame] | 1262 | |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1263 | static void remember_in_history(char *str) |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1264 | { |
| 1265 | int i; |
| 1266 | |
| 1267 | if (!(state->flags & DO_HISTORY)) |
| 1268 | return; |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1269 | if (str[0] == '\0') |
| 1270 | return; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1271 | i = state->cnt_history; |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1272 | /* Don't save dupes */ |
| 1273 | if (i && strcmp(state->history[i-1], str) == 0) |
| 1274 | return; |
| 1275 | |
| 1276 | free(state->history[MAX_HISTORY]); /* redundant, paranoia */ |
| 1277 | state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */ |
| 1278 | |
| 1279 | /* If history[] is full, remove the oldest command */ |
| 1280 | /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1281 | if (i >= MAX_HISTORY) { |
| 1282 | free(state->history[0]); |
| 1283 | for (i = 0; i < MAX_HISTORY-1; i++) |
| 1284 | state->history[i] = state->history[i+1]; |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1285 | /* i == MAX_HISTORY-1 */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1286 | } |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1287 | /* i <= MAX_HISTORY-1 */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1288 | state->history[i++] = xstrdup(str); |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1289 | /* i <= MAX_HISTORY */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1290 | state->cur_history = i; |
| 1291 | state->cnt_history = i; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1292 | # if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY |
Denis Vlasenko | bf3561f | 2007-04-14 10:10:40 +0000 | [diff] [blame] | 1293 | if ((state->flags & SAVE_HISTORY) && state->hist_file) |
Denis Vlasenko | 57abf9e | 2009-03-22 19:00:05 +0000 | [diff] [blame] | 1294 | save_history(str); |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1295 | # endif |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 1296 | IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;) |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
| 1299 | #else /* MAX_HISTORY == 0 */ |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1300 | # define remember_in_history(a) ((void)0) |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1301 | #endif /* MAX_HISTORY */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1302 | |
| 1303 | |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 1304 | #if ENABLE_FEATURE_EDITING_VI |
Erik Andersen | 6273f65 | 2000-03-17 01:12:41 +0000 | [diff] [blame] | 1305 | /* |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1306 | * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us> |
Erik Andersen | 6273f65 | 2000-03-17 01:12:41 +0000 | [diff] [blame] | 1307 | */ |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1308 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1309 | vi_Word_motion(int eat) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1310 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1311 | CHAR_T *command = command_ps; |
| 1312 | |
| 1313 | while (cursor < command_len && !BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1314 | input_forward(); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1315 | if (eat) while (cursor < command_len && BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1316 | input_forward(); |
| 1317 | } |
| 1318 | |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1319 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1320 | vi_word_motion(int eat) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1321 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1322 | CHAR_T *command = command_ps; |
| 1323 | |
| 1324 | if (BB_isalnum(command[cursor]) || command[cursor] == '_') { |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1325 | while (cursor < command_len |
Denys Vlasenko | 1302892 | 2009-07-12 00:51:15 +0200 | [diff] [blame] | 1326 | && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_') |
| 1327 | ) { |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1328 | input_forward(); |
Denys Vlasenko | 1302892 | 2009-07-12 00:51:15 +0200 | [diff] [blame] | 1329 | } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1330 | } else if (BB_ispunct(command[cursor])) { |
| 1331 | while (cursor < command_len && BB_ispunct(command[cursor+1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1332 | input_forward(); |
| 1333 | } |
| 1334 | |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1335 | if (cursor < command_len) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1336 | input_forward(); |
| 1337 | |
Denys Vlasenko | 1302892 | 2009-07-12 00:51:15 +0200 | [diff] [blame] | 1338 | if (eat) { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1339 | while (cursor < command_len && BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1340 | input_forward(); |
Denys Vlasenko | 1302892 | 2009-07-12 00:51:15 +0200 | [diff] [blame] | 1341 | } |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1342 | } |
| 1343 | |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1344 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1345 | vi_End_motion(void) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1346 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1347 | CHAR_T *command = command_ps; |
| 1348 | |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1349 | input_forward(); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1350 | while (cursor < command_len && BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1351 | input_forward(); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1352 | while (cursor < command_len-1 && !BB_isspace(command[cursor+1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1353 | input_forward(); |
| 1354 | } |
| 1355 | |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1356 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1357 | vi_end_motion(void) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1358 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1359 | CHAR_T *command = command_ps; |
| 1360 | |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1361 | if (cursor >= command_len-1) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1362 | return; |
| 1363 | input_forward(); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1364 | while (cursor < command_len-1 && BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1365 | input_forward(); |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1366 | if (cursor >= command_len-1) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1367 | return; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1368 | if (BB_isalnum(command[cursor]) || command[cursor] == '_') { |
Denis Vlasenko | 253ce00 | 2007-01-22 08:34:44 +0000 | [diff] [blame] | 1369 | while (cursor < command_len-1 |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1370 | && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_') |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1371 | ) { |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1372 | input_forward(); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1373 | } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1374 | } else if (BB_ispunct(command[cursor])) { |
| 1375 | while (cursor < command_len-1 && BB_ispunct(command[cursor+1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1376 | input_forward(); |
| 1377 | } |
| 1378 | } |
| 1379 | |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1380 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1381 | vi_Back_motion(void) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1382 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1383 | CHAR_T *command = command_ps; |
| 1384 | |
| 1385 | while (cursor > 0 && BB_isspace(command[cursor-1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1386 | input_backward(1); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1387 | while (cursor > 0 && !BB_isspace(command[cursor-1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1388 | input_backward(1); |
| 1389 | } |
| 1390 | |
"Vladimir N. Oleynik" | e4baaa2 | 2005-09-22 12:59:26 +0000 | [diff] [blame] | 1391 | static void |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1392 | vi_back_motion(void) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1393 | { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1394 | CHAR_T *command = command_ps; |
| 1395 | |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1396 | if (cursor <= 0) |
| 1397 | return; |
| 1398 | input_backward(1); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1399 | while (cursor > 0 && BB_isspace(command[cursor])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1400 | input_backward(1); |
| 1401 | if (cursor <= 0) |
| 1402 | return; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1403 | if (BB_isalnum(command[cursor]) || command[cursor] == '_') { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1404 | while (cursor > 0 |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1405 | && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_') |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1406 | ) { |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1407 | input_backward(1); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1408 | } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1409 | } else if (BB_ispunct(command[cursor])) { |
| 1410 | while (cursor > 0 && BB_ispunct(command[cursor-1])) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1411 | input_backward(1); |
| 1412 | } |
| 1413 | } |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1414 | #endif |
| 1415 | |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 1416 | /* Modelled after bash 4.0 behavior of Ctrl-<arrow> */ |
| 1417 | static void ctrl_left(void) |
| 1418 | { |
| 1419 | CHAR_T *command = command_ps; |
| 1420 | |
| 1421 | while (1) { |
| 1422 | CHAR_T c; |
| 1423 | |
| 1424 | input_backward(1); |
| 1425 | if (cursor == 0) |
| 1426 | break; |
| 1427 | c = command[cursor]; |
| 1428 | if (c != ' ' && !BB_ispunct(c)) { |
| 1429 | /* we reached a "word" delimited by spaces/punct. |
| 1430 | * go to its beginning */ |
| 1431 | while (1) { |
| 1432 | c = command[cursor - 1]; |
| 1433 | if (c == ' ' || BB_ispunct(c)) |
| 1434 | break; |
| 1435 | input_backward(1); |
| 1436 | if (cursor == 0) |
| 1437 | break; |
| 1438 | } |
| 1439 | break; |
| 1440 | } |
| 1441 | } |
| 1442 | } |
| 1443 | static void ctrl_right(void) |
| 1444 | { |
| 1445 | CHAR_T *command = command_ps; |
| 1446 | |
| 1447 | while (1) { |
| 1448 | CHAR_T c; |
| 1449 | |
| 1450 | c = command[cursor]; |
| 1451 | if (c == BB_NUL) |
| 1452 | break; |
| 1453 | if (c != ' ' && !BB_ispunct(c)) { |
| 1454 | /* we reached a "word" delimited by spaces/punct. |
| 1455 | * go to its end + 1 */ |
| 1456 | while (1) { |
| 1457 | input_forward(); |
| 1458 | c = command[cursor]; |
| 1459 | if (c == BB_NUL || c == ' ' || BB_ispunct(c)) |
| 1460 | break; |
| 1461 | } |
| 1462 | break; |
| 1463 | } |
| 1464 | input_forward(); |
| 1465 | } |
| 1466 | } |
| 1467 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1468 | |
| 1469 | /* |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1470 | * read_line_input and its helpers |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1471 | */ |
| 1472 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 1473 | #if !ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1474 | static void parse_and_put_prompt(const char *prmt_ptr) |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1475 | { |
| 1476 | cmdedit_prompt = prmt_ptr; |
| 1477 | cmdedit_prmt_len = strlen(prmt_ptr); |
| 1478 | put_prompt(); |
| 1479 | } |
| 1480 | #else |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1481 | static void parse_and_put_prompt(const char *prmt_ptr) |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1482 | { |
| 1483 | int prmt_len = 0; |
| 1484 | size_t cur_prmt_len = 0; |
| 1485 | char flg_not_length = '['; |
| 1486 | char *prmt_mem_ptr = xzalloc(1); |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1487 | char *cwd_buf = xrealloc_getcwd_or_warn(NULL); |
| 1488 | char cbuf[2]; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1489 | char c; |
| 1490 | char *pbuf; |
| 1491 | |
Denis Vlasenko | 6258fd3 | 2007-01-22 07:30:26 +0000 | [diff] [blame] | 1492 | cmdedit_prmt_len = 0; |
| 1493 | |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1494 | if (!cwd_buf) { |
| 1495 | cwd_buf = (char *)bb_msg_unknown; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1498 | cbuf[1] = '\0'; /* never changes */ |
| 1499 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1500 | while (*prmt_ptr) { |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1501 | char *free_me = NULL; |
| 1502 | |
| 1503 | pbuf = cbuf; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1504 | c = *prmt_ptr++; |
| 1505 | if (c == '\\') { |
| 1506 | const char *cp = prmt_ptr; |
| 1507 | int l; |
| 1508 | |
| 1509 | c = bb_process_escape_sequence(&prmt_ptr); |
| 1510 | if (prmt_ptr == cp) { |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1511 | if (*cp == '\0') |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1512 | break; |
| 1513 | c = *prmt_ptr++; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1514 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1515 | switch (c) { |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1516 | # if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1517 | case 'u': |
Denis Vlasenko | 86b29ea | 2007-09-27 10:17:16 +0000 | [diff] [blame] | 1518 | pbuf = user_buf ? user_buf : (char*)""; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1519 | break; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1520 | # endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1521 | case 'h': |
Denis Vlasenko | 6f1713f | 2008-02-25 23:23:58 +0000 | [diff] [blame] | 1522 | pbuf = free_me = safe_gethostname(); |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1523 | *strchrnul(pbuf, '.') = '\0'; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1524 | break; |
| 1525 | case '$': |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1526 | c = (geteuid() == 0 ? '#' : '$'); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1527 | break; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1528 | # if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1529 | case 'w': |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1530 | /* /home/user[/something] -> ~[/something] */ |
| 1531 | pbuf = cwd_buf; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1532 | l = strlen(home_pwd_buf); |
Denis Vlasenko | 86b29ea | 2007-09-27 10:17:16 +0000 | [diff] [blame] | 1533 | if (l != 0 |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1534 | && strncmp(home_pwd_buf, cwd_buf, l) == 0 |
| 1535 | && (cwd_buf[l]=='/' || cwd_buf[l]=='\0') |
| 1536 | && strlen(cwd_buf + l) < PATH_MAX |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1537 | ) { |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1538 | pbuf = free_me = xasprintf("~%s", cwd_buf + l); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1539 | } |
| 1540 | break; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1541 | # endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1542 | case 'W': |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1543 | pbuf = cwd_buf; |
Denis Vlasenko | dc757aa | 2007-06-30 08:04:05 +0000 | [diff] [blame] | 1544 | cp = strrchr(pbuf, '/'); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1545 | if (cp != NULL && cp != pbuf) |
| 1546 | pbuf += (cp-pbuf) + 1; |
| 1547 | break; |
| 1548 | case '!': |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1549 | pbuf = free_me = xasprintf("%d", num_ok_lines); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1550 | break; |
| 1551 | case 'e': case 'E': /* \e \E = \033 */ |
| 1552 | c = '\033'; |
| 1553 | break; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1554 | case 'x': case 'X': { |
| 1555 | char buf2[4]; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1556 | for (l = 0; l < 3;) { |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1557 | unsigned h; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1558 | buf2[l++] = *prmt_ptr; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1559 | buf2[l] = '\0'; |
| 1560 | h = strtoul(buf2, &pbuf, 16); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1561 | if (h > UCHAR_MAX || (pbuf - buf2) < l) { |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1562 | buf2[--l] = '\0'; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1563 | break; |
| 1564 | } |
| 1565 | prmt_ptr++; |
| 1566 | } |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1567 | c = (char)strtoul(buf2, NULL, 16); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1568 | if (c == 0) |
| 1569 | c = '?'; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1570 | pbuf = cbuf; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1571 | break; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1572 | } |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1573 | case '[': case ']': |
| 1574 | if (c == flg_not_length) { |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1575 | flg_not_length = (flg_not_length == '[' ? ']' : '['); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1576 | continue; |
| 1577 | } |
| 1578 | break; |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1579 | } /* switch */ |
| 1580 | } /* if */ |
| 1581 | } /* if */ |
| 1582 | cbuf[0] = c; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1583 | cur_prmt_len = strlen(pbuf); |
| 1584 | prmt_len += cur_prmt_len; |
| 1585 | if (flg_not_length != ']') |
| 1586 | cmdedit_prmt_len += cur_prmt_len; |
| 1587 | prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf); |
Denis Vlasenko | 7221c8c | 2007-12-03 10:45:14 +0000 | [diff] [blame] | 1588 | free(free_me); |
| 1589 | } /* while */ |
| 1590 | |
| 1591 | if (cwd_buf != (char *)bb_msg_unknown) |
| 1592 | free(cwd_buf); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1593 | cmdedit_prompt = prmt_mem_ptr; |
| 1594 | put_prompt(); |
| 1595 | } |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1596 | #endif |
| 1597 | |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1598 | static void cmdedit_setwidth(unsigned w, int redraw_flg) |
| 1599 | { |
| 1600 | cmdedit_termw = w; |
| 1601 | if (redraw_flg) { |
| 1602 | /* new y for current cursor */ |
| 1603 | int new_y = (cursor + cmdedit_prmt_len) / w; |
| 1604 | /* redraw */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1605 | redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor); |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1606 | fflush(stdout); |
| 1607 | } |
| 1608 | } |
| 1609 | |
| 1610 | static void win_changed(int nsig) |
| 1611 | { |
Denis Vlasenko | 5599502 | 2008-05-18 22:28:26 +0000 | [diff] [blame] | 1612 | unsigned width; |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 1613 | get_terminal_width_height(0, &width, NULL); |
| 1614 | cmdedit_setwidth(width, nsig /* - just a yes/no flag */); |
| 1615 | if (nsig == SIGWINCH) |
| 1616 | signal(SIGWINCH, win_changed); /* rearm ourself */ |
| 1617 | } |
| 1618 | |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1619 | static int lineedit_read_key(char *read_key_buffer) |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1620 | { |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1621 | int64_t ic; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1622 | struct pollfd pfd; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1623 | int delay = -1; |
| 1624 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 1625 | char unicode_buf[MB_CUR_MAX + 1]; |
| 1626 | int unicode_idx = 0; |
| 1627 | #endif |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1628 | |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1629 | pfd.fd = STDIN_FILENO; |
| 1630 | pfd.events = POLLIN; |
| 1631 | do { |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1632 | poll_again: |
Denys Vlasenko | 4b7db4f | 2009-05-29 10:39:06 +0200 | [diff] [blame] | 1633 | if (read_key_buffer[0] == 0) { |
| 1634 | /* Wait for input. Can't just call read_key, |
| 1635 | * it returns at once if stdin |
| 1636 | * is in non-blocking mode. */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1637 | safe_poll(&pfd, 1, delay); |
Denys Vlasenko | 4b7db4f | 2009-05-29 10:39:06 +0200 | [diff] [blame] | 1638 | } |
| 1639 | /* Note: read_key sets errno to 0 on success: */ |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1640 | ic = read_key(STDIN_FILENO, read_key_buffer); |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 1641 | |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1642 | if (ENABLE_FEATURE_EDITING_ASK_TERMINAL |
| 1643 | && (int32_t)ic == KEYCODE_CURSOR_POS |
| 1644 | ) { |
| 1645 | int col = ((ic >> 32) & 0x7fff) - 1; |
Denys Vlasenko | c396fe6 | 2009-05-17 19:28:14 +0200 | [diff] [blame] | 1646 | if (col > cmdedit_prmt_len) { |
| 1647 | cmdedit_x += (col - cmdedit_prmt_len); |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1648 | while (cmdedit_x >= cmdedit_termw) { |
| 1649 | cmdedit_x -= cmdedit_termw; |
| 1650 | cmdedit_y++; |
| 1651 | } |
| 1652 | } |
| 1653 | goto poll_again; |
| 1654 | } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1655 | |
| 1656 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 1657 | { |
| 1658 | wchar_t wc; |
| 1659 | |
| 1660 | if ((int32_t)ic < 0) /* KEYCODE_xxx */ |
| 1661 | return ic; |
| 1662 | unicode_buf[unicode_idx++] = ic; |
| 1663 | unicode_buf[unicode_idx] = '\0'; |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 1664 | if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1665 | delay = 50; |
| 1666 | goto poll_again; |
| 1667 | } |
| 1668 | ic = wc; |
| 1669 | } |
| 1670 | #endif |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1671 | } while (errno == EAGAIN); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1672 | |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1673 | return ic; |
| 1674 | } |
| 1675 | |
Paul Fox | 0f2dd9f | 2006-03-07 20:26:11 +0000 | [diff] [blame] | 1676 | /* leave out the "vi-mode"-only case labels if vi editing isn't |
| 1677 | * configured. */ |
Denys Vlasenko | 1302892 | 2009-07-12 00:51:15 +0200 | [diff] [blame] | 1678 | #define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1679 | |
| 1680 | /* convert uppercase ascii to equivalent control char, for readability */ |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1681 | #undef CTRL |
| 1682 | #define CTRL(a) ((a) & ~0x40) |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1683 | |
Denys Vlasenko | 5c2e81b | 2009-07-16 14:14:34 +0200 | [diff] [blame] | 1684 | /* maxsize must be >= 2. |
| 1685 | * Returns: |
Denis Vlasenko | 80667e3 | 2008-02-02 18:35:55 +0000 | [diff] [blame] | 1686 | * -1 on read errors or EOF, or on bare Ctrl-D, |
| 1687 | * 0 on ctrl-C (the line entered is still returned in 'command'), |
Denis Vlasenko | 6a5377a | 2007-09-25 18:35:28 +0000 | [diff] [blame] | 1688 | * >0 length of input string, including terminating '\n' |
| 1689 | */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 1690 | int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st) |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 1691 | { |
Denis Vlasenko | f31c3b6 | 2008-08-20 00:46:32 +0000 | [diff] [blame] | 1692 | int len; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1693 | #if ENABLE_FEATURE_TAB_COMPLETION |
| 1694 | smallint lastWasTab = FALSE; |
| 1695 | #endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1696 | smallint break_out = 0; |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 1697 | #if ENABLE_FEATURE_EDITING_VI |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1698 | smallint vi_cmdmode = 0; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1699 | #endif |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1700 | struct termios initial_settings; |
| 1701 | struct termios new_settings; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1702 | char read_key_buffer[KEYCODE_BUFFER_SIZE]; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1703 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1704 | INIT_S(); |
| 1705 | |
| 1706 | if (tcgetattr(STDIN_FILENO, &initial_settings) < 0 |
| 1707 | || !(initial_settings.c_lflag & ECHO) |
| 1708 | ) { |
| 1709 | /* Happens when e.g. stty -echo was run before */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1710 | parse_and_put_prompt(prompt); |
Denis Vlasenko | 037576d | 2007-10-20 18:30:38 +0000 | [diff] [blame] | 1711 | fflush(stdout); |
Denis Vlasenko | 9cb220b | 2007-12-09 10:03:28 +0000 | [diff] [blame] | 1712 | if (fgets(command, maxsize, stdin) == NULL) |
| 1713 | len = -1; /* EOF or error */ |
| 1714 | else |
| 1715 | len = strlen(command); |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1716 | DEINIT_S(); |
| 1717 | return len; |
Denis Vlasenko | 037576d | 2007-10-20 18:30:38 +0000 | [diff] [blame] | 1718 | } |
| 1719 | |
Denys Vlasenko | 42a8fd0 | 2009-07-11 21:36:13 +0200 | [diff] [blame] | 1720 | check_unicode_in_env(); |
| 1721 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1722 | // FIXME: audit & improve this |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 1723 | if (maxsize > MAX_LINELEN) |
| 1724 | maxsize = MAX_LINELEN; |
Denys Vlasenko | 044b180 | 2009-07-12 02:50:35 +0200 | [diff] [blame] | 1725 | S.maxsize = maxsize; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1726 | |
| 1727 | /* With null flags, no other fields are ever used */ |
Denis Vlasenko | 703e202 | 2007-01-22 14:12:08 +0000 | [diff] [blame] | 1728 | state = st ? st : (line_input_t*) &const_int_0; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1729 | #if MAX_HISTORY > 0 |
| 1730 | # if ENABLE_FEATURE_EDITING_SAVEHISTORY |
Denis Vlasenko | bf3561f | 2007-04-14 10:10:40 +0000 | [diff] [blame] | 1731 | if ((state->flags & SAVE_HISTORY) && state->hist_file) |
Denis Vlasenko | c0ea82a | 2009-03-23 06:33:37 +0000 | [diff] [blame] | 1732 | if (state->cnt_history == 0) |
| 1733 | load_history(state); |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1734 | # endif |
Denis Vlasenko | 3c385cd | 2008-11-02 00:41:05 +0000 | [diff] [blame] | 1735 | if (state->flags & DO_HISTORY) |
| 1736 | state->cur_history = state->cnt_history; |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1737 | #endif |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1738 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1739 | /* prepare before init handlers */ |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 1740 | cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1741 | command_len = 0; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1742 | #if ENABLE_FEATURE_ASSUME_UNICODE |
| 1743 | command_ps = xzalloc(maxsize * sizeof(command_ps[0])); |
| 1744 | #else |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1745 | command_ps = command; |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 1746 | command[0] = '\0'; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1747 | #endif |
| 1748 | #define command command_must_not_be_used |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1749 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1750 | new_settings = initial_settings; |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 1751 | new_settings.c_lflag &= ~ICANON; /* unbuffered input */ |
| 1752 | /* Turn off echoing and CTRL-C, so we can trap it */ |
| 1753 | new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1754 | /* Hmm, in linux c_cc[] is not parsed if ICANON is off */ |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 1755 | new_settings.c_cc[VMIN] = 1; |
| 1756 | new_settings.c_cc[VTIME] = 0; |
| 1757 | /* Turn off CTRL-C, so we can trap it */ |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 1758 | #ifndef _POSIX_VDISABLE |
Denys Vlasenko | db9c57e | 2009-09-27 02:48:53 +0200 | [diff] [blame] | 1759 | # define _POSIX_VDISABLE '\0' |
Denis Vlasenko | 47bdb3a | 2007-01-21 19:18:59 +0000 | [diff] [blame] | 1760 | #endif |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 1761 | new_settings.c_cc[VINTR] = _POSIX_VDISABLE; |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 1762 | tcsetattr_stdin_TCSANOW(&new_settings); |
Erik Andersen | 13456d1 | 2000-03-16 08:09:57 +0000 | [diff] [blame] | 1763 | |
Eric Andersen | 6faae7d | 2001-02-16 20:09:17 +0000 | [diff] [blame] | 1764 | /* Now initialize things */ |
Denis Vlasenko | 6258fd3 | 2007-01-22 07:30:26 +0000 | [diff] [blame] | 1765 | previous_SIGWINCH_handler = signal(SIGWINCH, win_changed); |
| 1766 | win_changed(0); /* do initial resizing */ |
| 1767 | #if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR |
| 1768 | { |
| 1769 | struct passwd *entry; |
| 1770 | |
| 1771 | entry = getpwuid(geteuid()); |
| 1772 | if (entry) { |
| 1773 | user_buf = xstrdup(entry->pw_name); |
| 1774 | home_pwd_buf = xstrdup(entry->pw_dir); |
| 1775 | } |
| 1776 | } |
| 1777 | #endif |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1778 | |
| 1779 | #if 0 |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1780 | for (i = 0; i <= MAX_HISTORY; i++) |
| 1781 | bb_error_msg("history[%d]:'%s'", i, state->history[i]); |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1782 | bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history); |
| 1783 | #endif |
| 1784 | |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 1785 | /* Print out the command prompt */ |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1786 | parse_and_put_prompt(prompt); |
Eric Andersen | b3dc3b8 | 2001-01-04 11:08:45 +0000 | [diff] [blame] | 1787 | |
Denys Vlasenko | c396fe6 | 2009-05-17 19:28:14 +0200 | [diff] [blame] | 1788 | read_key_buffer[0] = 0; |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1789 | while (1) { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1790 | /* |
| 1791 | * The emacs and vi modes share much of the code in the big |
| 1792 | * command loop. Commands entered when in vi's command mode |
| 1793 | * (aka "escape mode") get an extra bit added to distinguish |
| 1794 | * them - this keeps them from being self-inserted. This |
| 1795 | * clutters the big switch a bit, but keeps all the code |
| 1796 | * in one place. |
| 1797 | */ |
| 1798 | enum { |
| 1799 | VI_CMDMODE_BIT = 0x40000000, |
| 1800 | /* 0x80000000 bit flags KEYCODE_xxx */ |
| 1801 | }; |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 1802 | int32_t ic, ic_raw; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1803 | |
Denis Vlasenko | e376d45 | 2008-02-20 22:23:24 +0000 | [diff] [blame] | 1804 | fflush(NULL); |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 1805 | ic = ic_raw = lineedit_read_key(read_key_buffer); |
Paul Fox | 0f2dd9f | 2006-03-07 20:26:11 +0000 | [diff] [blame] | 1806 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 1807 | #if ENABLE_FEATURE_EDITING_VI |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1808 | newdelflag = 1; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1809 | if (vi_cmdmode) { |
| 1810 | /* btw, since KEYCODE_xxx are all < 0, this doesn't |
| 1811 | * change ic if it contains one of them: */ |
| 1812 | ic |= VI_CMDMODE_BIT; |
| 1813 | } |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1814 | #endif |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1815 | |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1816 | switch (ic) { |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1817 | case '\n': |
| 1818 | case '\r': |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1819 | vi_case('\n'|VI_CMDMODE_BIT:) |
| 1820 | vi_case('\r'|VI_CMDMODE_BIT:) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1821 | /* Enter */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1822 | goto_new_line(); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1823 | break_out = 1; |
| 1824 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1825 | case CTRL('A'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1826 | vi_case('0'|VI_CMDMODE_BIT:) |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1827 | /* Control-a -- Beginning of line */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1828 | input_backward(cursor); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1829 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1830 | case CTRL('B'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1831 | vi_case('h'|VI_CMDMODE_BIT:) |
| 1832 | vi_case('\b'|VI_CMDMODE_BIT:) |
| 1833 | vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */ |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1834 | /* Control-b -- Move back one character */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1835 | input_backward(1); |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1836 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1837 | case CTRL('E'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1838 | vi_case('$'|VI_CMDMODE_BIT:) |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1839 | /* Control-e -- End of line */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1840 | input_end(); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1841 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1842 | case CTRL('F'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1843 | vi_case('l'|VI_CMDMODE_BIT:) |
| 1844 | vi_case(' '|VI_CMDMODE_BIT:) |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1845 | /* Control-f -- Move forward one character */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1846 | input_forward(); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1847 | break; |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1848 | case '\b': |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1849 | case '\x7f': /* DEL */ |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 1850 | /* Control-h and DEL */ |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 1851 | input_backspace(); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1852 | break; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1853 | #if ENABLE_FEATURE_TAB_COMPLETION |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1854 | case '\t': |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1855 | input_tab(&lastWasTab); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1856 | break; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 1857 | #endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1858 | case CTRL('K'): |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 1859 | /* Control-k -- clear to end of line */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1860 | command_ps[cursor] = BB_NUL; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1861 | command_len = cursor; |
Eric Andersen | ae10361 | 2002-04-24 23:08:23 +0000 | [diff] [blame] | 1862 | printf("\033[J"); |
Eric Andersen | 65a0730 | 2002-04-13 13:26:49 +0000 | [diff] [blame] | 1863 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1864 | case CTRL('L'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1865 | vi_case(CTRL('L')|VI_CMDMODE_BIT:) |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 1866 | /* Control-l -- clear screen */ |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 1867 | printf("\033[H"); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1868 | redraw(0, command_len - cursor); |
Eric Andersen | f1f2bd0 | 2001-12-21 11:20:15 +0000 | [diff] [blame] | 1869 | break; |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 1870 | #if MAX_HISTORY > 0 |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1871 | case CTRL('N'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1872 | vi_case(CTRL('N')|VI_CMDMODE_BIT:) |
| 1873 | vi_case('j'|VI_CMDMODE_BIT:) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1874 | /* Control-n -- Get next command in history */ |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 1875 | if (get_next_history()) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1876 | goto rewrite_line; |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1877 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1878 | case CTRL('P'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1879 | vi_case(CTRL('P')|VI_CMDMODE_BIT:) |
| 1880 | vi_case('k'|VI_CMDMODE_BIT:) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1881 | /* Control-p -- Get previous command from history */ |
Denis Vlasenko | 682ad30 | 2008-09-27 01:28:56 +0000 | [diff] [blame] | 1882 | if (get_previous_history()) |
Erik Andersen | f0657d3 | 2000-04-12 17:49:52 +0000 | [diff] [blame] | 1883 | goto rewrite_line; |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1884 | break; |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 1885 | #endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1886 | case CTRL('U'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1887 | vi_case(CTRL('U')|VI_CMDMODE_BIT:) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1888 | /* Control-U -- Clear line before cursor */ |
| 1889 | if (cursor) { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1890 | command_len -= cursor; |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1891 | memmove(command_ps, command_ps + cursor, |
| 1892 | (command_len + 1) * sizeof(command_ps[0])); |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 1893 | redraw(cmdedit_y, command_len); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 1894 | } |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 1895 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 1896 | case CTRL('W'): |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1897 | vi_case(CTRL('W')|VI_CMDMODE_BIT:) |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 1898 | /* Control-W -- Remove the last word */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1899 | while (cursor > 0 && BB_isspace(command_ps[cursor-1])) |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 1900 | input_backspace(); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1901 | while (cursor > 0 && !BB_isspace(command_ps[cursor-1])) |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 1902 | input_backspace(); |
| 1903 | break; |
Denis Vlasenko | 00cdbd8 | 2007-01-21 19:21:21 +0000 | [diff] [blame] | 1904 | |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 1905 | #if ENABLE_FEATURE_EDITING_VI |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1906 | case 'i'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1907 | vi_cmdmode = 0; |
| 1908 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1909 | case 'I'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1910 | input_backward(cursor); |
| 1911 | vi_cmdmode = 0; |
| 1912 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1913 | case 'a'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1914 | input_forward(); |
| 1915 | vi_cmdmode = 0; |
| 1916 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1917 | case 'A'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1918 | input_end(); |
| 1919 | vi_cmdmode = 0; |
| 1920 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1921 | case 'x'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1922 | input_delete(1); |
| 1923 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1924 | case 'X'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1925 | if (cursor > 0) { |
| 1926 | input_backward(1); |
| 1927 | input_delete(1); |
| 1928 | } |
| 1929 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1930 | case 'W'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1931 | vi_Word_motion(1); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1932 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1933 | case 'w'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1934 | vi_word_motion(1); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1935 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1936 | case 'E'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1937 | vi_End_motion(); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1938 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1939 | case 'e'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1940 | vi_end_motion(); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1941 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1942 | case 'B'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1943 | vi_Back_motion(); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1944 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1945 | case 'b'|VI_CMDMODE_BIT: |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1946 | vi_back_motion(); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1947 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1948 | case 'C'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1949 | vi_cmdmode = 0; |
| 1950 | /* fall through */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1951 | case 'D'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1952 | goto clear_to_eol; |
| 1953 | |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1954 | case 'c'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 1955 | vi_cmdmode = 0; |
| 1956 | /* fall through */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1957 | case 'd'|VI_CMDMODE_BIT: { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1958 | int nc, sc; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1959 | |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 1960 | ic = lineedit_read_key(read_key_buffer); |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1961 | if (errno) /* error */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1962 | goto prepare_to_die; |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 1963 | if (ic == ic_raw) { /* "cc", "dd" */ |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1964 | input_backward(cursor); |
| 1965 | goto clear_to_eol; |
| 1966 | break; |
| 1967 | } |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 1968 | |
| 1969 | sc = cursor; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1970 | switch (ic) { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1971 | case 'w': |
| 1972 | case 'W': |
| 1973 | case 'e': |
| 1974 | case 'E': |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1975 | switch (ic) { |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1976 | case 'w': /* "dw", "cw" */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1977 | vi_word_motion(vi_cmdmode); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 1978 | break; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1979 | case 'W': /* 'dW', 'cW' */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1980 | vi_Word_motion(vi_cmdmode); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 1981 | break; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1982 | case 'e': /* 'de', 'ce' */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1983 | vi_end_motion(); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1984 | input_forward(); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 1985 | break; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1986 | case 'E': /* 'dE', 'cE' */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1987 | vi_End_motion(); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1988 | input_forward(); |
Denis Vlasenko | 9275814 | 2006-10-03 19:56:34 +0000 | [diff] [blame] | 1989 | break; |
| 1990 | } |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 1991 | nc = cursor; |
| 1992 | input_backward(cursor - sc); |
| 1993 | while (nc-- > cursor) |
| 1994 | input_delete(1); |
| 1995 | break; |
| 1996 | case 'b': /* "db", "cb" */ |
| 1997 | case 'B': /* implemented as B */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 1998 | if (ic == 'b') |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 1999 | vi_back_motion(); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2000 | else |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2001 | vi_Back_motion(); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2002 | while (sc-- > cursor) |
| 2003 | input_delete(1); |
| 2004 | break; |
| 2005 | case ' ': /* "d ", "c " */ |
| 2006 | input_delete(1); |
| 2007 | break; |
| 2008 | case '$': /* "d$", "c$" */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2009 | clear_to_eol: |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2010 | while (cursor < command_len) |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2011 | input_delete(1); |
| 2012 | break; |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2013 | } |
| 2014 | break; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2015 | } |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2016 | case 'p'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2017 | input_forward(); |
| 2018 | /* fallthrough */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2019 | case 'P'|VI_CMDMODE_BIT: |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2020 | put(); |
| 2021 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2022 | case 'r'|VI_CMDMODE_BIT: |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 2023 | //FIXME: unicode case? |
Denys Vlasenko | 020f406 | 2009-05-17 16:44:54 +0200 | [diff] [blame] | 2024 | ic = lineedit_read_key(read_key_buffer); |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2025 | if (errno) /* error */ |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2026 | goto prepare_to_die; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2027 | if (ic < ' ' || ic > 255) { |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2028 | beep(); |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2029 | } else { |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2030 | command_ps[cursor] = ic; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2031 | bb_putchar(ic); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 2032 | bb_putchar('\b'); |
Paul Fox | 3f11b1b | 2005-08-04 19:04:46 +0000 | [diff] [blame] | 2033 | } |
| 2034 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2035 | case '\x1b': /* ESC */ |
| 2036 | if (state->flags & VI_MODE) { |
| 2037 | /* insert mode --> command mode */ |
| 2038 | vi_cmdmode = 1; |
| 2039 | input_backward(1); |
| 2040 | } |
| 2041 | break; |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 2042 | #endif /* FEATURE_COMMAND_EDITING_VI */ |
Paul Fox | 0f2dd9f | 2006-03-07 20:26:11 +0000 | [diff] [blame] | 2043 | |
Denis Vlasenko | 9d4533e | 2006-11-02 22:09:37 +0000 | [diff] [blame] | 2044 | #if MAX_HISTORY > 0 |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2045 | case KEYCODE_UP: |
| 2046 | if (get_previous_history()) |
| 2047 | goto rewrite_line; |
| 2048 | beep(); |
| 2049 | break; |
| 2050 | case KEYCODE_DOWN: |
| 2051 | if (!get_next_history()) |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2052 | break; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2053 | rewrite_line: |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2054 | /* Rewrite the line with the selected history item */ |
| 2055 | /* change command */ |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 2056 | command_len = load_string(state->history[state->cur_history] ? |
| 2057 | state->history[state->cur_history] : "", maxsize); |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2058 | /* redraw and go to eol (bol, in vi) */ |
| 2059 | redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0); |
| 2060 | break; |
Glenn L McGrath | 062c74f | 2002-11-27 09:29:49 +0000 | [diff] [blame] | 2061 | #endif |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2062 | case KEYCODE_RIGHT: |
| 2063 | input_forward(); |
| 2064 | break; |
| 2065 | case KEYCODE_LEFT: |
| 2066 | input_backward(1); |
| 2067 | break; |
Denys Vlasenko | a17eeb8 | 2009-10-25 23:50:56 +0100 | [diff] [blame^] | 2068 | case KEYCODE_CTRL_LEFT: |
| 2069 | ctrl_left(); |
| 2070 | break; |
| 2071 | case KEYCODE_CTRL_RIGHT: |
| 2072 | ctrl_right(); |
| 2073 | break; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2074 | case KEYCODE_DELETE: |
| 2075 | input_delete(0); |
| 2076 | break; |
| 2077 | case KEYCODE_HOME: |
| 2078 | input_backward(cursor); |
| 2079 | break; |
| 2080 | case KEYCODE_END: |
| 2081 | input_end(); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2082 | break; |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2083 | |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2084 | default: |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 2085 | if (initial_settings.c_cc[VINTR] != 0 |
| 2086 | && ic_raw == initial_settings.c_cc[VINTR] |
| 2087 | ) { |
| 2088 | /* Ctrl-C (usually) - stop gathering input */ |
| 2089 | goto_new_line(); |
| 2090 | command_len = 0; |
| 2091 | break_out = -1; /* "do not append '\n'" */ |
| 2092 | break; |
| 2093 | } |
| 2094 | if (initial_settings.c_cc[VEOF] != 0 |
| 2095 | && ic_raw == initial_settings.c_cc[VEOF] |
| 2096 | ) { |
| 2097 | /* Ctrl-D (usually) - delete one character, |
| 2098 | * or exit if len=0 and no chars to delete */ |
| 2099 | if (command_len == 0) { |
| 2100 | errno = 0; |
| 2101 | #if ENABLE_FEATURE_EDITING_VI |
| 2102 | prepare_to_die: |
| 2103 | #endif |
| 2104 | break_out = command_len = -1; |
| 2105 | break; |
| 2106 | } |
| 2107 | input_delete(0); |
| 2108 | break; |
| 2109 | } |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2110 | // /* Control-V -- force insert of next char */ |
| 2111 | // if (c == CTRL('V')) { |
| 2112 | // if (safe_read(STDIN_FILENO, &c, 1) < 1) |
| 2113 | // goto prepare_to_die; |
| 2114 | // if (c == 0) { |
| 2115 | // beep(); |
| 2116 | // break; |
| 2117 | // } |
| 2118 | // } |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2119 | if (ic < ' ' |
| 2120 | || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256) |
| 2121 | || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT) |
| 2122 | ) { |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2123 | /* If VI_CMDMODE_BIT is set, ic is >= 256 |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 2124 | * and vi mode ignores unexpected chars. |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2125 | * Otherwise, we are here if ic is a |
| 2126 | * control char or an unhandled ESC sequence, |
| 2127 | * which is also ignored. |
| 2128 | */ |
| 2129 | break; |
| 2130 | } |
| 2131 | if ((int)command_len >= (maxsize - 2)) { |
| 2132 | /* Not enough space for the char and EOL */ |
| 2133 | break; |
Paul Fox | 84bbac5 | 2008-01-11 16:50:08 +0000 | [diff] [blame] | 2134 | } |
Denis Vlasenko | 00cdbd8 | 2007-01-21 19:21:21 +0000 | [diff] [blame] | 2135 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2136 | command_len++; |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2137 | if (cursor == (command_len - 1)) { |
| 2138 | /* We are at the end, append */ |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2139 | command_ps[cursor] = ic; |
| 2140 | command_ps[cursor + 1] = BB_NUL; |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2141 | cmdedit_set_out_char(' '); |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2142 | } else { |
| 2143 | /* In the middle, insert */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2144 | int sc = cursor; |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2145 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2146 | memmove(command_ps + sc + 1, command_ps + sc, |
| 2147 | (command_len - sc) * sizeof(command_ps[0])); |
| 2148 | command_ps[sc] = ic; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2149 | sc++; |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 2150 | /* rewrite from cursor */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2151 | input_end(); |
Mark Whitley | 4e33875 | 2001-01-26 20:42:23 +0000 | [diff] [blame] | 2152 | /* to prev x pos + 1 */ |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2153 | input_backward(cursor - sc); |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2154 | } |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2155 | break; |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 2156 | } /* switch (ic) */ |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2157 | |
| 2158 | if (break_out) |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2159 | break; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2160 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 2161 | #if ENABLE_FEATURE_TAB_COMPLETION |
Denys Vlasenko | 04bb6b6 | 2009-10-14 12:53:04 +0200 | [diff] [blame] | 2162 | if (ic_raw != '\t') |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2163 | lastWasTab = FALSE; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 2164 | #endif |
Denys Vlasenko | c15f40c | 2009-05-15 03:27:53 +0200 | [diff] [blame] | 2165 | } /* while (1) */ |
Erik Andersen | c7c634b | 2000-03-19 05:28:55 +0000 | [diff] [blame] | 2166 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2167 | /* Stop bug catching using "command_must_not_be_used" trick */ |
| 2168 | #undef command |
| 2169 | |
| 2170 | #if ENABLE_FEATURE_ASSUME_UNICODE |
Denys Vlasenko | 2f3f09c | 2009-09-29 00:00:12 +0200 | [diff] [blame] | 2171 | command[0] = '\0'; |
| 2172 | if (command_len > 0) |
| 2173 | command_len = save_string(command, maxsize - 1); |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2174 | free(command_ps); |
| 2175 | #endif |
| 2176 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2177 | if (command_len > 0) |
| 2178 | remember_in_history(command); |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2179 | |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 2180 | if (break_out > 0) { |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2181 | command[command_len++] = '\n'; |
| 2182 | command[command_len] = '\0'; |
Eric Andersen | 044228d | 2001-07-17 01:12:36 +0000 | [diff] [blame] | 2183 | } |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2184 | |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 2185 | #if ENABLE_FEATURE_TAB_COMPLETION |
Denis Vlasenko | 5592fac | 2007-01-21 19:19:46 +0000 | [diff] [blame] | 2186 | free_tab_completion_data(); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2187 | #endif |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2188 | |
Denis Vlasenko | 6258fd3 | 2007-01-22 07:30:26 +0000 | [diff] [blame] | 2189 | /* restore initial_settings */ |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 2190 | tcsetattr_stdin_TCSANOW(&initial_settings); |
Denis Vlasenko | 6258fd3 | 2007-01-22 07:30:26 +0000 | [diff] [blame] | 2191 | /* restore SIGWINCH handler */ |
| 2192 | signal(SIGWINCH, previous_SIGWINCH_handler); |
| 2193 | fflush(stdout); |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 2194 | |
Denis Vlasenko | f31c3b6 | 2008-08-20 00:46:32 +0000 | [diff] [blame] | 2195 | len = command_len; |
Denis Vlasenko | 73cb1fd | 2007-11-10 01:35:47 +0000 | [diff] [blame] | 2196 | DEINIT_S(); |
| 2197 | |
Denis Vlasenko | f31c3b6 | 2008-08-20 00:46:32 +0000 | [diff] [blame] | 2198 | return len; /* can't return command_len, DEINIT_S() destroys it */ |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2199 | } |
| 2200 | |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2201 | #else |
| 2202 | |
| 2203 | #undef read_line_input |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 2204 | int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize) |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2205 | { |
| 2206 | fputs(prompt, stdout); |
| 2207 | fflush(stdout); |
| 2208 | fgets(command, maxsize, stdin); |
| 2209 | return strlen(command); |
Eric Andersen | 501c88b | 2000-07-28 15:14:45 +0000 | [diff] [blame] | 2210 | } |
| 2211 | |
Denys Vlasenko | 2e6d4ef | 2009-07-10 18:40:49 +0200 | [diff] [blame] | 2212 | #endif /* FEATURE_EDITING */ |
Eric Andersen | 501c88b | 2000-07-28 15:14:45 +0000 | [diff] [blame] | 2213 | |
| 2214 | |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2215 | /* |
| 2216 | * Testing |
| 2217 | */ |
| 2218 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2219 | #ifdef TEST |
| 2220 | |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 2221 | #include <locale.h> |
Denis Vlasenko | 82b39e8 | 2007-01-21 19:18:19 +0000 | [diff] [blame] | 2222 | |
| 2223 | const char *applet_name = "debug stuff usage"; |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 2224 | |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2225 | int main(int argc, char **argv) |
| 2226 | { |
Denis Vlasenko | e8a0788 | 2007-06-10 15:08:44 +0000 | [diff] [blame] | 2227 | char buff[MAX_LINELEN]; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2228 | char *prompt = |
Denis Vlasenko | 38f6319 | 2007-01-22 09:03:07 +0000 | [diff] [blame] | 2229 | #if ENABLE_FEATURE_EDITING_FANCY_PROMPT |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2230 | "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:" |
| 2231 | "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] " |
| 2232 | "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]"; |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2233 | #else |
| 2234 | "% "; |
| 2235 | #endif |
| 2236 | |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 2237 | #if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT |
Eric Andersen | f9ff8a7 | 2001-03-15 20:51:09 +0000 | [diff] [blame] | 2238 | setlocale(LC_ALL, ""); |
| 2239 | #endif |
Denis Vlasenko | 7f1dc21 | 2006-12-19 01:10:25 +0000 | [diff] [blame] | 2240 | while (1) { |
Eric Andersen | b3d6e2d | 2001-03-13 22:57:56 +0000 | [diff] [blame] | 2241 | int l; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2242 | l = read_line_input(prompt, buff); |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2243 | if (l <= 0 || buff[l-1] != '\n') |
Eric Andersen | 27bb790 | 2003-12-23 20:24:51 +0000 | [diff] [blame] | 2244 | break; |
Denis Vlasenko | 0a8a774 | 2006-12-21 22:27:10 +0000 | [diff] [blame] | 2245 | buff[l-1] = 0; |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2246 | printf("*** read_line_input() returned line =%s=\n", buff); |
Eric Andersen | 7467c8d | 2001-07-12 20:26:32 +0000 | [diff] [blame] | 2247 | } |
Denis Vlasenko | 8e1c715 | 2007-01-22 07:21:38 +0000 | [diff] [blame] | 2248 | printf("*** read_line_input() detect ^D\n"); |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 2249 | return 0; |
| 2250 | } |
| 2251 | |
Eric Andersen | c470f44 | 2003-07-28 09:56:35 +0000 | [diff] [blame] | 2252 | #endif /* TEST */ |