blob: 9f2d657170f94817c6824eb5290eab5d97ec7e49 [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) {
285 if (unicode_is_raw_byte(wc)
286 || (CONFIG_LAST_SUPPORTED_WCHAR && wc > CONFIG_LAST_SUPPORTED_WCHAR)
287 ) {
288 goto subst;
289 }
290 w = wcwidth(wc);
291 if ((ENABLE_UNICODE_COMBINING_WCHARS && w < 0)
292 || (!ENABLE_UNICODE_COMBINING_WCHARS && w <= 0)
293 || (!ENABLE_UNICODE_WIDE_WCHARS && w > 1)
294 ) {
295 subst:
296 w = 1;
297 wc = CONFIG_SUBST_WCHAR;
298 }
299 }
300
301# if ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS
302 *width_adj += w;
303#endif
304 return wc;
305}
306#else /* !UNICODE */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200307static size_t load_string(const char *src, int maxsize)
308{
309 safe_strncpy(command_ps, src, maxsize);
310 return strlen(command_ps);
311}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200312# if ENABLE_FEATURE_TAB_COMPLETION
Tomas Heinricha659b812010-04-29 13:43:39 +0200313static void save_string(char *dst, unsigned maxsize)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200314{
315 safe_strncpy(dst, command_ps, maxsize);
316}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200317# endif
318# define BB_PUTCHAR(c) bb_putchar(c)
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200319/* Should never be called: */
320int adjust_width_and_validate_wc(unsigned *width_adj, int wc);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200321#endif
322
323
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000324/* Put 'command_ps[cursor]', cursor++.
325 * Advance cursor on screen. If we reached right margin, scroll text up
326 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000327#define HACK_FOR_WRONG_WIDTH 1
Denys Vlasenko94043e82010-05-11 14:49:13 +0200328static void put_cur_glyph_and_inc_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000329{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200330 CHAR_T c = command_ps[cursor];
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200331 unsigned width = 0;
332 int ofs_to_right;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000333
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200334 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000335 /* erase character after end of input string */
336 c = ' ';
Denys Vlasenko94043e82010-05-11 14:49:13 +0200337 } else {
338 /* advance cursor only if we aren't at the end yet */
339 cursor++;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200340 if (unicode_status == UNICODE_ON) {
341 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x;)
342 c = adjust_width_and_validate_wc(&cmdedit_x, c);
343 IF_UNICODE_WIDE_WCHARS(width = cmdedit_x - width;)
344 } else {
345 cmdedit_x++;
346 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000347 }
Denys Vlasenko94043e82010-05-11 14:49:13 +0200348
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200349 ofs_to_right = cmdedit_x - cmdedit_termw;
350 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right <= 0) {
351 /* c fits on this line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200352 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000353 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200354
355 if (ofs_to_right >= 0) {
356 /* we go to the next line */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000357#if HACK_FOR_WRONG_WIDTH
358 /* This works better if our idea of term width is wrong
359 * and it is actually wider (often happens on serial lines).
360 * Printing CR,LF *forces* cursor to next line.
361 * OTOH if terminal width is correct AND terminal does NOT
362 * have automargin (IOW: it is moving cursor to next line
363 * by itself (which is wrong for VT-10x terminals)),
364 * this will break things: there will be one extra empty line */
365 puts("\r"); /* + implicit '\n' */
366#else
Denys Vlasenko94043e82010-05-11 14:49:13 +0200367 /* VT-10x terminals don't wrap cursor to next line when last char
368 * on the line is printed - cursor stays "over" this char.
369 * Need to print _next_ char too (first one to appear on next line)
370 * to make cursor move down to next line.
371 */
372 /* Works ok only if cmdedit_termw is correct. */
373 c = command_ps[cursor];
374 if (c == BB_NUL)
375 c = ' ';
376 BB_PUTCHAR(c);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000377 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000378#endif
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200379 cmdedit_y++;
380 if (!ENABLE_UNICODE_WIDE_WCHARS || ofs_to_right == 0) {
381 width = 0;
382 } else { /* ofs_to_right > 0 */
383 /* wide char c didn't fit on prev line */
384 BB_PUTCHAR(c);
385 }
386 cmdedit_x = width;
Mark Whitley4e338752001-01-26 20:42:23 +0000387 }
Erik Andersen13456d12000-03-16 08:09:57 +0000388}
389
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000390/* Move to end of line (by printing all chars till the end) */
Denys Vlasenko94043e82010-05-11 14:49:13 +0200391static void put_till_end_and_adv_cursor(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000392{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000393 while (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200394 put_cur_glyph_and_inc_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +0000395}
396
397/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000398static void goto_new_line(void)
399{
Denys Vlasenko94043e82010-05-11 14:49:13 +0200400 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000401 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000402 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000403}
404
405
Rob Landley88621d72006-08-29 19:41:06 +0000406static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000407{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000408 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000409 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410}
Eric Andersen81fe1232003-07-29 06:38:40 +0000411
Rob Landley88621d72006-08-29 19:41:06 +0000412static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000413{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000414 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000415}
416
Eric Andersenaff114c2004-04-14 17:51:38 +0000417/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000418/* (optimized for slow terminals) */
419static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000421 int count_y;
422
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000423 if (num > cursor)
424 num = cursor;
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200425 if (num == 0)
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000426 return;
427 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000428
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200429 if ((ENABLE_UNICODE_COMBINING_WCHARS || ENABLE_UNICODE_WIDE_WCHARS)
430 && unicode_status == UNICODE_ON
431 ) {
432 /* correct NUM to be equal to _screen_ width */
433 int n = num;
434 num = 0;
435 while (--n >= 0)
436 adjust_width_and_validate_wc(&num, command_ps[cursor + n]);
437 if (num == 0)
438 return;
439 }
440
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000441 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000443 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000444 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000445 * Also gets miscompiled for ARM users
446 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000447 * printf(("\b\b\b\b" + 4) - num);
448 * return;
449 */
450 do {
451 bb_putchar('\b');
452 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000453 return;
454 }
455 printf("\033[%uD", num);
456 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000457 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000458
459 /* Need to go one or more lines up */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200460//FIXME: this does not work correctly if prev line has one "unfilled" screen position
461//caused by wide unicode char not fitting in that one screen position.
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000462 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000463 {
464 unsigned w = cmdedit_termw; /* volatile var */
465 count_y = 1 + (num / w);
466 cmdedit_y -= count_y;
467 cmdedit_x = w * count_y - num;
468 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000469 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000470 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000471}
472
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000473static void put_prompt(void)
474{
Denys Vlasenko13ad9062009-11-11 03:19:30 +0100475 unsigned w;
476
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000477 out1str(cmdedit_prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100478 fflush_all();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000479 cursor = 0;
Denys Vlasenko13ad9062009-11-11 03:19:30 +0100480 w = cmdedit_termw; /* read volatile var once */
481 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
482 cmdedit_x = cmdedit_prmt_len % w;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000483}
484
Eric Andersenaff114c2004-04-14 17:51:38 +0000485/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000486static void redraw(int y, int back_cursor)
487{
Denys Vlasenko044b1802009-07-12 02:50:35 +0200488 if (y > 0) /* up to start y */
489 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000490 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000491 put_prompt();
Denys Vlasenko94043e82010-05-11 14:49:13 +0200492 put_till_end_and_adv_cursor();
493 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000494 input_backward(back_cursor);
495}
496
Paul Fox3f11b1b2005-08-04 19:04:46 +0000497/* Delete the char in front of the cursor, optionally saving it
498 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000499#if !ENABLE_FEATURE_EDITING_VI
500static void input_delete(void)
501#define input_delete(save) input_delete()
502#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000503static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000504#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000505{
Mark Whitley4e338752001-01-26 20:42:23 +0000506 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000507
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000508 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000509 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000510
Denis Vlasenko38f63192007-01-22 09:03:07 +0000511#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000512 if (save) {
513 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000514 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000515 newdelflag = 0;
516 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000517 if ((delptr - delbuf) < DELBUFSIZ)
518 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000519 }
520#endif
521
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200522 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200523 /* (command_len + 1 [because of NUL]) - (j + 1)
524 * simplified into (command_len - j) */
525 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000526 command_len--;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200527 put_till_end_and_adv_cursor();
528 /* Last char is still visible, erase it (and more) */
529 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersenc470f442003-07-28 09:56:35 +0000530 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000531}
532
Denis Vlasenko38f63192007-01-22 09:03:07 +0000533#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000534static void put(void)
535{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000536 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000537 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000538
Paul Fox3f11b1b2005-08-04 19:04:46 +0000539 if (j == 0)
540 return;
541 ocursor = cursor;
542 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200543 memmove(command_ps + cursor + j, command_ps + cursor,
544 (command_len - cursor + 1) * sizeof(command_ps[0]));
545 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000546 command_len += j;
Denys Vlasenko94043e82010-05-11 14:49:13 +0200547 put_till_end_and_adv_cursor();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000548 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000549}
550#endif
551
Mark Whitley4e338752001-01-26 20:42:23 +0000552/* Delete the char in back of the cursor */
553static void input_backspace(void)
554{
555 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000556 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000557 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000558 }
559}
560
Eric Andersenaff114c2004-04-14 17:51:38 +0000561/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000562static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000563{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000564 if (cursor < command_len)
Denys Vlasenko94043e82010-05-11 14:49:13 +0200565 put_cur_glyph_and_inc_cursor();
Erik Andersenf0657d32000-04-12 17:49:52 +0000566}
567
Denis Vlasenko38f63192007-01-22 09:03:07 +0000568#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000569
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000570static void free_tab_completion_data(void)
571{
572 if (matches) {
573 while (num_matches)
574 free(matches[--num_matches]);
575 free(matches);
576 matches = NULL;
577 }
578}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000579
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000580static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000581{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000582 matches = xrealloc_vector(matches, 4, num_matches);
583 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000584 num_matches++;
585}
586
Denis Vlasenko38f63192007-01-22 09:03:07 +0000587#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000588static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000589{
590 struct passwd *entry;
591 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000592
Eric Andersenc470f442003-07-28 09:56:35 +0000593 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594 userlen = strlen(ud);
595
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000596 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000597 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000598 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000599
Eric Andersenc470f442003-07-28 09:56:35 +0000600 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000601 home = home_pwd_buf;
602 } else {
603 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000604 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000605 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000606 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000607 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000608 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000609 ud = temp;
610 if (entry)
611 home = entry->pw_dir;
612 }
613 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000614 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000615 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000616 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000617 }
618 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000619 } else {
620 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000621 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000622 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000623 struct passwd pwd;
624 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000626 setpwent();
627 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000629 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
630 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631 }
632 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000633 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000634 }
635}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000636#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000637
638enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000639 FIND_EXE_ONLY = 0,
640 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000641 FIND_FILE_ONLY = 2,
642};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000643
Mark Whitley4e338752001-01-26 20:42:23 +0000644static int path_parse(char ***p, int flags)
645{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000646 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000647 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000648 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000649 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000650
Mark Whitley4e338752001-01-26 20:42:23 +0000651 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000652 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000653 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000654
655 if (state->flags & WITH_PATH_LOOKUP)
656 pth = state->path_lookup;
657 else
658 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000659 /* PATH=<empty> or PATH=:<empty> */
660 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
661 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000662
Denis Vlasenko253ce002007-01-22 08:34:44 +0000663 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000664 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000665 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000666 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000667 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000668 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000669 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000670 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000671 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000672 }
673
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000674 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000675 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000676 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000677 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000678 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000679 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000680 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000681 *tmp++ = '\0'; /* ':' -> '\0' */
682 if (*tmp == '\0')
683 break; /* :<empty> */
684 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000685 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000686 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000687 return npth;
688}
689
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000690static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000691{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000692 DIR *dir;
693 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000694 struct stat st;
695 char *path1[1];
696 char **paths = path1;
697 int npaths;
698 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000699 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000700 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000701/* char dirbuf[MAX_LINELEN]; */
702#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000703
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000704 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000705 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000706
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000707 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000708 /* no dir, if flags==EXE_ONLY - get paths, else "." */
709 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000710 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000711 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000712 /* dirbuf = ".../.../.../" */
713 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000714#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000715 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000716 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000718 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000719 /* point to 'l' in "..../last_component" */
720 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000721 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000722
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000723 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000724 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000725 if (!dir)
726 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000727
728 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000729 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000730 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000732 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000733 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000734 continue;
735 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000736 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000737 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000738 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000739 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000740 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000741 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000742 /* hmm, remove in progress? */
743 /* NB: stat() first so that we see is it a directory;
744 * but if that fails, use lstat() so that
745 * we still match dangling links */
746 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000747 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000748 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000749 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000750 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000751
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000752 len1 = strlen(found);
753 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000754 found[len1] = '\0';
755 found[len1+1] = '\0';
756
Mark Whitley4e338752001-01-26 20:42:23 +0000757 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000758 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000759 if (found[len1-1] != '/') {
760 found[len1] = '/';
761 }
Mark Whitley4e338752001-01-26 20:42:23 +0000762 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000763 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000764 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000765 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000766 }
Mark Whitley4e338752001-01-26 20:42:23 +0000767 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000768 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000769 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000770 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000771 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000772 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000773 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000774 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000775 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000776 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000777 free(paths);
778 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000779#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000780}
Erik Andersenf0657d32000-04-12 17:49:52 +0000781
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200782/* QUOT is used on elements of int_buf[], which are bytes,
783 * not Unicode chars. Therefore it works correctly even in Unicode mode.
784 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000785#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200787#define int_buf (S.find_match__int_buf)
788#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200789/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200790static void collapse_pos(int is, int in)
791{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200792 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
793 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200794}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200795static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000796{
797 int i, j;
798 int command_mode;
799 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200800/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000801/* int16_t int_buf[MAX_LINELEN + 1]; */
802/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000803
804 /* set to integer dimension characters and own positions */
805 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000806 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000807 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200808 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000809 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000810 }
811 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000812 }
813
814 /* mask \+symbol and convert '\t' to ' ' */
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200815 for (i = j = 0; matchBuf[i]; i++, j++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000816 if (matchBuf[i] == '\\') {
817 collapse_pos(j, j + 1);
818 int_buf[j] |= QUOT;
819 i++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000820 }
Tomas Heinrichb8909c52010-05-16 20:46:53 +0200821 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000822 /* mask "symbols" or 'symbols' */
823 c2 = 0;
824 for (i = 0; int_buf[i]; i++) {
825 c = int_buf[i];
826 if (c == '\'' || c == '"') {
827 if (c2 == 0)
828 c2 = c;
829 else {
830 if (c == c2)
831 c2 = 0;
832 else
833 int_buf[i] |= QUOT;
834 }
835 } else if (c2 != 0 && c != '$')
836 int_buf[i] |= QUOT;
837 }
838
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000839 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000840 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
841 for (i = 0; int_buf[i]; i++) {
842 c = int_buf[i];
843 c2 = int_buf[i + 1];
844 j = i ? int_buf[i - 1] : -1;
845 command_mode = 0;
846 if (c == ';' || c == '&' || c == '|') {
847 command_mode = 1 + (c == c2);
848 if (c == '&') {
849 if (j == '>' || j == '<')
850 command_mode = 0;
851 } else if (c == '|' && j == '>')
852 command_mode = 0;
853 }
854 if (command_mode) {
855 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200856 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000857 }
858 }
859 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200860 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000861 if (int_buf[i] == '`') {
862 for (j = i + 1; int_buf[j]; j++)
863 if (int_buf[j] == '`') {
864 collapse_pos(i, j + 1);
865 j = 0;
866 break;
867 }
868 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200869 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000870 collapse_pos(0, i + 1);
871 break;
872 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200873 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000874 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200875 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000876
877 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200878 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000879 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200880 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000881 if (int_buf[i] == '(' || int_buf[i] == '{') {
882 if (int_buf[i] == '(')
883 c++;
884 else
885 c2++;
886 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200887 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200889 }
890 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000891 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
892 if (int_buf[i] == ')')
893 c--;
894 else
895 c2--;
896 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200897 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200899 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000900
901 /* skip first not quote space */
902 for (i = 0; int_buf[i]; i++)
903 if (int_buf[i] != ' ')
904 break;
905 if (i)
906 collapse_pos(0, i);
907
908 /* set find mode for completion */
909 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200910 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000911 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
912 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000913 && matchBuf[pos_buf[0]] == 'c'
914 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000915 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000916 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000917 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000918 command_mode = FIND_FILE_ONLY;
919 break;
920 }
921 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200922 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000923 for (i = 0; int_buf[i]; i++)
924 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000925 /* find last word */
926 for (--i; i >= 0; i--) {
927 c = int_buf[i];
928 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
929 collapse_pos(0, i + 1);
930 break;
931 }
932 }
933 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000934 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
935 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000936 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000937 while ((int_buf[i] & ~QUOT) == '/'
938 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
939 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000940 i++;
941 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942
943 /* set only match and destroy quotes */
944 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000945 for (c = 0; pos_buf[i] >= 0; i++) {
946 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000947 j = pos_buf[i] + 1;
948 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000949 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000950 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000951 *len_with_quotes = j ? j - pos_buf[0] : 0;
952
953 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200954}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000955#undef int_buf
956#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000957
Glenn L McGrath4d001292003-01-06 01:11:50 +0000958/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000959 * display by column (original idea from ls applet,
960 * very optimized by me :)
961 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000962static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000963{
964 int ncols, row;
965 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000966 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000967 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000968 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000969
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200970 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000971 for (row = 0; row < nrows; row++) {
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100972 l = unicode_strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000973 if (column_width < l)
974 column_width = l;
975 }
976 column_width += 2; /* min space for columns */
977 ncols = cmdedit_termw / column_width;
978
979 if (ncols > 1) {
980 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000981 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000982 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000983 } else {
984 ncols = 1;
985 }
986 for (row = 0; row < nrows; row++) {
987 int n = row;
988 int nc;
989
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000990 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000991 printf("%s%-*s", matches[n],
Denys Vlasenko9f93d622010-01-24 07:44:03 +0100992 (int)(column_width - unicode_strlen(matches[n])), ""
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200993 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000994 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000995 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000996 }
997}
998
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000999static char *add_quote_for_spec_chars(char *found)
1000{
1001 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001002 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001003
1004 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001005 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001006 s[l++] = '\\';
1007 s[l++] = *found++;
1008 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +02001009 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001010 return s;
1011}
1012
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001013/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001014static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +00001015{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001016 if (!(state->flags & TAB_COMPLETION))
1017 return;
1018
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001019 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001020 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001021 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001022/* char matchBuf[MAX_LINELEN]; */
1023#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001024 int find_type;
1025 int recalc_pos;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001026#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001027 /* cursor pos in command converted to multibyte form */
1028 int cursor_mb;
1029#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001030
Eric Andersenc470f442003-07-28 09:56:35 +00001031 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001032
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001033 /* Make a local copy of the string --
1034 * up to the position of the cursor */
1035 save_string(matchBuf, cursor + 1);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001036#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001037 cursor_mb = strlen(matchBuf);
1038#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001039 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001040
1041 find_type = find_match(matchBuf, &recalc_pos);
1042
1043 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001044 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +00001045
Denis Vlasenko38f63192007-01-22 09:03:07 +00001046#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001047 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001048 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001049 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +02001050 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001051 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001052#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001053 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001054 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001055 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001056 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001057 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001058 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001059 unsigned i;
1060 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +00001061 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001062 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001063 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001064 if (strcmp(matches[i], matches[i+1]) == 0) {
1065 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001066 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001067 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +00001068 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +00001069 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001070 }
Denis Vlasenko92758142006-10-03 19:56:34 +00001071 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001072 matches[n] = matches[i];
1073 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001074 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001075 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +02001076 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +00001077 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +00001079 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001080 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +00001081 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001082 for (tmp = tmp1; *tmp; tmp++) {
1083 for (len_found = 1; len_found < num_matches; len_found++) {
1084 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001085 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001086 break;
1087 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001088 }
1089 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001090 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001091 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001092 return;
1093 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001094 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001095 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001096 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001097 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001098 /* for next completion current found */
1099 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001100
1101 len_found = strlen(tmp);
1102 if (tmp[len_found-1] != '/') {
1103 tmp[len_found] = ' ';
1104 tmp[len_found+1] = '\0';
1105 }
Mark Whitley4e338752001-01-26 20:42:23 +00001106 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001107
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001108 len_found = strlen(tmp);
Denys Vlasenko19158a82010-03-26 14:06:56 +01001109#if !ENABLE_UNICODE_SUPPORT
Denys Vlasenko044b1802009-07-12 02:50:35 +02001110 /* have space to place the match? */
1111 /* The result consists of three parts with these lengths: */
1112 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1113 /* it simplifies into: */
1114 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1115 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001117 /* add match and tail */
1118 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001119 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001120 /* new pos */
1121 recalc_pos = cursor - recalc_pos + len_found;
1122 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001123 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001124 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001125#else
1126 {
1127 char command[MAX_LINELEN];
1128 int len = save_string(command, sizeof(command));
1129 /* have space to place the match? */
1130 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1131 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1132 /* save tail */
1133 strcpy(matchBuf, command + cursor_mb);
1134 /* where do we want to have cursor after all? */
1135 strcpy(&command[cursor_mb - recalc_pos], tmp);
1136 len = load_string(command, S.maxsize);
1137 /* add match and tail */
1138 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1139 command_len = load_string(command, S.maxsize);
1140 /* write out the matched command */
1141 redraw(cmdedit_y, command_len - len);
1142 }
1143 }
1144#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001145 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001146#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001147 } else {
1148 /* Ok -- the last char was a TAB. Since they
1149 * just hit TAB again, print a list of all the
1150 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001151 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001152 /* changed by goto_new_line() */
1153 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001154
1155 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001156 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001157 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001158 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001159 }
1160 }
1161}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001162
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001163#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001164
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001165
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001166line_input_t* FAST_FUNC new_line_input_t(int flags)
1167{
1168 line_input_t *n = xzalloc(sizeof(*n));
1169 n->flags = flags;
1170 return n;
1171}
1172
1173
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001174#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001175
Denis Vlasenko682ad302008-09-27 01:28:56 +00001176static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001177{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001178 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001179 int cur = state->cur_history;
1180 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001181
Denys Vlasenko19158a82010-03-26 14:06:56 +01001182# if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001183 {
1184 char tbuf[MAX_LINELEN];
1185 save_string(tbuf, sizeof(tbuf));
1186 state->history[cur] = xstrdup(tbuf);
1187 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001188# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001189 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001190# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001191 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001192}
1193
1194/* state->flags is already checked to be nonzero */
1195static int get_previous_history(void)
1196{
1197 if ((state->flags & DO_HISTORY) && state->cur_history) {
1198 save_command_ps_at_cur_history();
1199 state->cur_history--;
1200 return 1;
1201 }
1202 beep();
1203 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001204}
1205
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001206static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001207{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001208 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001209 if (state->cur_history < state->cnt_history) {
1210 save_command_ps_at_cur_history(); /* save the current history line */
1211 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001212 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001213 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001214 beep();
1215 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001216}
Robert Griebl350d26b2002-12-03 22:45:46 +00001217
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001218# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001219/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001220 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001221 * Otherwise shell users get unhappy.
1222 *
1223 * History file is trimmed lazily, when it grows several times longer
1224 * than configured MAX_HISTORY lines.
1225 */
1226
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001227static void free_line_input_t(line_input_t *n)
1228{
1229 int i = n->cnt_history;
1230 while (i > 0)
1231 free(n->history[--i]);
1232 free(n);
1233}
1234
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001235/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001236static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001237{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001238 char *temp_h[MAX_HISTORY];
1239 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001240 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001241 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001242
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001243 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001244
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001245 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001246 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001247 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001248 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001249 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001250 free(st_parm->history[idx]);
1251 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001252 }
1253
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001254 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1255 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001256 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001257 while ((line = xmalloc_fgetline(fp)) != NULL) {
1258 if (line[0] == '\0') {
1259 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001260 continue;
1261 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001262 free(temp_h[idx]);
1263 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001264 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001265 idx++;
1266 if (idx == MAX_HISTORY)
1267 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001268 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001269 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001270
1271 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001272 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001273 while (temp_h[idx] == NULL) {
1274 idx++;
1275 if (idx == MAX_HISTORY)
1276 idx = 0;
1277 }
1278 }
1279
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001280 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001281 for (i = 0; i < MAX_HISTORY;) {
1282 line = temp_h[idx];
1283 if (!line)
1284 break;
1285 idx++;
1286 if (idx == MAX_HISTORY)
1287 idx = 0;
1288 line_len = strlen(line);
1289 if (line_len >= MAX_LINELEN)
1290 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001291 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001292 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001293 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001294 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001295}
1296
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001297/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001298static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001299{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001300 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001301 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001302
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001303 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1304 if (fd < 0)
1305 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001306 xlseek(fd, 0, SEEK_END); /* paranoia */
1307 len = strlen(str);
1308 str[len] = '\n'; /* we (try to) do atomic write */
1309 len2 = full_write(fd, str, len + 1);
1310 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001311 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001312 if (len2 != len + 1)
1313 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001314
1315 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001316 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001317 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1318 FILE *fp;
1319 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001320 line_input_t *st_temp;
1321 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001322
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001323 /* we may have concurrently written entries from others.
1324 * load them */
1325 st_temp = new_line_input_t(state->flags);
1326 st_temp->hist_file = state->hist_file;
1327 load_history(st_temp);
1328
1329 /* write out temp file and replace hist_file atomically */
1330 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001331 fp = fopen_for_write(new_name);
1332 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001333 for (i = 0; i < st_temp->cnt_history; i++)
1334 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001335 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001336 if (rename(new_name, state->hist_file) == 0)
1337 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001338 }
1339 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001340 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001341 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001342}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001343# else
1344# define load_history(a) ((void)0)
1345# define save_history(a) ((void)0)
1346# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001347
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001348static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001349{
1350 int i;
1351
1352 if (!(state->flags & DO_HISTORY))
1353 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001354 if (str[0] == '\0')
1355 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001356 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001357 /* Don't save dupes */
1358 if (i && strcmp(state->history[i-1], str) == 0)
1359 return;
1360
1361 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1362 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1363
1364 /* If history[] is full, remove the oldest command */
1365 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001366 if (i >= MAX_HISTORY) {
1367 free(state->history[0]);
1368 for (i = 0; i < MAX_HISTORY-1; i++)
1369 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001370 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001371 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001372 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001373 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001374 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001375 state->cur_history = i;
1376 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001377# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001378 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001379 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001380# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001381 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001382}
1383
1384#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001385# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001386#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001387
1388
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001389#if ENABLE_FEATURE_EDITING_VI
Erik Andersen6273f652000-03-17 01:12:41 +00001390/*
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001391 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001392 */
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001393static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001394vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001395{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001396 CHAR_T *command = command_ps;
1397
1398 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001399 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001400 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001401 input_forward();
1402}
1403
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001404static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001405vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001406{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001407 CHAR_T *command = command_ps;
1408
1409 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001410 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001411 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1412 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001413 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001414 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001415 } else if (BB_ispunct(command[cursor])) {
1416 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001417 input_forward();
1418 }
1419
Denis Vlasenko253ce002007-01-22 08:34:44 +00001420 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001421 input_forward();
1422
Denys Vlasenko13028922009-07-12 00:51:15 +02001423 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001424 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001425 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001426 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001427}
1428
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001429static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001430vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001431{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001432 CHAR_T *command = command_ps;
1433
Paul Fox3f11b1b2005-08-04 19:04:46 +00001434 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001435 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001436 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001437 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001438 input_forward();
1439}
1440
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001441static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001442vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001443{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001444 CHAR_T *command = command_ps;
1445
Denis Vlasenko253ce002007-01-22 08:34:44 +00001446 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001447 return;
1448 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001449 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001450 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001451 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001452 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001453 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001454 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001455 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001456 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001457 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001458 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001459 } else if (BB_ispunct(command[cursor])) {
1460 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001461 input_forward();
1462 }
1463}
1464
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001465static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001466vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001467{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001468 CHAR_T *command = command_ps;
1469
1470 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001471 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001472 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001473 input_backward(1);
1474}
1475
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001476static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001477vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001478{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001479 CHAR_T *command = command_ps;
1480
Paul Fox3f11b1b2005-08-04 19:04:46 +00001481 if (cursor <= 0)
1482 return;
1483 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001484 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001485 input_backward(1);
1486 if (cursor <= 0)
1487 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001488 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001489 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001490 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001491 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001492 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001493 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001494 } else if (BB_ispunct(command[cursor])) {
1495 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001496 input_backward(1);
1497 }
1498}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001499#endif
1500
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01001501/* Modelled after bash 4.0 behavior of Ctrl-<arrow> */
1502static void ctrl_left(void)
1503{
1504 CHAR_T *command = command_ps;
1505
1506 while (1) {
1507 CHAR_T c;
1508
1509 input_backward(1);
1510 if (cursor == 0)
1511 break;
1512 c = command[cursor];
1513 if (c != ' ' && !BB_ispunct(c)) {
1514 /* we reached a "word" delimited by spaces/punct.
1515 * go to its beginning */
1516 while (1) {
1517 c = command[cursor - 1];
1518 if (c == ' ' || BB_ispunct(c))
1519 break;
1520 input_backward(1);
1521 if (cursor == 0)
1522 break;
1523 }
1524 break;
1525 }
1526 }
1527}
1528static void ctrl_right(void)
1529{
1530 CHAR_T *command = command_ps;
1531
1532 while (1) {
1533 CHAR_T c;
1534
1535 c = command[cursor];
1536 if (c == BB_NUL)
1537 break;
1538 if (c != ' ' && !BB_ispunct(c)) {
1539 /* we reached a "word" delimited by spaces/punct.
1540 * go to its end + 1 */
1541 while (1) {
1542 input_forward();
1543 c = command[cursor];
1544 if (c == BB_NUL || c == ' ' || BB_ispunct(c))
1545 break;
1546 }
1547 break;
1548 }
1549 input_forward();
1550 }
1551}
1552
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001553
1554/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001555 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001556 */
1557
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001558#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1559static void ask_terminal(void)
1560{
1561 /* Ask terminal where is the cursor now.
1562 * lineedit_read_key handles response and corrects
1563 * our idea of current cursor position.
1564 * Testcase: run "echo -n long_line_long_line_long_line",
1565 * then type in a long, wrapping command and try to
1566 * delete it using backspace key.
1567 * Note: we print it _after_ prompt, because
1568 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
1569 */
1570 /* Problem: if there is buffered input on stdin,
1571 * the response will be delivered later,
1572 * possibly to an unsuspecting application.
1573 * Testcase: "sleep 1; busybox ash" + press and hold [Enter].
1574 * Result:
1575 * ~/srcdevel/bbox/fix/busybox.t4 #
1576 * ~/srcdevel/bbox/fix/busybox.t4 #
1577 * ^[[59;34~/srcdevel/bbox/fix/busybox.t4 # <-- garbage
1578 * ~/srcdevel/bbox/fix/busybox.t4 #
1579 *
1580 * Checking for input with poll only makes the race narrower,
1581 * I still can trigger it. Strace:
1582 *
1583 * write(1, "~/srcdevel/bbox/fix/busybox.t4 # ", 33) = 33
1584 * poll([{fd=0, events=POLLIN}], 1, 0) = 0 (Timeout) <-- no input exists
1585 * write(1, "\33[6n", 4) = 4 <-- send the ESC sequence, quick!
1586 * poll([{fd=0, events=POLLIN}], 1, 4294967295) = 1 ([{fd=0, revents=POLLIN}])
1587 * read(0, "\n", 1) = 1 <-- oh crap, user's input got in first
1588 */
1589 struct pollfd pfd;
1590
1591 pfd.fd = STDIN_FILENO;
1592 pfd.events = POLLIN;
1593 if (safe_poll(&pfd, 1, 0) == 0) {
1594 S.sent_ESC_br6n = 1;
1595 out1str("\033" "[6n");
1596 fflush_all(); /* make terminal see it ASAP! */
1597 }
1598}
1599#else
1600#define ask_terminal() ((void)0)
1601#endif
1602
Denis Vlasenko38f63192007-01-22 09:03:07 +00001603#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001604static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001605{
1606 cmdedit_prompt = prmt_ptr;
1607 cmdedit_prmt_len = strlen(prmt_ptr);
1608 put_prompt();
1609}
1610#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001611static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001612{
1613 int prmt_len = 0;
1614 size_t cur_prmt_len = 0;
1615 char flg_not_length = '[';
1616 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001617 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1618 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001619 char c;
1620 char *pbuf;
1621
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001622 cmdedit_prmt_len = 0;
1623
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001624 if (!cwd_buf) {
1625 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001626 }
1627
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001628 cbuf[1] = '\0'; /* never changes */
1629
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001630 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001631 char *free_me = NULL;
1632
1633 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001634 c = *prmt_ptr++;
1635 if (c == '\\') {
1636 const char *cp = prmt_ptr;
1637 int l;
1638
1639 c = bb_process_escape_sequence(&prmt_ptr);
1640 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001641 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001642 break;
1643 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001644
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001645 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001646# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001647 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001648 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001649 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001650# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001651 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001652 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001653 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001654 break;
1655 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001656 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001657 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001658# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001659 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001660 /* /home/user[/something] -> ~[/something] */
1661 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001662 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001663 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001664 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1665 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1666 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001667 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001668 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001669 }
1670 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001671# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001672 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001673 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001674 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001675 if (cp != NULL && cp != pbuf)
1676 pbuf += (cp-pbuf) + 1;
1677 break;
1678 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001679 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001680 break;
1681 case 'e': case 'E': /* \e \E = \033 */
1682 c = '\033';
1683 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001684 case 'x': case 'X': {
1685 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001686 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001687 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001688 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001689 buf2[l] = '\0';
1690 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001691 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001692 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001693 break;
1694 }
1695 prmt_ptr++;
1696 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001697 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698 if (c == 0)
1699 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001700 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001701 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001702 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001703 case '[': case ']':
1704 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001705 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001706 continue;
1707 }
1708 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001709 } /* switch */
1710 } /* if */
1711 } /* if */
1712 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001713 cur_prmt_len = strlen(pbuf);
1714 prmt_len += cur_prmt_len;
1715 if (flg_not_length != ']')
1716 cmdedit_prmt_len += cur_prmt_len;
1717 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001718 free(free_me);
1719 } /* while */
1720
1721 if (cwd_buf != (char *)bb_msg_unknown)
1722 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001723 cmdedit_prompt = prmt_mem_ptr;
1724 put_prompt();
1725}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001726#endif
1727
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001728static void cmdedit_setwidth(unsigned w, int redraw_flg)
1729{
1730 cmdedit_termw = w;
1731 if (redraw_flg) {
1732 /* new y for current cursor */
1733 int new_y = (cursor + cmdedit_prmt_len) / w;
1734 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001735 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001736 fflush_all();
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001737 }
1738}
1739
1740static void win_changed(int nsig)
1741{
Denis Vlasenko55995022008-05-18 22:28:26 +00001742 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001743 get_terminal_width_height(0, &width, NULL);
1744 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1745 if (nsig == SIGWINCH)
1746 signal(SIGWINCH, win_changed); /* rearm ourself */
1747}
1748
Denys Vlasenko020f4062009-05-17 16:44:54 +02001749static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001750{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001751 int64_t ic;
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001752 int timeout = -1;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001753#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001754 char unicode_buf[MB_CUR_MAX + 1];
1755 int unicode_idx = 0;
1756#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001757
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001758 while (1) {
1759 /* Wait for input. TIMEOUT = -1 makes read_key wait even
1760 * on nonblocking stdin, TIMEOUT = 50 makes sure we won't
1761 * insist on full MB_CUR_MAX buffer to declare input like
1762 * "\xff\n",pause,"ls\n" invalid and thus won't lose "ls".
1763 *
1764 * Note: read_key sets errno to 0 on success.
1765 */
1766 ic = read_key(STDIN_FILENO, read_key_buffer, timeout);
1767 if (errno) {
Denys Vlasenko19158a82010-03-26 14:06:56 +01001768#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001769 if (errno == EAGAIN && unicode_idx != 0)
1770 goto pushback;
Denys Vlasenko1f6d2302009-10-29 03:45:26 +01001771#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001772 break;
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001773 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001774
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001775#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
1776 if ((int32_t)ic == KEYCODE_CURSOR_POS
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001777 && S.sent_ESC_br6n
Denys Vlasenko020f4062009-05-17 16:44:54 +02001778 ) {
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01001779 S.sent_ESC_br6n = 0;
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001780 if (cursor == 0) { /* otherwise it may be bogus */
1781 int col = ((ic >> 32) & 0x7fff) - 1;
1782 if (col > cmdedit_prmt_len) {
1783 cmdedit_x += (col - cmdedit_prmt_len);
1784 while (cmdedit_x >= cmdedit_termw) {
1785 cmdedit_x -= cmdedit_termw;
1786 cmdedit_y++;
1787 }
Denys Vlasenko020f4062009-05-17 16:44:54 +02001788 }
1789 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001790 continue;
Denys Vlasenko020f4062009-05-17 16:44:54 +02001791 }
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01001792#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001793
Denys Vlasenko19158a82010-03-26 14:06:56 +01001794#if ENABLE_UNICODE_SUPPORT
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001795 if (unicode_status == UNICODE_ON) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001796 wchar_t wc;
1797
1798 if ((int32_t)ic < 0) /* KEYCODE_xxx */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001799 break;
1800 // TODO: imagine sequence like: 0xff,<left-arrow>: we are currently losing 0xff...
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001801
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001802 unicode_buf[unicode_idx++] = ic;
1803 unicode_buf[unicode_idx] = '\0';
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001804 if (mbstowcs(&wc, unicode_buf, 1) != 1) {
1805 /* Not (yet?) a valid unicode char */
1806 if (unicode_idx < MB_CUR_MAX) {
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001807 timeout = 50;
1808 continue;
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001809 }
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001810 pushback:
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001811 /* Invalid sequence. Save all "bad bytes" except first */
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001812 read_key_ungets(read_key_buffer, unicode_buf + 1, unicode_idx - 1);
Tomas Heinricha659b812010-04-29 13:43:39 +02001813# if !ENABLE_UNICODE_PRESERVE_BROKEN
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001814 ic = CONFIG_SUBST_WCHAR;
Tomas Heinricha659b812010-04-29 13:43:39 +02001815# else
Tomas Heinrichb8909c52010-05-16 20:46:53 +02001816 ic = unicode_mark_raw_byte(unicode_buf[0]);
Tomas Heinricha659b812010-04-29 13:43:39 +02001817# endif
Tomas Heinrichd2b04052010-03-09 14:09:24 +01001818 } else {
1819 /* Valid unicode char, return its code */
1820 ic = wc;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001821 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001822 }
1823#endif
Denys Vlasenko58f108e2010-03-11 21:17:55 +01001824 break;
1825 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001826
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001827 return ic;
1828}
1829
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001830#if ENABLE_UNICODE_BIDI_SUPPORT
1831static int isrtl_str(void)
1832{
1833 int idx = cursor;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001834
1835 while (idx < command_len && unicode_bidi_is_neutral_wchar(command_ps[idx]))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001836 idx++;
Tomas Heinrichaa167552010-03-26 13:13:24 +01001837 return unicode_bidi_isrtl(command_ps[idx]);
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01001838}
1839#else
1840# define isrtl_str() 0
1841#endif
1842
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001843/* leave out the "vi-mode"-only case labels if vi editing isn't
1844 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001845#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001846
1847/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001848#undef CTRL
1849#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001850
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001851/* maxsize must be >= 2.
1852 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001853 * -1 on read errors or EOF, or on bare Ctrl-D,
1854 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001855 * >0 length of input string, including terminating '\n'
1856 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001857int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001858{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001859 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001860#if ENABLE_FEATURE_TAB_COMPLETION
1861 smallint lastWasTab = FALSE;
1862#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001863 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001864#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001865 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001866#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001867 struct termios initial_settings;
1868 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001869 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001870
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001871 INIT_S();
1872
1873 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1874 || !(initial_settings.c_lflag & ECHO)
1875 ) {
1876 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001877 parse_and_put_prompt(prompt);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001878 /* fflush_all(); - done by parse_and_put_prompt */
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001879 if (fgets(command, maxsize, stdin) == NULL)
1880 len = -1; /* EOF or error */
1881 else
1882 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001883 DEINIT_S();
1884 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001885 }
1886
Denys Vlasenko28055022010-01-04 20:49:58 +01001887 init_unicode();
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001888
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001889// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001890 if (maxsize > MAX_LINELEN)
1891 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001892 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001893
1894 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001895 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001896#if MAX_HISTORY > 0
1897# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001898 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001899 if (state->cnt_history == 0)
1900 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001901# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001902 if (state->flags & DO_HISTORY)
1903 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001904#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001905
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001906 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001907 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001908 command_len = 0;
Denys Vlasenko19158a82010-03-26 14:06:56 +01001909#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001910 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1911#else
Mark Whitley4e338752001-01-26 20:42:23 +00001912 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001913 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001914#endif
1915#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001916
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001917 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001918 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1919 /* Turn off echoing and CTRL-C, so we can trap it */
1920 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001921 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001922 new_settings.c_cc[VMIN] = 1;
1923 new_settings.c_cc[VTIME] = 0;
1924 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001925#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001926# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001927#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001928 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001929 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001930
Eric Andersen6faae7d2001-02-16 20:09:17 +00001931 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001932 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1933 win_changed(0); /* do initial resizing */
1934#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1935 {
1936 struct passwd *entry;
1937
1938 entry = getpwuid(geteuid());
1939 if (entry) {
1940 user_buf = xstrdup(entry->pw_name);
1941 home_pwd_buf = xstrdup(entry->pw_dir);
1942 }
1943 }
1944#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001945
1946#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001947 for (i = 0; i <= MAX_HISTORY; i++)
1948 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001949 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1950#endif
1951
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001952 /* Print out the command prompt, optionally ask where cursor is */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001953 parse_and_put_prompt(prompt);
Denys Vlasenko13ad9062009-11-11 03:19:30 +01001954 ask_terminal();
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001955
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001956 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001957 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001958 /*
1959 * The emacs and vi modes share much of the code in the big
1960 * command loop. Commands entered when in vi's command mode
1961 * (aka "escape mode") get an extra bit added to distinguish
1962 * them - this keeps them from being self-inserted. This
1963 * clutters the big switch a bit, but keeps all the code
1964 * in one place.
1965 */
1966 enum {
1967 VI_CMDMODE_BIT = 0x40000000,
1968 /* 0x80000000 bit flags KEYCODE_xxx */
1969 };
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001970 int32_t ic, ic_raw;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001971
Denys Vlasenko8131eea2009-11-02 14:19:51 +01001972 fflush_all();
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02001973 ic = ic_raw = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001974
Denis Vlasenko38f63192007-01-22 09:03:07 +00001975#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001976 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001977 if (vi_cmdmode) {
1978 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1979 * change ic if it contains one of them: */
1980 ic |= VI_CMDMODE_BIT;
1981 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001982#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001983
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001984 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001985 case '\n':
1986 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001987 vi_case('\n'|VI_CMDMODE_BIT:)
1988 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001989 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001990 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001991 break_out = 1;
1992 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001993 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001994 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001995 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001996 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001997 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001998 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001999 vi_case('h'|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002000 vi_case('\b'|VI_CMDMODE_BIT:) /* ^H */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002001 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002002 input_backward(1); /* Move back one character */
Erik Andersenf0657d32000-04-12 17:49:52 +00002003 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002004 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002005 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002006 /* Control-e -- End of line */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002007 put_till_end_and_adv_cursor();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002008 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002009 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002010 vi_case('l'|VI_CMDMODE_BIT:)
2011 vi_case(' '|VI_CMDMODE_BIT:)
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002012 input_forward(); /* Move forward one character */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002013 break;
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002014 case '\b': /* ^H */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002015 case '\x7f': /* DEL */
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002016 if (!isrtl_str())
2017 input_backspace();
2018 else
2019 input_delete(0);
2020 break;
2021 case KEYCODE_DELETE:
2022 if (!isrtl_str())
2023 input_delete(0);
2024 else
2025 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00002026 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002027#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00002028 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002029 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002030 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002031#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002032 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00002033 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002034 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002035 command_len = cursor;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002036 printf(SEQ_CLEAR_TILL_END_OF_SCREEN);
Eric Andersen65a07302002-04-13 13:26:49 +00002037 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002038 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002039 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002040 /* Control-l -- clear screen */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002041 printf("\033[H"); /* cursor to top,left */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002042 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00002043 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002044#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002045 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002046 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
2047 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002048 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002049 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002050 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00002051 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002052 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002053 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
2054 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00002055 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00002056 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00002057 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002058 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002059#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002060 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002061 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002062 /* Control-U -- Clear line before cursor */
2063 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002064 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002065 memmove(command_ps, command_ps + cursor,
2066 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002067 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002068 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002069 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002070 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002071 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00002072 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002073 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002074 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002075 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00002076 input_backspace();
2077 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002078
Denis Vlasenko38f63192007-01-22 09:03:07 +00002079#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002080 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002081 vi_cmdmode = 0;
2082 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002083 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002084 input_backward(cursor);
2085 vi_cmdmode = 0;
2086 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002087 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002088 input_forward();
2089 vi_cmdmode = 0;
2090 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002091 case 'A'|VI_CMDMODE_BIT:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002092 put_till_end_and_adv_cursor();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002093 vi_cmdmode = 0;
2094 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002095 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002096 input_delete(1);
2097 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002098 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002099 if (cursor > 0) {
2100 input_backward(1);
2101 input_delete(1);
2102 }
2103 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002104 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002105 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002106 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002107 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002108 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00002109 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002110 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002111 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002112 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002113 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002114 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002115 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002116 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002117 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002118 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002119 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002120 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00002121 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002122 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002123 vi_cmdmode = 0;
2124 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002125 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002126 goto clear_to_eol;
2127
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002128 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002129 vi_cmdmode = 0;
2130 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002131 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002132 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002133
Denys Vlasenko020f4062009-05-17 16:44:54 +02002134 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002135 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002136 goto prepare_to_die;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002137 if (ic == ic_raw) { /* "cc", "dd" */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002138 input_backward(cursor);
2139 goto clear_to_eol;
2140 break;
2141 }
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002142
2143 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002144 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002145 case 'w':
2146 case 'W':
2147 case 'e':
2148 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002149 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002150 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002151 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002152 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002153 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002154 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00002155 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002156 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002157 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002158 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002159 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002160 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002161 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002162 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00002163 break;
2164 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002165 nc = cursor;
2166 input_backward(cursor - sc);
2167 while (nc-- > cursor)
2168 input_delete(1);
2169 break;
2170 case 'b': /* "db", "cb" */
2171 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002172 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002173 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002174 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002175 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002176 while (sc-- > cursor)
2177 input_delete(1);
2178 break;
2179 case ' ': /* "d ", "c " */
2180 input_delete(1);
2181 break;
2182 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002183 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002184 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002185 input_delete(1);
2186 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002187 }
2188 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002189 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002190 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002191 input_forward();
2192 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002193 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002194 put();
2195 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002196 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002197//FIXME: unicode case?
Denys Vlasenko020f4062009-05-17 16:44:54 +02002198 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002199 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002200 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002201 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002202 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002203 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002204 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002205 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002206 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002207 }
2208 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002209 case '\x1b': /* ESC */
2210 if (state->flags & VI_MODE) {
2211 /* insert mode --> command mode */
2212 vi_cmdmode = 1;
2213 input_backward(1);
2214 }
2215 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002216#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002217
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002218#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002219 case KEYCODE_UP:
2220 if (get_previous_history())
2221 goto rewrite_line;
2222 beep();
2223 break;
2224 case KEYCODE_DOWN:
2225 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002226 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002227 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002228 /* Rewrite the line with the selected history item */
2229 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002230 command_len = load_string(state->history[state->cur_history] ?
2231 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002232 /* redraw and go to eol (bol, in vi) */
2233 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2234 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002235#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002236 case KEYCODE_RIGHT:
2237 input_forward();
2238 break;
2239 case KEYCODE_LEFT:
2240 input_backward(1);
2241 break;
Denys Vlasenkoa17eeb82009-10-25 23:50:56 +01002242 case KEYCODE_CTRL_LEFT:
2243 ctrl_left();
2244 break;
2245 case KEYCODE_CTRL_RIGHT:
2246 ctrl_right();
2247 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002248 case KEYCODE_HOME:
2249 input_backward(cursor);
2250 break;
2251 case KEYCODE_END:
Denys Vlasenko94043e82010-05-11 14:49:13 +02002252 put_till_end_and_adv_cursor();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002253 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002254
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002255 default:
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002256 if (initial_settings.c_cc[VINTR] != 0
2257 && ic_raw == initial_settings.c_cc[VINTR]
2258 ) {
2259 /* Ctrl-C (usually) - stop gathering input */
2260 goto_new_line();
2261 command_len = 0;
2262 break_out = -1; /* "do not append '\n'" */
2263 break;
2264 }
2265 if (initial_settings.c_cc[VEOF] != 0
2266 && ic_raw == initial_settings.c_cc[VEOF]
2267 ) {
2268 /* Ctrl-D (usually) - delete one character,
2269 * or exit if len=0 and no chars to delete */
2270 if (command_len == 0) {
2271 errno = 0;
2272#if ENABLE_FEATURE_EDITING_VI
2273 prepare_to_die:
2274#endif
2275 break_out = command_len = -1;
2276 break;
2277 }
2278 input_delete(0);
2279 break;
2280 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002281// /* Control-V -- force insert of next char */
2282// if (c == CTRL('V')) {
2283// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2284// goto prepare_to_die;
2285// if (c == 0) {
2286// beep();
2287// break;
2288// }
2289// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002290 if (ic < ' '
Denys Vlasenko19158a82010-03-26 14:06:56 +01002291 || (!ENABLE_UNICODE_SUPPORT && ic >= 256)
2292 || (ENABLE_UNICODE_SUPPORT && ic >= VI_CMDMODE_BIT)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002293 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002294 /* If VI_CMDMODE_BIT is set, ic is >= 256
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002295 * and vi mode ignores unexpected chars.
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002296 * Otherwise, we are here if ic is a
2297 * control char or an unhandled ESC sequence,
2298 * which is also ignored.
2299 */
2300 break;
2301 }
2302 if ((int)command_len >= (maxsize - 2)) {
2303 /* Not enough space for the char and EOL */
2304 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002305 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002306
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002307 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002308 if (cursor == (command_len - 1)) {
2309 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002310 command_ps[cursor] = ic;
2311 command_ps[cursor + 1] = BB_NUL;
Denys Vlasenko94043e82010-05-11 14:49:13 +02002312 put_cur_glyph_and_inc_cursor();
Tomas Heinrichaa167552010-03-26 13:13:24 +01002313 if (unicode_bidi_isrtl(ic))
Tomas Heinrichc5c006c2010-03-18 18:35:37 +01002314 input_backward(1);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002315 } else {
2316 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002317 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002318
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002319 memmove(command_ps + sc + 1, command_ps + sc,
2320 (command_len - sc) * sizeof(command_ps[0]));
2321 command_ps[sc] = ic;
Tomas Heinrichaa167552010-03-26 13:13:24 +01002322 /* is right-to-left char, or neutral one (e.g. comma) was just added to rtl text? */
2323 if (!isrtl_str())
2324 sc++; /* no */
Denys Vlasenko94043e82010-05-11 14:49:13 +02002325 put_till_end_and_adv_cursor();
Mark Whitley4e338752001-01-26 20:42:23 +00002326 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002327 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002328 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002329 break;
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002330 } /* switch (ic) */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002331
2332 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002333 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002334
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002335#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko04bb6b62009-10-14 12:53:04 +02002336 if (ic_raw != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002337 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002338#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002339 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002340
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002341#if ENABLE_FEATURE_EDITING_ASK_TERMINAL
Denys Vlasenkod83bbf42009-10-27 10:47:49 +01002342 if (S.sent_ESC_br6n) {
Denys Vlasenkoeb62d7c2009-10-27 10:34:06 +01002343 /* "sleep 1; busybox ash" + hold [Enter] to trigger.
2344 * We sent "ESC [ 6 n", but got '\n' first, and
2345 * KEYCODE_CURSOR_POS response is now buffered from terminal.
2346 * It's bad already and not much can be done with it
2347 * (it _will_ be visible for the next process to read stdin),
2348 * but without this delay it even shows up on the screen
2349 * as garbage because we restore echo settings with tcsetattr
2350 * before it comes in. UGLY!
2351 */
2352 usleep(20*1000);
2353 }
2354#endif
2355
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002356/* Stop bug catching using "command_must_not_be_used" trick */
2357#undef command
2358
Denys Vlasenko19158a82010-03-26 14:06:56 +01002359#if ENABLE_UNICODE_SUPPORT
Denys Vlasenko2f3f09c2009-09-29 00:00:12 +02002360 command[0] = '\0';
2361 if (command_len > 0)
2362 command_len = save_string(command, maxsize - 1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002363 free(command_ps);
2364#endif
2365
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002366 if (command_len > 0)
2367 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002368
Eric Andersen27bb7902003-12-23 20:24:51 +00002369 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002370 command[command_len++] = '\n';
2371 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002372 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002373
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002374#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002375 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002376#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002377
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002378 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002379 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002380 /* restore SIGWINCH handler */
2381 signal(SIGWINCH, previous_SIGWINCH_handler);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002382 fflush_all();
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002383
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002384 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002385 DEINIT_S();
2386
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002387 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002388}
2389
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002390#else
2391
2392#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002393int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002394{
2395 fputs(prompt, stdout);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01002396 fflush_all();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002397 fgets(command, maxsize, stdin);
2398 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002399}
2400
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002401#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002402
2403
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002404/*
2405 * Testing
2406 */
2407
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002408#ifdef TEST
2409
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002410#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002411
2412const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002413
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002414int main(int argc, char **argv)
2415{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002416 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002417 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002418#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002419 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2420 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2421 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002422#else
2423 "% ";
2424#endif
2425
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002426 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002427 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002428 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002429 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002430 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002431 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002432 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002433 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002434 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002435 return 0;
2436}
2437
Eric Andersenc470f442003-07-28 09:56:35 +00002438#endif /* TEST */