blob: 8a2ea79747cca3f7bb795c42da0bdaac023236f4 [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++) {
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +0200995 l = unicode_strwidth(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],
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001015 (int)(column_width - unicode_strwidth(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001016 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001017 }
Tomas Heinrich11bcf4b2010-06-01 08:33:18 +02001018 if (ENABLE_UNICODE_SUPPORT)
1019 puts(printable_string(NULL, matches[n]));
1020 else
1021 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001022 }
1023}
1024
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001025static char *add_quote_for_spec_chars(char *found)
1026{
1027 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001028 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001029
1030 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001031 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001032 s[l++] = '\\';
1033 s[l++] = *found++;
1034 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001035 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001036 return s;
1037}
1038
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001039/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001040static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001041{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001042 if (!(state->flags & TAB_COMPLETION))
1043 return;
1044
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001045 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001046 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001047 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001048/* char matchBuf[MAX_LINELEN]; */
1049#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001050 int find_type;
1051 int recalc_pos;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001052#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001053 /* cursor pos in command converted to multibyte form */
1054 int cursor_mb;
1055#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001056
Eric Andersenc470f442003-07-28 09:56:35 +00001057 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001058
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001059 /* Make a local copy of the string --
1060 * up to the position of the cursor */
1061 save_string(matchBuf, cursor + 1);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001062#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001063 cursor_mb = strlen(matchBuf);
1064#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001065 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001066
1067 find_type = find_match(matchBuf, &recalc_pos);
1068
1069 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001070 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001071
Denis Vlasenko38f63192007-01-22 09:03:07 +00001072#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001073 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001074 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001075 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001076 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001077 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001078#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001079 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001080 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001081 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001082 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001083 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001084 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001085 unsigned i;
1086 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001087 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001088 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001089 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001090 if (strcmp(matches[i], matches[i+1]) == 0) {
1091 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001092 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001093 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001094 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001095 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001096 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001097 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001098 matches[n] = matches[i];
1099 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001100 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001101 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001102 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001103 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001104 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001105 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001106 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001107 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001108 for (tmp = tmp1; *tmp; tmp++) {
1109 for (len_found = 1; len_found < num_matches; len_found++) {
1110 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001111 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001112 break;
1113 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001114 }
1115 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001116 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001117 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001118 return;
1119 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001120 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001121 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001122 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001123 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001124 /* for next completion current found */
1125 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001126
1127 len_found = strlen(tmp);
1128 if (tmp[len_found-1] != '/') {
1129 tmp[len_found] = ' ';
1130 tmp[len_found+1] = '\0';
1131 }
Mark Whitley4e338752001-01-26 20:42:23 +00001132 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001133
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001134 len_found = strlen(tmp);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001135#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001136 /* have space to place the match? */
1137 /* The result consists of three parts with these lengths: */
1138 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1139 /* it simplifies into: */
1140 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1141 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001142 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001143 /* add match and tail */
1144 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001145 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001146 /* new pos */
1147 recalc_pos = cursor - recalc_pos + len_found;
1148 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001149 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001150 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001151#else
1152 {
1153 char command[MAX_LINELEN];
1154 int len = save_string(command, sizeof(command));
1155 /* have space to place the match? */
1156 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1157 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1158 /* save tail */
1159 strcpy(matchBuf, command + cursor_mb);
1160 /* where do we want to have cursor after all? */
1161 strcpy(&command[cursor_mb - recalc_pos], tmp);
1162 len = load_string(command, S.maxsize);
1163 /* add match and tail */
1164 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1165 command_len = load_string(command, S.maxsize);
1166 /* write out the matched command */
1167 redraw(cmdedit_y, command_len - len);
1168 }
1169 }
1170#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001171 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001172#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001173 } else {
1174 /* Ok -- the last char was a TAB. Since they
1175 * just hit TAB again, print a list of all the
1176 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001177 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001178 /* changed by goto_new_line() */
1179 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001180
1181 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001182 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001183 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001184 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001185 }
1186 }
1187}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001188
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001189#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001190
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001191
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001192line_input_t* FAST_FUNC new_line_input_t(int flags)
1193{
1194 line_input_t *n = xzalloc(sizeof(*n));
1195 n->flags = flags;
1196 return n;
1197}
1198
1199
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001200#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001201
Denis Vlasenko682ad302008-09-27 01:28:56 +00001202static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001203{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001204 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001205 int cur = state->cur_history;
1206 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001207
Denys Vlasenko19158a82010-03-26 14:06:56 +01001208# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001209 {
1210 char tbuf[MAX_LINELEN];
1211 save_string(tbuf, sizeof(tbuf));
1212 state->history[cur] = xstrdup(tbuf);
1213 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001214# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001215 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001216# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001217 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001218}
1219
1220/* state->flags is already checked to be nonzero */
1221static int get_previous_history(void)
1222{
1223 if ((state->flags & DO_HISTORY) && state->cur_history) {
1224 save_command_ps_at_cur_history();
1225 state->cur_history--;
1226 return 1;
1227 }
1228 beep();
1229 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001230}
1231
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001232static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001233{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001234 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001235 if (state->cur_history < state->cnt_history) {
1236 save_command_ps_at_cur_history(); /* save the current history line */
1237 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001238 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001239 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001240 beep();
1241 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001242}
Robert Griebl350d26b2002-12-03 22:45:46 +00001243
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001244# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001245/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001246 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001247 * Otherwise shell users get unhappy.
1248 *
1249 * History file is trimmed lazily, when it grows several times longer
1250 * than configured MAX_HISTORY lines.
1251 */
1252
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001253static void free_line_input_t(line_input_t *n)
1254{
1255 int i = n->cnt_history;
1256 while (i > 0)
1257 free(n->history[--i]);
1258 free(n);
1259}
1260
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001261/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001262static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001263{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001264 char *temp_h[MAX_HISTORY];
1265 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001266 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001267 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001268
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001269 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001270
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001271 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001272 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001273 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001274 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001275 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001276 free(st_parm->history[idx]);
1277 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001278 }
1279
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001280 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1281 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001282 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001283 while ((line = xmalloc_fgetline(fp)) != NULL) {
1284 if (line[0] == '\0') {
1285 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001286 continue;
1287 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001288 free(temp_h[idx]);
1289 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001290 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001291 idx++;
1292 if (idx == MAX_HISTORY)
1293 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001294 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001295 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001296
1297 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001298 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001299 while (temp_h[idx] == NULL) {
1300 idx++;
1301 if (idx == MAX_HISTORY)
1302 idx = 0;
1303 }
1304 }
1305
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001306 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001307 for (i = 0; i < MAX_HISTORY;) {
1308 line = temp_h[idx];
1309 if (!line)
1310 break;
1311 idx++;
1312 if (idx == MAX_HISTORY)
1313 idx = 0;
1314 line_len = strlen(line);
1315 if (line_len >= MAX_LINELEN)
1316 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001317 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001318 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001319 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001320 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001321}
1322
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001323/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001324static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001325{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001326 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001327 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001328
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001329 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1330 if (fd < 0)
1331 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001332 xlseek(fd, 0, SEEK_END); /* paranoia */
1333 len = strlen(str);
1334 str[len] = '\n'; /* we (try to) do atomic write */
1335 len2 = full_write(fd, str, len + 1);
1336 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001337 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001338 if (len2 != len + 1)
1339 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001340
1341 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001342 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001343 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1344 FILE *fp;
1345 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001346 line_input_t *st_temp;
1347 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001348
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001349 /* we may have concurrently written entries from others.
1350 * load them */
1351 st_temp = new_line_input_t(state->flags);
1352 st_temp->hist_file = state->hist_file;
1353 load_history(st_temp);
1354
1355 /* write out temp file and replace hist_file atomically */
1356 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001357 fp = fopen_for_write(new_name);
1358 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001359 for (i = 0; i < st_temp->cnt_history; i++)
1360 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001361 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001362 if (rename(new_name, state->hist_file) == 0)
1363 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001364 }
1365 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001366 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001367 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001368}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001369# else
1370# define load_history(a) ((void)0)
1371# define save_history(a) ((void)0)
1372# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001373
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001374static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001375{
1376 int i;
1377
1378 if (!(state->flags & DO_HISTORY))
1379 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001380 if (str[0] == '\0')
1381 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001382 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001383 /* Don't save dupes */
1384 if (i && strcmp(state->history[i-1], str) == 0)
1385 return;
1386
1387 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1388 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1389
1390 /* If history[] is full, remove the oldest command */
1391 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001392 if (i >= MAX_HISTORY) {
1393 free(state->history[0]);
1394 for (i = 0; i < MAX_HISTORY-1; i++)
1395 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001396 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001397 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001398 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001399 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001400 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001401 state->cur_history = i;
1402 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001403# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001404 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001405 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001406# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001407 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001408}
1409
1410#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001411# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001412#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001413
1414
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001415#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001416/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001417 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001418 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001419static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001420vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001421{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001422 CHAR_T *command = command_ps;
1423
1424 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001425 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001426 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001427 input_forward();
1428}
1429
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001430static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001431vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001432{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001433 CHAR_T *command = command_ps;
1434
1435 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001436 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001437 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1438 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001439 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001440 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001441 } else if (BB_ispunct(command[cursor])) {
1442 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001443 input_forward();
1444 }
1445
Denis Vlasenko253ce002007-01-22 08:34:44 +00001446 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001447 input_forward();
1448
Denys Vlasenko13028922009-07-12 00:51:15 +02001449 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001450 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001451 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001452 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001453}
1454
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001455static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001456vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001457{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001458 CHAR_T *command = command_ps;
1459
Paul Fox3f11b1b2005-08-04 19:04:46 +00001460 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001461 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001462 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001463 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001464 input_forward();
1465}
1466
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001467static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001468vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001469{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001470 CHAR_T *command = command_ps;
1471
Denis Vlasenko253ce002007-01-22 08:34:44 +00001472 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001473 return;
1474 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001475 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001476 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001477 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001478 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001479 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001480 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001481 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001482 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001483 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001484 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001485 } else if (BB_ispunct(command[cursor])) {
1486 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001487 input_forward();
1488 }
1489}
1490
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001491static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001492vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001493{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001494 CHAR_T *command = command_ps;
1495
1496 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001497 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001498 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001499 input_backward(1);
1500}
1501
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001502static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001503vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001504{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001505 CHAR_T *command = command_ps;
1506
Paul Fox3f11b1b2005-08-04 19:04:46 +00001507 if (cursor <= 0)
1508 return;
1509 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001510 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001511 input_backward(1);
1512 if (cursor <= 0)
1513 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001514 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001515 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001516 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001517 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001518 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001519 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001520 } else if (BB_ispunct(command[cursor])) {
1521 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001522 input_backward(1);
1523 }
1524}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001525#endif
1526
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001527/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1528static void ctrl_left(void)
1529{
1530 CHAR_T *command = command_ps;
1531
1532 while (1) {
1533 CHAR_T c;
1534
1535 input_backward(1);
1536 if (cursor == 0)
1537 break;
1538 c = command[cursor];
1539 if (c != ' ' && !BB_ispunct(c)) {
1540 /* we reached a "word" delimited by spaces/punct.
1541 * go to its beginning */
1542 while (1) {
1543 c = command[cursor - 1];
1544 if (c == ' ' || BB_ispunct(c))
1545 break;
1546 input_backward(1);
1547 if (cursor == 0)
1548 break;
1549 }
1550 break;
1551 }
1552 }
1553}
1554static void ctrl_right(void)
1555{
1556 CHAR_T *command = command_ps;
1557
1558 while (1) {
1559 CHAR_T c;
1560
1561 c = command[cursor];
1562 if (c == BB_NUL)
1563 break;
1564 if (c != ' ' && !BB_ispunct(c)) {
1565 /* we reached a "word" delimited by spaces/punct.
1566 * go to its end + 1 */
1567 while (1) {
1568 input_forward();
1569 c = command[cursor];
1570 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1571 break;
1572 }
1573 break;
1574 }
1575 input_forward();
1576 }
1577}
1578
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001579
1580/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001581 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001582 */
1583
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001584#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1585static void ask_terminal(void)
1586{
1587 /* Ask terminal where is the cursor now.
1588 * lineedit_read_key handles response and corrects
1589 * our idea of current cursor position.
1590 * Testcase: run "echo -n long_line_long_line_long_line",
1591 * then type in a long, wrapping command and try to
1592 * delete it using backspace key.
1593 * Note: we print it _after_ prompt, because
1594 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1595 */
1596 /* Problem: if there is buffered input on stdin,
1597 * the response will be delivered later,
1598 * possibly to an unsuspecting application.
1599 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1600 * Result:
1601 * ~/srcdevel/bbox/fix/busybox.t4 #
1602 * ~/srcdevel/bbox/fix/busybox.t4 #
1603 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1604 * ~/srcdevel/bbox/fix/busybox.t4 #
1605 *
1606 * Checking for input with poll only makes the race narrower,
1607 * I still can trigger it. Strace:
1608 *
1609 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1610 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1611 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1612 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1613 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1614 */
1615 struct pollfd pfd;
1616
1617 pfd.fd = STDIN_FILENO;
1618 pfd.events = POLLIN;
1619 if (safe_poll(&pfd, 1, 0) == 0) {
1620 S.sent_ESC_br6n = 1;
Denys Vlasenko9963fe32010-05-17 04:05:53 +02001621 fputs("\033" "[6n", stdout);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001622 fflush_all(); /* make terminal see it ASAP! */
1623 }
1624}
1625#else
1626#define ask_terminal() ((void)0)
1627#endif
1628
Denis Vlasenko38f63192007-01-22 09:03:07 +00001629#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001630static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001631{
1632 cmdedit_prompt = prmt_ptr;
1633 cmdedit_prmt_len = strlen(prmt_ptr);
1634 put_prompt();
1635}
1636#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001637static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001638{
1639 int prmt_len = 0;
1640 size_t cur_prmt_len = 0;
1641 char flg_not_length = '[';
1642 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001643 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1644 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001645 char c;
1646 char *pbuf;
1647
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001648 cmdedit_prmt_len = 0;
1649
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001650 if (!cwd_buf) {
1651 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001652 }
1653
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001654 cbuf[1] = '\0'; /* never changes */
1655
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001656 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001657 char *free_me = NULL;
1658
1659 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001660 c = *prmt_ptr++;
1661 if (c == '\\') {
1662 const char *cp = prmt_ptr;
1663 int l;
1664
1665 c = bb_process_escape_sequence(&prmt_ptr);
1666 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001667 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001668 break;
1669 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001670
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001671 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001672# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001673 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001674 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001675 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001676# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001677 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001678 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001679 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001680 break;
1681 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001682 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001683 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001684# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001685 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001686 /* /home/user[/something] -> ~[/something] */
1687 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001688 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001689 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001690 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1691 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1692 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001693 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001694 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001695 }
1696 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001697# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001699 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001700 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001701 if (cp != NULL && cp != pbuf)
1702 pbuf += (cp-pbuf) + 1;
1703 break;
1704 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001705 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001706 break;
1707 case 'e': case 'E': /* \e \E = \033 */
1708 c = '\033';
1709 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001710 case 'x': case 'X': {
1711 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001712 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001713 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001714 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001715 buf2[l] = '\0';
1716 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001717 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001718 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001719 break;
1720 }
1721 prmt_ptr++;
1722 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001723 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001724 if (c == 0)
1725 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001726 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001727 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001728 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001729 case '[': case ']':
1730 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001731 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001732 continue;
1733 }
1734 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001735 } /* switch */
1736 } /* if */
1737 } /* if */
1738 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001739 cur_prmt_len = strlen(pbuf);
1740 prmt_len += cur_prmt_len;
1741 if (flg_not_length != ']')
1742 cmdedit_prmt_len += cur_prmt_len;
1743 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001744 free(free_me);
1745 } /* while */
1746
1747 if (cwd_buf != (char *)bb_msg_unknown)
1748 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001749 cmdedit_prompt = prmt_mem_ptr;
1750 put_prompt();
1751}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001752#endif
1753
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001754static void cmdedit_setwidth(unsigned w, int redraw_flg)
1755{
1756 cmdedit_termw = w;
1757 if (redraw_flg) {
1758 /* new y for current cursor */
1759 int new_y = (cursor + cmdedit_prmt_len) / w;
1760 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001761 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001762 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001763 }
1764}
1765
1766static void win_changed(int nsig)
1767{
Denis Vlasenko55995022008-05-18 22:28:26 +00001768 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001769 get_terminal_width_height(0, &width, NULL);
1770 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1771 if (nsig == SIGWINCH)
1772 signal(SIGWINCH, win_changed); /* rearm ourself */
1773}
1774
Denys Vlasenko020f4062009-05-17 16:44:54 +02001775static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001776{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001777 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001778 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001779#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001780 char unicode_buf[MB_CUR_MAX + 1];
1781 int unicode_idx = 0;
1782#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001783
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001784 while (1) {
1785 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1786 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1787 * insist on full MB_CUR_MAX buffer to declare input like
1788 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1789 *
1790 * Note: read_key sets errno to 0 on success.
1791 */
1792 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1793 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001794#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001795 if (errno == EAGAIN && unicode_idx != 0)
1796 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001797#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001798 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001799 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001800
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001801#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1802 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001803 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001804 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001805 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001806 if (cursor == 0) { /* otherwise it may be bogus */
1807 int col = ((ic >> 32) & 0x7fff) - 1;
1808 if (col > cmdedit_prmt_len) {
1809 cmdedit_x += (col - cmdedit_prmt_len);
1810 while (cmdedit_x >= cmdedit_termw) {
1811 cmdedit_x -= cmdedit_termw;
1812 cmdedit_y++;
1813 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001814 }
1815 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001816 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001817 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001818#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001819
Denys Vlasenko19158a82010-03-26 14:06:56 +01001820#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001821 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001822 wchar_t wc;
1823
1824 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001825 break;
1826 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001827
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001828 unicode_buf[unicode_idx++] = ic;
1829 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001830 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1831 /* Not (yet?) a valid unicode char */
1832 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001833 timeout = 50;
1834 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001835 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001836 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001837 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001838 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001839# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001840 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001841# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001842 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001843# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001844 } else {
1845 /* Valid unicode char, return its code */
1846 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001847 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001848 }
1849#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001850 break;
1851 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001852
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001853 return ic;
1854}
1855
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001856#if ENABLE_UNICODE_BIDI_SUPPORT
1857static int isrtl_str(void)
1858{
1859 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001860
1861 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001862 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001863 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001864}
1865#else
1866# define isrtl_str() 0
1867#endif
1868
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001869/* leave out the "vi-mode"-only case labels if vi editing isn't
1870 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001871#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001872
1873/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001874#undef CTRL
1875#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001876
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001877/* maxsize must be >= 2.
1878 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001879 * -1 on read errors or EOF, or on bare Ctrl-D,
1880 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001881 * >0 length of input string, including terminating '\n'
1882 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001883int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001884{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001885 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001886#if ENABLE_FEATURE_TAB_COMPLETION
1887 smallint lastWasTab = FALSE;
1888#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001889 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001890#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001891 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001892#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001893 struct termios initial_settings;
1894 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001895 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001896
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001897 INIT_S();
1898
1899 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1900 || !(initial_settings.c_lflag & ECHO)
1901 ) {
1902 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001903 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001904 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001905 if (fgets(command, maxsize, stdin) == NULL)
1906 len = -1; /* EOF or error */
1907 else
1908 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001909 DEINIT_S();
1910 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001911 }
1912
Denys Vlasenko28055022010-01-04 20:49:58 +01001913 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001914
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001915// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001916 if (maxsize > MAX_LINELEN)
1917 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001918 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001919
1920 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001921 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001922#if MAX_HISTORY > 0
1923# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001924 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001925 if (state->cnt_history == 0)
1926 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001927# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001928 if (state->flags & DO_HISTORY)
1929 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001930#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001931
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001932 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001933 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001934 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001935#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001936 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1937#else
Mark Whitley4e338752001-01-26 20:42:23 +00001938 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001939 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001940#endif
1941#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001942
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001943 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001944 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1945 /* Turn off echoing and CTRL-C, so we can trap it */
1946 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001947 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001948 new_settings.c_cc[VMIN] = 1;
1949 new_settings.c_cc[VTIME] = 0;
1950 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001951#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001952# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001953#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001954 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001955 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001956
Eric Andersen6faae7d2001-02-16 20:09:17 +00001957 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001958 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1959 win_changed(0); /* do initial resizing */
1960#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1961 {
1962 struct passwd *entry;
1963
1964 entry = getpwuid(geteuid());
1965 if (entry) {
1966 user_buf = xstrdup(entry->pw_name);
1967 home_pwd_buf = xstrdup(entry->pw_dir);
1968 }
1969 }
1970#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001971
1972#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001973 for (i = 0; i <= MAX_HISTORY; i++)
1974 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001975 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1976#endif
1977
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001978 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001979 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001980 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001981
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001982 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001983 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001984 /*
1985 * The emacs and vi modes share much of the code in the big
1986 * command loop. Commands entered when in vi's command mode
1987 * (aka "escape mode") get an extra bit added to distinguish
1988 * them - this keeps them from being self-inserted. This
1989 * clutters the big switch a bit, but keeps all the code
1990 * in one place.
1991 */
1992 enum {
1993 VI_CMDMODE_BIT = 0x40000000,
1994 /* 0x80000000 bit flags KEYCODE_xxx */
1995 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001996 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001997
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001998 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001999 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002000
Denis Vlasenko38f63192007-01-22 09:03:07 +00002001#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00002002 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002003 if (vi_cmdmode) {
2004 /* btw, since KEYCODE_xxx are all < 0, this doesn't
2005 * change ic if it contains one of them: */
2006 ic |= VI_CMDMODE_BIT;
2007 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00002008#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002009
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002010 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00002011 case '\n':
2012 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002013 vi_case('\n'|VI_CMDMODE_BIT:)
2014 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002015 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002016 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00002017 break_out = 1;
2018 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002019 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002020 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002021 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002022 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00002023 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002024 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002025 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002026 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002027 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002028 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002029 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002030 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002031 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002032 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002033 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002034 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002035 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002036 vi_case('l'|VI_CMDMODE_BIT:)
2037 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002038 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002039 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002040 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002041 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002042 if (!isrtl_str())
2043 input_backspace();
2044 else
2045 input_delete(0);
2046 break;
2047 case KEYCODE_DELETE:
2048 if (!isrtl_str())
2049 input_delete(0);
2050 else
2051 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002052 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002053#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002054 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002055 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002056 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002057#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002058 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002059 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002060 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002061 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002062 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002063 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002064 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002065 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002066 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002067 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002068 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002069 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002070#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002071 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002072 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2073 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002074 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002075 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002076 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002077 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002078 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002079 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2080 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002081 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002082 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002083 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002084 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002085#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002086 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002087 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002088 /* Control-U -- Clear line before cursor */
2089 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002090 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002091 memmove(command_ps, command_ps + cursor,
2092 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002093 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002094 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002095 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002096 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002097 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002098 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002099 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002100 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002101 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002102 input_backspace();
2103 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002104
Denis Vlasenko38f63192007-01-22 09:03:07 +00002105#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002106 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002107 vi_cmdmode = 0;
2108 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002109 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002110 input_backward(cursor);
2111 vi_cmdmode = 0;
2112 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002113 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002114 input_forward();
2115 vi_cmdmode = 0;
2116 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002117 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002118 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002119 vi_cmdmode = 0;
2120 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002122 input_delete(1);
2123 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002124 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002125 if (cursor > 0) {
2126 input_backward(1);
2127 input_delete(1);
2128 }
2129 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 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002134 vi_word_motion(1);
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 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002140 vi_end_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 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002146 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002147 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002148 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002149 vi_cmdmode = 0;
2150 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002151 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002152 goto clear_to_eol;
2153
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002154 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002155 vi_cmdmode = 0;
2156 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002157 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002158 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002159
Denys Vlasenko020f4062009-05-17 16:44:54 +02002160 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002161 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002162 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002163 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002164 input_backward(cursor);
2165 goto clear_to_eol;
2166 break;
2167 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002168
2169 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002170 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002171 case 'w':
2172 case 'W':
2173 case 'e':
2174 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002175 switch (ic) {
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 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002180 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002181 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002182 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002183 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002184 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002185 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002186 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002187 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002188 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002189 break;
2190 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002191 nc = cursor;
2192 input_backward(cursor - sc);
2193 while (nc-- > cursor)
2194 input_delete(1);
2195 break;
2196 case 'b': /* "db", "cb" */
2197 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002198 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002199 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002200 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002201 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002202 while (sc-- > cursor)
2203 input_delete(1);
2204 break;
2205 case ' ': /* "d ", "c " */
2206 input_delete(1);
2207 break;
2208 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002209 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002210 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002211 input_delete(1);
2212 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002213 }
2214 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002215 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002216 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002217 input_forward();
2218 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002219 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002220 put();
2221 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002222 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002223//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002224 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002225 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002226 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002227 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002228 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002229 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002230 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002231 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002232 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002233 }
2234 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002235 case '\x1b': /* ESC */
2236 if (state->flags & VI_MODE) {
2237 /* insert mode --> command mode */
2238 vi_cmdmode = 1;
2239 input_backward(1);
2240 }
2241 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002242#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002243
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002244#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002245 case KEYCODE_UP:
2246 if (get_previous_history())
2247 goto rewrite_line;
2248 beep();
2249 break;
2250 case KEYCODE_DOWN:
2251 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002252 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002253 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002254 /* Rewrite the line with the selected history item */
2255 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002256 command_len = load_string(state->history[state->cur_history] ?
2257 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002258 /* redraw and go to eol (bol, in vi) */
2259 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2260 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002261#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002262 case KEYCODE_RIGHT:
2263 input_forward();
2264 break;
2265 case KEYCODE_LEFT:
2266 input_backward(1);
2267 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002268 case KEYCODE_CTRL_LEFT:
2269 ctrl_left();
2270 break;
2271 case KEYCODE_CTRL_RIGHT:
2272 ctrl_right();
2273 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002274 case KEYCODE_HOME:
2275 input_backward(cursor);
2276 break;
2277 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002278 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002279 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002280
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002281 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002282 if (initial_settings.c_cc[VINTR] != 0
2283 && ic_raw == initial_settings.c_cc[VINTR]
2284 ) {
2285 /* Ctrl-C (usually) - stop gathering input */
2286 goto_new_line();
2287 command_len = 0;
2288 break_out = -1; /* "do not append '\n'" */
2289 break;
2290 }
2291 if (initial_settings.c_cc[VEOF] != 0
2292 && ic_raw == initial_settings.c_cc[VEOF]
2293 ) {
2294 /* Ctrl-D (usually) - delete one character,
2295 * or exit if len=0 and no chars to delete */
2296 if (command_len == 0) {
2297 errno = 0;
2298#if ENABLE_FEATURE_EDITING_VI
2299 prepare_to_die:
2300#endif
2301 break_out = command_len = -1;
2302 break;
2303 }
2304 input_delete(0);
2305 break;
2306 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002307// /* Control-V -- force insert of next char */
2308// if (c == CTRL('V')) {
2309// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2310// goto prepare_to_die;
2311// if (c == 0) {
2312// beep();
2313// break;
2314// }
2315// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002316 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002317 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2318 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002319 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002320 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002321 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002322 * Otherwise, we are here if ic is a
2323 * control char or an unhandled ESC sequence,
2324 * which is also ignored.
2325 */
2326 break;
2327 }
2328 if ((int)command_len >= (maxsize - 2)) {
2329 /* Not enough space for the char and EOL */
2330 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002331 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002332
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002333 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002334 if (cursor == (command_len - 1)) {
2335 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002336 command_ps[cursor] = ic;
2337 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002338 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002339 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002340 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002341 } else {
2342 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002343 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002344
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002345 memmove(command_ps + sc + 1, command_ps + sc,
2346 (command_len - sc) * sizeof(command_ps[0]));
2347 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002348 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2349 if (!isrtl_str())
2350 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002351 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002352 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002353 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002354 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002355 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002356 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002357
2358 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002359 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002360
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002361#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002362 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002363 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002364#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002365 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002366
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002367#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002368 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002369 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2370 * We sent "ESC [ 6 n", but got '\n' first, and
2371 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2372 * It's bad already and not much can be done with it
2373 * (it _will_ be visible for the next process to read stdin),
2374 * but without this delay it even shows up on the screen
2375 * as garbage because we restore echo settings with tcsetattr
2376 * before it comes in. UGLY!
2377 */
2378 usleep(20*1000);
2379 }
2380#endif
2381
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002382/* Stop bug catching using "command_must_not_be_used" trick */
2383#undef command
2384
Denys Vlasenko19158a82010-03-26 14:06:56 +01002385#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002386 command[0] = '\0';
2387 if (command_len > 0)
2388 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002389 free(command_ps);
2390#endif
2391
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002392 if (command_len > 0)
2393 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002394
Eric Andersen27bb7902003-12-23 20:24:51 +00002395 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002396 command[command_len++] = '\n';
2397 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002398 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002399
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002400#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002401 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002402#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002403
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002404 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002405 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002406 /* restore SIGWINCH handler */
2407 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002408 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002409
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002410 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002411 DEINIT_S();
2412
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002413 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002414}
2415
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002416#else
2417
2418#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002419int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002420{
2421 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002422 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002423 fgets(command, maxsize, stdin);
2424 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002425}
2426
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002427#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002428
2429
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002430/*
2431 * Testing
2432 */
2433
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002434#ifdef TEST
2435
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002436#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002437
2438const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002439
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002440int main(int argc, char **argv)
2441{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002442 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002443 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002444#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002445 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2446 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2447 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002448#else
2449 "% ";
2450#endif
2451
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002452 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002453 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002454 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002455 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002456 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002457 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002458 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002459 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002460 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002461 return 0;
2462}
2463
Eric Andersenc470f442003-07-28 09:56:35 +00002464#endif /* TEST */