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