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