blob: 18664b8c1293c2b17f203758c7b9c48d3634ead0 [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
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000056#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000058#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000059#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000060#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
61#define IF_FEATURE_GETUSERNAME_AND_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
Denys Vlasenko94043e82010-05-11 14:49:13 +020065#define SEQ_CLEAR_TILL_END_OF_SCREEN "\033[J"
66//#define SEQ_CLEAR_TILL_END_OF_LINE "\033[K"
67
68
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020069#undef CHAR_T
Denys Vlasenko19158a82010-03-26 14:06:56 +010070#if ENABLE_UNICODE_SUPPORT
Tomas Heinricha659b812010-04-29 13:43:39 +020071# define BB_NUL ((wchar_t)0)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020072# define CHAR_T wchar_t
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010073static bool BB_isspace(CHAR_T c) { return ((unsigned)c < 256 && isspace(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010074# if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010075static bool BB_isalnum(CHAR_T c) { return ((unsigned)c < 256 && isalnum(c)); }
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010076# endif
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +010077static bool BB_ispunct(CHAR_T c) { return ((unsigned)c < 256 && ispunct(c)); }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020078# undef isspace
79# undef isalnum
80# undef ispunct
81# undef isprint
82# define isspace isspace_must_not_be_used
83# define isalnum isalnum_must_not_be_used
84# define ispunct ispunct_must_not_be_used
85# define isprint isprint_must_not_be_used
86#else
87# define BB_NUL '\0'
88# define CHAR_T char
89# define BB_isspace(c) isspace(c)
90# define BB_isalnum(c) isalnum(c)
91# define BB_ispunct(c) ispunct(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020092#endif
93
94
Tomas Heinricha659b812010-04-29 13:43:39 +020095# if ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichb8909c52010-05-16 20:46:53 +020096# define unicode_mark_raw_byte(wc) ((wc) | 0x20000000)
97# define unicode_is_raw_byte(wc) ((wc) & 0x20000000)
Tomas Heinricha659b812010-04-29 13:43:39 +020098# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +020099# define unicode_is_raw_byte(wc) 0
Tomas Heinricha659b812010-04-29 13:43:39 +0200100# endif
101
102
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103enum {
104 /* We use int16_t for positions, need to limit line len */
105 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000106 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107 : 0x7ff0
108};
Robert Griebl350d26b2002-12-03 22:45:46 +0000109
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
111static const char null_str[] ALIGN1 = "";
112#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000113
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000114/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000115struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000117
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000118 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
119 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000120
Denys Vlasenko020f4062009-05-17 16:44:54 +0200121 unsigned cmdedit_x; /* real x (col) terminal position */
122 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000123 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000124
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000125 unsigned cursor;
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +0200126 int command_len; /* must be signed */
127 /* signed maxsize: we want x in "if (x > S.maxsize)"
Denys Vlasenko044b1802009-07-12 02:50:35 +0200128 * to _not_ be promoted to unsigned */
129 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200130 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000131
132 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000133#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000134 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000135#endif
136
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000137#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000138 char *user_buf;
139 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000140#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000141
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#if ENABLE_FEATURE_TAB_COMPLETION
143 char **matches;
144 unsigned num_matches;
145#endif
146
147#if ENABLE_FEATURE_EDITING_VI
148#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200149 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000150 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200151 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000152#endif
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100153#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +0100154 smallint sent_ESC_br6n;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +0100155#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156
157 /* Formerly these were big buffers on stack: */
158#if ENABLE_FEATURE_TAB_COMPLETION
159 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
160 char input_tab__matchBuf[MAX_LINELEN];
161 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
162 int16_t find_match__pos_buf[MAX_LINELEN + 1];
163#endif
164};
165
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000166/* See lineedit_ptr_hack.c */
167extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000168
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000169#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000170#define state (S.state )
171#define cmdedit_termw (S.cmdedit_termw )
172#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
173#define cmdedit_x (S.cmdedit_x )
174#define cmdedit_y (S.cmdedit_y )
175#define cmdedit_prmt_len (S.cmdedit_prmt_len)
176#define cursor (S.cursor )
177#define command_len (S.command_len )
178#define command_ps (S.command_ps )
179#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000181#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000182#define home_pwd_buf (S.home_pwd_buf )
183#define matches (S.matches )
184#define num_matches (S.num_matches )
185#define delptr (S.delptr )
186#define newdelflag (S.newdelflag )
187#define delbuf (S.delbuf )
188
189#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000190 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000191 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000192 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000193 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
194 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000195} while (0)
196static void deinit_S(void)
197{
198#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000199 /* This one is allocated only if FANCY_PROMPT is on
200 * (otherwise it points to verbatim prompt (NOT malloced) */
201 free((char*)cmdedit_prompt);
202#endif
203#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
204 free(user_buf);
205 if (home_pwd_buf != null_str)
206 free(home_pwd_buf);
207#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000208 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000209}
210#define DEINIT_S() deinit_S()
211
Denis Vlasenko2c844952008-04-25 18:44:35 +0000212
Denys Vlasenko19158a82010-03-26 14:06:56 +0100213#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200214static size_t load_string(const char *src, int maxsize)
215{
216 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
217 if (len < 0)
218 len = 0;
Tomas Heinricha659b812010-04-29 13:43:39 +0200219 command_ps[len] = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200220 return len;
221}
Tomas Heinricha659b812010-04-29 13:43:39 +0200222static unsigned save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200223{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200224# if !ENABLE_UNICODE_PRESERVE_BROKEN
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200225 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
226 if (len < 0)
227 len = 0;
228 dst[len] = '\0';
229 return len;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200230# else
Tomas Heinricha659b812010-04-29 13:43:39 +0200231 unsigned dstpos = 0;
232 unsigned srcpos = 0;
233
234 maxsize--;
235 while (dstpos < maxsize) {
236 wchar_t wc;
237 int n = srcpos;
238 while ((wc = command_ps[srcpos]) != 0
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200239 && !unicode_is_raw_byte(wc)
Tomas Heinricha659b812010-04-29 13:43:39 +0200240 ) {
241 srcpos++;
242 }
243 command_ps[srcpos] = 0;
244 n = wcstombs(dst + dstpos, command_ps + n, maxsize - dstpos);
245 if (n < 0) /* should not happen */
246 break;
247 dstpos += n;
248 if (wc == 0) /* usually is */
249 break;
250 /* We do have invalid byte here! */
251 command_ps[srcpos] = wc; /* restore it */
252 srcpos++;
253 if (dstpos == maxsize)
254 break;
255 dst[dstpos++] = (char) wc;
256 }
257 dst[dstpos] = '\0';
258 return dstpos;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200259# endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200260}
261/* I thought just fputwc(c, stdout) would work. But no... */
262static void BB_PUTCHAR(wchar_t c)
263{
264 char buf[MB_CUR_MAX + 1];
265 mbstate_t mbst = { 0 };
Tomas Heinricha659b812010-04-29 13:43:39 +0200266 ssize_t len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200267
Tomas Heinricha659b812010-04-29 13:43:39 +0200268 len = wcrtomb(buf, c, &mbst);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200269 if (len > 0) {
270 buf[len] = '\0';
271 fputs(buf, stdout);
272 }
273}
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200274# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
275static wchar_t adjust_width_and_validate_wc(unsigned *width_adj, wchar_t wc)
276# else
277static wchar_t adjust_width_and_validate_wc(wchar_t wc)
278# define adjust_width_and_validate_wc(width_adj, wc) \
279 ((*(width_adj))++, adjust_width_and_validate_wc(wc))
280# endif
281{
282 int w = 1;
283
284 if (unicode_status == UNICODE_ON) {
Denys Vlasenko26e2c1d2010-05-16 21:15:03 +0200285 if (wc > CONFIG_LAST_SUPPORTED_WCHAR) {
286 /* note: also true for unicode_is_raw_byte(wc) */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200287 goto subst;
288 }
289 w = wcwidth(wc);
290 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
291 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
292 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
293 ) {
294 subst:
295 w = 1;
296 wc = CONFIG_SUBST_WCHAR;
297 }
298 }
299
300# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
301 *width_adj += w;
302#endif
303 return wc;
304}
305#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200306static size_t load_string(const char *src, int maxsize)
307{
308 safe_strncpy(command_ps, src, maxsize);
309 return strlen(command_ps);
310}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200311# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200312static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200313{
314 safe_strncpy(dst, command_ps, maxsize);
315}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200316# endif
317# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200318/* Should never be called: */
319int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200320#endif
321
322
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000323/* Put 'command_ps[cursor]', cursor++.
324 * Advance cursor on screen. If we reached right margin, scroll text up
325 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000326#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200327static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000328{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200329 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200330 unsigned width = 0;
331 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200333 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000334 /* erase character after end of input string */
335 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200336 } else {
337 /* advance cursor only if we aren't at the end yet */
338 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200339 if (unicode_status == UNICODE_ON) {
340 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
341 c = adjust_width_and_validate_wc(&cmdedit_x, c);
342 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
343 } else {
344 cmdedit_x++;
345 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000346 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200347
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200348 ofs_to_right = cmdedit_x - cmdedit_termw;
349 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
350 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200351 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000352 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200353
354 if (ofs_to_right >= 0) {
355 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000356#if HACK_FOR_WRONG_WIDTH
357 /* This works better if our idea of term width is wrong
358 * and it is actually wider (often happens on serial lines).
359 * Printing CR,LF *forces* cursor to next line.
360 * OTOH if terminal width is correct AND terminal does NOT
361 * have automargin (IOW: it is moving cursor to next line
362 * by itself (which is wrong for VT-10x terminals)),
363 * this will break things: there will be one extra empty line */
364 puts("\r"); /* + implicit '\n' */
365#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200366 /* VT-10x terminals don't wrap cursor to next line when last char
367 * on the line is printed - cursor stays "over" this char.
368 * Need to print _next_ char too (first one to appear on next line)
369 * to make cursor move down to next line.
370 */
371 /* Works ok only if cmdedit_termw is correct. */
372 c = command_ps[cursor];
373 if (c == BB_NUL)
374 c = ' ';
375 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000376 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000377#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200378 cmdedit_y++;
379 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
380 width = 0;
381 } else { /* ofs_to_right > 0 */
382 /* wide char c didn't fit on prev line */
383 BB_PUTCHAR(c);
384 }
385 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000386 }
Erik Andersen13456d12000-03-16 08:09:57 +0000387}
388
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000389/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200390static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000391{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000392 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200393 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000394}
395
396/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000397static void goto_new_line(void)
398{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200399 put_till_end_and_adv_cursor();
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200400 if (cmdedit_x != 0)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000401 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000402}
403
Rob Landley88621d72006-08-29 19:41:06 +0000404static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000405{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000406 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000407}
408
Denys Vlasenko248c3242010-05-17 00:45:44 +0200409static void put_prompt(void)
410{
411 unsigned w;
412
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200413 fputs(cmdedit_prompt, stdout);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200414 fflush_all();
415 cursor = 0;
416 w = cmdedit_termw; /* read volatile var once */
417 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
418 cmdedit_x = cmdedit_prmt_len % w;
419}
420
Eric Andersenaff114c2004-04-14 17:51:38 +0000421/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000422/* (optimized for slow terminals) */
423static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000424{
425 if (num > cursor)
426 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200427 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000428 return;
429 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000430
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200431 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
432 && unicode_status == UNICODE_ON
433 ) {
434 /* correct NUM to be equal to _screen_ width */
435 int n = num;
436 num = 0;
437 while (--n >= 0)
438 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
439 if (num == 0)
440 return;
441 }
442
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000443 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000444 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000445 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000446 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000447 * Also gets miscompiled for ARM users
448 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000449 * printf(("\b\b\b\b" + 4) - num);
450 * return;
451 */
452 do {
453 bb_putchar('\b');
454 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000455 return;
456 }
457 printf("\033[%uD", num);
458 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000459 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000460
461 /* Need to go one or more lines up */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200462 if (ENABLE_UNICODE_WIDE_WCHARS) {
463 /* With wide chars, it is hard to "backtrack"
464 * and reliably figure out where to put cursor.
465 * Example (<> is a wide char; # is an ordinary char, _ cursor):
466 * |prompt: <><> |
467 * |<><><><><><> |
468 * |_ |
469 * and user presses left arrow. num = 1, cmdedit_x = 0,
470 * We need to go up one line, and then - how do we know that
471 * we need to go *10* positions to the right? Because
472 * |prompt: <>#<>|
473 * |<><><>#<><><>|
474 * |_ |
475 * in this situation we need to go *11* positions to the right.
476 *
477 * A simpler thing to do is to redraw everything from the start
478 * up to new cursor position (which is already known):
479 */
480 unsigned sv_cursor;
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200481 /* go to 1st column; go up to first line */
482 printf("\r" "\033[%uA", cmdedit_y);
Denys Vlasenko248c3242010-05-17 00:45:44 +0200483 cmdedit_y = 0;
484 sv_cursor = cursor;
485 put_prompt(); /* sets cursor to 0 */
486 while (cursor < sv_cursor)
487 put_cur_glyph_and_inc_cursor();
488 } else {
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200489 int lines_up;
490 unsigned width;
491 /* num = chars to go back from the beginning of current line: */
Denys Vlasenko248c3242010-05-17 00:45:44 +0200492 num -= cmdedit_x;
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200493 width = cmdedit_termw; /* read volatile var once */
494 /* num=1...w: one line up, w+1...2w: two, etc: */
495 lines_up = 1 + (num - 1) / width;
496 cmdedit_x = (width * cmdedit_y - num) % width;
497 cmdedit_y -= lines_up;
498 /* go to 1st column; go up */
499 printf("\r" "\033[%uA", lines_up);
500 /* go to correct column.
Denys Vlasenkobbf1aa12010-05-17 12:33:13 +0200501 * xterm, konsole, Linux VT interpret 0 as 1 below! wow.
502 * need to *make sure* we skip it if cmdedit_x == 0 */
Denys Vlasenko1118d9b2010-05-17 12:30:44 +0200503 if (cmdedit_x)
504 printf("\033[%uC", cmdedit_x);
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000505 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000506}
507
Eric Andersenaff114c2004-04-14 17:51:38 +0000508/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000509static void redraw(int y, int back_cursor)
510{
Denys Vlasenko9963fe32010-05-17 04:05:53 +0200511 if (y > 0) /* up y lines */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200512 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000513 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000514 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200515 put_till_end_and_adv_cursor();
516 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000517 input_backward(back_cursor);
518}
519
Paul Fox3f11b1b2005-08-04 19:04:46 +0000520/* Delete the char in front of the cursor, optionally saving it
521 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000522#if !ENABLE_FEATURE_EDITING_VI
523static void input_delete(void)
524#define input_delete(save) input_delete()
525#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000526static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000527#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000528{
Mark Whitley4e338752001-01-26 20:42:23 +0000529 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000530
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000531 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000532 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000533
Denis Vlasenko38f63192007-01-22 09:03:07 +0000534#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000535 if (save) {
536 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000537 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000538 newdelflag = 0;
539 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000540 if ((delptr - delbuf) < DELBUFSIZ)
541 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000542 }
543#endif
544
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200545 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200546 /* (command_len + 1 [because of NUL]) - (j + 1)
547 * simplified into (command_len - j) */
548 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000549 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200550 put_till_end_and_adv_cursor();
551 /* Last char is still visible, erase it (and more) */
552 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000553 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000554}
555
Denis Vlasenko38f63192007-01-22 09:03:07 +0000556#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557static void put(void)
558{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000559 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000560 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000561
Paul Fox3f11b1b2005-08-04 19:04:46 +0000562 if (j == 0)
563 return;
564 ocursor = cursor;
565 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200566 memmove(command_ps + cursor + j, command_ps + cursor,
567 (command_len - cursor + 1) * sizeof(command_ps[0]));
568 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000569 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200570 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000571 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000572}
573#endif
574
Mark Whitley4e338752001-01-26 20:42:23 +0000575/* Delete the char in back of the cursor */
576static void input_backspace(void)
577{
578 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000579 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000580 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000581 }
582}
583
Eric Andersenaff114c2004-04-14 17:51:38 +0000584/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000585static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000586{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000587 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200588 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000589}
590
Denis Vlasenko38f63192007-01-22 09:03:07 +0000591#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000592
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000593static void free_tab_completion_data(void)
594{
595 if (matches) {
596 while (num_matches)
597 free(matches[--num_matches]);
598 free(matches);
599 matches = NULL;
600 }
601}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000602
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000603static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000604{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000605 matches = xrealloc_vector(matches, 4, num_matches);
606 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000607 num_matches++;
608}
609
Denis Vlasenko38f63192007-01-22 09:03:07 +0000610#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000611static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000612{
613 struct passwd *entry;
614 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000615
Eric Andersenc470f442003-07-28 09:56:35 +0000616 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000617 userlen = strlen(ud);
618
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000619 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000620 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000621 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000622
Eric Andersenc470f442003-07-28 09:56:35 +0000623 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 home = home_pwd_buf;
625 } else {
626 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000627 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000629 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000630 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000631 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000632 ud = temp;
633 if (entry)
634 home = entry->pw_dir;
635 }
636 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000637 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000638 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000639 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000640 }
641 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000642 } else {
643 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000644 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000645 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000646 struct passwd pwd;
647 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000648
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000649 setpwent();
650 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000651 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000652 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
653 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000654 }
655 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000656 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000657 }
658}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000659#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000660
661enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000662 FIND_EXE_ONLY = 0,
663 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000664 FIND_FILE_ONLY = 2,
665};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000666
Mark Whitley4e338752001-01-26 20:42:23 +0000667static int path_parse(char ***p, int flags)
668{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000669 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000670 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000671 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000672 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000673
Mark Whitley4e338752001-01-26 20:42:23 +0000674 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000675 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000676 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000677
678 if (state->flags & WITH_PATH_LOOKUP)
679 pth = state->path_lookup;
680 else
681 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000682 /* PATH=<empty> or PATH=:<empty> */
683 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
684 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000685
Denis Vlasenko253ce002007-01-22 08:34:44 +0000686 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000687 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000688 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000689 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000690 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000691 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000692 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000693 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000694 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000695 }
696
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000697 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000698 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000699 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000700 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000701 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000702 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000703 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000704 *tmp++ = '\0'; /* ':' -> '\0' */
705 if (*tmp == '\0')
706 break; /* :<empty> */
707 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000708 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000709 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000710 return npth;
711}
712
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000713static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000714{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000715 DIR *dir;
716 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717 struct stat st;
718 char *path1[1];
719 char **paths = path1;
720 int npaths;
721 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000722 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000723 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000724/* char dirbuf[MAX_LINELEN]; */
725#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000726
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000727 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000728 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000729
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000730 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000731 /* no dir, if flags==EXE_ONLY - get paths, else "." */
732 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000733 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000734 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000735 /* dirbuf = ".../.../.../" */
736 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000737#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000738 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000739 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000740#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000741 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000742 /* point to 'l' in "..../last_component" */
743 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000744 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000745
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000746 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000747 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000748 if (!dir)
749 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000750
751 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000752 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000753 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000755 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000757 continue;
758 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000759 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000760 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000761 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000762 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000763 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000764 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000765 /* hmm, remove in progress? */
766 /* NB: stat() first so that we see is it a directory;
767 * but if that fails, use lstat() so that
768 * we still match dangling links */
769 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000770 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000771 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000772 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000773 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000774
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000775 len1 = strlen(found);
776 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000777 found[len1] = '\0';
778 found[len1+1] = '\0';
779
Mark Whitley4e338752001-01-26 20:42:23 +0000780 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000781 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000782 if (found[len1-1] != '/') {
783 found[len1] = '/';
784 }
Mark Whitley4e338752001-01-26 20:42:23 +0000785 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000787 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000788 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000789 }
Mark Whitley4e338752001-01-26 20:42:23 +0000790 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000791 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000792 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000793 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000794 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000795 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000796 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000797 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000798 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000799 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 free(paths);
801 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000802#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000803}
Erik Andersenf0657d32000-04-12 17:49:52 +0000804
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200805/* QUOT is used on elements of int_buf[], which are bytes,
806 * not Unicode chars. Therefore it works correctly even in Unicode mode.
807 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000808#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000809
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200810#define int_buf (S.find_match__int_buf)
811#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200812/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200813static void collapse_pos(int is, int in)
814{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200815 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
816 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200817}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200818static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000819{
820 int i, j;
821 int command_mode;
822 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200823/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000824/* int16_t int_buf[MAX_LINELEN + 1]; */
825/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000826
827 /* set to integer dimension characters and own positions */
828 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000829 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000830 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200831 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000832 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000833 }
834 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000835 }
836
837 /* mask \+symbol and convert '\t' to ' ' */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200838 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000839 if (matchBuf[i] == '\\') {
840 collapse_pos(j, j + 1);
841 int_buf[j] |= QUOT;
842 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200844 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000845 /* mask "symbols" or 'symbols' */
846 c2 = 0;
847 for (i = 0; int_buf[i]; i++) {
848 c = int_buf[i];
849 if (c == '\'' || c == '"') {
850 if (c2 == 0)
851 c2 = c;
852 else {
853 if (c == c2)
854 c2 = 0;
855 else
856 int_buf[i] |= QUOT;
857 }
858 } else if (c2 != 0 && c != '$')
859 int_buf[i] |= QUOT;
860 }
861
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000862 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000863 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
864 for (i = 0; int_buf[i]; i++) {
865 c = int_buf[i];
866 c2 = int_buf[i + 1];
867 j = i ? int_buf[i - 1] : -1;
868 command_mode = 0;
869 if (c == ';' || c == '&' || c == '|') {
870 command_mode = 1 + (c == c2);
871 if (c == '&') {
872 if (j == '>' || j == '<')
873 command_mode = 0;
874 } else if (c == '|' && j == '>')
875 command_mode = 0;
876 }
877 if (command_mode) {
878 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200879 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000880 }
881 }
882 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200883 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000884 if (int_buf[i] == '`') {
885 for (j = i + 1; int_buf[j]; j++)
886 if (int_buf[j] == '`') {
887 collapse_pos(i, j + 1);
888 j = 0;
889 break;
890 }
891 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200892 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000893 collapse_pos(0, i + 1);
894 break;
895 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200896 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000897 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200898 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000899
900 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200901 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200903 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000904 if (int_buf[i] == '(' || int_buf[i] == '{') {
905 if (int_buf[i] == '(')
906 c++;
907 else
908 c2++;
909 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200910 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000911 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200912 }
913 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000914 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
915 if (int_buf[i] == ')')
916 c--;
917 else
918 c2--;
919 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200920 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000921 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200922 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000923
924 /* skip first not quote space */
925 for (i = 0; int_buf[i]; i++)
926 if (int_buf[i] != ' ')
927 break;
928 if (i)
929 collapse_pos(0, i);
930
931 /* set find mode for completion */
932 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200933 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000934 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
935 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000936 && matchBuf[pos_buf[0]] == 'c'
937 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000938 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000940 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000941 command_mode = FIND_FILE_ONLY;
942 break;
943 }
944 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200945 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000946 for (i = 0; int_buf[i]; i++)
947 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948 /* find last word */
949 for (--i; i >= 0; i--) {
950 c = int_buf[i];
951 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
952 collapse_pos(0, i + 1);
953 break;
954 }
955 }
956 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000957 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
958 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000959 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000960 while ((int_buf[i] & ~QUOT) == '/'
961 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
962 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000963 i++;
964 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000965
966 /* set only match and destroy quotes */
967 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000968 for (c = 0; pos_buf[i] >= 0; i++) {
969 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000970 j = pos_buf[i] + 1;
971 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000972 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000973 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000974 *len_with_quotes = j ? j - pos_buf[0] : 0;
975
976 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200977}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000978#undef int_buf
979#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000980
Glenn L McGrath4d001292003-01-06 01:11:50 +0000981/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000982 * display by column (original idea from ls applet,
983 * very optimized by me :)
984 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000985static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000986{
987 int ncols, row;
988 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000989 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000990 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000991 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000992
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200993 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000994 for (row = 0; row < nrows; row++) {
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100995 l = unicode_strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000996 if (column_width < l)
997 column_width = l;
998 }
999 column_width += 2; /* min space for columns */
1000 ncols = cmdedit_termw / column_width;
1001
1002 if (ncols > 1) {
1003 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001004 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +00001005 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +00001006 } else {
1007 ncols = 1;
1008 }
1009 for (row = 0; row < nrows; row++) {
1010 int n = row;
1011 int nc;
1012
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001013 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001014 printf("%s%-*s", matches[n],
Denys Vlasenko9f93d622010-01-24 07:44:03 +01001015 (int)(column_width - unicode_strlen(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001016 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001017 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +00001018 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001019 }
1020}
1021
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001022static char *add_quote_for_spec_chars(char *found)
1023{
1024 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001025 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001026
1027 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001028 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001029 s[l++] = '\\';
1030 s[l++] = *found++;
1031 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001032 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001033 return s;
1034}
1035
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001036/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001037static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001038{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001039 if (!(state->flags & TAB_COMPLETION))
1040 return;
1041
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001042 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001043 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001044 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001045/* char matchBuf[MAX_LINELEN]; */
1046#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001047 int find_type;
1048 int recalc_pos;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001049#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001050 /* cursor pos in command converted to multibyte form */
1051 int cursor_mb;
1052#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001053
Eric Andersenc470f442003-07-28 09:56:35 +00001054 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001055
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001056 /* Make a local copy of the string --
1057 * up to the position of the cursor */
1058 save_string(matchBuf, cursor + 1);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001059#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001060 cursor_mb = strlen(matchBuf);
1061#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001062 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001063
1064 find_type = find_match(matchBuf, &recalc_pos);
1065
1066 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001067 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001068
Denis Vlasenko38f63192007-01-22 09:03:07 +00001069#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001070 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001071 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001072 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001073 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001074 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001075#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001076 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001077 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001078 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001079 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001080 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001081 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001082 unsigned i;
1083 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001084 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001085 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001086 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001087 if (strcmp(matches[i], matches[i+1]) == 0) {
1088 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001089 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001090 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001091 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001092 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001093 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001094 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001095 matches[n] = matches[i];
1096 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001097 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001098 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001099 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001100 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001101 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001102 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001103 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001104 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001105 for (tmp = tmp1; *tmp; tmp++) {
1106 for (len_found = 1; len_found < num_matches; len_found++) {
1107 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001108 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001109 break;
1110 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001111 }
1112 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001113 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001114 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001115 return;
1116 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001117 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001118 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001119 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001120 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001121 /* for next completion current found */
1122 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001123
1124 len_found = strlen(tmp);
1125 if (tmp[len_found-1] != '/') {
1126 tmp[len_found] = ' ';
1127 tmp[len_found+1] = '\0';
1128 }
Mark Whitley4e338752001-01-26 20:42:23 +00001129 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001130
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001131 len_found = strlen(tmp);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001132#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001133 /* have space to place the match? */
1134 /* The result consists of three parts with these lengths: */
1135 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1136 /* it simplifies into: */
1137 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1138 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001139 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001140 /* add match and tail */
1141 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001142 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001143 /* new pos */
1144 recalc_pos = cursor - recalc_pos + len_found;
1145 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001146 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001147 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001148#else
1149 {
1150 char command[MAX_LINELEN];
1151 int len = save_string(command, sizeof(command));
1152 /* have space to place the match? */
1153 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1154 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1155 /* save tail */
1156 strcpy(matchBuf, command + cursor_mb);
1157 /* where do we want to have cursor after all? */
1158 strcpy(&command[cursor_mb - recalc_pos], tmp);
1159 len = load_string(command, S.maxsize);
1160 /* add match and tail */
1161 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1162 command_len = load_string(command, S.maxsize);
1163 /* write out the matched command */
1164 redraw(cmdedit_y, command_len - len);
1165 }
1166 }
1167#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001168 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001169#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001170 } else {
1171 /* Ok -- the last char was a TAB. Since they
1172 * just hit TAB again, print a list of all the
1173 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001174 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001175 /* changed by goto_new_line() */
1176 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001177
1178 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001179 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001180 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001181 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001182 }
1183 }
1184}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001185
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001186#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001187
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001188
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001189line_input_t* FAST_FUNC new_line_input_t(int flags)
1190{
1191 line_input_t *n = xzalloc(sizeof(*n));
1192 n->flags = flags;
1193 return n;
1194}
1195
1196
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001197#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001198
Denis Vlasenko682ad302008-09-27 01:28:56 +00001199static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001200{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001201 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001202 int cur = state->cur_history;
1203 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001204
Denys Vlasenko19158a82010-03-26 14:06:56 +01001205# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001206 {
1207 char tbuf[MAX_LINELEN];
1208 save_string(tbuf, sizeof(tbuf));
1209 state->history[cur] = xstrdup(tbuf);
1210 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001211# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001212 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001213# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001214 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001215}
1216
1217/* state->flags is already checked to be nonzero */
1218static int get_previous_history(void)
1219{
1220 if ((state->flags & DO_HISTORY) && state->cur_history) {
1221 save_command_ps_at_cur_history();
1222 state->cur_history--;
1223 return 1;
1224 }
1225 beep();
1226 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001227}
1228
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001229static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001230{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001231 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001232 if (state->cur_history < state->cnt_history) {
1233 save_command_ps_at_cur_history(); /* save the current history line */
1234 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001235 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001236 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001237 beep();
1238 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001239}
Robert Griebl350d26b2002-12-03 22:45:46 +00001240
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001241# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001242/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001243 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001244 * Otherwise shell users get unhappy.
1245 *
1246 * History file is trimmed lazily, when it grows several times longer
1247 * than configured MAX_HISTORY lines.
1248 */
1249
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001250static void free_line_input_t(line_input_t *n)
1251{
1252 int i = n->cnt_history;
1253 while (i > 0)
1254 free(n->history[--i]);
1255 free(n);
1256}
1257
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001258/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001259static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001260{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001261 char *temp_h[MAX_HISTORY];
1262 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001263 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001264 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001265
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001266 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001267
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001268 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001269 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001270 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001271 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001272 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001273 free(st_parm->history[idx]);
1274 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001275 }
1276
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001277 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1278 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001279 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001280 while ((line = xmalloc_fgetline(fp)) != NULL) {
1281 if (line[0] == '\0') {
1282 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001283 continue;
1284 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001285 free(temp_h[idx]);
1286 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001287 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001288 idx++;
1289 if (idx == MAX_HISTORY)
1290 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001291 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001292 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001293
1294 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001295 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001296 while (temp_h[idx] == NULL) {
1297 idx++;
1298 if (idx == MAX_HISTORY)
1299 idx = 0;
1300 }
1301 }
1302
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001303 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001304 for (i = 0; i < MAX_HISTORY;) {
1305 line = temp_h[idx];
1306 if (!line)
1307 break;
1308 idx++;
1309 if (idx == MAX_HISTORY)
1310 idx = 0;
1311 line_len = strlen(line);
1312 if (line_len >= MAX_LINELEN)
1313 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001314 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001315 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001316 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001317 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001318}
1319
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001320/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001321static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001322{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001323 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001324 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001325
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001326 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1327 if (fd < 0)
1328 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001329 xlseek(fd, 0, SEEK_END); /* paranoia */
1330 len = strlen(str);
1331 str[len] = '\n'; /* we (try to) do atomic write */
1332 len2 = full_write(fd, str, len + 1);
1333 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001334 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001335 if (len2 != len + 1)
1336 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001337
1338 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001339 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001340 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1341 FILE *fp;
1342 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001343 line_input_t *st_temp;
1344 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001345
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001346 /* we may have concurrently written entries from others.
1347 * load them */
1348 st_temp = new_line_input_t(state->flags);
1349 st_temp->hist_file = state->hist_file;
1350 load_history(st_temp);
1351
1352 /* write out temp file and replace hist_file atomically */
1353 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001354 fp = fopen_for_write(new_name);
1355 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001356 for (i = 0; i < st_temp->cnt_history; i++)
1357 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001358 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001359 if (rename(new_name, state->hist_file) == 0)
1360 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001361 }
1362 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001363 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001364 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001365}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001366# else
1367# define load_history(a) ((void)0)
1368# define save_history(a) ((void)0)
1369# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001370
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001371static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001372{
1373 int i;
1374
1375 if (!(state->flags & DO_HISTORY))
1376 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001377 if (str[0] == '\0')
1378 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001379 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001380 /* Don't save dupes */
1381 if (i && strcmp(state->history[i-1], str) == 0)
1382 return;
1383
1384 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1385 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1386
1387 /* If history[] is full, remove the oldest command */
1388 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001389 if (i >= MAX_HISTORY) {
1390 free(state->history[0]);
1391 for (i = 0; i < MAX_HISTORY-1; i++)
1392 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001393 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001394 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001395 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001396 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001397 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001398 state->cur_history = i;
1399 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001400# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001401 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001402 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001403# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001404 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001405}
1406
1407#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001408# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001409#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001410
1411
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001412#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001413/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001414 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001415 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001416static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001417vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001418{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001419 CHAR_T *command = command_ps;
1420
1421 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001422 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001423 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001424 input_forward();
1425}
1426
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001427static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001428vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001429{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001430 CHAR_T *command = command_ps;
1431
1432 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001433 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001434 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1435 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001436 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001437 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001438 } else if (BB_ispunct(command[cursor])) {
1439 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001440 input_forward();
1441 }
1442
Denis Vlasenko253ce002007-01-22 08:34:44 +00001443 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001444 input_forward();
1445
Denys Vlasenko13028922009-07-12 00:51:15 +02001446 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001447 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001448 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001449 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001450}
1451
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001452static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001453vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001454{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001455 CHAR_T *command = command_ps;
1456
Paul Fox3f11b1b2005-08-04 19:04:46 +00001457 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001458 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001459 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001460 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001461 input_forward();
1462}
1463
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001464static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001465vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001466{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001467 CHAR_T *command = command_ps;
1468
Denis Vlasenko253ce002007-01-22 08:34:44 +00001469 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001470 return;
1471 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001472 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001473 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001474 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001475 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001476 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001477 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001478 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001479 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001480 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001481 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001482 } else if (BB_ispunct(command[cursor])) {
1483 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001484 input_forward();
1485 }
1486}
1487
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001488static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001489vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001490{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001491 CHAR_T *command = command_ps;
1492
1493 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001494 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001495 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001496 input_backward(1);
1497}
1498
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001499static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001500vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001501{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001502 CHAR_T *command = command_ps;
1503
Paul Fox3f11b1b2005-08-04 19:04:46 +00001504 if (cursor <= 0)
1505 return;
1506 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001507 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001508 input_backward(1);
1509 if (cursor <= 0)
1510 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001511 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001512 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001513 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001514 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001515 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001516 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001517 } else if (BB_ispunct(command[cursor])) {
1518 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001519 input_backward(1);
1520 }
1521}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001522#endif
1523
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001524/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1525static void ctrl_left(void)
1526{
1527 CHAR_T *command = command_ps;
1528
1529 while (1) {
1530 CHAR_T c;
1531
1532 input_backward(1);
1533 if (cursor == 0)
1534 break;
1535 c = command[cursor];
1536 if (c != ' ' && !BB_ispunct(c)) {
1537 /* we reached a "word" delimited by spaces/punct.
1538 * go to its beginning */
1539 while (1) {
1540 c = command[cursor - 1];
1541 if (c == ' ' || BB_ispunct(c))
1542 break;
1543 input_backward(1);
1544 if (cursor == 0)
1545 break;
1546 }
1547 break;
1548 }
1549 }
1550}
1551static void ctrl_right(void)
1552{
1553 CHAR_T *command = command_ps;
1554
1555 while (1) {
1556 CHAR_T c;
1557
1558 c = command[cursor];
1559 if (c == BB_NUL)
1560 break;
1561 if (c != ' ' && !BB_ispunct(c)) {
1562 /* we reached a "word" delimited by spaces/punct.
1563 * go to its end + 1 */
1564 while (1) {
1565 input_forward();
1566 c = command[cursor];
1567 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1568 break;
1569 }
1570 break;
1571 }
1572 input_forward();
1573 }
1574}
1575
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001576
1577/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001578 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001579 */
1580
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001581#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1582static void ask_terminal(void)
1583{
1584 /* Ask terminal where is the cursor now.
1585 * lineedit_read_key handles response and corrects
1586 * our idea of current cursor position.
1587 * Testcase: run "echo -n long_line_long_line_long_line",
1588 * then type in a long, wrapping command and try to
1589 * delete it using backspace key.
1590 * Note: we print it _after_ prompt, because
1591 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1592 */
1593 /* Problem: if there is buffered input on stdin,
1594 * the response will be delivered later,
1595 * possibly to an unsuspecting application.
1596 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1597 * Result:
1598 * ~/srcdevel/bbox/fix/busybox.t4 #
1599 * ~/srcdevel/bbox/fix/busybox.t4 #
1600 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1601 * ~/srcdevel/bbox/fix/busybox.t4 #
1602 *
1603 * Checking for input with poll only makes the race narrower,
1604 * I still can trigger it. Strace:
1605 *
1606 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1607 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1608 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1609 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1610 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1611 */
1612 struct pollfd pfd;
1613
1614 pfd.fd = STDIN_FILENO;
1615 pfd.events = POLLIN;
1616 if (safe_poll(&pfd, 1, 0) == 0) {
1617 S.sent_ESC_br6n = 1;
Denys Vlasenko9963fe32010-05-17 04:05:53 +02001618 fputs("\033" "[6n", stdout);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001619 fflush_all(); /* make terminal see it ASAP! */
1620 }
1621}
1622#else
1623#define ask_terminal() ((void)0)
1624#endif
1625
Denis Vlasenko38f63192007-01-22 09:03:07 +00001626#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001627static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001628{
1629 cmdedit_prompt = prmt_ptr;
1630 cmdedit_prmt_len = strlen(prmt_ptr);
1631 put_prompt();
1632}
1633#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001634static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001635{
1636 int prmt_len = 0;
1637 size_t cur_prmt_len = 0;
1638 char flg_not_length = '[';
1639 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001640 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1641 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001642 char c;
1643 char *pbuf;
1644
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001645 cmdedit_prmt_len = 0;
1646
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001647 if (!cwd_buf) {
1648 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001649 }
1650
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001651 cbuf[1] = '\0'; /* never changes */
1652
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001653 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001654 char *free_me = NULL;
1655
1656 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001657 c = *prmt_ptr++;
1658 if (c == '\\') {
1659 const char *cp = prmt_ptr;
1660 int l;
1661
1662 c = bb_process_escape_sequence(&prmt_ptr);
1663 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001664 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001665 break;
1666 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001667
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001668 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001669# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001670 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001671 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001672 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001673# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001674 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001675 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001676 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001677 break;
1678 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001679 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001680 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001681# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001682 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001683 /* /home/user[/something] -> ~[/something] */
1684 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001685 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001686 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001687 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1688 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1689 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001690 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001691 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001692 }
1693 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001694# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001695 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001696 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001697 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698 if (cp != NULL && cp != pbuf)
1699 pbuf += (cp-pbuf) + 1;
1700 break;
1701 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001702 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001703 break;
1704 case 'e': case 'E': /* \e \E = \033 */
1705 c = '\033';
1706 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001707 case 'x': case 'X': {
1708 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001709 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001710 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001711 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001712 buf2[l] = '\0';
1713 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001714 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001715 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001716 break;
1717 }
1718 prmt_ptr++;
1719 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001720 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001721 if (c == 0)
1722 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001723 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001724 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001725 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001726 case '[': case ']':
1727 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001728 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001729 continue;
1730 }
1731 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001732 } /* switch */
1733 } /* if */
1734 } /* if */
1735 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001736 cur_prmt_len = strlen(pbuf);
1737 prmt_len += cur_prmt_len;
1738 if (flg_not_length != ']')
1739 cmdedit_prmt_len += cur_prmt_len;
1740 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001741 free(free_me);
1742 } /* while */
1743
1744 if (cwd_buf != (char *)bb_msg_unknown)
1745 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001746 cmdedit_prompt = prmt_mem_ptr;
1747 put_prompt();
1748}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001749#endif
1750
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001751static void cmdedit_setwidth(unsigned w, int redraw_flg)
1752{
1753 cmdedit_termw = w;
1754 if (redraw_flg) {
1755 /* new y for current cursor */
1756 int new_y = (cursor + cmdedit_prmt_len) / w;
1757 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001758 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001759 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001760 }
1761}
1762
1763static void win_changed(int nsig)
1764{
Denis Vlasenko55995022008-05-18 22:28:26 +00001765 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001766 get_terminal_width_height(0, &width, NULL);
1767 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1768 if (nsig == SIGWINCH)
1769 signal(SIGWINCH, win_changed); /* rearm ourself */
1770}
1771
Denys Vlasenko020f4062009-05-17 16:44:54 +02001772static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001773{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001774 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001775 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001776#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001777 char unicode_buf[MB_CUR_MAX + 1];
1778 int unicode_idx = 0;
1779#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001780
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001781 while (1) {
1782 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1783 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1784 * insist on full MB_CUR_MAX buffer to declare input like
1785 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1786 *
1787 * Note: read_key sets errno to 0 on success.
1788 */
1789 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1790 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001791#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001792 if (errno == EAGAIN && unicode_idx != 0)
1793 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001794#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001795 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001796 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001797
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001798#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1799 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001800 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001801 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001802 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001803 if (cursor == 0) { /* otherwise it may be bogus */
1804 int col = ((ic >> 32) & 0x7fff) - 1;
1805 if (col > cmdedit_prmt_len) {
1806 cmdedit_x += (col - cmdedit_prmt_len);
1807 while (cmdedit_x >= cmdedit_termw) {
1808 cmdedit_x -= cmdedit_termw;
1809 cmdedit_y++;
1810 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001811 }
1812 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001813 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001814 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001815#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001816
Denys Vlasenko19158a82010-03-26 14:06:56 +01001817#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001818 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001819 wchar_t wc;
1820
1821 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001822 break;
1823 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001824
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001825 unicode_buf[unicode_idx++] = ic;
1826 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001827 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1828 /* Not (yet?) a valid unicode char */
1829 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001830 timeout = 50;
1831 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001832 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001833 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001834 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001835 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001836# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001837 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001838# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001839 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001840# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001841 } else {
1842 /* Valid unicode char, return its code */
1843 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001844 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001845 }
1846#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001847 break;
1848 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001849
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001850 return ic;
1851}
1852
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001853#if ENABLE_UNICODE_BIDI_SUPPORT
1854static int isrtl_str(void)
1855{
1856 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001857
1858 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001859 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001860 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001861}
1862#else
1863# define isrtl_str() 0
1864#endif
1865
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001866/* leave out the "vi-mode"-only case labels if vi editing isn't
1867 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001868#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001869
1870/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001871#undef CTRL
1872#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001873
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001874/* maxsize must be >= 2.
1875 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001876 * -1 on read errors or EOF, or on bare Ctrl-D,
1877 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001878 * >0 length of input string, including terminating '\n'
1879 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001880int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001881{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001882 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001883#if ENABLE_FEATURE_TAB_COMPLETION
1884 smallint lastWasTab = FALSE;
1885#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001886 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001887#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001888 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001889#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001890 struct termios initial_settings;
1891 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001892 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001893
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001894 INIT_S();
1895
1896 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1897 || !(initial_settings.c_lflag & ECHO)
1898 ) {
1899 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001900 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001901 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001902 if (fgets(command, maxsize, stdin) == NULL)
1903 len = -1; /* EOF or error */
1904 else
1905 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001906 DEINIT_S();
1907 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001908 }
1909
Denys Vlasenko28055022010-01-04 20:49:58 +01001910 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001911
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001912// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001913 if (maxsize > MAX_LINELEN)
1914 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001915 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001916
1917 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001918 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001919#if MAX_HISTORY > 0
1920# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001921 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001922 if (state->cnt_history == 0)
1923 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001924# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001925 if (state->flags & DO_HISTORY)
1926 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001927#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001928
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001929 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001930 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001931 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001932#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001933 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1934#else
Mark Whitley4e338752001-01-26 20:42:23 +00001935 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001936 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001937#endif
1938#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001939
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001940 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001941 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1942 /* Turn off echoing and CTRL-C, so we can trap it */
1943 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001944 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001945 new_settings.c_cc[VMIN] = 1;
1946 new_settings.c_cc[VTIME] = 0;
1947 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001948#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001949# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001950#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001951 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001952 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001953
Eric Andersen6faae7d2001-02-16 20:09:17 +00001954 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001955 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1956 win_changed(0); /* do initial resizing */
1957#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1958 {
1959 struct passwd *entry;
1960
1961 entry = getpwuid(geteuid());
1962 if (entry) {
1963 user_buf = xstrdup(entry->pw_name);
1964 home_pwd_buf = xstrdup(entry->pw_dir);
1965 }
1966 }
1967#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001968
1969#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001970 for (i = 0; i <= MAX_HISTORY; i++)
1971 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001972 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1973#endif
1974
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001975 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001976 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001977 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001978
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001979 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001980 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001981 /*
1982 * The emacs and vi modes share much of the code in the big
1983 * command loop. Commands entered when in vi's command mode
1984 * (aka "escape mode") get an extra bit added to distinguish
1985 * them - this keeps them from being self-inserted. This
1986 * clutters the big switch a bit, but keeps all the code
1987 * in one place.
1988 */
1989 enum {
1990 VI_CMDMODE_BIT = 0x40000000,
1991 /* 0x80000000 bit flags KEYCODE_xxx */
1992 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001993 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001994
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001995 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001996 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001997
Denis Vlasenko38f63192007-01-22 09:03:07 +00001998#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001999 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002000 if (vi_cmdmode) {
2001 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2002 * change ic if it contains one of them: */
2003 ic |= VI_CMDMODE_BIT;
2004 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002005#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002006
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002007 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002008 case '\n':
2009 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002010 vi_case('\n'|VI_CMDMODE_BIT:)
2011 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002012 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002013 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002014 break_out = 1;
2015 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002016 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002017 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002018 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002019 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002020 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002021 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002022 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002023 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002024 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002025 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002026 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002027 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002028 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002029 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002030 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002031 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002032 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002033 vi_case('l'|VI_CMDMODE_BIT:)
2034 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002035 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002036 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002037 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002038 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002039 if (!isrtl_str())
2040 input_backspace();
2041 else
2042 input_delete(0);
2043 break;
2044 case KEYCODE_DELETE:
2045 if (!isrtl_str())
2046 input_delete(0);
2047 else
2048 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002049 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002050#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002051 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002052 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002053 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002054#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002055 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002056 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002057 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002058 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002059 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002060 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002061 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002062 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002063 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002064 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002065 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002066 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002067#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002068 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002069 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2070 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002071 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002072 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002073 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002074 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002075 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002076 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2077 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002078 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002079 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002080 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002081 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002082#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002083 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002084 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002085 /* Control-U -- Clear line before cursor */
2086 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002087 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002088 memmove(command_ps, command_ps + cursor,
2089 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002090 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002091 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002092 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002093 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002094 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002095 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002096 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002097 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002098 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002099 input_backspace();
2100 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002101
Denis Vlasenko38f63192007-01-22 09:03:07 +00002102#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002103 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002104 vi_cmdmode = 0;
2105 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002106 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002107 input_backward(cursor);
2108 vi_cmdmode = 0;
2109 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002110 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002111 input_forward();
2112 vi_cmdmode = 0;
2113 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002114 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002115 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002116 vi_cmdmode = 0;
2117 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002118 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002119 input_delete(1);
2120 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002122 if (cursor > 0) {
2123 input_backward(1);
2124 input_delete(1);
2125 }
2126 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002127 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002128 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002129 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002130 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002131 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002132 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002133 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002134 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002135 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002136 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002137 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002138 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002139 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002140 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002141 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002142 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002143 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002144 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002145 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002146 vi_cmdmode = 0;
2147 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002148 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002149 goto clear_to_eol;
2150
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002151 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002152 vi_cmdmode = 0;
2153 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002154 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002155 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002156
Denys Vlasenko020f4062009-05-17 16:44:54 +02002157 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002158 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002159 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002160 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002161 input_backward(cursor);
2162 goto clear_to_eol;
2163 break;
2164 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002165
2166 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002167 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002168 case 'w':
2169 case 'W':
2170 case 'e':
2171 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002172 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002173 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002174 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002175 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002176 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002177 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002178 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002179 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002180 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002181 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002182 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002183 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002184 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002185 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002186 break;
2187 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002188 nc = cursor;
2189 input_backward(cursor - sc);
2190 while (nc-- > cursor)
2191 input_delete(1);
2192 break;
2193 case 'b': /* "db", "cb" */
2194 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002195 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002196 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002197 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002198 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002199 while (sc-- > cursor)
2200 input_delete(1);
2201 break;
2202 case ' ': /* "d ", "c " */
2203 input_delete(1);
2204 break;
2205 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002206 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002207 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002208 input_delete(1);
2209 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002210 }
2211 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002212 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002213 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002214 input_forward();
2215 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002216 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002217 put();
2218 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002219 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002220//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002221 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002222 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002223 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002224 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002225 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002226 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002227 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002228 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002229 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002230 }
2231 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002232 case '\x1b': /* ESC */
2233 if (state->flags & VI_MODE) {
2234 /* insert mode --> command mode */
2235 vi_cmdmode = 1;
2236 input_backward(1);
2237 }
2238 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002239#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002240
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002241#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002242 case KEYCODE_UP:
2243 if (get_previous_history())
2244 goto rewrite_line;
2245 beep();
2246 break;
2247 case KEYCODE_DOWN:
2248 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002249 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002250 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002251 /* Rewrite the line with the selected history item */
2252 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002253 command_len = load_string(state->history[state->cur_history] ?
2254 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002255 /* redraw and go to eol (bol, in vi) */
2256 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2257 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002258#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002259 case KEYCODE_RIGHT:
2260 input_forward();
2261 break;
2262 case KEYCODE_LEFT:
2263 input_backward(1);
2264 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002265 case KEYCODE_CTRL_LEFT:
2266 ctrl_left();
2267 break;
2268 case KEYCODE_CTRL_RIGHT:
2269 ctrl_right();
2270 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002271 case KEYCODE_HOME:
2272 input_backward(cursor);
2273 break;
2274 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002275 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002276 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002277
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002278 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002279 if (initial_settings.c_cc[VINTR] != 0
2280 && ic_raw == initial_settings.c_cc[VINTR]
2281 ) {
2282 /* Ctrl-C (usually) - stop gathering input */
2283 goto_new_line();
2284 command_len = 0;
2285 break_out = -1; /* "do not append '\n'" */
2286 break;
2287 }
2288 if (initial_settings.c_cc[VEOF] != 0
2289 && ic_raw == initial_settings.c_cc[VEOF]
2290 ) {
2291 /* Ctrl-D (usually) - delete one character,
2292 * or exit if len=0 and no chars to delete */
2293 if (command_len == 0) {
2294 errno = 0;
2295#if ENABLE_FEATURE_EDITING_VI
2296 prepare_to_die:
2297#endif
2298 break_out = command_len = -1;
2299 break;
2300 }
2301 input_delete(0);
2302 break;
2303 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002304// /* Control-V -- force insert of next char */
2305// if (c == CTRL('V')) {
2306// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2307// goto prepare_to_die;
2308// if (c == 0) {
2309// beep();
2310// break;
2311// }
2312// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002313 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002314 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2315 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002316 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002317 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002318 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002319 * Otherwise, we are here if ic is a
2320 * control char or an unhandled ESC sequence,
2321 * which is also ignored.
2322 */
2323 break;
2324 }
2325 if ((int)command_len >= (maxsize - 2)) {
2326 /* Not enough space for the char and EOL */
2327 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002328 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002329
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002330 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002331 if (cursor == (command_len - 1)) {
2332 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002333 command_ps[cursor] = ic;
2334 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002335 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002336 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002337 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002338 } else {
2339 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002340 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002341
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002342 memmove(command_ps + sc + 1, command_ps + sc,
2343 (command_len - sc) * sizeof(command_ps[0]));
2344 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002345 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2346 if (!isrtl_str())
2347 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002348 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002349 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002350 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002351 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002352 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002353 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002354
2355 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002356 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002357
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002358#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002359 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002360 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002361#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002362 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002363
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002364#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002365 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002366 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2367 * We sent "ESC [ 6 n", but got '\n' first, and
2368 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2369 * It's bad already and not much can be done with it
2370 * (it _will_ be visible for the next process to read stdin),
2371 * but without this delay it even shows up on the screen
2372 * as garbage because we restore echo settings with tcsetattr
2373 * before it comes in. UGLY!
2374 */
2375 usleep(20*1000);
2376 }
2377#endif
2378
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002379/* Stop bug catching using "command_must_not_be_used" trick */
2380#undef command
2381
Denys Vlasenko19158a82010-03-26 14:06:56 +01002382#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002383 command[0] = '\0';
2384 if (command_len > 0)
2385 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002386 free(command_ps);
2387#endif
2388
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002389 if (command_len > 0)
2390 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002391
Eric Andersen27bb7902003-12-23 20:24:51 +00002392 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002393 command[command_len++] = '\n';
2394 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002395 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002396
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002397#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002398 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002399#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002400
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002401 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002402 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002403 /* restore SIGWINCH handler */
2404 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002405 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002406
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002407 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002408 DEINIT_S();
2409
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002410 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002411}
2412
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002413#else
2414
2415#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002416int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002417{
2418 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002419 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002420 fgets(command, maxsize, stdin);
2421 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002422}
2423
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002424#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002425
2426
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002427/*
2428 * Testing
2429 */
2430
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002431#ifdef TEST
2432
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002433#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002434
2435const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002436
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002437int main(int argc, char **argv)
2438{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002439 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002440 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002441#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002442 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2443 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2444 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002445#else
2446 "% ";
2447#endif
2448
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002449 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002450 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002451 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002452 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002453 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002454 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002455 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002456 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002457 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002458 return 0;
2459}
2460
Eric Andersenc470f442003-07-28 09:56:35 +00002461#endif /* TEST */