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