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