blob: 6e836d83ec8e593e8f8763b89c3dcabd3bd9a2c1 [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 Vlasenko13028922009-07-12 00:51:15 +02001299 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1300 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001301 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001302 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001303 } else if (BB_ispunct(command[cursor])) {
1304 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001305 input_forward();
1306 }
1307
Denis Vlasenko253ce002007-01-22 08:34:44 +00001308 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001309 input_forward();
1310
Denys Vlasenko13028922009-07-12 00:51:15 +02001311 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001312 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001313 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001314 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001315}
1316
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001317static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001318vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001319{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001320 CHAR_T *command = command_ps;
1321
Paul Fox3f11b1b2005-08-04 19:04:46 +00001322 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001323 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001324 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001325 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001326 input_forward();
1327}
1328
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001329static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001330vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001331{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001332 CHAR_T *command = command_ps;
1333
Denis Vlasenko253ce002007-01-22 08:34:44 +00001334 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001335 return;
1336 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001337 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001338 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001339 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001340 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001341 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001342 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001343 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001344 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001345 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001346 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001347 } else if (BB_ispunct(command[cursor])) {
1348 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001349 input_forward();
1350 }
1351}
1352
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001353static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001354vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001355{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001356 CHAR_T *command = command_ps;
1357
1358 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001359 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001360 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001361 input_backward(1);
1362}
1363
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001364static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001365vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001366{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001367 CHAR_T *command = command_ps;
1368
Paul Fox3f11b1b2005-08-04 19:04:46 +00001369 if (cursor <= 0)
1370 return;
1371 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001373 input_backward(1);
1374 if (cursor <= 0)
1375 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001376 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001377 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001378 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001379 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001380 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001381 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001382 } else if (BB_ispunct(command[cursor])) {
1383 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001384 input_backward(1);
1385 }
1386}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001387#endif
1388
1389
1390/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001391 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001392 */
1393
Denis Vlasenko38f63192007-01-22 09:03:07 +00001394#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001395static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001396{
1397 cmdedit_prompt = prmt_ptr;
1398 cmdedit_prmt_len = strlen(prmt_ptr);
1399 put_prompt();
1400}
1401#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001402static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001403{
1404 int prmt_len = 0;
1405 size_t cur_prmt_len = 0;
1406 char flg_not_length = '[';
1407 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001408 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1409 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001410 char c;
1411 char *pbuf;
1412
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001413 cmdedit_prmt_len = 0;
1414
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001415 if (!cwd_buf) {
1416 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001417 }
1418
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001419 cbuf[1] = '\0'; /* never changes */
1420
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001421 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001422 char *free_me = NULL;
1423
1424 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001425 c = *prmt_ptr++;
1426 if (c == '\\') {
1427 const char *cp = prmt_ptr;
1428 int l;
1429
1430 c = bb_process_escape_sequence(&prmt_ptr);
1431 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001432 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001433 break;
1434 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001435
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001436 switch (c) {
1437#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1438 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001439 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001440 break;
1441#endif
1442 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001443 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001444 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001445 break;
1446 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001447 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001448 break;
1449#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1450 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001451 /* /home/user[/something] -> ~[/something] */
1452 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001453 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001454 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001455 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1456 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1457 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001458 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001459 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001460 }
1461 break;
1462#endif
1463 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001464 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001465 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001466 if (cp != NULL && cp != pbuf)
1467 pbuf += (cp-pbuf) + 1;
1468 break;
1469 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001470 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001471 break;
1472 case 'e': case 'E': /* \e \E = \033 */
1473 c = '\033';
1474 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001475 case 'x': case 'X': {
1476 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001477 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001478 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001479 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001480 buf2[l] = '\0';
1481 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001482 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001483 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001484 break;
1485 }
1486 prmt_ptr++;
1487 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001488 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001489 if (c == 0)
1490 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001491 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001492 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001493 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001494 case '[': case ']':
1495 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001496 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001497 continue;
1498 }
1499 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001500 } /* switch */
1501 } /* if */
1502 } /* if */
1503 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001504 cur_prmt_len = strlen(pbuf);
1505 prmt_len += cur_prmt_len;
1506 if (flg_not_length != ']')
1507 cmdedit_prmt_len += cur_prmt_len;
1508 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001509 free(free_me);
1510 } /* while */
1511
1512 if (cwd_buf != (char *)bb_msg_unknown)
1513 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001514 cmdedit_prompt = prmt_mem_ptr;
1515 put_prompt();
1516}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001517#endif
1518
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001519static void cmdedit_setwidth(unsigned w, int redraw_flg)
1520{
1521 cmdedit_termw = w;
1522 if (redraw_flg) {
1523 /* new y for current cursor */
1524 int new_y = (cursor + cmdedit_prmt_len) / w;
1525 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001526 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001527 fflush(stdout);
1528 }
1529}
1530
1531static void win_changed(int nsig)
1532{
Denis Vlasenko55995022008-05-18 22:28:26 +00001533 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001534 get_terminal_width_height(0, &width, NULL);
1535 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1536 if (nsig == SIGWINCH)
1537 signal(SIGWINCH, win_changed); /* rearm ourself */
1538}
1539
Denys Vlasenko020f4062009-05-17 16:44:54 +02001540static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001541{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001542 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001543 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001544 int delay = -1;
1545#if ENABLE_FEATURE_ASSUME_UNICODE
1546 char unicode_buf[MB_CUR_MAX + 1];
1547 int unicode_idx = 0;
1548#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001549
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001550 pfd.fd = STDIN_FILENO;
1551 pfd.events = POLLIN;
1552 do {
Denys Vlasenko020f4062009-05-17 16:44:54 +02001553 poll_again:
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001554 if (read_key_buffer[0] == 0) {
1555 /* Wait for input. Can't just call read_key,
1556 * it returns at once if stdin
1557 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001558 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001559 }
1560 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001561 ic = read_key(STDIN_FILENO, read_key_buffer);
1562 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL
1563 && (int32_t)ic == KEYCODE_CURSOR_POS
1564 ) {
1565 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001566 if (col > cmdedit_prmt_len) {
1567 cmdedit_x += (col - cmdedit_prmt_len);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001568 while (cmdedit_x >= cmdedit_termw) {
1569 cmdedit_x -= cmdedit_termw;
1570 cmdedit_y++;
1571 }
1572 }
1573 goto poll_again;
1574 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001575
1576#if ENABLE_FEATURE_ASSUME_UNICODE
1577 {
1578 wchar_t wc;
1579
1580 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1581 return ic;
1582 unicode_buf[unicode_idx++] = ic;
1583 unicode_buf[unicode_idx] = '\0';
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001584 if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001585 delay = 50;
1586 goto poll_again;
1587 }
1588 ic = wc;
1589 }
1590#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001591 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001592
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001593 return ic;
1594}
1595
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001596/* leave out the "vi-mode"-only case labels if vi editing isn't
1597 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001598#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001599
1600/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001601#undef CTRL
1602#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001603
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001604/* Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001605 * -1 on read errors or EOF, or on bare Ctrl-D,
1606 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001607 * >0 length of input string, including terminating '\n'
1608 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001609int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001610{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001611 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001612#if ENABLE_FEATURE_TAB_COMPLETION
1613 smallint lastWasTab = FALSE;
1614#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001615 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001616#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001617 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001619 struct termios initial_settings;
1620 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001621 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001622
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001623 INIT_S();
1624
1625 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1626 || !(initial_settings.c_lflag & ECHO)
1627 ) {
1628 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001629 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001630 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001631 if (fgets(command, maxsize, stdin) == NULL)
1632 len = -1; /* EOF or error */
1633 else
1634 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001635 DEINIT_S();
1636 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001637 }
1638
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001639 check_unicode_in_env();
1640
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001641// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001642 if (maxsize > MAX_LINELEN)
1643 maxsize = MAX_LINELEN;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001644
1645 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001646 state = st ? st : (line_input_t*) &const_int_0;
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001647#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001648 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001649 if (state->cnt_history == 0)
1650 load_history(state);
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001651#endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001652 if (state->flags & DO_HISTORY)
1653 state->cur_history = state->cnt_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001654
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001655 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001656 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001657 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001658#if ENABLE_FEATURE_ASSUME_UNICODE
1659 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1660#else
Mark Whitley4e338752001-01-26 20:42:23 +00001661 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001662 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001663#endif
1664#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001665
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001666 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001667 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1668 /* Turn off echoing and CTRL-C, so we can trap it */
1669 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001670 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001671 new_settings.c_cc[VMIN] = 1;
1672 new_settings.c_cc[VTIME] = 0;
1673 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001674#ifndef _POSIX_VDISABLE
1675#define _POSIX_VDISABLE '\0'
1676#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001677 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001678 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001679
Eric Andersen6faae7d2001-02-16 20:09:17 +00001680 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001681 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1682 win_changed(0); /* do initial resizing */
1683#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1684 {
1685 struct passwd *entry;
1686
1687 entry = getpwuid(geteuid());
1688 if (entry) {
1689 user_buf = xstrdup(entry->pw_name);
1690 home_pwd_buf = xstrdup(entry->pw_dir);
1691 }
1692 }
1693#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001694
1695#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001696 for (i = 0; i <= MAX_HISTORY; i++)
1697 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001698 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1699#endif
1700
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001701 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001702 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001703
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001704 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001705 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001706 /*
1707 * The emacs and vi modes share much of the code in the big
1708 * command loop. Commands entered when in vi's command mode
1709 * (aka "escape mode") get an extra bit added to distinguish
1710 * them - this keeps them from being self-inserted. This
1711 * clutters the big switch a bit, but keeps all the code
1712 * in one place.
1713 */
1714 enum {
1715 VI_CMDMODE_BIT = 0x40000000,
1716 /* 0x80000000 bit flags KEYCODE_xxx */
1717 };
1718 int32_t ic;
1719
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001720 fflush(NULL);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001721 ic = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001722
Denis Vlasenko38f63192007-01-22 09:03:07 +00001723#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001724 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001725 if (vi_cmdmode) {
1726 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1727 * change ic if it contains one of them: */
1728 ic |= VI_CMDMODE_BIT;
1729 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001730#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001731
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001732 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001733 case '\n':
1734 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001735 vi_case('\n'|VI_CMDMODE_BIT:)
1736 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001737 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001738 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001739 break_out = 1;
1740 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001741 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001742 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001743 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001744 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001745 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001746 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001747 vi_case('h'|VI_CMDMODE_BIT:)
1748 vi_case('\b'|VI_CMDMODE_BIT:)
1749 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001750 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001751 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001752 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001753 case CTRL('C'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001754 vi_case(CTRL('C')|VI_CMDMODE_BIT:)
Eric Andersen86349772000-12-18 20:25:50 +00001755 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001756 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001757 command_len = 0;
1758 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001759 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001760 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001761 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001762 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001763 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001764 errno = 0;
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001765#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001766 prepare_to_die:
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001767#endif
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001768 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001769 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001770 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001771 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001772 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001773 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001774 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001775 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001776 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001777 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001778 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001779 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001780 vi_case('l'|VI_CMDMODE_BIT:)
1781 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001782 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001783 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001784 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001785 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001786 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001787 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001788 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001789 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001790#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001791 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001792 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001793 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001794#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001795 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001796 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001797 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001798 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001799 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001800 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001801 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001802 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001803 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001804 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001805 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001806 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001807#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001808 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001809 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1810 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001811 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001812 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001813 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001814 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001815 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001816 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1817 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001818 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001819 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001820 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001821 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001822#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001823 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001824 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001825 /* Control-U -- Clear line before cursor */
1826 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001827 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001828 memmove(command_ps, command_ps + cursor,
1829 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001830 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001831 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001832 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001833 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001834 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001835 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001836 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001837 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001838 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001839 input_backspace();
1840 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001841
Denis Vlasenko38f63192007-01-22 09:03:07 +00001842#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001843 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001844 vi_cmdmode = 0;
1845 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001846 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001847 input_backward(cursor);
1848 vi_cmdmode = 0;
1849 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001850 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001851 input_forward();
1852 vi_cmdmode = 0;
1853 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001854 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001855 input_end();
1856 vi_cmdmode = 0;
1857 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001858 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001859 input_delete(1);
1860 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001861 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001862 if (cursor > 0) {
1863 input_backward(1);
1864 input_delete(1);
1865 }
1866 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 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001871 vi_word_motion(1);
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 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001877 vi_end_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 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001883 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001884 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001885 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001886 vi_cmdmode = 0;
1887 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001888 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001889 goto clear_to_eol;
1890
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001891 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001892 vi_cmdmode = 0;
1893 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001894 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001895 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001896 int prev_ic;
1897
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001898 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001899 prev_ic = ic;
1900
Denys Vlasenko020f4062009-05-17 16:44:54 +02001901 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001902 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001903 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001904
1905 if ((ic | VI_CMDMODE_BIT) == prev_ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001906 /* "cc", "dd" */
1907 input_backward(cursor);
1908 goto clear_to_eol;
1909 break;
1910 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001911 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001912 case 'w':
1913 case 'W':
1914 case 'e':
1915 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001916 switch (ic) {
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 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001921 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001922 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001923 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001924 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001925 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001926 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001927 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001928 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001929 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001930 break;
1931 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001932 nc = cursor;
1933 input_backward(cursor - sc);
1934 while (nc-- > cursor)
1935 input_delete(1);
1936 break;
1937 case 'b': /* "db", "cb" */
1938 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001939 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001940 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001941 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001942 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001943 while (sc-- > cursor)
1944 input_delete(1);
1945 break;
1946 case ' ': /* "d ", "c " */
1947 input_delete(1);
1948 break;
1949 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001950 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001951 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001952 input_delete(1);
1953 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001954 }
1955 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001956 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001957 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001958 input_forward();
1959 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001960 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001961 put();
1962 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001963 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko020f4062009-05-17 16:44:54 +02001964 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001965 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001966 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001967 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001968 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001969 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001970 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001971 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001972 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00001973 }
1974 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001975 case '\x1b': /* ESC */
1976 if (state->flags & VI_MODE) {
1977 /* insert mode --> command mode */
1978 vi_cmdmode = 1;
1979 input_backward(1);
1980 }
1981 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001982#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001983
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001984#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001985 case KEYCODE_UP:
1986 if (get_previous_history())
1987 goto rewrite_line;
1988 beep();
1989 break;
1990 case KEYCODE_DOWN:
1991 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001992 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001993 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001994 /* Rewrite the line with the selected history item */
1995 /* change command */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001996 command_len = load_string(state->history[state->cur_history] ? : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001997 /* redraw and go to eol (bol, in vi) */
1998 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
1999 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002000#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002001 case KEYCODE_RIGHT:
2002 input_forward();
2003 break;
2004 case KEYCODE_LEFT:
2005 input_backward(1);
2006 break;
2007 case KEYCODE_DELETE:
2008 input_delete(0);
2009 break;
2010 case KEYCODE_HOME:
2011 input_backward(cursor);
2012 break;
2013 case KEYCODE_END:
2014 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002015 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002016
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002017 default:
2018// /* Control-V -- force insert of next char */
2019// if (c == CTRL('V')) {
2020// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2021// goto prepare_to_die;
2022// if (c == 0) {
2023// beep();
2024// break;
2025// }
2026// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002027 if (ic < ' '
2028 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2029 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2030 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002031 /* If VI_CMDMODE_BIT is set, ic is >= 256
2032 * and command mode ignores unexpected chars.
2033 * Otherwise, we are here if ic is a
2034 * control char or an unhandled ESC sequence,
2035 * which is also ignored.
2036 */
2037 break;
2038 }
2039 if ((int)command_len >= (maxsize - 2)) {
2040 /* Not enough space for the char and EOL */
2041 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002042 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002043
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002044 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002045 if (cursor == (command_len - 1)) {
2046 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002047 command_ps[cursor] = ic;
2048 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002049 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002050 } else {
2051 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002052 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002053
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002054 memmove(command_ps + sc + 1, command_ps + sc,
2055 (command_len - sc) * sizeof(command_ps[0]));
2056 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002057 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002058 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002059 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002060 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002061 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002062 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002063 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002064 } /* switch (input_key) */
2065
2066 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002067 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002068
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002069#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002070 ic &= ~VI_CMDMODE_BIT;
2071 if (ic != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002072 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002073#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002074 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002075
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002076/* Stop bug catching using "command_must_not_be_used" trick */
2077#undef command
2078
2079#if ENABLE_FEATURE_ASSUME_UNICODE
2080 command_len = save_string(command, maxsize - 1);
2081 free(command_ps);
2082#endif
2083
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002084 if (command_len > 0)
2085 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002086
Eric Andersen27bb7902003-12-23 20:24:51 +00002087 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002088 command[command_len++] = '\n';
2089 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002090 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002091
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002092#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002093 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002094#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002095
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002096 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002097 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002098 /* restore SIGWINCH handler */
2099 signal(SIGWINCH, previous_SIGWINCH_handler);
2100 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002101
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002102 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002103 DEINIT_S();
2104
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002105 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002106}
2107
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002108#else
2109
2110#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002111int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002112{
2113 fputs(prompt, stdout);
2114 fflush(stdout);
2115 fgets(command, maxsize, stdin);
2116 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002117}
2118
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002119#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002120
2121
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002122/*
2123 * Testing
2124 */
2125
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002126#ifdef TEST
2127
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002128#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002129
2130const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002131
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002132int main(int argc, char **argv)
2133{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002134 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002135 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002136#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002137 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2138 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2139 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002140#else
2141 "% ";
2142#endif
2143
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002144#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002145 setlocale(LC_ALL, "");
2146#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002147 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002148 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002149 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002150 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002151 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002152 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002153 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002154 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002155 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002156 return 0;
2157}
2158
Eric Andersenc470f442003-07-28 09:56:35 +00002159#endif /* TEST */