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