blob: 3689b4b5d306774f9eeb16e3dad3359327d0f8a1 [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 Vlasenko044b1802009-07-12 02:50:35 +0200118 /* *int* maxsize: we want x in "if (x > S.maxsize)"
119 * to _not_ be promoted to unsigned */
120 int maxsize;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200121 CHAR_T *command_ps;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000122
123 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +0000124#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000125 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000126#endif
127
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000128#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000129 char *user_buf;
130 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000131#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000132
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000133#if ENABLE_FEATURE_TAB_COMPLETION
134 char **matches;
135 unsigned num_matches;
136#endif
137
138#if ENABLE_FEATURE_EDITING_VI
139#define DELBUFSIZ 128
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200140 CHAR_T *delptr;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000141 smallint newdelflag; /* whether delbuf should be reused yet */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200142 CHAR_T delbuf[DELBUFSIZ]; /* a place to store deleted characters */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000143#endif
144
145 /* Formerly these were big buffers on stack: */
146#if ENABLE_FEATURE_TAB_COMPLETION
147 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
148 char input_tab__matchBuf[MAX_LINELEN];
149 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
150 int16_t find_match__pos_buf[MAX_LINELEN + 1];
151#endif
152};
153
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000154/* See lineedit_ptr_hack.c */
155extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000156
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000157#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000158#define state (S.state )
159#define cmdedit_termw (S.cmdedit_termw )
160#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
161#define cmdedit_x (S.cmdedit_x )
162#define cmdedit_y (S.cmdedit_y )
163#define cmdedit_prmt_len (S.cmdedit_prmt_len)
164#define cursor (S.cursor )
165#define command_len (S.command_len )
166#define command_ps (S.command_ps )
167#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000168#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000169#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000170#define home_pwd_buf (S.home_pwd_buf )
171#define matches (S.matches )
172#define num_matches (S.num_matches )
173#define delptr (S.delptr )
174#define newdelflag (S.newdelflag )
175#define delbuf (S.delbuf )
176
177#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000178 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000179 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000180 cmdedit_termw = 80; \
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000181 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
182 IF_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000183} while (0)
184static void deinit_S(void)
185{
186#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000187 /* This one is allocated only if FANCY_PROMPT is on
188 * (otherwise it points to verbatim prompt (NOT malloced) */
189 free((char*)cmdedit_prompt);
190#endif
191#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
192 free(user_buf);
193 if (home_pwd_buf != null_str)
194 free(home_pwd_buf);
195#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000196 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000197}
198#define DEINIT_S() deinit_S()
199
Denis Vlasenko2c844952008-04-25 18:44:35 +0000200
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200201#if ENABLE_FEATURE_ASSUME_UNICODE
202static size_t load_string(const char *src, int maxsize)
203{
204 ssize_t len = mbstowcs(command_ps, src, maxsize - 1);
205 if (len < 0)
206 len = 0;
207 command_ps[len] = L'\0';
208 return len;
209}
210static size_t save_string(char *dst, int maxsize)
211{
212 ssize_t len = wcstombs(dst, command_ps, maxsize - 1);
213 if (len < 0)
214 len = 0;
215 dst[len] = '\0';
216 return len;
217}
218/* I thought just fputwc(c, stdout) would work. But no... */
219static void BB_PUTCHAR(wchar_t c)
220{
221 char buf[MB_CUR_MAX + 1];
222 mbstate_t mbst = { 0 };
223 ssize_t len = wcrtomb(buf, c, &mbst);
224
225 if (len > 0) {
226 buf[len] = '\0';
227 fputs(buf, stdout);
228 }
229}
230#else
231static size_t load_string(const char *src, int maxsize)
232{
233 safe_strncpy(command_ps, src, maxsize);
234 return strlen(command_ps);
235}
Denys Vlasenko9038d6f2009-07-15 20:02:19 +0200236# if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200237static void save_string(char *dst, int maxsize)
238{
239 safe_strncpy(dst, command_ps, maxsize);
240}
Denys Vlasenko7dd0ce42009-07-15 18:27:47 +0200241# endif
242# define BB_PUTCHAR(c) bb_putchar(c)
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200243#endif
244
245
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000246/* Put 'command_ps[cursor]', cursor++.
247 * Advance cursor on screen. If we reached right margin, scroll text up
248 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000249#define HACK_FOR_WRONG_WIDTH 1
250#if HACK_FOR_WRONG_WIDTH
251static void cmdedit_set_out_char(void)
252#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
253#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000254static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000255#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000256{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200257 CHAR_T c = command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000258
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200259 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000260 /* erase character after end of input string */
261 c = ' ';
262 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000263#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000264 /* Display non-printable characters in reverse */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200265 if (!BB_isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000266 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000267 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000268 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000269 c += '@';
270 if (c == 127)
271 c = '?';
272 printf("\033[7m%c\033[0m", c);
273 } else
274#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000275 {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200276 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000277 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000278 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000279 /* terminal is scrolled down */
280 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000281 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000282#if HACK_FOR_WRONG_WIDTH
283 /* This works better if our idea of term width is wrong
284 * and it is actually wider (often happens on serial lines).
285 * Printing CR,LF *forces* cursor to next line.
286 * OTOH if terminal width is correct AND terminal does NOT
287 * have automargin (IOW: it is moving cursor to next line
288 * by itself (which is wrong for VT-10x terminals)),
289 * this will break things: there will be one extra empty line */
290 puts("\r"); /* + implicit '\n' */
291#else
292 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000293 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000294 bb_putchar(next_char);
295 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000296#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000297 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200298// Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000299 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000300}
301
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000302/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000303static void input_end(void)
304{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000305 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000306 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000307}
308
309/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000310static void goto_new_line(void)
311{
Mark Whitley4e338752001-01-26 20:42:23 +0000312 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000313 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000314 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000315}
316
317
Rob Landley88621d72006-08-29 19:41:06 +0000318static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000319{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000320 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000321 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000322}
Eric Andersen81fe1232003-07-29 06:38:40 +0000323
Rob Landley88621d72006-08-29 19:41:06 +0000324static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000325{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000326 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000327}
328
Eric Andersenaff114c2004-04-14 17:51:38 +0000329/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000330/* (optimized for slow terminals) */
331static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000333 int count_y;
334
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000335 if (num > cursor)
336 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000337 if (!num)
338 return;
339 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000340
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000341 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000342 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000343 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000344 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000345 * Also gets miscompiled for ARM users
346 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000347 * printf(("\b\b\b\b" + 4) - num);
348 * return;
349 */
350 do {
351 bb_putchar('\b');
352 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000353 return;
354 }
355 printf("\033[%uD", num);
356 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000357 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000358
359 /* Need to go one or more lines up */
360 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000361 {
362 unsigned w = cmdedit_termw; /* volatile var */
363 count_y = 1 + (num / w);
364 cmdedit_y -= count_y;
365 cmdedit_x = w * count_y - num;
366 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000367 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000368 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000369}
370
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000371static void put_prompt(void)
372{
373 out1str(cmdedit_prompt);
Denys Vlasenkoc396fe62009-05-17 19:28:14 +0200374 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL) {
375 /* Ask terminal where is the cursor now.
376 * lineedit_read_key handles response and corrects
377 * our idea of current cursor position.
378 * Testcase: run "echo -n long_line_long_line_long_line",
379 * then type in a long, wrapping command and try to
380 * delete it using backspace key.
381 * Note: we print it _after_ prompt, because
382 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
383 */
384 out1str("\033" "[6n");
385 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000386 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000387 {
388 unsigned w = cmdedit_termw; /* volatile var */
389 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
390 cmdedit_x = cmdedit_prmt_len % w;
391 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000392}
393
Eric Andersenaff114c2004-04-14 17:51:38 +0000394/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000395static void redraw(int y, int back_cursor)
396{
Denys Vlasenko044b1802009-07-12 02:50:35 +0200397 if (y > 0) /* up to start y */
398 printf("\033[%uA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000399 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000400 put_prompt();
Denys Vlasenko044b1802009-07-12 02:50:35 +0200401 input_end(); /* rewrite */
402 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000403 input_backward(back_cursor);
404}
405
Paul Fox3f11b1b2005-08-04 19:04:46 +0000406/* Delete the char in front of the cursor, optionally saving it
407 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000408#if !ENABLE_FEATURE_EDITING_VI
409static void input_delete(void)
410#define input_delete(save) input_delete()
411#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000412static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000413#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000414{
Mark Whitley4e338752001-01-26 20:42:23 +0000415 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000416
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000417 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000418 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000419
Denis Vlasenko38f63192007-01-22 09:03:07 +0000420#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000421 if (save) {
422 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000423 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000424 newdelflag = 0;
425 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000426 if ((delptr - delbuf) < DELBUFSIZ)
427 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000428 }
429#endif
430
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200431 memmove(command_ps + j, command_ps + j + 1,
Denys Vlasenko9531f7d2009-07-16 14:33:16 +0200432 /* (command_len + 1 [because of NUL]) - (j + 1)
433 * simplified into (command_len - j) */
434 (command_len - j) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000435 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000436 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000437 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000438 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000439}
440
Denis Vlasenko38f63192007-01-22 09:03:07 +0000441#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000442static void put(void)
443{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000444 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000445 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000446
Paul Fox3f11b1b2005-08-04 19:04:46 +0000447 if (j == 0)
448 return;
449 ocursor = cursor;
450 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200451 memmove(command_ps + cursor + j, command_ps + cursor,
452 (command_len - cursor + 1) * sizeof(command_ps[0]));
453 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000454 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000455 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000456 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000457}
458#endif
459
Mark Whitley4e338752001-01-26 20:42:23 +0000460/* Delete the char in back of the cursor */
461static void input_backspace(void)
462{
463 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000464 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000465 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000466 }
467}
468
Eric Andersenaff114c2004-04-14 17:51:38 +0000469/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000470static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000471{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000472 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000473 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000474}
475
Denis Vlasenko38f63192007-01-22 09:03:07 +0000476#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000477
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000478static void free_tab_completion_data(void)
479{
480 if (matches) {
481 while (num_matches)
482 free(matches[--num_matches]);
483 free(matches);
484 matches = NULL;
485 }
486}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000487
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000488static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000489{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000490 matches = xrealloc_vector(matches, 4, num_matches);
491 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000492 num_matches++;
493}
494
Denis Vlasenko38f63192007-01-22 09:03:07 +0000495#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000496static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000497{
498 struct passwd *entry;
499 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000500
Eric Andersenc470f442003-07-28 09:56:35 +0000501 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000502 userlen = strlen(ud);
503
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000504 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000505 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000506 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000507
Eric Andersenc470f442003-07-28 09:56:35 +0000508 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000509 home = home_pwd_buf;
510 } else {
511 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000512 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000513 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000514 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000516 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000517 ud = temp;
518 if (entry)
519 home = entry->pw_dir;
520 }
521 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000522 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000523 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000524 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000525 }
526 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000527 } else {
528 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000529 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000530 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000531 struct passwd pwd;
532 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000533
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000534 setpwent();
535 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000536 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000537 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
538 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000539 }
540 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000541 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000542 }
543}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000544#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000545
546enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000547 FIND_EXE_ONLY = 0,
548 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000549 FIND_FILE_ONLY = 2,
550};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000551
Mark Whitley4e338752001-01-26 20:42:23 +0000552static int path_parse(char ***p, int flags)
553{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000554 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000555 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000556 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000557 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000558
Mark Whitley4e338752001-01-26 20:42:23 +0000559 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000560 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000561 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000562
563 if (state->flags & WITH_PATH_LOOKUP)
564 pth = state->path_lookup;
565 else
566 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000567 /* PATH=<empty> or PATH=:<empty> */
568 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
569 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000570
Denis Vlasenko253ce002007-01-22 08:34:44 +0000571 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000572 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000573 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000574 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000575 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000576 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000577 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000578 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000579 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000580 }
581
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000582 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000583 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000584 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000585 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000586 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000587 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000588 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000589 *tmp++ = '\0'; /* ':' -> '\0' */
590 if (*tmp == '\0')
591 break; /* :<empty> */
592 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000593 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000594 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000595 return npth;
596}
597
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000598static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000599{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000600 DIR *dir;
601 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000602 struct stat st;
603 char *path1[1];
604 char **paths = path1;
605 int npaths;
606 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000607 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000608 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000609/* char dirbuf[MAX_LINELEN]; */
610#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000611
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000612 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000613 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000614
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000615 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000616 /* no dir, if flags==EXE_ONLY - get paths, else "." */
617 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000618 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000619 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000620 /* dirbuf = ".../.../.../" */
621 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000622#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000623 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000624 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000626 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000627 /* point to 'l' in "..../last_component" */
628 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000629 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000630
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000632 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000633 if (!dir)
634 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000635
636 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000637 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000638 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000639
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000640 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000642 continue;
643 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000644 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000645 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000646 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000647 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000648 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000649 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000650 /* hmm, remove in progress? */
651 /* NB: stat() first so that we see is it a directory;
652 * but if that fails, use lstat() so that
653 * we still match dangling links */
654 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000655 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000656 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000657 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000658 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000659
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000660 len1 = strlen(found);
661 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000662 found[len1] = '\0';
663 found[len1+1] = '\0';
664
Mark Whitley4e338752001-01-26 20:42:23 +0000665 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000666 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000667 if (found[len1-1] != '/') {
668 found[len1] = '/';
669 }
Mark Whitley4e338752001-01-26 20:42:23 +0000670 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000671 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000672 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000673 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 }
Mark Whitley4e338752001-01-26 20:42:23 +0000675 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000676 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000677 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000678 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000679 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000680 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000681 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000682 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000683 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000684 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000685 free(paths);
686 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000687#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000688}
Erik Andersenf0657d32000-04-12 17:49:52 +0000689
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200690/* QUOT is used on elements of int_buf[], which are bytes,
691 * not Unicode chars. Therefore it works correctly even in Unicode mode.
692 */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000693#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000694
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200695#define int_buf (S.find_match__int_buf)
696#define pos_buf (S.find_match__pos_buf)
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200697/* is must be <= in */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200698static void collapse_pos(int is, int in)
699{
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200700 memmove(int_buf+is, int_buf+in, (MAX_LINELEN+1-in)*sizeof(int_buf[0]));
701 memmove(pos_buf+is, pos_buf+in, (MAX_LINELEN+1-in)*sizeof(pos_buf[0]));
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200702}
Denys Vlasenko044b1802009-07-12 02:50:35 +0200703static NOINLINE int find_match(char *matchBuf, int *len_with_quotes)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000704{
705 int i, j;
706 int command_mode;
707 int c, c2;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200708/* Were local, but it uses too much stack */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000709/* int16_t int_buf[MAX_LINELEN + 1]; */
710/* int16_t pos_buf[MAX_LINELEN + 1]; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711
712 /* set to integer dimension characters and own positions */
713 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000714 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000715 if (int_buf[i] == 0) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200716 pos_buf[i] = -1; /* end-fo-line indicator */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000717 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000718 }
719 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 }
721
722 /* mask \+symbol and convert '\t' to ' ' */
723 for (i = j = 0; matchBuf[i]; i++, j++)
724 if (matchBuf[i] == '\\') {
725 collapse_pos(j, j + 1);
726 int_buf[j] |= QUOT;
727 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000728#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200729 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000730 int_buf[j] = ' ' | QUOT;
731#endif
732 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000733#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 else if (matchBuf[i] == '\t')
735 int_buf[j] = ' ';
736#endif
737
738 /* mask "symbols" or 'symbols' */
739 c2 = 0;
740 for (i = 0; int_buf[i]; i++) {
741 c = int_buf[i];
742 if (c == '\'' || c == '"') {
743 if (c2 == 0)
744 c2 = c;
745 else {
746 if (c == c2)
747 c2 = 0;
748 else
749 int_buf[i] |= QUOT;
750 }
751 } else if (c2 != 0 && c != '$')
752 int_buf[i] |= QUOT;
753 }
754
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000755 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
757 for (i = 0; int_buf[i]; i++) {
758 c = int_buf[i];
759 c2 = int_buf[i + 1];
760 j = i ? int_buf[i - 1] : -1;
761 command_mode = 0;
762 if (c == ';' || c == '&' || c == '|') {
763 command_mode = 1 + (c == c2);
764 if (c == '&') {
765 if (j == '>' || j == '<')
766 command_mode = 0;
767 } else if (c == '|' && j == '>')
768 command_mode = 0;
769 }
770 if (command_mode) {
771 collapse_pos(0, i + command_mode);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200772 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000773 }
774 }
775 /* collapse `command...` */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200776 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000777 if (int_buf[i] == '`') {
778 for (j = i + 1; int_buf[j]; j++)
779 if (int_buf[j] == '`') {
780 collapse_pos(i, j + 1);
781 j = 0;
782 break;
783 }
784 if (j) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200785 /* not found closing ` - command mode, collapse all previous */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000786 collapse_pos(0, i + 1);
787 break;
788 } else
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200789 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000790 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200791 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000792
793 /* collapse (command...(command...)...) or {command...{command...}...} */
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200794 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000795 c2 = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200796 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000797 if (int_buf[i] == '(' || int_buf[i] == '{') {
798 if (int_buf[i] == '(')
799 c++;
800 else
801 c2++;
802 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200803 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000804 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200805 }
806 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000807 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
808 if (int_buf[i] == ')')
809 c--;
810 else
811 c2--;
812 collapse_pos(0, i + 1);
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200813 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000814 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200815 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000816
817 /* skip first not quote space */
818 for (i = 0; int_buf[i]; i++)
819 if (int_buf[i] != ' ')
820 break;
821 if (i)
822 collapse_pos(0, i);
823
824 /* set find mode for completion */
825 command_mode = FIND_EXE_ONLY;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200826 for (i = 0; int_buf[i]; i++) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000827 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
828 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000829 && matchBuf[pos_buf[0]] == 'c'
830 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000831 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000832 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000833 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000834 command_mode = FIND_FILE_ONLY;
835 break;
836 }
837 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200838 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000839 for (i = 0; int_buf[i]; i++)
840 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000841 /* find last word */
842 for (--i; i >= 0; i--) {
843 c = int_buf[i];
844 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
845 collapse_pos(0, i + 1);
846 break;
847 }
848 }
849 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000850 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
851 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000852 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000853 while ((int_buf[i] & ~QUOT) == '/'
854 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
855 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000856 i++;
857 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000858
859 /* set only match and destroy quotes */
860 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000861 for (c = 0; pos_buf[i] >= 0; i++) {
862 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000863 j = pos_buf[i] + 1;
864 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000865 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000866 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000867 *len_with_quotes = j ? j - pos_buf[0] : 0;
868
869 return command_mode;
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200870}
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000871#undef int_buf
872#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000873
Glenn L McGrath4d001292003-01-06 01:11:50 +0000874/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000875 * display by column (original idea from ls applet,
876 * very optimized by me :)
877 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000878static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000879{
880 int ncols, row;
881 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000882 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000883 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000884 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000885
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200886 /* find the longest file name - use that as the column width */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000887 for (row = 0; row < nrows; row++) {
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200888 l = bb_mbstrlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000889 if (column_width < l)
890 column_width = l;
891 }
892 column_width += 2; /* min space for columns */
893 ncols = cmdedit_termw / column_width;
894
895 if (ncols > 1) {
896 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000897 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000898 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000899 } else {
900 ncols = 1;
901 }
902 for (row = 0; row < nrows; row++) {
903 int n = row;
904 int nc;
905
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000906 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000907 printf("%s%-*s", matches[n],
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200908 (int)(column_width - bb_mbstrlen(matches[n])), ""
909 );
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000910 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000911 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000912 }
913}
914
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000915static char *add_quote_for_spec_chars(char *found)
916{
917 int l = 0;
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200918 char *s = xzalloc((strlen(found) + 1) * 2);
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000919
920 while (*found) {
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +0200921 if (strchr(" `\"#$%^&*()=+{}[]:;'|\\<>", *found))
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000922 s[l++] = '\\';
923 s[l++] = *found++;
924 }
Denys Vlasenko53fd1bf2009-07-16 02:19:39 +0200925 /* s[l] = '\0'; - already is */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000926 return s;
927}
928
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000929/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000930static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000931{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000932 if (!(state->flags & TAB_COMPLETION))
933 return;
934
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000935 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000936 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000937 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000938/* char matchBuf[MAX_LINELEN]; */
939#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000940 int find_type;
941 int recalc_pos;
Denys Vlasenko044b1802009-07-12 02:50:35 +0200942#if ENABLE_FEATURE_ASSUME_UNICODE
943 /* cursor pos in command converted to multibyte form */
944 int cursor_mb;
945#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000946
Eric Andersenc470f442003-07-28 09:56:35 +0000947 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200949 /* Make a local copy of the string --
950 * up to the position of the cursor */
951 save_string(matchBuf, cursor + 1);
Denys Vlasenko044b1802009-07-12 02:50:35 +0200952#if ENABLE_FEATURE_ASSUME_UNICODE
953 cursor_mb = strlen(matchBuf);
954#endif
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200955 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000956
957 find_type = find_match(matchBuf, &recalc_pos);
958
959 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000960 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000961
Denis Vlasenko38f63192007-01-22 09:03:07 +0000962#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000963 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000964 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000965 if (state->flags & USERNAME_COMPLETION)
Denys Vlasenko044b1802009-07-12 02:50:35 +0200966 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == NULL)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000967 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000968#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000969 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000970 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000971 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000972 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000973 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000974 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000975 unsigned i;
976 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000977 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000978 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000979 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000980 if (strcmp(matches[i], matches[i+1]) == 0) {
981 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000982 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000983 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000984 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000985 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000986 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000987 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000988 matches[n] = matches[i];
989 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000990 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000991 /* Did we find exactly one match? */
Denys Vlasenko044b1802009-07-12 02:50:35 +0200992 if (!matches || num_matches > 1) { /* no */
Mark Whitley4e338752001-01-26 20:42:23 +0000993 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000994 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000995 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000996 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000997 tmp1 = xstrdup(matches[0]);
Denys Vlasenko044b1802009-07-12 02:50:35 +0200998 for (tmp = tmp1; *tmp; tmp++) {
999 for (len_found = 1; len_found < num_matches; len_found++) {
1000 if (matches[len_found][tmp - tmp1] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001001 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001002 break;
1003 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001004 }
1005 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001006 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001007 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001008 return;
1009 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001010 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001011 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +00001012 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001013 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001014 /* for next completion current found */
1015 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +00001016
1017 len_found = strlen(tmp);
1018 if (tmp[len_found-1] != '/') {
1019 tmp[len_found] = ' ';
1020 tmp[len_found+1] = '\0';
1021 }
Mark Whitley4e338752001-01-26 20:42:23 +00001022 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001023
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001024 len_found = strlen(tmp);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001025#if !ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko044b1802009-07-12 02:50:35 +02001026 /* have space to place the match? */
1027 /* The result consists of three parts with these lengths: */
1028 /* (cursor - recalc_pos) + len_found + (command_len - cursor) */
1029 /* it simplifies into: */
1030 if ((int)(len_found + command_len - recalc_pos) < S.maxsize) {
1031 /* save tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001032 strcpy(matchBuf, command_ps + cursor);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001033 /* add match and tail */
1034 sprintf(&command_ps[cursor - recalc_pos], "%s%s", tmp, matchBuf);
Denis Vlasenko253ce002007-01-22 08:34:44 +00001035 command_len = strlen(command_ps);
Denys Vlasenko044b1802009-07-12 02:50:35 +02001036 /* new pos */
1037 recalc_pos = cursor - recalc_pos + len_found;
1038 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001039 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001040 }
Denys Vlasenko044b1802009-07-12 02:50:35 +02001041#else
1042 {
1043 char command[MAX_LINELEN];
1044 int len = save_string(command, sizeof(command));
1045 /* have space to place the match? */
1046 /* (cursor_mb - recalc_pos) + len_found + (len - cursor_mb) */
1047 if ((int)(len_found + len - recalc_pos) < MAX_LINELEN) {
1048 /* save tail */
1049 strcpy(matchBuf, command + cursor_mb);
1050 /* where do we want to have cursor after all? */
1051 strcpy(&command[cursor_mb - recalc_pos], tmp);
1052 len = load_string(command, S.maxsize);
1053 /* add match and tail */
1054 sprintf(&command[cursor_mb - recalc_pos], "%s%s", tmp, matchBuf);
1055 command_len = load_string(command, S.maxsize);
1056 /* write out the matched command */
1057 redraw(cmdedit_y, command_len - len);
1058 }
1059 }
1060#endif
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001061 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001062#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001063 } else {
1064 /* Ok -- the last char was a TAB. Since they
1065 * just hit TAB again, print a list of all the
1066 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001067 if (matches && num_matches > 0) {
Denys Vlasenko044b1802009-07-12 02:50:35 +02001068 /* changed by goto_new_line() */
1069 int sav_cursor = cursor;
Erik Andersenf0657d32000-04-12 17:49:52 +00001070
1071 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001072 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001073 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001074 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001075 }
1076 }
1077}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001078
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001079#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001080
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001081
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001082line_input_t* FAST_FUNC new_line_input_t(int flags)
1083{
1084 line_input_t *n = xzalloc(sizeof(*n));
1085 n->flags = flags;
1086 return n;
1087}
1088
1089
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001090#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001091
Denis Vlasenko682ad302008-09-27 01:28:56 +00001092static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001093{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001094 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001095 int cur = state->cur_history;
1096 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001097
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001098# if ENABLE_FEATURE_ASSUME_UNICODE
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001099 {
1100 char tbuf[MAX_LINELEN];
1101 save_string(tbuf, sizeof(tbuf));
1102 state->history[cur] = xstrdup(tbuf);
1103 }
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001104# else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001105 state->history[cur] = xstrdup(command_ps);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001106# endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001107 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001108}
1109
1110/* state->flags is already checked to be nonzero */
1111static int get_previous_history(void)
1112{
1113 if ((state->flags & DO_HISTORY) && state->cur_history) {
1114 save_command_ps_at_cur_history();
1115 state->cur_history--;
1116 return 1;
1117 }
1118 beep();
1119 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001120}
1121
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001122static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001123{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001124 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001125 if (state->cur_history < state->cnt_history) {
1126 save_command_ps_at_cur_history(); /* save the current history line */
1127 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001128 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001129 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001130 beep();
1131 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001132}
Robert Griebl350d26b2002-12-03 22:45:46 +00001133
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001134# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001135/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001136 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001137 * Otherwise shell users get unhappy.
1138 *
1139 * History file is trimmed lazily, when it grows several times longer
1140 * than configured MAX_HISTORY lines.
1141 */
1142
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001143static void free_line_input_t(line_input_t *n)
1144{
1145 int i = n->cnt_history;
1146 while (i > 0)
1147 free(n->history[--i]);
1148 free(n);
1149}
1150
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001151/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001152static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001153{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001154 char *temp_h[MAX_HISTORY];
1155 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001156 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001157 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001158
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001159 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001160
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001161 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001162 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001163 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001164 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001165 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001166 free(st_parm->history[idx]);
1167 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001168 }
1169
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001170 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1171 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001172 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001173 while ((line = xmalloc_fgetline(fp)) != NULL) {
1174 if (line[0] == '\0') {
1175 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001176 continue;
1177 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001178 free(temp_h[idx]);
1179 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001180 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001181 idx++;
1182 if (idx == MAX_HISTORY)
1183 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001184 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001185 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001186
1187 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001188 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001189 while (temp_h[idx] == NULL) {
1190 idx++;
1191 if (idx == MAX_HISTORY)
1192 idx = 0;
1193 }
1194 }
1195
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001196 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001197 for (i = 0; i < MAX_HISTORY;) {
1198 line = temp_h[idx];
1199 if (!line)
1200 break;
1201 idx++;
1202 if (idx == MAX_HISTORY)
1203 idx = 0;
1204 line_len = strlen(line);
1205 if (line_len >= MAX_LINELEN)
1206 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001207 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001208 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001209 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001210 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001211}
1212
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001213/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001214static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001215{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001216 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001217 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001218
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001219 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1220 if (fd < 0)
1221 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001222 xlseek(fd, 0, SEEK_END); /* paranoia */
1223 len = strlen(str);
1224 str[len] = '\n'; /* we (try to) do atomic write */
1225 len2 = full_write(fd, str, len + 1);
1226 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001227 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001228 if (len2 != len + 1)
1229 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001230
1231 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001232 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001233 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1234 FILE *fp;
1235 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001236 line_input_t *st_temp;
1237 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001238
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001239 /* we may have concurrently written entries from others.
1240 * load them */
1241 st_temp = new_line_input_t(state->flags);
1242 st_temp->hist_file = state->hist_file;
1243 load_history(st_temp);
1244
1245 /* write out temp file and replace hist_file atomically */
1246 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001247 fp = fopen_for_write(new_name);
1248 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001249 for (i = 0; i < st_temp->cnt_history; i++)
1250 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001251 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001252 if (rename(new_name, state->hist_file) == 0)
1253 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001254 }
1255 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001256 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001257 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001258}
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001259# else
1260# define load_history(a) ((void)0)
1261# define save_history(a) ((void)0)
1262# endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001263
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001264static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001265{
1266 int i;
1267
1268 if (!(state->flags & DO_HISTORY))
1269 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001270 if (str[0] == '\0')
1271 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001272 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001273 /* Don't save dupes */
1274 if (i && strcmp(state->history[i-1], str) == 0)
1275 return;
1276
1277 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1278 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1279
1280 /* If history[] is full, remove the oldest command */
1281 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001282 if (i >= MAX_HISTORY) {
1283 free(state->history[0]);
1284 for (i = 0; i < MAX_HISTORY-1; i++)
1285 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001286 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001287 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001288 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001289 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001290 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001291 state->cur_history = i;
1292 state->cnt_history = i;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001293# if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001294 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001295 save_history(str);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001296# endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001297 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001298}
1299
1300#else /* MAX_HISTORY == 0 */
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001301# define remember_in_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001302#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001303
1304
Erik Andersen6273f652000-03-17 01:12:41 +00001305/*
1306 * This function is used to grab a character buffer
1307 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001308 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001309 * a mini readline).
1310 *
1311 * The following standard commands are not implemented:
1312 * ESC-b -- Move back one word
1313 * ESC-f -- Move forward one word
1314 * ESC-d -- Delete back one word
1315 * ESC-h -- Delete forward one word
1316 * CTL-t -- Transpose two characters
1317 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001318 * Minimalist vi-style command line editing available if configured.
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001319 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001320 */
Eric Andersenc470f442003-07-28 09:56:35 +00001321
Denis Vlasenko38f63192007-01-22 09:03:07 +00001322#if ENABLE_FEATURE_EDITING_VI
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001323static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001324vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001325{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001326 CHAR_T *command = command_ps;
1327
1328 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001329 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001330 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001331 input_forward();
1332}
1333
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001334static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001335vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001336{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001337 CHAR_T *command = command_ps;
1338
1339 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001340 while (cursor < command_len
Denys Vlasenko13028922009-07-12 00:51:15 +02001341 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
1342 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001343 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001344 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001345 } else if (BB_ispunct(command[cursor])) {
1346 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001347 input_forward();
1348 }
1349
Denis Vlasenko253ce002007-01-22 08:34:44 +00001350 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001351 input_forward();
1352
Denys Vlasenko13028922009-07-12 00:51:15 +02001353 if (eat) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001354 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001355 input_forward();
Denys Vlasenko13028922009-07-12 00:51:15 +02001356 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001357}
1358
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001359static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001360vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001361{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001362 CHAR_T *command = command_ps;
1363
Paul Fox3f11b1b2005-08-04 19:04:46 +00001364 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001365 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001366 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001367 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001368 input_forward();
1369}
1370
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001371static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001373{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001374 CHAR_T *command = command_ps;
1375
Denis Vlasenko253ce002007-01-22 08:34:44 +00001376 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001377 return;
1378 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001379 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001380 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001381 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001382 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001383 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001384 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001385 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001386 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001387 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001388 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001389 } else if (BB_ispunct(command[cursor])) {
1390 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001391 input_forward();
1392 }
1393}
1394
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001395static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001396vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001397{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001398 CHAR_T *command = command_ps;
1399
1400 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001401 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001402 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001403 input_backward(1);
1404}
1405
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001406static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001407vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001408{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001409 CHAR_T *command = command_ps;
1410
Paul Fox3f11b1b2005-08-04 19:04:46 +00001411 if (cursor <= 0)
1412 return;
1413 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001414 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001415 input_backward(1);
1416 if (cursor <= 0)
1417 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001418 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001419 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001420 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001421 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001422 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001423 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001424 } else if (BB_ispunct(command[cursor])) {
1425 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001426 input_backward(1);
1427 }
1428}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001429#endif
1430
1431
1432/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001433 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001434 */
1435
Denis Vlasenko38f63192007-01-22 09:03:07 +00001436#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001437static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001438{
1439 cmdedit_prompt = prmt_ptr;
1440 cmdedit_prmt_len = strlen(prmt_ptr);
1441 put_prompt();
1442}
1443#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001444static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001445{
1446 int prmt_len = 0;
1447 size_t cur_prmt_len = 0;
1448 char flg_not_length = '[';
1449 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001450 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1451 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001452 char c;
1453 char *pbuf;
1454
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001455 cmdedit_prmt_len = 0;
1456
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001457 if (!cwd_buf) {
1458 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001459 }
1460
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001461 cbuf[1] = '\0'; /* never changes */
1462
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001463 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001464 char *free_me = NULL;
1465
1466 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001467 c = *prmt_ptr++;
1468 if (c == '\\') {
1469 const char *cp = prmt_ptr;
1470 int l;
1471
1472 c = bb_process_escape_sequence(&prmt_ptr);
1473 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001474 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001475 break;
1476 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001477
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001478 switch (c) {
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001479# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001480 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001481 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001482 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001483# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001484 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001485 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001486 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001487 break;
1488 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001489 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001490 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001491# if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001492 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001493 /* /home/user[/something] -> ~[/something] */
1494 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001495 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001496 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001497 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1498 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1499 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001500 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001501 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001502 }
1503 break;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001504# endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001505 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001506 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001507 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001508 if (cp != NULL && cp != pbuf)
1509 pbuf += (cp-pbuf) + 1;
1510 break;
1511 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001512 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001513 break;
1514 case 'e': case 'E': /* \e \E = \033 */
1515 c = '\033';
1516 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001517 case 'x': case 'X': {
1518 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001519 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001520 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001521 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001522 buf2[l] = '\0';
1523 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001524 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001525 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001526 break;
1527 }
1528 prmt_ptr++;
1529 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001530 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001531 if (c == 0)
1532 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001533 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001534 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001535 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001536 case '[': case ']':
1537 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001538 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001539 continue;
1540 }
1541 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001542 } /* switch */
1543 } /* if */
1544 } /* if */
1545 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001546 cur_prmt_len = strlen(pbuf);
1547 prmt_len += cur_prmt_len;
1548 if (flg_not_length != ']')
1549 cmdedit_prmt_len += cur_prmt_len;
1550 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001551 free(free_me);
1552 } /* while */
1553
1554 if (cwd_buf != (char *)bb_msg_unknown)
1555 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001556 cmdedit_prompt = prmt_mem_ptr;
1557 put_prompt();
1558}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001559#endif
1560
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001561static void cmdedit_setwidth(unsigned w, int redraw_flg)
1562{
1563 cmdedit_termw = w;
1564 if (redraw_flg) {
1565 /* new y for current cursor */
1566 int new_y = (cursor + cmdedit_prmt_len) / w;
1567 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001568 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001569 fflush(stdout);
1570 }
1571}
1572
1573static void win_changed(int nsig)
1574{
Denis Vlasenko55995022008-05-18 22:28:26 +00001575 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001576 get_terminal_width_height(0, &width, NULL);
1577 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1578 if (nsig == SIGWINCH)
1579 signal(SIGWINCH, win_changed); /* rearm ourself */
1580}
1581
Denys Vlasenko020f4062009-05-17 16:44:54 +02001582static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001583{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001584 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001585 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001586 int delay = -1;
1587#if ENABLE_FEATURE_ASSUME_UNICODE
1588 char unicode_buf[MB_CUR_MAX + 1];
1589 int unicode_idx = 0;
1590#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001591
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001592 pfd.fd = STDIN_FILENO;
1593 pfd.events = POLLIN;
1594 do {
Denys Vlasenko020f4062009-05-17 16:44:54 +02001595 poll_again:
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001596 if (read_key_buffer[0] == 0) {
1597 /* Wait for input. Can't just call read_key,
1598 * it returns at once if stdin
1599 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001600 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001601 }
1602 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001603 ic = read_key(STDIN_FILENO, read_key_buffer);
1604 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL
1605 && (int32_t)ic == KEYCODE_CURSOR_POS
1606 ) {
1607 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001608 if (col > cmdedit_prmt_len) {
1609 cmdedit_x += (col - cmdedit_prmt_len);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001610 while (cmdedit_x >= cmdedit_termw) {
1611 cmdedit_x -= cmdedit_termw;
1612 cmdedit_y++;
1613 }
1614 }
1615 goto poll_again;
1616 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001617
1618#if ENABLE_FEATURE_ASSUME_UNICODE
1619 {
1620 wchar_t wc;
1621
1622 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1623 return ic;
1624 unicode_buf[unicode_idx++] = ic;
1625 unicode_buf[unicode_idx] = '\0';
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001626 if (mbstowcs(&wc, unicode_buf, 1) != 1 && unicode_idx < MB_CUR_MAX) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001627 delay = 50;
1628 goto poll_again;
1629 }
1630 ic = wc;
1631 }
1632#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001633 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001634
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001635 return ic;
1636}
1637
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001638/* leave out the "vi-mode"-only case labels if vi editing isn't
1639 * configured. */
Denys Vlasenko13028922009-07-12 00:51:15 +02001640#define vi_case(caselabel) IF_FEATURE_EDITING_VI(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001641
1642/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001643#undef CTRL
1644#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001645
Denys Vlasenko5c2e81b2009-07-16 14:14:34 +02001646/* maxsize must be >= 2.
1647 * Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001648 * -1 on read errors or EOF, or on bare Ctrl-D,
1649 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001650 * >0 length of input string, including terminating '\n'
1651 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001652int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001653{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001654 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001655#if ENABLE_FEATURE_TAB_COMPLETION
1656 smallint lastWasTab = FALSE;
1657#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001658 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001659#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001660 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001661#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001662 struct termios initial_settings;
1663 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001664 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001665
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001666 INIT_S();
1667
1668 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1669 || !(initial_settings.c_lflag & ECHO)
1670 ) {
1671 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001672 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001673 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001674 if (fgets(command, maxsize, stdin) == NULL)
1675 len = -1; /* EOF or error */
1676 else
1677 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001678 DEINIT_S();
1679 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001680 }
1681
Denys Vlasenko42a8fd02009-07-11 21:36:13 +02001682 check_unicode_in_env();
1683
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001684// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001685 if (maxsize > MAX_LINELEN)
1686 maxsize = MAX_LINELEN;
Denys Vlasenko044b1802009-07-12 02:50:35 +02001687 S.maxsize = maxsize;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001688
1689 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001690 state = st ? st : (line_input_t*) &const_int_0;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001691#if MAX_HISTORY > 0
1692# if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001693 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001694 if (state->cnt_history == 0)
1695 load_history(state);
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001696# endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001697 if (state->flags & DO_HISTORY)
1698 state->cur_history = state->cnt_history;
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001699#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001700
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001701 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001702 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001703 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001704#if ENABLE_FEATURE_ASSUME_UNICODE
1705 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1706#else
Mark Whitley4e338752001-01-26 20:42:23 +00001707 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001708 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001709#endif
1710#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001711
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001712 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001713 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1714 /* Turn off echoing and CTRL-C, so we can trap it */
1715 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001716 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001717 new_settings.c_cc[VMIN] = 1;
1718 new_settings.c_cc[VTIME] = 0;
1719 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001720#ifndef _POSIX_VDISABLE
Denys Vlasenkodb9c57e2009-09-27 02:48:53 +02001721# define _POSIX_VDISABLE '\0'
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001722#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001723 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001724 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001725
Eric Andersen6faae7d2001-02-16 20:09:17 +00001726 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001727 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1728 win_changed(0); /* do initial resizing */
1729#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1730 {
1731 struct passwd *entry;
1732
1733 entry = getpwuid(geteuid());
1734 if (entry) {
1735 user_buf = xstrdup(entry->pw_name);
1736 home_pwd_buf = xstrdup(entry->pw_dir);
1737 }
1738 }
1739#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001740
1741#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001742 for (i = 0; i <= MAX_HISTORY; i++)
1743 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001744 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1745#endif
1746
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001747 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001748 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001749
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001750 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001751 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001752 /*
1753 * The emacs and vi modes share much of the code in the big
1754 * command loop. Commands entered when in vi's command mode
1755 * (aka "escape mode") get an extra bit added to distinguish
1756 * them - this keeps them from being self-inserted. This
1757 * clutters the big switch a bit, but keeps all the code
1758 * in one place.
1759 */
1760 enum {
1761 VI_CMDMODE_BIT = 0x40000000,
1762 /* 0x80000000 bit flags KEYCODE_xxx */
1763 };
1764 int32_t ic;
1765
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001766 fflush(NULL);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001767 ic = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001768
Denis Vlasenko38f63192007-01-22 09:03:07 +00001769#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001770 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001771 if (vi_cmdmode) {
1772 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1773 * change ic if it contains one of them: */
1774 ic |= VI_CMDMODE_BIT;
1775 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001776#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001777
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001778 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001779 case '\n':
1780 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001781 vi_case('\n'|VI_CMDMODE_BIT:)
1782 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001783 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001784 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001785 break_out = 1;
1786 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001787 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001788 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001789 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001790 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001791 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001792 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001793 vi_case('h'|VI_CMDMODE_BIT:)
1794 vi_case('\b'|VI_CMDMODE_BIT:)
1795 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001796 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001797 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001798 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 case CTRL('C'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001800 vi_case(CTRL('C')|VI_CMDMODE_BIT:)
Eric Andersen86349772000-12-18 20:25:50 +00001801 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001802 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001803 command_len = 0;
1804 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001805 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001806 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001807 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001808 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001809 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001810 errno = 0;
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001811#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001812 prepare_to_die:
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001813#endif
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001814 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001815 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001816 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001817 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001818 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001819 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001820 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001821 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001822 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001823 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001824 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001825 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001826 vi_case('l'|VI_CMDMODE_BIT:)
1827 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001828 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001829 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001830 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001831 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001832 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001833 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001834 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001835 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001836#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001837 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001838 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001839 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001840#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001841 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001842 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001843 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001844 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001845 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001846 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001847 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001848 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001849 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001850 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001851 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001852 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001853#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001854 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001855 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1856 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001857 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001858 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001859 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001860 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001861 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001862 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1863 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001864 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001865 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001866 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001867 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001868#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001869 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001870 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001871 /* Control-U -- Clear line before cursor */
1872 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001873 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001874 memmove(command_ps, command_ps + cursor,
1875 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001876 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001877 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001878 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001879 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001880 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001881 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001882 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001883 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001884 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001885 input_backspace();
1886 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001887
Denis Vlasenko38f63192007-01-22 09:03:07 +00001888#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001889 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001890 vi_cmdmode = 0;
1891 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001892 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001893 input_backward(cursor);
1894 vi_cmdmode = 0;
1895 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001896 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001897 input_forward();
1898 vi_cmdmode = 0;
1899 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001900 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001901 input_end();
1902 vi_cmdmode = 0;
1903 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001904 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001905 input_delete(1);
1906 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001907 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001908 if (cursor > 0) {
1909 input_backward(1);
1910 input_delete(1);
1911 }
1912 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001913 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001914 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001915 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001916 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001917 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001918 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001919 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001920 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001921 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001922 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001923 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001924 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001925 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001926 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001927 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001928 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001929 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001930 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001931 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001932 vi_cmdmode = 0;
1933 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001934 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001935 goto clear_to_eol;
1936
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001937 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001938 vi_cmdmode = 0;
1939 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001940 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001941 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001942 int prev_ic;
1943
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001944 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001945 prev_ic = ic;
1946
Denys Vlasenko020f4062009-05-17 16:44:54 +02001947 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001948 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001949 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001950
1951 if ((ic | VI_CMDMODE_BIT) == prev_ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001952 /* "cc", "dd" */
1953 input_backward(cursor);
1954 goto clear_to_eol;
1955 break;
1956 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001957 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001958 case 'w':
1959 case 'W':
1960 case 'e':
1961 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001962 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001963 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001964 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001965 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001966 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001967 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001968 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001969 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001970 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001971 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001972 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001973 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001974 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001975 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001976 break;
1977 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001978 nc = cursor;
1979 input_backward(cursor - sc);
1980 while (nc-- > cursor)
1981 input_delete(1);
1982 break;
1983 case 'b': /* "db", "cb" */
1984 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001985 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001986 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001987 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001988 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001989 while (sc-- > cursor)
1990 input_delete(1);
1991 break;
1992 case ' ': /* "d ", "c " */
1993 input_delete(1);
1994 break;
1995 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001996 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001997 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001998 input_delete(1);
1999 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00002000 }
2001 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002002 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002003 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002004 input_forward();
2005 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002006 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00002007 put();
2008 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002009 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko020f4062009-05-17 16:44:54 +02002010 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002011 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00002012 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002013 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00002014 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002015 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002016 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002017 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00002018 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00002019 }
2020 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002021 case '\x1b': /* ESC */
2022 if (state->flags & VI_MODE) {
2023 /* insert mode --> command mode */
2024 vi_cmdmode = 1;
2025 input_backward(1);
2026 }
2027 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002028#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00002029
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00002030#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002031 case KEYCODE_UP:
2032 if (get_previous_history())
2033 goto rewrite_line;
2034 beep();
2035 break;
2036 case KEYCODE_DOWN:
2037 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002038 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002039 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002040 /* Rewrite the line with the selected history item */
2041 /* change command */
Denys Vlasenko90a99042009-09-06 02:36:23 +02002042 command_len = load_string(state->history[state->cur_history] ?
2043 state->history[state->cur_history] : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002044 /* redraw and go to eol (bol, in vi) */
2045 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
2046 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00002047#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002048 case KEYCODE_RIGHT:
2049 input_forward();
2050 break;
2051 case KEYCODE_LEFT:
2052 input_backward(1);
2053 break;
2054 case KEYCODE_DELETE:
2055 input_delete(0);
2056 break;
2057 case KEYCODE_HOME:
2058 input_backward(cursor);
2059 break;
2060 case KEYCODE_END:
2061 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002062 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002063
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002064 default:
2065// /* Control-V -- force insert of next char */
2066// if (c == CTRL('V')) {
2067// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2068// goto prepare_to_die;
2069// if (c == 0) {
2070// beep();
2071// break;
2072// }
2073// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002074 if (ic < ' '
2075 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2076 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2077 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002078 /* If VI_CMDMODE_BIT is set, ic is >= 256
2079 * and command mode ignores unexpected chars.
2080 * Otherwise, we are here if ic is a
2081 * control char or an unhandled ESC sequence,
2082 * which is also ignored.
2083 */
2084 break;
2085 }
2086 if ((int)command_len >= (maxsize - 2)) {
2087 /* Not enough space for the char and EOL */
2088 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002089 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002090
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002091 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002092 if (cursor == (command_len - 1)) {
2093 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002094 command_ps[cursor] = ic;
2095 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002096 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002097 } else {
2098 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002099 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002100
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002101 memmove(command_ps + sc + 1, command_ps + sc,
2102 (command_len - sc) * sizeof(command_ps[0]));
2103 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002104 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002105 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002106 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002107 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002108 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002109 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002110 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002111 } /* switch (input_key) */
2112
2113 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002114 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002115
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002116#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002117 ic &= ~VI_CMDMODE_BIT;
2118 if (ic != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002119 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002120#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002121 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002122
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002123/* Stop bug catching using "command_must_not_be_used" trick */
2124#undef command
2125
2126#if ENABLE_FEATURE_ASSUME_UNICODE
2127 command_len = save_string(command, maxsize - 1);
2128 free(command_ps);
2129#endif
2130
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002131 if (command_len > 0)
2132 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002133
Eric Andersen27bb7902003-12-23 20:24:51 +00002134 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002135 command[command_len++] = '\n';
2136 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002137 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002138
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002139#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002140 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002141#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002142
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002143 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002144 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002145 /* restore SIGWINCH handler */
2146 signal(SIGWINCH, previous_SIGWINCH_handler);
2147 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002148
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002149 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002150 DEINIT_S();
2151
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002152 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002153}
2154
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002155#else
2156
2157#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002158int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002159{
2160 fputs(prompt, stdout);
2161 fflush(stdout);
2162 fgets(command, maxsize, stdin);
2163 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002164}
2165
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002166#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002167
2168
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002169/*
2170 * Testing
2171 */
2172
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002173#ifdef TEST
2174
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002175#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002176
2177const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002178
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002179int main(int argc, char **argv)
2180{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002181 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002182 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002183#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002184 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2185 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2186 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002187#else
2188 "% ";
2189#endif
2190
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002191#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002192 setlocale(LC_ALL, "");
2193#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002194 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002195 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002196 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002197 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002198 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002199 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002200 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002201 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002202 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002203 return 0;
2204}
2205
Eric Andersenc470f442003-07-28 09:56:35 +00002206#endif /* TEST */