blob: 3905b8cc49dd5f0cb6f245390289035553557907 [file] [log] [blame]
Erik Andersenc7c634b2000-03-19 05:28:55 +00001/* vi: set sw=4 ts=4: */
Erik Andersen13456d12000-03-16 08:09:57 +00002/*
Eric Andersenaff114c2004-04-14 17:51:38 +00003 * Termios command line History and Editing.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen81fe1232003-07-29 06:38:40 +00005 * Copyright (c) 1986-2003 may safely be consumed by a BSD or GPL license.
Eric Andersen7467c8d2001-07-12 20:26:32 +00006 * Written by: Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersen5f2c79d2001-02-16 18:36:04 +00007 *
8 * Used ideas:
9 * Adam Rogoyski <rogoyski@cs.utexas.edu>
10 * Dave Cinege <dcinege@psychosis.com>
11 * Jakub Jelinek (c) 1995
Eric Andersen81fe1232003-07-29 06:38:40 +000012 * Erik Andersen <andersen@codepoet.org> (Majorly adjusted for busybox)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000013 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 */
16
17/*
Denis Vlasenko78ff8192008-06-28 21:03:43 +000018 * Usage and known bugs:
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010019 * Terminal key codes are not extensive, more needs to be added.
20 * This version was created on Debian GNU/Linux 2.x.
Denis Vlasenko78ff8192008-06-28 21:03:43 +000021 * 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 Vlasenkoa17eeb82009-10-25 23:50:56 +010025 * 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 Vlasenko78ff8192008-06-28 21:03:43 +000031 * 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 Andersen13456d12000-03-16 08:09:57 +000041 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000042#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020043#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000044
Glenn L McGrath3b251852004-01-03 12:07:32 +000045#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020046# define ENABLE_FEATURE_EDITING 0
47# define ENABLE_FEATURE_TAB_COMPLETION 0
48# define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020049#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
Eric Andersen5165fbe2001-02-20 06:42:29 +000051
Denis Vlasenko82b39e82007-01-21 19:18:19 +000052/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000053#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000054
Denis Vlasenko82b39e82007-01-21 19:18:19 +000055
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020056#define ENABLE_USERNAME_OR_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020058#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 Vlasenko73cb1fd2007-11-10 01:35:47 +000062#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020064
65#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010066#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020067# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020068# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010069static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010070# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010071static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010072# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020074# 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 Vlasenko2e6d4ef2009-07-10 18:40:49 +020088#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020089#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 Vlasenko2e6d4ef2009-07-10 18:40:49 +020095
96
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +020097#define SEQ_CLEAR_TILL_END_OF_SCREEN "\033[J"
98//#define SEQ_CLEAR_TILL_END_OF_LINE "\033[K"
Tomas Heinricha659b812010-04-29 13:43:39 +020099
100
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000101enum {
102 /* We use int16_t for positions, need to limit line len */
103 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000104 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000105 : 0x7ff0
106};
Robert Griebl350d26b2002-12-03 22:45:46 +0000107
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200108#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000109static const char null_str[] ALIGN1 = "";
110#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000111
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000112/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000113struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000115
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
117 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000118
Denys Vlasenko020f4062009-05-17 16:44:54 +0200119 unsigned cmdedit_x; /* real x (col) terminal position */
120 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000121 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000122
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000123 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200124 int command_len; /* must be signed */
125 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200126 * to _not_ be promoted to unsigned */
127 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200128 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000129
130 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000131#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000133#endif
134
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200135#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000136 char *user_buf;
137 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000138#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000139
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000140#if ENABLE_FEATURE_TAB_COMPLETION
141 char **matches;
142 unsigned num_matches;
143#endif
144
145#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200146# define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200147 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000148 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200149 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000150#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100151#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100152 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100153#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000154
155 /* Formerly these were big buffers on stack: */
156#if ENABLE_FEATURE_TAB_COMPLETION
157 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
158 char input_tab__matchBuf[MAX_LINELEN];
159 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
160 int16_t find_match__pos_buf[MAX_LINELEN + 1];
161#endif
162};
163
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000164/* See lineedit_ptr_hack.c */
165extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000166
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000167#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000168#define state (S.state )
169#define cmdedit_termw (S.cmdedit_termw )
170#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
171#define cmdedit_x (S.cmdedit_x )
172#define cmdedit_y (S.cmdedit_y )
173#define cmdedit_prmt_len (S.cmdedit_prmt_len)
174#define cursor (S.cursor )
175#define command_len (S.command_len )
176#define command_ps (S.command_ps )
177#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000178#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000179#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180#define home_pwd_buf (S.home_pwd_buf )
181#define matches (S.matches )
182#define num_matches (S.num_matches )
183#define delptr (S.delptr )
184#define newdelflag (S.newdelflag )
185#define delbuf (S.delbuf )
186
187#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000188 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000189 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000190 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000191 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200192 IF_USERNAME_OR_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000193} while (0)
194static void deinit_S(void)
195{
196#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197 /* This one is allocated only if FANCY_PROMPT is on
198 * (otherwise it points to verbatim prompt (NOT malloced) */
199 free((char*)cmdedit_prompt);
200#endif
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +0200201#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000202 free(user_buf);
203 if (home_pwd_buf != null_str)
204 free(home_pwd_buf);
205#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000206 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000207}
208#define DEINIT_S() deinit_S()
209
Denis Vlasenko2c844952008-04-25 18:44:35 +0000210
Denys Vlasenko19158a82010-03-26 14:06:56 +0100211#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200212static size_t load_string(const char *src, int maxsize)
213{
214 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
215 if (len < 0)
216 len = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200217 command_ps[len] = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200218 return len;
219}
Tomas Heinricha659b812010-04-29 13:43:39 +0200220static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200221{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200222# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200223 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
224 if (len < 0)
225 len = 0;
226 dst[len] = '\0';
227 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200228# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200229 unsigned dstpos = 0;
230 unsigned srcpos = 0;
231
232 maxsize--;
233 while (dstpos < maxsize) {
234 wchar_t wc;
235 int n = srcpos;
236 while ((wc = command_ps[srcpos]) != 0
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200237 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200238 ) {
239 srcpos++;
240 }
241 command_ps[srcpos] = 0;
242 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
243 if (n < 0) /* should not happen */
244 break;
245 dstpos += n;
246 if (wc == 0) /* usually is */
247 break;
248 /* We do have invalid byte here! */
249 command_ps[srcpos] = wc; /* restore it */
250 srcpos++;
251 if (dstpos == maxsize)
252 break;
253 dst[dstpos++] = (char) wc;
254 }
255 dst[dstpos] = '\0';
256 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200257# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200258}
259/* I thought just fputwc(c, stdout) would work. But no... */
260static void BB_PUTCHAR(wchar_t c)
261{
262 char buf[MB_CUR_MAX + 1];
263 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200264 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200265
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267 if (len > 0) {
268 buf[len] = '\0';
269 fputs(buf, stdout);
270 }
271}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200272# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
273static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
274# else
275static wchar_t adjust_width_and_validate_wc(wchar_t wc)
276# define adjust_width_and_validate_wc(width_adj, wc) \
277 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
278# endif
279{
280 int w = 1;
281
282 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200283 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
284 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200285 goto subst;
286 }
287 w = wcwidth(wc);
288 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
289 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
290 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
291 ) {
292 subst:
293 w = 1;
294 wc = CONFIG_SUBST_WCHAR;
295 }
296 }
297
298# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
299 *width_adj += w;
300#endif
301 return wc;
302}
303#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200304static size_t load_string(const char *src, int maxsize)
305{
306 safe_strncpy(command_ps, src, maxsize);
307 return strlen(command_ps);
308}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200309# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200310static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200311{
312 safe_strncpy(dst, command_ps, maxsize);
313}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200314# endif
315# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200316/* Should never be called: */
317int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200318#endif
319
320
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000321/* Put 'command_ps[cursor]', cursor++.
322 * Advance cursor on screen. If we reached right margin, scroll text up
323 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000324#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200325static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200327 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200328 unsigned width = 0;
329 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000330
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200331 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000332 /* erase character after end of input string */
333 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200334 } else {
335 /* advance cursor only if we aren't at the end yet */
336 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200337 if (unicode_status == UNICODE_ON) {
338 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
339 c = adjust_width_and_validate_wc(&cmdedit_x, c);
340 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
341 } else {
342 cmdedit_x++;
343 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000344 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200345
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200346 ofs_to_right = cmdedit_x - cmdedit_termw;
347 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
348 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200349 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000350 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200351
352 if (ofs_to_right >= 0) {
353 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000354#if HACK_FOR_WRONG_WIDTH
355 /* This works better if our idea of term width is wrong
356 * and it is actually wider (often happens on serial lines).
357 * Printing CR,LF *forces* cursor to next line.
358 * OTOH if terminal width is correct AND terminal does NOT
359 * have automargin (IOW: it is moving cursor to next line
360 * by itself (which is wrong for VT-10x terminals)),
361 * this will break things: there will be one extra empty line */
362 puts("\r"); /* + implicit '\n' */
363#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200364 /* VT-10x terminals don't wrap cursor to next line when last char
365 * on the line is printed - cursor stays "over" this char.
366 * Need to print _next_ char too (first one to appear on next line)
367 * to make cursor move down to next line.
368 */
369 /* Works ok only if cmdedit_termw is correct. */
370 c = command_ps[cursor];
371 if (c == BB_NUL)
372 c = ' ';
373 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000374 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000375#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200376 cmdedit_y++;
377 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
378 width = 0;
379 } else { /* ofs_to_right > 0 */
380 /* wide char c didn't fit on prev line */
381 BB_PUTCHAR(c);
382 }
383 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000384 }
Erik Andersen13456d12000-03-16 08:09:57 +0000385}
386
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000387/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200388static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000389{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000390 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200391 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000392}
393
394/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000395static void goto_new_line(void)
396{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200397 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200398 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000399 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000400}
401
Rob Landley88621d72006-08-29 19:41:06 +0000402static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000403{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000404 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000405}
406
Denys Vlasenko248c3242010-05-17 00:45:44 +0200407static void put_prompt(void)
408{
409 unsigned w;
410
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200411 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200412 fflush_all();
413 cursor = 0;
414 w = cmdedit_termw; /* read volatile var once */
415 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
416 cmdedit_x = cmdedit_prmt_len % w;
417}
418
Eric Andersenaff114c2004-04-14 17:51:38 +0000419/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000420/* (optimized for slow terminals) */
421static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000422{
423 if (num > cursor)
424 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200425 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000426 return;
427 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000428
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200429 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
430 && unicode_status == UNICODE_ON
431 ) {
432 /* correct NUM to be equal to _screen_ width */
433 int n = num;
434 num = 0;
435 while (--n >= 0)
436 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
437 if (num == 0)
438 return;
439 }
440
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000441 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000443 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000444 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000445 * Also gets miscompiled for ARM users
446 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000447 * printf(("\b\b\b\b" + 4) - num);
448 * return;
449 */
450 do {
451 bb_putchar('\b');
452 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000453 return;
454 }
455 printf("\033[%uD", num);
456 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000457 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000458
459 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200460 if (ENABLE_UNICODE_WIDE_WCHARS) {
461 /* With wide chars, it is hard to "backtrack"
462 * and reliably figure out where to put cursor.
463 * Example (<> is a wide char; # is an ordinary char, _ cursor):
464 * |prompt: <><> |
465 * |<><><><><><> |
466 * |_ |
467 * and user presses left arrow. num = 1, cmdedit_x = 0,
468 * We need to go up one line, and then - how do we know that
469 * we need to go *10* positions to the right? Because
470 * |prompt: <>#<>|
471 * |<><><>#<><><>|
472 * |_ |
473 * in this situation we need to go *11* positions to the right.
474 *
475 * A simpler thing to do is to redraw everything from the start
476 * up to new cursor position (which is already known):
477 */
478 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200479 /* go to 1st column; go up to first line */
480 printf("\r" "\033[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200481 cmdedit_y = 0;
482 sv_cursor = cursor;
483 put_prompt(); /* sets cursor to 0 */
484 while (cursor < sv_cursor)
485 put_cur_glyph_and_inc_cursor();
486 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200487 int lines_up;
488 unsigned width;
489 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200490 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200491 width = cmdedit_termw; /* read volatile var once */
492 /* num=1...w: one line up, w+1...2w: two, etc: */
493 lines_up = 1 + (num - 1) / width;
494 cmdedit_x = (width * cmdedit_y - num) % width;
495 cmdedit_y -= lines_up;
496 /* go to 1st column; go up */
497 printf("\r" "\033[%uA", lines_up);
498 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200499 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
500 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200501 if (cmdedit_x)
502 printf("\033[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000503 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000504}
505
Eric Andersenaff114c2004-04-14 17:51:38 +0000506/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000507static void redraw(int y, int back_cursor)
508{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200509 if (y > 0) /* up y lines */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200510 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000511 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000512 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200513 put_till_end_and_adv_cursor();
514 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 input_backward(back_cursor);
516}
517
Paul Fox3f11b1b2005-08-04 19:04:46 +0000518/* Delete the char in front of the cursor, optionally saving it
519 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000520#if !ENABLE_FEATURE_EDITING_VI
521static void input_delete(void)
522#define input_delete(save) input_delete()
523#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000524static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000525#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000526{
Mark Whitley4e338752001-01-26 20:42:23 +0000527 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000528
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000529 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000530 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000531
Denis Vlasenko38f63192007-01-22 09:03:07 +0000532#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000533 if (save) {
534 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000535 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000536 newdelflag = 0;
537 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000538 if ((delptr - delbuf) < DELBUFSIZ)
539 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000540 }
541#endif
542
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200543 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200544 /* (command_len + 1 [because of NUL]) - (j + 1)
545 * simplified into (command_len - j) */
546 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000547 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200548 put_till_end_and_adv_cursor();
549 /* Last char is still visible, erase it (and more) */
550 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000551 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000552}
553
Denis Vlasenko38f63192007-01-22 09:03:07 +0000554#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000555static void put(void)
556{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000557 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000558 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000559
Paul Fox3f11b1b2005-08-04 19:04:46 +0000560 if (j == 0)
561 return;
562 ocursor = cursor;
563 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200564 memmove(command_ps + cursor + j, command_ps + cursor,
565 (command_len - cursor + 1) * sizeof(command_ps[0]));
566 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000567 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200568 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000569 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000570}
571#endif
572
Mark Whitley4e338752001-01-26 20:42:23 +0000573/* Delete the char in back of the cursor */
574static void input_backspace(void)
575{
576 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000577 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000578 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000579 }
580}
581
Eric Andersenaff114c2004-04-14 17:51:38 +0000582/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000583static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000584{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000585 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200586 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000587}
588
Denis Vlasenko38f63192007-01-22 09:03:07 +0000589#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000590
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000591static void free_tab_completion_data(void)
592{
593 if (matches) {
594 while (num_matches)
595 free(matches[--num_matches]);
596 free(matches);
597 matches = NULL;
598 }
599}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000600
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000601static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000602{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000603 matches = xrealloc_vector(matches, 4, num_matches);
604 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000605 num_matches++;
606}
607
Denis Vlasenko38f63192007-01-22 09:03:07 +0000608#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000609static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000610{
611 struct passwd *entry;
612 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000613
Eric Andersenc470f442003-07-28 09:56:35 +0000614 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000615 userlen = strlen(ud);
616
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000617 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000619 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000620
Eric Andersenc470f442003-07-28 09:56:35 +0000621 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000622 home = home_pwd_buf;
623 } else {
624 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000625 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000626 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000627 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000629 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000630 ud = temp;
631 if (entry)
632 home = entry->pw_dir;
633 }
634 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000635 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000636 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000637 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000638 }
639 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000640 } else {
641 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000642 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000643 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000644 struct passwd pwd;
645 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000646
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000647 setpwent();
648 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000649 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000650 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
651 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000652 }
653 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000654 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000655 }
656}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000657#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000658
659enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000660 FIND_EXE_ONLY = 0,
661 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000662 FIND_FILE_ONLY = 2,
663};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000664
Mark Whitley4e338752001-01-26 20:42:23 +0000665static int path_parse(char ***p, int flags)
666{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000668 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000669 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000670 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000671
Mark Whitley4e338752001-01-26 20:42:23 +0000672 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000673 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000674 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000675
676 if (state->flags & WITH_PATH_LOOKUP)
677 pth = state->path_lookup;
678 else
679 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000680 /* PATH=<empty> or PATH=:<empty> */
681 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
682 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000683
Denis Vlasenko253ce002007-01-22 08:34:44 +0000684 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000685 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000686 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000687 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000688 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000689 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000690 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000691 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000692 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000693 }
694
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000695 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000696 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000697 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000698 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000699 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000700 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000701 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000702 *tmp++ = '\0'; /* ':' -> '\0' */
703 if (*tmp == '\0')
704 break; /* :<empty> */
705 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000706 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000707 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000708 return npth;
709}
710
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000711static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000712{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000713 DIR *dir;
714 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715 struct stat st;
716 char *path1[1];
717 char **paths = path1;
718 int npaths;
719 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000720 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000721 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000722/* char dirbuf[MAX_LINELEN]; */
723#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000724
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000725 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000726 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000727
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000728 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000729 /* no dir, if flags==EXE_ONLY - get paths, else "." */
730 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000732 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000733 /* dirbuf = ".../.../.../" */
734 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000735#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000736 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000737 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000738#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000739 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000740 /* point to 'l' in "..../last_component" */
741 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000742 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000743
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000745 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000746 if (!dir)
747 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000748
749 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000750 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000751 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000752
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000753 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000755 continue;
756 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000757 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000758 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000759 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000760 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000762 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000763 /* hmm, remove in progress? */
764 /* NB: stat() first so that we see is it a directory;
765 * but if that fails, use lstat() so that
766 * we still match dangling links */
767 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000768 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000769 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000770 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000771 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000772
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000773 len1 = strlen(found);
774 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000775 found[len1] = '\0';
776 found[len1+1] = '\0';
777
Mark Whitley4e338752001-01-26 20:42:23 +0000778 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000779 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000780 if (found[len1-1] != '/') {
781 found[len1] = '/';
782 }
Mark Whitley4e338752001-01-26 20:42:23 +0000783 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000784 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000785 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000786 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000787 }
Mark Whitley4e338752001-01-26 20:42:23 +0000788 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000789 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000790 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000791 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000792 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000793 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000795 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000796 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000797 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000798 free(paths);
799 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000800#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000801}
Erik Andersenf0657d32000-04-12 17:49:52 +0000802
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200803/* QUOT is used on elements of int_buf[], which are bytes,
804 * not Unicode chars. Therefore it works correctly even in Unicode mode.
805 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000806#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000807
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200808#define int_buf (S.find_match__int_buf)
809#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200810/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200811static void collapse_pos(int is, int in)
812{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200813 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
814 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200815}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200816static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000817{
818 int i, j;
819 int command_mode;
820 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200821/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000822/* int16_t int_buf[MAX_LINELEN + 1]; */
823/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000824
825 /* set to integer dimension characters and own positions */
826 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000827 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000828 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200829 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000830 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000831 }
832 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000833 }
834
835 /* mask \+symbol and convert '\t' to ' ' */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200836 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000837 if (matchBuf[i] == '\\') {
838 collapse_pos(j, j + 1);
839 int_buf[j] |= QUOT;
840 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000841 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200842 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843 /* mask "symbols" or 'symbols' */
844 c2 = 0;
845 for (i = 0; int_buf[i]; i++) {
846 c = int_buf[i];
847 if (c == '\'' || c == '"') {
848 if (c2 == 0)
849 c2 = c;
850 else {
851 if (c == c2)
852 c2 = 0;
853 else
854 int_buf[i] |= QUOT;
855 }
856 } else if (c2 != 0 && c != '$')
857 int_buf[i] |= QUOT;
858 }
859
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000860 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000861 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
862 for (i = 0; int_buf[i]; i++) {
863 c = int_buf[i];
864 c2 = int_buf[i + 1];
865 j = i ? int_buf[i - 1] : -1;
866 command_mode = 0;
867 if (c == ';' || c == '&' || c == '|') {
868 command_mode = 1 + (c == c2);
869 if (c == '&') {
870 if (j == '>' || j == '<')
871 command_mode = 0;
872 } else if (c == '|' && j == '>')
873 command_mode = 0;
874 }
875 if (command_mode) {
876 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200877 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000878 }
879 }
880 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200881 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000882 if (int_buf[i] == '`') {
883 for (j = i + 1; int_buf[j]; j++)
884 if (int_buf[j] == '`') {
885 collapse_pos(i, j + 1);
886 j = 0;
887 break;
888 }
889 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200890 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000891 collapse_pos(0, i + 1);
892 break;
893 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200894 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000895 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200896 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000897
898 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200899 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000900 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200901 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 if (int_buf[i] == '(' || int_buf[i] == '{') {
903 if (int_buf[i] == '(')
904 c++;
905 else
906 c2++;
907 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200908 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000909 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200910 }
911 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000912 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
913 if (int_buf[i] == ')')
914 c--;
915 else
916 c2--;
917 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200918 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000919 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200920 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921
922 /* skip first not quote space */
923 for (i = 0; int_buf[i]; i++)
924 if (int_buf[i] != ' ')
925 break;
926 if (i)
927 collapse_pos(0, i);
928
929 /* set find mode for completion */
930 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200931 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000932 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
933 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000934 && matchBuf[pos_buf[0]] == 'c'
935 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000936 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000937 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000938 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939 command_mode = FIND_FILE_ONLY;
940 break;
941 }
942 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200943 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000944 for (i = 0; int_buf[i]; i++)
945 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946 /* find last word */
947 for (--i; i >= 0; i--) {
948 c = int_buf[i];
949 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
950 collapse_pos(0, i + 1);
951 break;
952 }
953 }
954 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000955 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
956 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000957 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000958 while ((int_buf[i] & ~QUOT) == '/'
959 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
960 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000961 i++;
962 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000963
964 /* set only match and destroy quotes */
965 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000966 for (c = 0; pos_buf[i] >= 0; i++) {
967 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000968 j = pos_buf[i] + 1;
969 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000970 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000971 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000972 *len_with_quotes = j ? j - pos_buf[0] : 0;
973
974 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200975}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000976#undef int_buf
977#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978
Glenn L McGrath4d001292003-01-06 01:11:50 +0000979/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000980 * display by column (original idea from ls applet,
981 * very optimized by me :)
982 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000983static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000984{
985 int ncols, row;
986 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000987 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000988 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000989 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000990
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200991 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000992 for (row = 0; row < nrows; row++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +0200993 l = unicode_strwidth(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000994 if (column_width < l)
995 column_width = l;
996 }
997 column_width += 2; /* min space for columns */
998 ncols = cmdedit_termw / column_width;
999
1000 if (ncols > 1) {
1001 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001002 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001003 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001004 } else {
1005 ncols = 1;
1006 }
1007 for (row = 0; row < nrows; row++) {
1008 int n = row;
1009 int nc;
1010
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001011 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001012 printf("%s%-*s", matches[n],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001013 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001014 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001015 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001016 if (ENABLE_UNICODE_SUPPORT)
1017 puts(printable_string(NULL, matches[n]));
1018 else
1019 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001020 }
1021}
1022
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001023static char *add_quote_for_spec_chars(char *found)
1024{
1025 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001026 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001027
1028 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001029 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001030 s[l++] = '\\';
1031 s[l++] = *found++;
1032 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001033 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001034 return s;
1035}
1036
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001037/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001038static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001039{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001040 if (!(state->flags & TAB_COMPLETION))
1041 return;
1042
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001043 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001044 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001045 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001046/* char matchBuf[MAX_LINELEN]; */
1047#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001048 int find_type;
1049 int recalc_pos;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001050#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001051 /* cursor pos in command converted to multibyte form */
1052 int cursor_mb;
1053#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001054
Eric Andersenc470f442003-07-28 09:56:35 +00001055 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001057 /* Make a local copy of the string --
1058 * up to the position of the cursor */
1059 save_string(matchBuf, cursor + 1);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001060#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001061 cursor_mb = strlen(matchBuf);
1062#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001063 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001064
1065 find_type = find_match(matchBuf, &recalc_pos);
1066
1067 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001068 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001069
Denis Vlasenko38f63192007-01-22 09:03:07 +00001070#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001072 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001073 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001074 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001075 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001076#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001077 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001078 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001079 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001080 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001081 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001082 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001083 unsigned i;
1084 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001085 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001086 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001087 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001088 if (strcmp(matches[i], matches[i+1]) == 0) {
1089 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001090 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001091 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001092 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001093 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001094 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001095 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001096 matches[n] = matches[i];
1097 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001098 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001099 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001100 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001101 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001102 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001103 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001104 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001105 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001106 for (tmp = tmp1; *tmp; tmp++) {
1107 for (len_found = 1; len_found < num_matches; len_found++) {
1108 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001109 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001110 break;
1111 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001112 }
1113 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001114 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001115 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116 return;
1117 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001118 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001119 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001120 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001121 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001122 /* for next completion current found */
1123 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001124
1125 len_found = strlen(tmp);
1126 if (tmp[len_found-1] != '/') {
1127 tmp[len_found] = ' ';
1128 tmp[len_found+1] = '\0';
1129 }
Mark Whitley4e338752001-01-26 20:42:23 +00001130 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001131
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001132 len_found = strlen(tmp);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001133#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001134 /* have space to place the match? */
1135 /* The result consists of three parts with these lengths: */
1136 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1137 /* it simplifies into: */
1138 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1139 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001140 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001141 /* add match and tail */
1142 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001143 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001144 /* new pos */
1145 recalc_pos = cursor - recalc_pos + len_found;
1146 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001147 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001148 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001149#else
1150 {
1151 char command[MAX_LINELEN];
1152 int len = save_string(command, sizeof(command));
1153 /* have space to place the match? */
1154 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1155 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1156 /* save tail */
1157 strcpy(matchBuf, command + cursor_mb);
1158 /* where do we want to have cursor after all? */
1159 strcpy(&command[cursor_mb - recalc_pos], tmp);
1160 len = load_string(command, S.maxsize);
1161 /* add match and tail */
1162 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1163 command_len = load_string(command, S.maxsize);
1164 /* write out the matched command */
1165 redraw(cmdedit_y, command_len - len);
1166 }
1167 }
1168#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001169 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001170#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001171 } else {
1172 /* Ok -- the last char was a TAB. Since they
1173 * just hit TAB again, print a list of all the
1174 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001175 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001176 /* changed by goto_new_line() */
1177 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001178
1179 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001180 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001181 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001182 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001183 }
1184 }
1185}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001186
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001187#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001188
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001189
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001190line_input_t* FAST_FUNC new_line_input_t(int flags)
1191{
1192 line_input_t *n = xzalloc(sizeof(*n));
1193 n->flags = flags;
1194 return n;
1195}
1196
1197
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001198#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001199
Denis Vlasenko682ad302008-09-27 01:28:56 +00001200static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001201{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001202 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001203 int cur = state->cur_history;
1204 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001205
Denys Vlasenko19158a82010-03-26 14:06:56 +01001206# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001207 {
1208 char tbuf[MAX_LINELEN];
1209 save_string(tbuf, sizeof(tbuf));
1210 state->history[cur] = xstrdup(tbuf);
1211 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001212# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001213 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001214# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001215 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001216}
1217
1218/* state->flags is already checked to be nonzero */
1219static int get_previous_history(void)
1220{
1221 if ((state->flags & DO_HISTORY) && state->cur_history) {
1222 save_command_ps_at_cur_history();
1223 state->cur_history--;
1224 return 1;
1225 }
1226 beep();
1227 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001228}
1229
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001230static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001231{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001232 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001233 if (state->cur_history < state->cnt_history) {
1234 save_command_ps_at_cur_history(); /* save the current history line */
1235 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001236 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001237 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001238 beep();
1239 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001240}
Robert Griebl350d26b2002-12-03 22:45:46 +00001241
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001242# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001243/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001244 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001245 * Otherwise shell users get unhappy.
1246 *
1247 * History file is trimmed lazily, when it grows several times longer
1248 * than configured MAX_HISTORY lines.
1249 */
1250
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001251static void free_line_input_t(line_input_t *n)
1252{
1253 int i = n->cnt_history;
1254 while (i > 0)
1255 free(n->history[--i]);
1256 free(n);
1257}
1258
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001259/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001260static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001261{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001262 char *temp_h[MAX_HISTORY];
1263 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001264 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001265 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001266
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001267 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001268
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001269 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001270 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001271 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001272 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001273 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001274 free(st_parm->history[idx]);
1275 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001276 }
1277
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001278 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1279 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001280 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001281 while ((line = xmalloc_fgetline(fp)) != NULL) {
1282 if (line[0] == '\0') {
1283 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001284 continue;
1285 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001286 free(temp_h[idx]);
1287 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001288 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001289 idx++;
1290 if (idx == MAX_HISTORY)
1291 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001292 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001293 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001294
1295 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001296 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001297 while (temp_h[idx] == NULL) {
1298 idx++;
1299 if (idx == MAX_HISTORY)
1300 idx = 0;
1301 }
1302 }
1303
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001304 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001305 for (i = 0; i < MAX_HISTORY;) {
1306 line = temp_h[idx];
1307 if (!line)
1308 break;
1309 idx++;
1310 if (idx == MAX_HISTORY)
1311 idx = 0;
1312 line_len = strlen(line);
1313 if (line_len >= MAX_LINELEN)
1314 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001315 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001316 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001317 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001318 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001319}
1320
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001321/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001322static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001323{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001324 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001325 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001326
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001327 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1328 if (fd < 0)
1329 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001330 xlseek(fd, 0, SEEK_END); /* paranoia */
1331 len = strlen(str);
1332 str[len] = '\n'; /* we (try to) do atomic write */
1333 len2 = full_write(fd, str, len + 1);
1334 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001335 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001336 if (len2 != len + 1)
1337 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001338
1339 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001341 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1342 FILE *fp;
1343 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001344 line_input_t *st_temp;
1345 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001346
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001347 /* we may have concurrently written entries from others.
1348 * load them */
1349 st_temp = new_line_input_t(state->flags);
1350 st_temp->hist_file = state->hist_file;
1351 load_history(st_temp);
1352
1353 /* write out temp file and replace hist_file atomically */
1354 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001355 fp = fopen_for_write(new_name);
1356 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001357 for (i = 0; i < st_temp->cnt_history; i++)
1358 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001359 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001360 if (rename(new_name, state->hist_file) == 0)
1361 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001362 }
1363 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001364 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001365 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001366}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001367# else
1368# define load_history(a) ((void)0)
1369# define save_history(a) ((void)0)
1370# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001371
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001372static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001373{
1374 int i;
1375
1376 if (!(state->flags & DO_HISTORY))
1377 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001378 if (str[0] == '\0')
1379 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001380 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001381 /* Don't save dupes */
1382 if (i && strcmp(state->history[i-1], str) == 0)
1383 return;
1384
1385 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1386 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1387
1388 /* If history[] is full, remove the oldest command */
1389 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001390 if (i >= MAX_HISTORY) {
1391 free(state->history[0]);
1392 for (i = 0; i < MAX_HISTORY-1; i++)
1393 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001394 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001395 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001396 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001397 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001398 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001399 state->cur_history = i;
1400 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001401# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001402 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001403 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001404# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001405 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001406}
1407
1408#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001409# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001410#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001411
1412
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001413#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001414/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001415 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001416 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001417static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001418vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001419{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001420 CHAR_T *command = command_ps;
1421
1422 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001423 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001424 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001425 input_forward();
1426}
1427
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001428static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001429vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001430{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001431 CHAR_T *command = command_ps;
1432
1433 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001434 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001435 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1436 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001437 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001438 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001439 } else if (BB_ispunct(command[cursor])) {
1440 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001441 input_forward();
1442 }
1443
Denis Vlasenko253ce002007-01-22 08:34:44 +00001444 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001445 input_forward();
1446
Denys Vlasenko13028922009-07-12 00:51:15 +02001447 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001448 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001449 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001450 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001451}
1452
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001453static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001454vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001455{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001456 CHAR_T *command = command_ps;
1457
Paul Fox3f11b1b2005-08-04 19:04:46 +00001458 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001459 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001460 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001461 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001462 input_forward();
1463}
1464
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001465static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001466vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001467{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001468 CHAR_T *command = command_ps;
1469
Denis Vlasenko253ce002007-01-22 08:34:44 +00001470 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001471 return;
1472 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001473 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001474 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001475 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001476 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001477 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001478 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001479 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001480 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001481 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001482 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001483 } else if (BB_ispunct(command[cursor])) {
1484 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001485 input_forward();
1486 }
1487}
1488
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001489static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001490vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001491{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001492 CHAR_T *command = command_ps;
1493
1494 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001495 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001496 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001497 input_backward(1);
1498}
1499
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001500static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001501vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001502{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001503 CHAR_T *command = command_ps;
1504
Paul Fox3f11b1b2005-08-04 19:04:46 +00001505 if (cursor <= 0)
1506 return;
1507 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001508 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001509 input_backward(1);
1510 if (cursor <= 0)
1511 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001512 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001513 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001514 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001515 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001516 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001517 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001518 } else if (BB_ispunct(command[cursor])) {
1519 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001520 input_backward(1);
1521 }
1522}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001523#endif
1524
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001525/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1526static void ctrl_left(void)
1527{
1528 CHAR_T *command = command_ps;
1529
1530 while (1) {
1531 CHAR_T c;
1532
1533 input_backward(1);
1534 if (cursor == 0)
1535 break;
1536 c = command[cursor];
1537 if (c != ' ' && !BB_ispunct(c)) {
1538 /* we reached a "word" delimited by spaces/punct.
1539 * go to its beginning */
1540 while (1) {
1541 c = command[cursor - 1];
1542 if (c == ' ' || BB_ispunct(c))
1543 break;
1544 input_backward(1);
1545 if (cursor == 0)
1546 break;
1547 }
1548 break;
1549 }
1550 }
1551}
1552static void ctrl_right(void)
1553{
1554 CHAR_T *command = command_ps;
1555
1556 while (1) {
1557 CHAR_T c;
1558
1559 c = command[cursor];
1560 if (c == BB_NUL)
1561 break;
1562 if (c != ' ' && !BB_ispunct(c)) {
1563 /* we reached a "word" delimited by spaces/punct.
1564 * go to its end + 1 */
1565 while (1) {
1566 input_forward();
1567 c = command[cursor];
1568 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1569 break;
1570 }
1571 break;
1572 }
1573 input_forward();
1574 }
1575}
1576
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001577
1578/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001579 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001580 */
1581
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001582#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1583static void ask_terminal(void)
1584{
1585 /* Ask terminal where is the cursor now.
1586 * lineedit_read_key handles response and corrects
1587 * our idea of current cursor position.
1588 * Testcase: run "echo -n long_line_long_line_long_line",
1589 * then type in a long, wrapping command and try to
1590 * delete it using backspace key.
1591 * Note: we print it _after_ prompt, because
1592 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1593 */
1594 /* Problem: if there is buffered input on stdin,
1595 * the response will be delivered later,
1596 * possibly to an unsuspecting application.
1597 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1598 * Result:
1599 * ~/srcdevel/bbox/fix/busybox.t4 #
1600 * ~/srcdevel/bbox/fix/busybox.t4 #
1601 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1602 * ~/srcdevel/bbox/fix/busybox.t4 #
1603 *
1604 * Checking for input with poll only makes the race narrower,
1605 * I still can trigger it. Strace:
1606 *
1607 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1608 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1609 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1610 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1611 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1612 */
1613 struct pollfd pfd;
1614
1615 pfd.fd = STDIN_FILENO;
1616 pfd.events = POLLIN;
1617 if (safe_poll(&pfd, 1, 0) == 0) {
1618 S.sent_ESC_br6n = 1;
Denys Vlasenko9963fe32010-05-17 04:05:53 +02001619 fputs("\033" "[6n", stdout);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001620 fflush_all(); /* make terminal see it ASAP! */
1621 }
1622}
1623#else
1624#define ask_terminal() ((void)0)
1625#endif
1626
Denis Vlasenko38f63192007-01-22 09:03:07 +00001627#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001628static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001629{
1630 cmdedit_prompt = prmt_ptr;
1631 cmdedit_prmt_len = strlen(prmt_ptr);
1632 put_prompt();
1633}
1634#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001635static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001636{
1637 int prmt_len = 0;
1638 size_t cur_prmt_len = 0;
1639 char flg_not_length = '[';
1640 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001641 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1642 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001643 char c;
1644 char *pbuf;
1645
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001646 cmdedit_prmt_len = 0;
1647
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001648 if (!cwd_buf) {
1649 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001650 }
1651
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001652 cbuf[1] = '\0'; /* never changes */
1653
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001654 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001655 char *free_me = NULL;
1656
1657 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001658 c = *prmt_ptr++;
1659 if (c == '\\') {
1660 const char *cp = prmt_ptr;
1661 int l;
1662
1663 c = bb_process_escape_sequence(&prmt_ptr);
1664 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001665 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001666 break;
1667 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001668
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001669 switch (c) {
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001670# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001671 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001672 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001673 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001674# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001675 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001676 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001677 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001678 break;
1679 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001680 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001681 break;
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001682# if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001683 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001684 /* /home/user[/something] -> ~[/something] */
1685 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001686 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001687 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001688 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1689 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1690 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001691 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001692 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001693 }
1694 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001695# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001696 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001697 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001698 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001699 if (cp != NULL && cp != pbuf)
1700 pbuf += (cp-pbuf) + 1;
1701 break;
1702 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001703 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001704 break;
1705 case 'e': case 'E': /* \e \E = \033 */
1706 c = '\033';
1707 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001708 case 'x': case 'X': {
1709 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001710 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001711 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001712 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001713 buf2[l] = '\0';
1714 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001715 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001716 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001717 break;
1718 }
1719 prmt_ptr++;
1720 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001721 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001722 if (c == 0)
1723 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001724 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001725 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001726 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 case '[': case ']':
1728 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001729 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001730 continue;
1731 }
1732 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001733 } /* switch */
1734 } /* if */
1735 } /* if */
1736 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001737 cur_prmt_len = strlen(pbuf);
1738 prmt_len += cur_prmt_len;
1739 if (flg_not_length != ']')
1740 cmdedit_prmt_len += cur_prmt_len;
1741 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001742 free(free_me);
1743 } /* while */
1744
1745 if (cwd_buf != (char *)bb_msg_unknown)
1746 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001747 cmdedit_prompt = prmt_mem_ptr;
1748 put_prompt();
1749}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001750#endif
1751
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001752static void cmdedit_setwidth(unsigned w, int redraw_flg)
1753{
1754 cmdedit_termw = w;
1755 if (redraw_flg) {
1756 /* new y for current cursor */
1757 int new_y = (cursor + cmdedit_prmt_len) / w;
1758 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001759 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001760 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001761 }
1762}
1763
1764static void win_changed(int nsig)
1765{
Denis Vlasenko55995022008-05-18 22:28:26 +00001766 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001767 get_terminal_width_height(0, &width, NULL);
1768 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1769 if (nsig == SIGWINCH)
1770 signal(SIGWINCH, win_changed); /* rearm ourself */
1771}
1772
Denys Vlasenko020f4062009-05-17 16:44:54 +02001773static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001774{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001775 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001776 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001777#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001778 char unicode_buf[MB_CUR_MAX + 1];
1779 int unicode_idx = 0;
1780#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001781
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001782 while (1) {
1783 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1784 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1785 * insist on full MB_CUR_MAX buffer to declare input like
1786 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1787 *
1788 * Note: read_key sets errno to 0 on success.
1789 */
1790 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1791 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001792#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001793 if (errno == EAGAIN && unicode_idx != 0)
1794 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001795#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001796 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001797 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001798
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001799#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1800 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001801 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001802 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001803 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001804 if (cursor == 0) { /* otherwise it may be bogus */
1805 int col = ((ic >> 32) & 0x7fff) - 1;
1806 if (col > cmdedit_prmt_len) {
1807 cmdedit_x += (col - cmdedit_prmt_len);
1808 while (cmdedit_x >= cmdedit_termw) {
1809 cmdedit_x -= cmdedit_termw;
1810 cmdedit_y++;
1811 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001812 }
1813 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001814 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001815 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001816#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001817
Denys Vlasenko19158a82010-03-26 14:06:56 +01001818#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001819 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001820 wchar_t wc;
1821
1822 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001823 break;
1824 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001825
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001826 unicode_buf[unicode_idx++] = ic;
1827 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001828 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1829 /* Not (yet?) a valid unicode char */
1830 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001831 timeout = 50;
1832 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001833 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001834 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001835 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001836 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001837# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001838 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001839# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001840 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001841# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001842 } else {
1843 /* Valid unicode char, return its code */
1844 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001845 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001846 }
1847#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001848 break;
1849 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001850
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001851 return ic;
1852}
1853
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001854#if ENABLE_UNICODE_BIDI_SUPPORT
1855static int isrtl_str(void)
1856{
1857 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001858
1859 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001860 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001861 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001862}
1863#else
1864# define isrtl_str() 0
1865#endif
1866
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001867/* leave out the "vi-mode"-only case labels if vi editing isn't
1868 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001869#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001870
1871/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001872#undef CTRL
1873#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001874
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001875/* maxsize must be >= 2.
1876 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001877 * -1 on read errors or EOF, or on bare Ctrl-D,
1878 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001879 * >0 length of input string, including terminating '\n'
1880 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001881int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001882{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001883 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001884#if ENABLE_FEATURE_TAB_COMPLETION
1885 smallint lastWasTab = FALSE;
1886#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001887 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001888#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001889 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001890#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001891 struct termios initial_settings;
1892 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001893 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001894
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001895 INIT_S();
1896
1897 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1898 || !(initial_settings.c_lflag & ECHO)
1899 ) {
1900 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001901 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001902 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001903 if (fgets(command, maxsize, stdin) == NULL)
1904 len = -1; /* EOF or error */
1905 else
1906 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001907 DEINIT_S();
1908 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001909 }
1910
Denys Vlasenko28055022010-01-04 20:49:58 +01001911 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001912
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001913// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001914 if (maxsize > MAX_LINELEN)
1915 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001916 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001917
1918 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001919 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001920#if MAX_HISTORY > 0
1921# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001922 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001923 if (state->cnt_history == 0)
1924 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001925# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001926 if (state->flags & DO_HISTORY)
1927 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001928#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001929
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001930 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001931 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001932 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001933#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001934 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1935#else
Mark Whitley4e338752001-01-26 20:42:23 +00001936 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001937 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001938#endif
1939#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001940
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001941 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001942 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1943 /* Turn off echoing and CTRL-C, so we can trap it */
1944 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001945 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001946 new_settings.c_cc[VMIN] = 1;
1947 new_settings.c_cc[VTIME] = 0;
1948 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001949#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001950# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001951#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001952 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001953 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001954
Eric Andersen6faae7d2001-02-16 20:09:17 +00001955 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001956 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1957 win_changed(0); /* do initial resizing */
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02001958#if ENABLE_USERNAME_OR_HOMEDIR
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001959 {
1960 struct passwd *entry;
1961
1962 entry = getpwuid(geteuid());
1963 if (entry) {
1964 user_buf = xstrdup(entry->pw_name);
1965 home_pwd_buf = xstrdup(entry->pw_dir);
1966 }
1967 }
1968#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001969
1970#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001971 for (i = 0; i <= MAX_HISTORY; i++)
1972 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001973 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1974#endif
1975
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001976 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001977 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001978 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001979
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001980 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001981 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001982 /*
1983 * The emacs and vi modes share much of the code in the big
1984 * command loop. Commands entered when in vi's command mode
1985 * (aka "escape mode") get an extra bit added to distinguish
1986 * them - this keeps them from being self-inserted. This
1987 * clutters the big switch a bit, but keeps all the code
1988 * in one place.
1989 */
1990 enum {
1991 VI_CMDMODE_BIT = 0x40000000,
1992 /* 0x80000000 bit flags KEYCODE_xxx */
1993 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001994 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001995
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001996 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001997 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001998
Denis Vlasenko38f63192007-01-22 09:03:07 +00001999#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002000 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002001 if (vi_cmdmode) {
2002 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2003 * change ic if it contains one of them: */
2004 ic |= VI_CMDMODE_BIT;
2005 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002006#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002007
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002008 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002009 case '\n':
2010 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002011 vi_case('\n'|VI_CMDMODE_BIT:)
2012 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002013 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002014 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002015 break_out = 1;
2016 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002017 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002018 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002019 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002020 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002021 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002022 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002023 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002024 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002025 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002026 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002027 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002028 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002029 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002030 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002031 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002032 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002033 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002034 vi_case('l'|VI_CMDMODE_BIT:)
2035 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002036 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002037 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002038 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002039 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002040 if (!isrtl_str())
2041 input_backspace();
2042 else
2043 input_delete(0);
2044 break;
2045 case KEYCODE_DELETE:
2046 if (!isrtl_str())
2047 input_delete(0);
2048 else
2049 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002050 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002051#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002052 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002053 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002054 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002055#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002056 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002057 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002058 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002059 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002060 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002061 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002062 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002063 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002064 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002065 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002066 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002067 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002068#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002069 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002070 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2071 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002072 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002073 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002074 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002075 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002076 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002077 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2078 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002079 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002080 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002081 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002082 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002083#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002084 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002085 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002086 /* Control-U -- Clear line before cursor */
2087 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002088 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002089 memmove(command_ps, command_ps + cursor,
2090 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002091 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002092 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002093 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002094 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002095 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002096 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002097 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002098 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002099 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002100 input_backspace();
2101 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002102
Denis Vlasenko38f63192007-01-22 09:03:07 +00002103#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002104 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002105 vi_cmdmode = 0;
2106 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002107 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002108 input_backward(cursor);
2109 vi_cmdmode = 0;
2110 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002111 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002112 input_forward();
2113 vi_cmdmode = 0;
2114 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002115 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002116 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002117 vi_cmdmode = 0;
2118 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002119 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002120 input_delete(1);
2121 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002122 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002123 if (cursor > 0) {
2124 input_backward(1);
2125 input_delete(1);
2126 }
2127 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002128 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002129 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002130 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002131 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002132 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002133 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002134 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002135 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002136 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002137 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002138 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002139 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002140 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002141 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002142 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002143 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002144 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002145 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002146 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002147 vi_cmdmode = 0;
2148 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002149 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002150 goto clear_to_eol;
2151
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002152 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002153 vi_cmdmode = 0;
2154 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002155 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002156 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002157
Denys Vlasenko020f4062009-05-17 16:44:54 +02002158 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002159 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002160 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002161 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002162 input_backward(cursor);
2163 goto clear_to_eol;
2164 break;
2165 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002166
2167 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002168 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002169 case 'w':
2170 case 'W':
2171 case 'e':
2172 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002173 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002174 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002175 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002176 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002177 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002178 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002179 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002180 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002181 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002182 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002183 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002184 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002185 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002186 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002187 break;
2188 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002189 nc = cursor;
2190 input_backward(cursor - sc);
2191 while (nc-- > cursor)
2192 input_delete(1);
2193 break;
2194 case 'b': /* "db", "cb" */
2195 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002196 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002197 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002198 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002199 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002200 while (sc-- > cursor)
2201 input_delete(1);
2202 break;
2203 case ' ': /* "d ", "c " */
2204 input_delete(1);
2205 break;
2206 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002207 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002208 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002209 input_delete(1);
2210 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002211 }
2212 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002213 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002214 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002215 input_forward();
2216 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002217 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002218 put();
2219 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002220 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002221//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002222 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002223 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002224 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002225 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002226 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002227 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002228 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002229 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002230 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002231 }
2232 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002233 case '\x1b': /* ESC */
2234 if (state->flags & VI_MODE) {
2235 /* insert mode --> command mode */
2236 vi_cmdmode = 1;
2237 input_backward(1);
2238 }
2239 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002240#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002241
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002242#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002243 case KEYCODE_UP:
2244 if (get_previous_history())
2245 goto rewrite_line;
2246 beep();
2247 break;
2248 case KEYCODE_DOWN:
2249 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002250 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002251 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002252 /* Rewrite the line with the selected history item */
2253 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002254 command_len = load_string(state->history[state->cur_history] ?
2255 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002256 /* redraw and go to eol (bol, in vi) */
2257 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2258 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002259#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002260 case KEYCODE_RIGHT:
2261 input_forward();
2262 break;
2263 case KEYCODE_LEFT:
2264 input_backward(1);
2265 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002266 case KEYCODE_CTRL_LEFT:
2267 ctrl_left();
2268 break;
2269 case KEYCODE_CTRL_RIGHT:
2270 ctrl_right();
2271 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002272 case KEYCODE_HOME:
2273 input_backward(cursor);
2274 break;
2275 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002276 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002277 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002278
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002279 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002280 if (initial_settings.c_cc[VINTR] != 0
2281 && ic_raw == initial_settings.c_cc[VINTR]
2282 ) {
2283 /* Ctrl-C (usually) - stop gathering input */
2284 goto_new_line();
2285 command_len = 0;
2286 break_out = -1; /* "do not append '\n'" */
2287 break;
2288 }
2289 if (initial_settings.c_cc[VEOF] != 0
2290 && ic_raw == initial_settings.c_cc[VEOF]
2291 ) {
2292 /* Ctrl-D (usually) - delete one character,
2293 * or exit if len=0 and no chars to delete */
2294 if (command_len == 0) {
2295 errno = 0;
2296#if ENABLE_FEATURE_EDITING_VI
2297 prepare_to_die:
2298#endif
2299 break_out = command_len = -1;
2300 break;
2301 }
2302 input_delete(0);
2303 break;
2304 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002305// /* Control-V -- force insert of next char */
2306// if (c == CTRL('V')) {
2307// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2308// goto prepare_to_die;
2309// if (c == 0) {
2310// beep();
2311// break;
2312// }
2313// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002314 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002315 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2316 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002317 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002318 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002319 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002320 * Otherwise, we are here if ic is a
2321 * control char or an unhandled ESC sequence,
2322 * which is also ignored.
2323 */
2324 break;
2325 }
2326 if ((int)command_len >= (maxsize - 2)) {
2327 /* Not enough space for the char and EOL */
2328 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002329 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002330
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002331 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002332 if (cursor == (command_len - 1)) {
2333 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002334 command_ps[cursor] = ic;
2335 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002336 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002337 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002338 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002339 } else {
2340 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002341 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002342
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002343 memmove(command_ps + sc + 1, command_ps + sc,
2344 (command_len - sc) * sizeof(command_ps[0]));
2345 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002346 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2347 if (!isrtl_str())
2348 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002349 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002350 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002351 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002352 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002353 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002354 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002355
2356 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002357 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002358
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002359#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002360 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002361 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002362#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002363 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002364
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002365#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002366 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002367 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2368 * We sent "ESC [ 6 n", but got '\n' first, and
2369 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2370 * It's bad already and not much can be done with it
2371 * (it _will_ be visible for the next process to read stdin),
2372 * but without this delay it even shows up on the screen
2373 * as garbage because we restore echo settings with tcsetattr
2374 * before it comes in. UGLY!
2375 */
2376 usleep(20*1000);
2377 }
2378#endif
2379
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002380/* End of bug-catching "command_must_not_be_used" trick */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002381#undef command
2382
Denys Vlasenko19158a82010-03-26 14:06:56 +01002383#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002384 command[0] = '\0';
2385 if (command_len > 0)
2386 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002387 free(command_ps);
2388#endif
2389
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002390 if (command_len > 0)
2391 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002392
Eric Andersen27bb7902003-12-23 20:24:51 +00002393 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002394 command[command_len++] = '\n';
2395 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002396 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002397
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002398#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002399 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002400#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002401
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002402 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002403 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002404 /* restore SIGWINCH handler */
2405 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002406 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002407
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002408 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002409 DEINIT_S();
2410
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002411 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002412}
2413
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002414#else /* !FEATURE_EDITING */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002415
2416#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002417int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002418{
2419 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002420 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002421 fgets(command, maxsize, stdin);
2422 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002423}
2424
Denys Vlasenkob9e35dc2010-07-18 22:21:24 +02002425#endif /* !FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002426
2427
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002428/*
2429 * Testing
2430 */
2431
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002432#ifdef TEST
2433
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002434#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002435
2436const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002437
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002438int main(int argc, char **argv)
2439{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002440 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002441 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002442#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002443 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2444 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2445 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002446#else
2447 "% ";
2448#endif
2449
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002450 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002451 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002452 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002453 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002454 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002455 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002456 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002457 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002458 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002459 return 0;
2460}
2461
Eric Andersenc470f442003-07-28 09:56:35 +00002462#endif /* TEST */