blob: ab329722020b0d022df77303403a0663073a35de [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:
19 * Terminal key codes are not extensive, and more will probably
20 * need to be added. This version was created on Debian GNU/Linux 2.x.
21 * Delete, Backspace, Home, End, and the arrow keys were tested
22 * to work in an Xterm and console. Ctrl-A also works as Home.
23 * Ctrl-E also works as End.
24 *
25 * lineedit does not know that the terminal escape sequences do not
26 * take up space on the screen. The redisplay code assumes, unless
27 * told otherwise, that each character in the prompt is a printable
28 * character that takes up one character position on the screen.
29 * You need to tell lineedit that some sequences of characters
30 * in the prompt take up no screen space. Compatibly with readline,
31 * use the \[ escape to begin a sequence of non-printing characters,
32 * and the \] escape to signal the end of such a sequence. Example:
33 *
34 * PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
Erik Andersen13456d12000-03-16 08:09:57 +000035 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000036#include "libbb.h"
Denys Vlasenko42a8fd02009-07-11 21:36:13 +020037#include "unicode.h"
Glenn L McGrath475820c2004-01-22 12:42:23 +000038
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000039/* FIXME: obsolete CONFIG item? */
40#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
41
Glenn L McGrath3b251852004-01-03 12:07:32 +000042#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020043# define ENABLE_FEATURE_EDITING 0
44# define ENABLE_FEATURE_TAB_COMPLETION 0
45# define ENABLE_FEATURE_USERNAME_COMPLETION 0
46# define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
47#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000048
Eric Andersen5165fbe2001-02-20 06:42:29 +000049
Denis Vlasenko82b39e82007-01-21 19:18:19 +000050/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000051#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000052
Denis Vlasenko82b39e82007-01-21 19:18:19 +000053
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000054#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000055 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000056#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000057#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000058#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
59#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000060#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000061
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020062
63#undef CHAR_T
64#if ENABLE_FEATURE_ASSUME_UNICODE
65# define BB_NUL L'\0'
66# define CHAR_T wchar_t
67# define BB_isspace(c) iswspace(c)
68# define BB_isalnum(c) iswalnum(c)
69# define BB_ispunct(c) iswpunct(c)
70# define BB_isprint(c) iswprint(c)
71/* this catches bugs */
72# undef isspace
73# undef isalnum
74# undef ispunct
75# undef isprint
76# define isspace isspace_must_not_be_used
77# define isalnum isalnum_must_not_be_used
78# define ispunct ispunct_must_not_be_used
79# define isprint isprint_must_not_be_used
80#else
81# define BB_NUL '\0'
82# define CHAR_T char
83# define BB_isspace(c) isspace(c)
84# define BB_isalnum(c) isalnum(c)
85# define BB_ispunct(c) ispunct(c)
86# if ENABLE_LOCALE_SUPPORT
87# define BB_isprint(c) isprint(c)
88# else
89# define BB_isprint(c) ((c) >= ' ' && (c) != ((unsigned char)'\233'))
90# endif
91#endif
92
93
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000094enum {
95 /* We use int16_t for positions, need to limit line len */
96 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +000097 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000098 : 0x7ff0
99};
Robert Griebl350d26b2002-12-03 22:45:46 +0000100
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000101#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
102static const char null_str[] ALIGN1 = "";
103#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000104
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000105/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000106struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000108
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000109 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
110 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000111
Denys Vlasenko020f4062009-05-17 16:44:54 +0200112 unsigned cmdedit_x; /* real x (col) terminal position */
113 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000114 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000115
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000116 unsigned cursor;
117 unsigned command_len;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200118 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000119
120 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000121#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000122 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000123#endif
124
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000125#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000126 char *user_buf;
127 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000128#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000129
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130#if ENABLE_FEATURE_TAB_COMPLETION
131 char **matches;
132 unsigned num_matches;
133#endif
134
135#if ENABLE_FEATURE_EDITING_VI
136#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200137 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000138 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200139 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000140#endif
141
142 /* Formerly these were big buffers on stack: */
143#if ENABLE_FEATURE_TAB_COMPLETION
144 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
145 char input_tab__matchBuf[MAX_LINELEN];
146 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
147 int16_t find_match__pos_buf[MAX_LINELEN + 1];
148#endif
149};
150
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000151/* See lineedit_ptr_hack.c */
152extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000153
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000154#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000155#define state (S.state )
156#define cmdedit_termw (S.cmdedit_termw )
157#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
158#define cmdedit_x (S.cmdedit_x )
159#define cmdedit_y (S.cmdedit_y )
160#define cmdedit_prmt_len (S.cmdedit_prmt_len)
161#define cursor (S.cursor )
162#define command_len (S.command_len )
163#define command_ps (S.command_ps )
164#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000165#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000166#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000167#define home_pwd_buf (S.home_pwd_buf )
168#define matches (S.matches )
169#define num_matches (S.num_matches )
170#define delptr (S.delptr )
171#define newdelflag (S.newdelflag )
172#define delbuf (S.delbuf )
173
174#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000175 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000176 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000177 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000178 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
179 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180} while (0)
181static void deinit_S(void)
182{
183#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000184 /* This one is allocated only if FANCY_PROMPT is on
185 * (otherwise it points to verbatim prompt (NOT malloced) */
186 free((char*)cmdedit_prompt);
187#endif
188#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
189 free(user_buf);
190 if (home_pwd_buf != null_str)
191 free(home_pwd_buf);
192#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000193 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000194}
195#define DEINIT_S() deinit_S()
196
Denis Vlasenko2c844952008-04-25 18:44:35 +0000197
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200198#if ENABLE_FEATURE_ASSUME_UNICODE
199static size_t load_string(const char *src, int maxsize)
200{
201 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
202 if (len < 0)
203 len = 0;
204 command_ps[len] = L'\0';
205 return len;
206}
207static size_t save_string(char *dst, int maxsize)
208{
209 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
210 if (len < 0)
211 len = 0;
212 dst[len] = '\0';
213 return len;
214}
215/* I thought just fputwc(c, stdout) would work. But no... */
216static void BB_PUTCHAR(wchar_t c)
217{
218 char buf[MB_CUR_MAX + 1];
219 mbstate_t mbst = { 0 };
220 ssize_t len = wcrtomb(buf, c, &mbst);
221
222 if (len > 0) {
223 buf[len] = '\0';
224 fputs(buf, stdout);
225 }
226}
227#else
228static size_t load_string(const char *src, int maxsize)
229{
230 safe_strncpy(command_ps, src, maxsize);
231 return strlen(command_ps);
232}
233static void save_string(char *dst, int maxsize)
234{
235 safe_strncpy(dst, command_ps, maxsize);
236}
237#define BB_PUTCHAR(c) bb_putchar(c)
238#endif
239
240
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000241/* Put 'command_ps[cursor]', cursor++.
242 * Advance cursor on screen. If we reached right margin, scroll text up
243 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000244#define HACK_FOR_WRONG_WIDTH 1
245#if HACK_FOR_WRONG_WIDTH
246static void cmdedit_set_out_char(void)
247#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
248#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000249static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000250#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000251{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200252 CHAR_T c = command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000253
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200254 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000255 /* erase character after end of input string */
256 c = ' ';
257 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000258#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000259 /* Display non-printable characters in reverse */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200260 if (!BB_isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000261 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000262 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000263 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000264 c += '@';
265 if (c == 127)
266 c = '?';
267 printf("\033[7m%c\033[0m", c);
268 } else
269#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000270 {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200271 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000272 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000273 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000274 /* terminal is scrolled down */
275 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000276 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000277#if HACK_FOR_WRONG_WIDTH
278 /* This works better if our idea of term width is wrong
279 * and it is actually wider (often happens on serial lines).
280 * Printing CR,LF *forces* cursor to next line.
281 * OTOH if terminal width is correct AND terminal does NOT
282 * have automargin (IOW: it is moving cursor to next line
283 * by itself (which is wrong for VT-10x terminals)),
284 * this will break things: there will be one extra empty line */
285 puts("\r"); /* + implicit '\n' */
286#else
287 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000288 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000289 bb_putchar(next_char);
290 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000291#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000292 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200293// Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000294 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000295}
296
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000297/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000298static void input_end(void)
299{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000300 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000301 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000302}
303
304/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000305static void goto_new_line(void)
306{
Mark Whitley4e338752001-01-26 20:42:23 +0000307 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000308 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000309 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000310}
311
312
Rob Landley88621d72006-08-29 19:41:06 +0000313static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000314{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000315 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000316 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000317}
Eric Andersen81fe1232003-07-29 06:38:40 +0000318
Rob Landley88621d72006-08-29 19:41:06 +0000319static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000320{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000321 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000322}
323
Eric Andersenaff114c2004-04-14 17:51:38 +0000324/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000325/* (optimized for slow terminals) */
326static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000327{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000328 int count_y;
329
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000330 if (num > cursor)
331 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000332 if (!num)
333 return;
334 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000335
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000336 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000337 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000338 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000339 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000340 * Also gets miscompiled for ARM users
341 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000342 * printf(("\b\b\b\b" + 4) - num);
343 * return;
344 */
345 do {
346 bb_putchar('\b');
347 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000348 return;
349 }
350 printf("\033[%uD", num);
351 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000352 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000353
354 /* Need to go one or more lines up */
355 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000356 {
357 unsigned w = cmdedit_termw; /* volatile var */
358 count_y = 1 + (num / w);
359 cmdedit_y -= count_y;
360 cmdedit_x = w * count_y - num;
361 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000362 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000363 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000364}
365
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000366static void put_prompt(void)
367{
368 out1str(cmdedit_prompt);
Denys Vlasenkoc396fe62009-05-17 19:28:14 +0200369 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL) {
370 /* Ask terminal where is the cursor now.
371 * lineedit_read_key handles response and corrects
372 * our idea of current cursor position.
373 * Testcase: run "echo -n long_line_long_line_long_line",
374 * then type in a long, wrapping command and try to
375 * delete it using backspace key.
376 * Note: we print it _after_ prompt, because
377 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
378 */
379 out1str("\033" "[6n");
380 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000381 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000382 {
383 unsigned w = cmdedit_termw; /* volatile var */
384 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
385 cmdedit_x = cmdedit_prmt_len % w;
386 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000387}
388
Eric Andersenaff114c2004-04-14 17:51:38 +0000389/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000390static void redraw(int y, int back_cursor)
391{
Eric Andersenc470f442003-07-28 09:56:35 +0000392 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000393 printf("\033[%dA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000394 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000395 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000396 input_end(); /* rewrite */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000397 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000398 input_backward(back_cursor);
399}
400
Paul Fox3f11b1b2005-08-04 19:04:46 +0000401/* Delete the char in front of the cursor, optionally saving it
402 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000403#if !ENABLE_FEATURE_EDITING_VI
404static void input_delete(void)
405#define input_delete(save) input_delete()
406#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000407static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000408#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000409{
Mark Whitley4e338752001-01-26 20:42:23 +0000410 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000411
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000412 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000413 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000414
Denis Vlasenko38f63192007-01-22 09:03:07 +0000415#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000416 if (save) {
417 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000418 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000419 newdelflag = 0;
420 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000421 if ((delptr - delbuf) < DELBUFSIZ)
422 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000423 }
424#endif
425
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200426 memmove(command_ps + j, command_ps + j + 1,
427 (command_len - j + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000428 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000429 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000430 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000431 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000432}
433
Denis Vlasenko38f63192007-01-22 09:03:07 +0000434#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000435static void put(void)
436{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000437 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000438 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000439
Paul Fox3f11b1b2005-08-04 19:04:46 +0000440 if (j == 0)
441 return;
442 ocursor = cursor;
443 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200444 memmove(command_ps + cursor + j, command_ps + cursor,
445 (command_len - cursor + 1) * sizeof(command_ps[0]));
446 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000447 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000448 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000449 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000450}
451#endif
452
Mark Whitley4e338752001-01-26 20:42:23 +0000453/* Delete the char in back of the cursor */
454static void input_backspace(void)
455{
456 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000457 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000458 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000459 }
460}
461
Eric Andersenaff114c2004-04-14 17:51:38 +0000462/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000463static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000464{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000465 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000466 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000467}
468
Denis Vlasenko38f63192007-01-22 09:03:07 +0000469#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000470
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000471static void free_tab_completion_data(void)
472{
473 if (matches) {
474 while (num_matches)
475 free(matches[--num_matches]);
476 free(matches);
477 matches = NULL;
478 }
479}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000480
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000481static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000482{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000483 matches = xrealloc_vector(matches, 4, num_matches);
484 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000485 num_matches++;
486}
487
Denis Vlasenko38f63192007-01-22 09:03:07 +0000488#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000489static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000490{
491 struct passwd *entry;
492 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000493
Eric Andersenc470f442003-07-28 09:56:35 +0000494 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000495 userlen = strlen(ud);
496
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000497 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000498 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000499 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000500
Eric Andersenc470f442003-07-28 09:56:35 +0000501 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000502 home = home_pwd_buf;
503 } else {
504 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000505 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000506 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000507 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000508 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000509 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000510 ud = temp;
511 if (entry)
512 home = entry->pw_dir;
513 }
514 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000515 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000516 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000517 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000518 }
519 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000520 } else {
521 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000522 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000523 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000524 struct passwd pwd;
525 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000526
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000527 setpwent();
528 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000530 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
531 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532 }
533 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000534 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535 }
536}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000537#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000538
539enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000540 FIND_EXE_ONLY = 0,
541 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000542 FIND_FILE_ONLY = 2,
543};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000544
Mark Whitley4e338752001-01-26 20:42:23 +0000545static int path_parse(char ***p, int flags)
546{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000548 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000549 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000550 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000551
Mark Whitley4e338752001-01-26 20:42:23 +0000552 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000553 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000554 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000555
556 if (state->flags & WITH_PATH_LOOKUP)
557 pth = state->path_lookup;
558 else
559 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000560 /* PATH=<empty> or PATH=:<empty> */
561 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
562 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000563
Denis Vlasenko253ce002007-01-22 08:34:44 +0000564 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000565 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000566 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000567 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000568 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000569 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000570 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000571 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000572 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000573 }
574
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000575 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000576 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000577 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000578 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000579 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000580 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000581 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000582 *tmp++ = '\0'; /* ':' -> '\0' */
583 if (*tmp == '\0')
584 break; /* :<empty> */
585 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000586 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000587 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000588 return npth;
589}
590
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000591static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000592{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000593 DIR *dir;
594 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000595 struct stat st;
596 char *path1[1];
597 char **paths = path1;
598 int npaths;
599 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000600 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000601 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000602/* char dirbuf[MAX_LINELEN]; */
603#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000604
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000605 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000606 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000607
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000608 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000609 /* no dir, if flags==EXE_ONLY - get paths, else "." */
610 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000611 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000612 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000613 /* dirbuf = ".../.../.../" */
614 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000615#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000616 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000617 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000619 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000620 /* point to 'l' in "..../last_component" */
621 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000622 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000623
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000624 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000625 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000626 if (!dir)
627 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628
629 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000630 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000631 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000632
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000633 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000634 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000635 continue;
636 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000637 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000638 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000639 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000640 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000642 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000643 /* hmm, remove in progress? */
644 /* NB: stat() first so that we see is it a directory;
645 * but if that fails, use lstat() so that
646 * we still match dangling links */
647 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000648 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000649 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000650 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000651 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000652
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000653 len1 = strlen(found);
654 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000655 found[len1] = '\0';
656 found[len1+1] = '\0';
657
Mark Whitley4e338752001-01-26 20:42:23 +0000658 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000659 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000660 if (found[len1-1] != '/') {
661 found[len1] = '/';
662 }
Mark Whitley4e338752001-01-26 20:42:23 +0000663 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000664 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000665 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000666 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 }
Mark Whitley4e338752001-01-26 20:42:23 +0000668 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000669 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000670 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000671 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000672 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000673 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000675 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000676 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000677 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000678 free(paths);
679 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000680#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000681}
Erik Andersenf0657d32000-04-12 17:49:52 +0000682
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000683#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000684
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000685#define collapse_pos(is, in) do { \
686 memmove(int_buf+(is), int_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
687 memmove(pos_buf+(is), pos_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
688} while (0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000689
690static int find_match(char *matchBuf, int *len_with_quotes)
691{
692 int i, j;
693 int command_mode;
694 int c, c2;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000695/* int16_t int_buf[MAX_LINELEN + 1]; */
696/* int16_t pos_buf[MAX_LINELEN + 1]; */
697#define int_buf (S.find_match__int_buf)
698#define pos_buf (S.find_match__pos_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000699
700 /* set to integer dimension characters and own positions */
701 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000702 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000703 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000704 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000705 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000706 }
707 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000708 }
709
710 /* mask \+symbol and convert '\t' to ' ' */
711 for (i = j = 0; matchBuf[i]; i++, j++)
712 if (matchBuf[i] == '\\') {
713 collapse_pos(j, j + 1);
714 int_buf[j] |= QUOT;
715 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000716#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000717 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000718 int_buf[j] = ' ' | QUOT;
719#endif
720 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000721#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000722 else if (matchBuf[i] == '\t')
723 int_buf[j] = ' ';
724#endif
725
726 /* mask "symbols" or 'symbols' */
727 c2 = 0;
728 for (i = 0; int_buf[i]; i++) {
729 c = int_buf[i];
730 if (c == '\'' || c == '"') {
731 if (c2 == 0)
732 c2 = c;
733 else {
734 if (c == c2)
735 c2 = 0;
736 else
737 int_buf[i] |= QUOT;
738 }
739 } else if (c2 != 0 && c != '$')
740 int_buf[i] |= QUOT;
741 }
742
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000743 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
745 for (i = 0; int_buf[i]; i++) {
746 c = int_buf[i];
747 c2 = int_buf[i + 1];
748 j = i ? int_buf[i - 1] : -1;
749 command_mode = 0;
750 if (c == ';' || c == '&' || c == '|') {
751 command_mode = 1 + (c == c2);
752 if (c == '&') {
753 if (j == '>' || j == '<')
754 command_mode = 0;
755 } else if (c == '|' && j == '>')
756 command_mode = 0;
757 }
758 if (command_mode) {
759 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000760 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761 }
762 }
763 /* collapse `command...` */
764 for (i = 0; int_buf[i]; i++)
765 if (int_buf[i] == '`') {
766 for (j = i + 1; int_buf[j]; j++)
767 if (int_buf[j] == '`') {
768 collapse_pos(i, j + 1);
769 j = 0;
770 break;
771 }
772 if (j) {
773 /* not found close ` - command mode, collapse all previous */
774 collapse_pos(0, i + 1);
775 break;
776 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000777 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000778 }
779
780 /* collapse (command...(command...)...) or {command...{command...}...} */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000781 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000782 c2 = 0;
783 for (i = 0; int_buf[i]; i++)
784 if (int_buf[i] == '(' || int_buf[i] == '{') {
785 if (int_buf[i] == '(')
786 c++;
787 else
788 c2++;
789 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000790 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000791 }
792 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
793 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
794 if (int_buf[i] == ')')
795 c--;
796 else
797 c2--;
798 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000799 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000800 }
801
802 /* skip first not quote space */
803 for (i = 0; int_buf[i]; i++)
804 if (int_buf[i] != ' ')
805 break;
806 if (i)
807 collapse_pos(0, i);
808
809 /* set find mode for completion */
810 command_mode = FIND_EXE_ONLY;
811 for (i = 0; int_buf[i]; i++)
812 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
813 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000814 && matchBuf[pos_buf[0]] == 'c'
815 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000816 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000817 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000818 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000819 command_mode = FIND_FILE_ONLY;
820 break;
821 }
822 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000823 for (i = 0; int_buf[i]; i++)
824 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000825 /* find last word */
826 for (--i; i >= 0; i--) {
827 c = int_buf[i];
828 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
829 collapse_pos(0, i + 1);
830 break;
831 }
832 }
833 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000834 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
835 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000836 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000837 while ((int_buf[i] & ~QUOT) == '/'
838 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
839 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000840 i++;
841 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000842
843 /* set only match and destroy quotes */
844 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000845 for (c = 0; pos_buf[i] >= 0; i++) {
846 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000847 j = pos_buf[i] + 1;
848 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000849 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000850 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000851 *len_with_quotes = j ? j - pos_buf[0] : 0;
852
853 return command_mode;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000854#undef int_buf
855#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000856}
857
Glenn L McGrath4d001292003-01-06 01:11:50 +0000858/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000859 * display by column (original idea from ls applet,
860 * very optimized by me :)
861 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000862static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000863{
864 int ncols, row;
865 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000866 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000867 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000868 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000869
870 /* find the longest file name- use that as the column width */
871 for (row = 0; row < nrows; row++) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000872 l = strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000873 if (column_width < l)
874 column_width = l;
875 }
876 column_width += 2; /* min space for columns */
877 ncols = cmdedit_termw / column_width;
878
879 if (ncols > 1) {
880 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000881 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000882 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000883 } else {
884 ncols = 1;
885 }
886 for (row = 0; row < nrows; row++) {
887 int n = row;
888 int nc;
889
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000890 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000891 printf("%s%-*s", matches[n],
Mike Frysinger57ec5742006-12-28 21:41:09 +0000892 (int)(column_width - strlen(matches[n])), "");
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000893 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000894 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000895 }
896}
897
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000898static char *add_quote_for_spec_chars(char *found)
899{
900 int l = 0;
901 char *s = xmalloc((strlen(found) + 1) * 2);
902
903 while (*found) {
904 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
905 s[l++] = '\\';
906 s[l++] = *found++;
907 }
908 s[l] = 0;
909 return s;
910}
911
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000912/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000913static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000914{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000915 if (!(state->flags & TAB_COMPLETION))
916 return;
917
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000918 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000919 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000920 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000921/* char matchBuf[MAX_LINELEN]; */
922#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000923 int find_type;
924 int recalc_pos;
925
Eric Andersenc470f442003-07-28 09:56:35 +0000926 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000927
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200928 /* Make a local copy of the string --
929 * up to the position of the cursor */
930 save_string(matchBuf, cursor + 1);
931 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000932
933 find_type = find_match(matchBuf, &recalc_pos);
934
935 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000936 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000937
Denis Vlasenko38f63192007-01-22 09:03:07 +0000938#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000939 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000940 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000941 if (state->flags & USERNAME_COMPLETION)
942 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
943 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000944#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000945 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000946 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000947 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000948 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000949 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000950 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000951 unsigned i;
952 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000953 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000954 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000955 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000956 if (strcmp(matches[i], matches[i+1]) == 0) {
957 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000958 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000959 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000960 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000961 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000962 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000963 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000964 matches[n] = matches[i];
965 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000966 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000967 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000968 if (!matches || num_matches > 1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000969 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000970 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000971 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000972 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000973 tmp1 = xstrdup(matches[0]);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000974 for (tmp = tmp1; *tmp; tmp++)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975 for (len_found = 1; len_found < num_matches; len_found++)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000976 if (matches[len_found][(tmp - tmp1)] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000977 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978 break;
979 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000980 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000981 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000982 return;
983 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000984 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000985 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +0000986 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000987 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000988 /* for next completion current found */
989 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000990
991 len_found = strlen(tmp);
992 if (tmp[len_found-1] != '/') {
993 tmp[len_found] = ' ';
994 tmp[len_found+1] = '\0';
995 }
Mark Whitley4e338752001-01-26 20:42:23 +0000996 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000997 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +0000998 /* have space to placed match? */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000999 if ((len_found - strlen(matchBuf) + command_len) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001000 /* before word for match */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001001//TODO:
1002#if !ENABLE_FEATURE_ASSUME_UNICODE
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001003 command_ps[cursor - recalc_pos] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004 /* save tail line */
1005 strcpy(matchBuf, command_ps + cursor);
1006 /* add match */
1007 strcat(command_ps, tmp);
1008 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001009 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001010 /* back to begin word for match */
1011 input_backward(recalc_pos);
1012 /* new pos */
1013 recalc_pos = cursor + len_found;
1014 /* new len */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001015 command_len = strlen(command_ps);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001016 /* write out the matched command */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001017#endif
Denis Vlasenko253ce002007-01-22 08:34:44 +00001018 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001019 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001020 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001021#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001022 } else {
1023 /* Ok -- the last char was a TAB. Since they
1024 * just hit TAB again, print a list of all the
1025 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001026 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00001027 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001028
1029 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001030 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001031 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001032 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001033 }
1034 }
1035}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001036
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001037#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001038
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001039
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001040line_input_t* FAST_FUNC new_line_input_t(int flags)
1041{
1042 line_input_t *n = xzalloc(sizeof(*n));
1043 n->flags = flags;
1044 return n;
1045}
1046
1047
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001048#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001049
Denis Vlasenko682ad302008-09-27 01:28:56 +00001050static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001051{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001052 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001053 int cur = state->cur_history;
1054 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001055
1056#if ENABLE_FEATURE_ASSUME_UNICODE
1057 {
1058 char tbuf[MAX_LINELEN];
1059 save_string(tbuf, sizeof(tbuf));
1060 state->history[cur] = xstrdup(tbuf);
1061 }
1062#else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001063 state->history[cur] = xstrdup(command_ps);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001064#endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001065 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001066}
1067
1068/* state->flags is already checked to be nonzero */
1069static int get_previous_history(void)
1070{
1071 if ((state->flags & DO_HISTORY) && state->cur_history) {
1072 save_command_ps_at_cur_history();
1073 state->cur_history--;
1074 return 1;
1075 }
1076 beep();
1077 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001078}
1079
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001080static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001081{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001082 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001083 if (state->cur_history < state->cnt_history) {
1084 save_command_ps_at_cur_history(); /* save the current history line */
1085 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001086 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001087 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001088 beep();
1089 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001090}
Robert Griebl350d26b2002-12-03 22:45:46 +00001091
Denis Vlasenko38f63192007-01-22 09:03:07 +00001092#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001093/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001094 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001095 * Otherwise shell users get unhappy.
1096 *
1097 * History file is trimmed lazily, when it grows several times longer
1098 * than configured MAX_HISTORY lines.
1099 */
1100
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001101static void free_line_input_t(line_input_t *n)
1102{
1103 int i = n->cnt_history;
1104 while (i > 0)
1105 free(n->history[--i]);
1106 free(n);
1107}
1108
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001109/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001110static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001111{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001112 char *temp_h[MAX_HISTORY];
1113 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001114 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001115 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001116
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001117 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001118
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001119 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001120 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001121 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001122 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001123 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001124 free(st_parm->history[idx]);
1125 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001126 }
1127
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001128 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1129 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001130 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001131 while ((line = xmalloc_fgetline(fp)) != NULL) {
1132 if (line[0] == '\0') {
1133 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001134 continue;
1135 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001136 free(temp_h[idx]);
1137 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001138 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001139 idx++;
1140 if (idx == MAX_HISTORY)
1141 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001142 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001143 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001144
1145 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001146 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001147 while (temp_h[idx] == NULL) {
1148 idx++;
1149 if (idx == MAX_HISTORY)
1150 idx = 0;
1151 }
1152 }
1153
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001154 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001155 for (i = 0; i < MAX_HISTORY;) {
1156 line = temp_h[idx];
1157 if (!line)
1158 break;
1159 idx++;
1160 if (idx == MAX_HISTORY)
1161 idx = 0;
1162 line_len = strlen(line);
1163 if (line_len >= MAX_LINELEN)
1164 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001165 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001166 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001167 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001168 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001169}
1170
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001171/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001172static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001173{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001174 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001175 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001176
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001177 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1178 if (fd < 0)
1179 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001180 xlseek(fd, 0, SEEK_END); /* paranoia */
1181 len = strlen(str);
1182 str[len] = '\n'; /* we (try to) do atomic write */
1183 len2 = full_write(fd, str, len + 1);
1184 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001185 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001186 if (len2 != len + 1)
1187 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001188
1189 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001190 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001191 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1192 FILE *fp;
1193 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001194 line_input_t *st_temp;
1195 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001196
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001197 /* we may have concurrently written entries from others.
1198 * load them */
1199 st_temp = new_line_input_t(state->flags);
1200 st_temp->hist_file = state->hist_file;
1201 load_history(st_temp);
1202
1203 /* write out temp file and replace hist_file atomically */
1204 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001205 fp = fopen_for_write(new_name);
1206 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001207 for (i = 0; i < st_temp->cnt_history; i++)
1208 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001209 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001210 if (rename(new_name, state->hist_file) == 0)
1211 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001212 }
1213 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001214 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001215 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001216}
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001217#else
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001218#define load_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001219#define save_history(a) ((void)0)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001220#endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001221
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001222static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001223{
1224 int i;
1225
1226 if (!(state->flags & DO_HISTORY))
1227 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001228 if (str[0] == '\0')
1229 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001230 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001231 /* Don't save dupes */
1232 if (i && strcmp(state->history[i-1], str) == 0)
1233 return;
1234
1235 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1236 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1237
1238 /* If history[] is full, remove the oldest command */
1239 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001240 if (i >= MAX_HISTORY) {
1241 free(state->history[0]);
1242 for (i = 0; i < MAX_HISTORY-1; i++)
1243 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001244 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001245 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001246 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001247 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001248 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001249 state->cur_history = i;
1250 state->cnt_history = i;
Denis Vlasenko09221922007-04-15 13:21:01 +00001251#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001252 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001253 save_history(str);
Denis Vlasenko09221922007-04-15 13:21:01 +00001254#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001255 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001256}
1257
1258#else /* MAX_HISTORY == 0 */
1259#define remember_in_history(a) ((void)0)
1260#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001261
1262
Erik Andersen6273f652000-03-17 01:12:41 +00001263/*
1264 * This function is used to grab a character buffer
1265 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001266 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001267 * a mini readline).
1268 *
1269 * The following standard commands are not implemented:
1270 * ESC-b -- Move back one word
1271 * ESC-f -- Move forward one word
1272 * ESC-d -- Delete back one word
1273 * ESC-h -- Delete forward one word
1274 * CTL-t -- Transpose two characters
1275 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001276 * Minimalist vi-style command line editing available if configured.
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001277 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001278 */
Eric Andersenc470f442003-07-28 09:56:35 +00001279
Denis Vlasenko38f63192007-01-22 09:03:07 +00001280#if ENABLE_FEATURE_EDITING_VI
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001281static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001282vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001283{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001284 CHAR_T *command = command_ps;
1285
1286 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001287 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001288 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001289 input_forward();
1290}
1291
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001292static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001293vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001294{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001295 CHAR_T *command = command_ps;
1296
1297 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001298 while (cursor < command_len
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001299 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_'))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001300 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001301 } else if (BB_ispunct(command[cursor])) {
1302 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001303 input_forward();
1304 }
1305
Denis Vlasenko253ce002007-01-22 08:34:44 +00001306 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001307 input_forward();
1308
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001309 if (eat && cursor < command_len && BB_isspace(command[cursor]))
1310 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001311 input_forward();
1312}
1313
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001314static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001315vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001316{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001317 CHAR_T *command = command_ps;
1318
Paul Fox3f11b1b2005-08-04 19:04:46 +00001319 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001320 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001321 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001322 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001323 input_forward();
1324}
1325
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001326static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001327vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001328{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001329 CHAR_T *command = command_ps;
1330
Denis Vlasenko253ce002007-01-22 08:34:44 +00001331 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001332 return;
1333 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001334 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001335 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001336 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001337 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001338 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001339 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001340 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001341 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001342 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001343 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001344 } else if (BB_ispunct(command[cursor])) {
1345 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001346 input_forward();
1347 }
1348}
1349
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001350static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001351vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001352{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001353 CHAR_T *command = command_ps;
1354
1355 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001356 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001357 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001358 input_backward(1);
1359}
1360
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001361static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001362vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001363{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001364 CHAR_T *command = command_ps;
1365
Paul Fox3f11b1b2005-08-04 19:04:46 +00001366 if (cursor <= 0)
1367 return;
1368 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001369 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001370 input_backward(1);
1371 if (cursor <= 0)
1372 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001373 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001374 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001375 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001376 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001377 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001378 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001379 } else if (BB_ispunct(command[cursor])) {
1380 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001381 input_backward(1);
1382 }
1383}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001384#endif
1385
1386
1387/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001388 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001389 */
1390
Denis Vlasenko38f63192007-01-22 09:03:07 +00001391#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001392static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001393{
1394 cmdedit_prompt = prmt_ptr;
1395 cmdedit_prmt_len = strlen(prmt_ptr);
1396 put_prompt();
1397}
1398#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001399static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001400{
1401 int prmt_len = 0;
1402 size_t cur_prmt_len = 0;
1403 char flg_not_length = '[';
1404 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001405 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1406 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001407 char c;
1408 char *pbuf;
1409
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001410 cmdedit_prmt_len = 0;
1411
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001412 if (!cwd_buf) {
1413 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001414 }
1415
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001416 cbuf[1] = '\0'; /* never changes */
1417
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001418 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001419 char *free_me = NULL;
1420
1421 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001422 c = *prmt_ptr++;
1423 if (c == '\\') {
1424 const char *cp = prmt_ptr;
1425 int l;
1426
1427 c = bb_process_escape_sequence(&prmt_ptr);
1428 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001429 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001430 break;
1431 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001432
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001433 switch (c) {
1434#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1435 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001436 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001437 break;
1438#endif
1439 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001440 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001441 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001442 break;
1443 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001444 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001445 break;
1446#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1447 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001448 /* /home/user[/something] -> ~[/something] */
1449 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001450 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001451 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001452 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1453 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1454 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001455 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001456 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001457 }
1458 break;
1459#endif
1460 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001461 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001462 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001463 if (cp != NULL && cp != pbuf)
1464 pbuf += (cp-pbuf) + 1;
1465 break;
1466 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001467 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001468 break;
1469 case 'e': case 'E': /* \e \E = \033 */
1470 c = '\033';
1471 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001472 case 'x': case 'X': {
1473 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001474 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001475 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001476 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001477 buf2[l] = '\0';
1478 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001479 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001480 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001481 break;
1482 }
1483 prmt_ptr++;
1484 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001485 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001486 if (c == 0)
1487 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001488 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001489 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001490 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001491 case '[': case ']':
1492 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001493 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001494 continue;
1495 }
1496 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001497 } /* switch */
1498 } /* if */
1499 } /* if */
1500 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001501 cur_prmt_len = strlen(pbuf);
1502 prmt_len += cur_prmt_len;
1503 if (flg_not_length != ']')
1504 cmdedit_prmt_len += cur_prmt_len;
1505 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001506 free(free_me);
1507 } /* while */
1508
1509 if (cwd_buf != (char *)bb_msg_unknown)
1510 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001511 cmdedit_prompt = prmt_mem_ptr;
1512 put_prompt();
1513}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001514#endif
1515
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001516static void cmdedit_setwidth(unsigned w, int redraw_flg)
1517{
1518 cmdedit_termw = w;
1519 if (redraw_flg) {
1520 /* new y for current cursor */
1521 int new_y = (cursor + cmdedit_prmt_len) / w;
1522 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001523 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001524 fflush(stdout);
1525 }
1526}
1527
1528static void win_changed(int nsig)
1529{
Denis Vlasenko55995022008-05-18 22:28:26 +00001530 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001531 get_terminal_width_height(0, &width, NULL);
1532 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1533 if (nsig == SIGWINCH)
1534 signal(SIGWINCH, win_changed); /* rearm ourself */
1535}
1536
Denys Vlasenko020f4062009-05-17 16:44:54 +02001537static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001538{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001539 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001540 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001541 int delay = -1;
1542#if ENABLE_FEATURE_ASSUME_UNICODE
1543 char unicode_buf[MB_CUR_MAX + 1];
1544 int unicode_idx = 0;
1545#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001546
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001547 pfd.fd = STDIN_FILENO;
1548 pfd.events = POLLIN;
1549 do {
Denys Vlasenko020f4062009-05-17 16:44:54 +02001550 poll_again:
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001551 if (read_key_buffer[0] == 0) {
1552 /* Wait for input. Can't just call read_key,
1553 * it returns at once if stdin
1554 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001555 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001556 }
1557 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001558 ic = read_key(STDIN_FILENO, read_key_buffer);
1559 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL
1560 && (int32_t)ic == KEYCODE_CURSOR_POS
1561 ) {
1562 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001563 if (col > cmdedit_prmt_len) {
1564 cmdedit_x += (col - cmdedit_prmt_len);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001565 while (cmdedit_x >= cmdedit_termw) {
1566 cmdedit_x -= cmdedit_termw;
1567 cmdedit_y++;
1568 }
1569 }
1570 goto poll_again;
1571 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001572
1573#if ENABLE_FEATURE_ASSUME_UNICODE
1574 {
1575 wchar_t wc;
1576
1577 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1578 return ic;
1579 unicode_buf[unicode_idx++] = ic;
1580 unicode_buf[unicode_idx] = '\0';
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001581 if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001582 delay = 50;
1583 goto poll_again;
1584 }
1585 ic = wc;
1586 }
1587#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001588 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001589
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001590 return ic;
1591}
1592
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001593/* leave out the "vi-mode"-only case labels if vi editing isn't
1594 * configured. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001595#define vi_case(caselabel) IF_FEATURE_EDITING(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001596
1597/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001598#undef CTRL
1599#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001600
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001601/* Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001602 * -1 on read errors or EOF, or on bare Ctrl-D,
1603 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001604 * >0 length of input string, including terminating '\n'
1605 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001606int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001607{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001608 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001609#if ENABLE_FEATURE_TAB_COMPLETION
1610 smallint lastWasTab = FALSE;
1611#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001612 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001613#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001614 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001615#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001616 struct termios initial_settings;
1617 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001618 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001619
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001620 INIT_S();
1621
1622 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1623 || !(initial_settings.c_lflag & ECHO)
1624 ) {
1625 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001626 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001627 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001628 if (fgets(command, maxsize, stdin) == NULL)
1629 len = -1; /* EOF or error */
1630 else
1631 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001632 DEINIT_S();
1633 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001634 }
1635
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001636 check_unicode_in_env();
1637
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001638// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001639 if (maxsize > MAX_LINELEN)
1640 maxsize = MAX_LINELEN;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001641
1642 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001643 state = st ? st : (line_input_t*) &const_int_0;
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001644#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001645 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001646 if (state->cnt_history == 0)
1647 load_history(state);
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001648#endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001649 if (state->flags & DO_HISTORY)
1650 state->cur_history = state->cnt_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001651
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001652 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001653 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001654 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001655#if ENABLE_FEATURE_ASSUME_UNICODE
1656 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1657#else
Mark Whitley4e338752001-01-26 20:42:23 +00001658 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001659 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001660#endif
1661#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001662
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001663 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001664 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1665 /* Turn off echoing and CTRL-C, so we can trap it */
1666 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001667 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001668 new_settings.c_cc[VMIN] = 1;
1669 new_settings.c_cc[VTIME] = 0;
1670 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001671#ifndef _POSIX_VDISABLE
1672#define _POSIX_VDISABLE '\0'
1673#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001674 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001675 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001676
Eric Andersen6faae7d2001-02-16 20:09:17 +00001677 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001678 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1679 win_changed(0); /* do initial resizing */
1680#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1681 {
1682 struct passwd *entry;
1683
1684 entry = getpwuid(geteuid());
1685 if (entry) {
1686 user_buf = xstrdup(entry->pw_name);
1687 home_pwd_buf = xstrdup(entry->pw_dir);
1688 }
1689 }
1690#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001691
1692#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001693 for (i = 0; i <= MAX_HISTORY; i++)
1694 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001695 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1696#endif
1697
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001698 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001699 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001700
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001701 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001702 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001703 /*
1704 * The emacs and vi modes share much of the code in the big
1705 * command loop. Commands entered when in vi's command mode
1706 * (aka "escape mode") get an extra bit added to distinguish
1707 * them - this keeps them from being self-inserted. This
1708 * clutters the big switch a bit, but keeps all the code
1709 * in one place.
1710 */
1711 enum {
1712 VI_CMDMODE_BIT = 0x40000000,
1713 /* 0x80000000 bit flags KEYCODE_xxx */
1714 };
1715 int32_t ic;
1716
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001717 fflush(NULL);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001718 ic = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001719
Denis Vlasenko38f63192007-01-22 09:03:07 +00001720#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001721 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001722 if (vi_cmdmode) {
1723 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1724 * change ic if it contains one of them: */
1725 ic |= VI_CMDMODE_BIT;
1726 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001727#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001728
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001729 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001730 case '\n':
1731 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001732 vi_case('\n'|VI_CMDMODE_BIT:)
1733 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001734 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001735 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001736 break_out = 1;
1737 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001738 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001739 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001740 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001741 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001742 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001743 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001744 vi_case('h'|VI_CMDMODE_BIT:)
1745 vi_case('\b'|VI_CMDMODE_BIT:)
1746 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001747 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001748 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001749 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001750 case CTRL('C'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001751 vi_case(CTRL('C')|VI_CMDMODE_BIT:)
Eric Andersen86349772000-12-18 20:25:50 +00001752 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001753 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001754 command_len = 0;
1755 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001756 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001757 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001758 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001759 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001760 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001761 errno = 0;
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001762#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001763 prepare_to_die:
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001764#endif
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001765 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001766 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001767 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001768 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001769 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001770 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001771 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001772 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001773 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001774 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001775 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001776 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001777 vi_case('l'|VI_CMDMODE_BIT:)
1778 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001779 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001780 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001781 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001782 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001783 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001784 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001785 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001786 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001787#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001788 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001789 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001790 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001791#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001792 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001793 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001794 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001795 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001796 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001797 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001798 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001799 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001800 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001801 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001802 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001803 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001804#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001805 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001806 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1807 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001808 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001809 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001810 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001811 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001812 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001813 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1814 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001815 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001816 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001817 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001818 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001819#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001820 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001821 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001822 /* Control-U -- Clear line before cursor */
1823 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001824 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001825 memmove(command_ps, command_ps + cursor,
1826 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001827 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001828 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001829 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001830 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001831 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001832 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001833 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001834 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001835 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001836 input_backspace();
1837 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001838
Denis Vlasenko38f63192007-01-22 09:03:07 +00001839#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001840 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001841 vi_cmdmode = 0;
1842 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001843 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001844 input_backward(cursor);
1845 vi_cmdmode = 0;
1846 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001847 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001848 input_forward();
1849 vi_cmdmode = 0;
1850 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001851 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001852 input_end();
1853 vi_cmdmode = 0;
1854 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001855 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001856 input_delete(1);
1857 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001858 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001859 if (cursor > 0) {
1860 input_backward(1);
1861 input_delete(1);
1862 }
1863 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001864 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001865 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001866 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001867 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001868 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001869 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001870 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001871 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001872 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001873 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001874 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001875 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001876 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001877 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001878 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001879 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001880 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001881 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001882 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001883 vi_cmdmode = 0;
1884 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001885 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001886 goto clear_to_eol;
1887
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001888 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001889 vi_cmdmode = 0;
1890 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001891 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001892 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001893 int prev_ic;
1894
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001895 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001896 prev_ic = ic;
1897
Denys Vlasenko020f4062009-05-17 16:44:54 +02001898 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001899 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001900 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001901
1902 if ((ic | VI_CMDMODE_BIT) == prev_ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001903 /* "cc", "dd" */
1904 input_backward(cursor);
1905 goto clear_to_eol;
1906 break;
1907 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001908 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001909 case 'w':
1910 case 'W':
1911 case 'e':
1912 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001913 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001914 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001915 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001916 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001917 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001918 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001919 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001920 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001921 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001922 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001923 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001924 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001925 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001926 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001927 break;
1928 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001929 nc = cursor;
1930 input_backward(cursor - sc);
1931 while (nc-- > cursor)
1932 input_delete(1);
1933 break;
1934 case 'b': /* "db", "cb" */
1935 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001936 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001937 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001938 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001939 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001940 while (sc-- > cursor)
1941 input_delete(1);
1942 break;
1943 case ' ': /* "d ", "c " */
1944 input_delete(1);
1945 break;
1946 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001947 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001948 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001949 input_delete(1);
1950 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001951 }
1952 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001953 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001954 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001955 input_forward();
1956 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001957 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001958 put();
1959 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001960 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko020f4062009-05-17 16:44:54 +02001961 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001962 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001963 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001964 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001965 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001966 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001967 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001968 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001969 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00001970 }
1971 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001972 case '\x1b': /* ESC */
1973 if (state->flags & VI_MODE) {
1974 /* insert mode --> command mode */
1975 vi_cmdmode = 1;
1976 input_backward(1);
1977 }
1978 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001979#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001980
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001981#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001982 case KEYCODE_UP:
1983 if (get_previous_history())
1984 goto rewrite_line;
1985 beep();
1986 break;
1987 case KEYCODE_DOWN:
1988 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001989 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001990 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001991 /* Rewrite the line with the selected history item */
1992 /* change command */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001993 command_len = load_string(state->history[state->cur_history] ? : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001994 /* redraw and go to eol (bol, in vi) */
1995 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
1996 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001997#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001998 case KEYCODE_RIGHT:
1999 input_forward();
2000 break;
2001 case KEYCODE_LEFT:
2002 input_backward(1);
2003 break;
2004 case KEYCODE_DELETE:
2005 input_delete(0);
2006 break;
2007 case KEYCODE_HOME:
2008 input_backward(cursor);
2009 break;
2010 case KEYCODE_END:
2011 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002012 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002013
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002014 default:
2015// /* Control-V -- force insert of next char */
2016// if (c == CTRL('V')) {
2017// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2018// goto prepare_to_die;
2019// if (c == 0) {
2020// beep();
2021// break;
2022// }
2023// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002024 if (ic < ' '
2025 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2026 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2027 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002028 /* If VI_CMDMODE_BIT is set, ic is >= 256
2029 * and command mode ignores unexpected chars.
2030 * Otherwise, we are here if ic is a
2031 * control char or an unhandled ESC sequence,
2032 * which is also ignored.
2033 */
2034 break;
2035 }
2036 if ((int)command_len >= (maxsize - 2)) {
2037 /* Not enough space for the char and EOL */
2038 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002039 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002040
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002041 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002042 if (cursor == (command_len - 1)) {
2043 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002044 command_ps[cursor] = ic;
2045 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002046 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002047 } else {
2048 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002049 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002050
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002051 memmove(command_ps + sc + 1, command_ps + sc,
2052 (command_len - sc) * sizeof(command_ps[0]));
2053 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002054 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002055 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002056 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002057 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002058 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002059 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002060 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002061 } /* switch (input_key) */
2062
2063 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002064 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002065
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002066#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002067 ic &= ~VI_CMDMODE_BIT;
2068 if (ic != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002069 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002070#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002071 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002072
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002073/* Stop bug catching using "command_must_not_be_used" trick */
2074#undef command
2075
2076#if ENABLE_FEATURE_ASSUME_UNICODE
2077 command_len = save_string(command, maxsize - 1);
2078 free(command_ps);
2079#endif
2080
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002081 if (command_len > 0)
2082 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002083
Eric Andersen27bb7902003-12-23 20:24:51 +00002084 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002085 command[command_len++] = '\n';
2086 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002087 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002088
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002089#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002090 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002091#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002092
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002093 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002094 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002095 /* restore SIGWINCH handler */
2096 signal(SIGWINCH, previous_SIGWINCH_handler);
2097 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002098
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002099 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002100 DEINIT_S();
2101
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002102 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002103}
2104
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002105#else
2106
2107#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002108int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002109{
2110 fputs(prompt, stdout);
2111 fflush(stdout);
2112 fgets(command, maxsize, stdin);
2113 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002114}
2115
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002116#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002117
2118
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002119/*
2120 * Testing
2121 */
2122
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002123#ifdef TEST
2124
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002125#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002126
2127const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002128
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002129int main(int argc, char **argv)
2130{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002131 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002132 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002133#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002134 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2135 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2136 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002137#else
2138 "% ";
2139#endif
2140
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002141#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002142 setlocale(LC_ALL, "");
2143#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002144 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002145 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002146 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002147 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002148 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002149 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002150 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002151 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002152 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002153 return 0;
2154}
2155
Eric Andersenc470f442003-07-28 09:56:35 +00002156#endif /* TEST */