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