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