blob: e5d0c1b6ce71289d48c045272dee9f3e8c9090dc [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 Vlasenko2e6d4ef2009-07-10 18:40:49 +020037#if ENABLE_FEATURE_ASSUME_UNICODE
38# include <wchar.h>
39# include <wctype.h>
40#endif
Glenn L McGrath475820c2004-01-22 12:42:23 +000041
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000042/* FIXME: obsolete CONFIG item? */
43#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
44
Glenn L McGrath3b251852004-01-03 12:07:32 +000045#ifdef TEST
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020046# define ENABLE_FEATURE_EDITING 0
47# define ENABLE_FEATURE_TAB_COMPLETION 0
48# define ENABLE_FEATURE_USERNAME_COMPLETION 0
49# define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
50#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000051
Eric Andersen5165fbe2001-02-20 06:42:29 +000052
Denis Vlasenko82b39e82007-01-21 19:18:19 +000053/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000054#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000055
Denis Vlasenko82b39e82007-01-21 19:18:19 +000056
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000057#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000058 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000059#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000060#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000061#undef IF_FEATURE_GETUSERNAME_AND_HOMEDIR
62#define IF_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000063#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000064
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +020065
66#undef CHAR_T
67#if ENABLE_FEATURE_ASSUME_UNICODE
68# define BB_NUL L'\0'
69# define CHAR_T wchar_t
70# define BB_isspace(c) iswspace(c)
71# define BB_isalnum(c) iswalnum(c)
72# define BB_ispunct(c) iswpunct(c)
73# define BB_isprint(c) iswprint(c)
74/* this catches bugs */
75# undef isspace
76# undef isalnum
77# undef ispunct
78# undef isprint
79# define isspace isspace_must_not_be_used
80# define isalnum isalnum_must_not_be_used
81# define ispunct ispunct_must_not_be_used
82# define isprint isprint_must_not_be_used
83#else
84# define BB_NUL '\0'
85# define CHAR_T char
86# define BB_isspace(c) isspace(c)
87# define BB_isalnum(c) isalnum(c)
88# define BB_ispunct(c) ispunct(c)
89# if ENABLE_LOCALE_SUPPORT
90# define BB_isprint(c) isprint(c)
91# else
92# define BB_isprint(c) ((c) >= ' ' && (c) != ((unsigned char)'\233'))
93# endif
94#endif
95
96
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000097enum {
98 /* We use int16_t for positions, need to limit line len */
99 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +0000100 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000101 : 0x7ff0
102};
Robert Griebl350d26b2002-12-03 22:45:46 +0000103
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000104#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
105static const char null_str[] ALIGN1 = "";
106#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +0000107
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000108/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000109struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000110 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000111
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000112 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
113 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +0000114
Denys Vlasenko020f4062009-05-17 16:44:54 +0200115 unsigned cmdedit_x; /* real x (col) terminal position */
116 unsigned cmdedit_y; /* pseudoreal y (row) terminal position */
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000117 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000118
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000119 unsigned cursor;
120 unsigned command_len;
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}
236static void save_string(char *dst, int maxsize)
237{
238 safe_strncpy(dst, command_ps, maxsize);
239}
240#define BB_PUTCHAR(c) bb_putchar(c)
241#endif
242
243
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000244/* Put 'command_ps[cursor]', cursor++.
245 * Advance cursor on screen. If we reached right margin, scroll text up
246 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000247#define HACK_FOR_WRONG_WIDTH 1
248#if HACK_FOR_WRONG_WIDTH
249static void cmdedit_set_out_char(void)
250#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
251#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000252static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000253#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000254{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200255 CHAR_T c = command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000256
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200257 if (c == BB_NUL) {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000258 /* erase character after end of input string */
259 c = ' ';
260 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000261#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000262 /* Display non-printable characters in reverse */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200263 if (!BB_isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000264 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000265 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000266 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000267 c += '@';
268 if (c == 127)
269 c = '?';
270 printf("\033[7m%c\033[0m", c);
271 } else
272#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000273 {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200274 BB_PUTCHAR(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000275 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000276 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000277 /* terminal is scrolled down */
278 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000279 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000280#if HACK_FOR_WRONG_WIDTH
281 /* This works better if our idea of term width is wrong
282 * and it is actually wider (often happens on serial lines).
283 * Printing CR,LF *forces* cursor to next line.
284 * OTOH if terminal width is correct AND terminal does NOT
285 * have automargin (IOW: it is moving cursor to next line
286 * by itself (which is wrong for VT-10x terminals)),
287 * this will break things: there will be one extra empty line */
288 puts("\r"); /* + implicit '\n' */
289#else
290 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000291 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000292 bb_putchar(next_char);
293 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000294#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000295 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200296// Huh? What if command_ps[cursor] == BB_NUL (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000297 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000298}
299
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000300/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000301static void input_end(void)
302{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000303 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000304 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000305}
306
307/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000308static void goto_new_line(void)
309{
Mark Whitley4e338752001-01-26 20:42:23 +0000310 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000311 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000312 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000313}
314
315
Rob Landley88621d72006-08-29 19:41:06 +0000316static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000317{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000318 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000319 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000320}
Eric Andersen81fe1232003-07-29 06:38:40 +0000321
Rob Landley88621d72006-08-29 19:41:06 +0000322static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000323{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000324 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000325}
326
Eric Andersenaff114c2004-04-14 17:51:38 +0000327/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000328/* (optimized for slow terminals) */
329static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000330{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000331 int count_y;
332
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000333 if (num > cursor)
334 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000335 if (!num)
336 return;
337 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000338
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000339 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000340 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000341 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000342 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000343 * Also gets miscompiled for ARM users
344 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000345 * printf(("\b\b\b\b" + 4) - num);
346 * return;
347 */
348 do {
349 bb_putchar('\b');
350 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000351 return;
352 }
353 printf("\033[%uD", num);
354 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000355 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000356
357 /* Need to go one or more lines up */
358 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000359 {
360 unsigned w = cmdedit_termw; /* volatile var */
361 count_y = 1 + (num / w);
362 cmdedit_y -= count_y;
363 cmdedit_x = w * count_y - num;
364 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000365 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000366 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000367}
368
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000369static void put_prompt(void)
370{
371 out1str(cmdedit_prompt);
Denys Vlasenkoc396fe62009-05-17 19:28:14 +0200372 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL) {
373 /* Ask terminal where is the cursor now.
374 * lineedit_read_key handles response and corrects
375 * our idea of current cursor position.
376 * Testcase: run "echo -n long_line_long_line_long_line",
377 * then type in a long, wrapping command and try to
378 * delete it using backspace key.
379 * Note: we print it _after_ prompt, because
380 * prompt may contain CR. Example: PS1='\[\r\n\]\w '
381 */
382 out1str("\033" "[6n");
383 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000384 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000385 {
386 unsigned w = cmdedit_termw; /* volatile var */
387 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
388 cmdedit_x = cmdedit_prmt_len % w;
389 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000390}
391
Eric Andersenaff114c2004-04-14 17:51:38 +0000392/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000393static void redraw(int y, int back_cursor)
394{
Eric Andersenc470f442003-07-28 09:56:35 +0000395 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000396 printf("\033[%dA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000397 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000398 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000399 input_end(); /* rewrite */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000400 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000401 input_backward(back_cursor);
402}
403
Paul Fox3f11b1b2005-08-04 19:04:46 +0000404/* Delete the char in front of the cursor, optionally saving it
405 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000406#if !ENABLE_FEATURE_EDITING_VI
407static void input_delete(void)
408#define input_delete(save) input_delete()
409#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000410static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000411#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000412{
Mark Whitley4e338752001-01-26 20:42:23 +0000413 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000414
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000415 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000416 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000417
Denis Vlasenko38f63192007-01-22 09:03:07 +0000418#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000419 if (save) {
420 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000421 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000422 newdelflag = 0;
423 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000424 if ((delptr - delbuf) < DELBUFSIZ)
425 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000426 }
427#endif
428
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200429 memmove(command_ps + j, command_ps + j + 1,
430 (command_len - j + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000431 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000432 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000433 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000434 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000435}
436
Denis Vlasenko38f63192007-01-22 09:03:07 +0000437#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000438static void put(void)
439{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000440 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000441 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000442
Paul Fox3f11b1b2005-08-04 19:04:46 +0000443 if (j == 0)
444 return;
445 ocursor = cursor;
446 /* open hole and then fill it */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200447 memmove(command_ps + cursor + j, command_ps + cursor,
448 (command_len - cursor + 1) * sizeof(command_ps[0]));
449 memcpy(command_ps + cursor, delbuf, j * sizeof(command_ps[0]));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000450 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000451 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000452 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000453}
454#endif
455
Mark Whitley4e338752001-01-26 20:42:23 +0000456/* Delete the char in back of the cursor */
457static void input_backspace(void)
458{
459 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000460 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000461 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000462 }
463}
464
Eric Andersenaff114c2004-04-14 17:51:38 +0000465/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000466static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000467{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000468 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000469 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000470}
471
Denis Vlasenko38f63192007-01-22 09:03:07 +0000472#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000473
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000474static void free_tab_completion_data(void)
475{
476 if (matches) {
477 while (num_matches)
478 free(matches[--num_matches]);
479 free(matches);
480 matches = NULL;
481 }
482}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000483
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000484static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000485{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000486 matches = xrealloc_vector(matches, 4, num_matches);
487 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000488 num_matches++;
489}
490
Denis Vlasenko38f63192007-01-22 09:03:07 +0000491#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000492static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000493{
494 struct passwd *entry;
495 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000496
Eric Andersenc470f442003-07-28 09:56:35 +0000497 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000498 userlen = strlen(ud);
499
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000500 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000501 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000502 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000503
Eric Andersenc470f442003-07-28 09:56:35 +0000504 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000505 home = home_pwd_buf;
506 } else {
507 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000508 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000509 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000510 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000511 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000512 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000513 ud = temp;
514 if (entry)
515 home = entry->pw_dir;
516 }
517 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000518 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000519 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000520 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521 }
522 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000523 } else {
524 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000525 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000526 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000527 struct passwd pwd;
528 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000529
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000530 setpwent();
531 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000532 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000533 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
534 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000535 }
536 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000537 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538 }
539}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000540#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000541
542enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000543 FIND_EXE_ONLY = 0,
544 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000545 FIND_FILE_ONLY = 2,
546};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000547
Mark Whitley4e338752001-01-26 20:42:23 +0000548static int path_parse(char ***p, int flags)
549{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000550 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000551 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000552 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000553 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000554
Mark Whitley4e338752001-01-26 20:42:23 +0000555 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000556 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000557 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000558
559 if (state->flags & WITH_PATH_LOOKUP)
560 pth = state->path_lookup;
561 else
562 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000563 /* PATH=<empty> or PATH=:<empty> */
564 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
565 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000566
Denis Vlasenko253ce002007-01-22 08:34:44 +0000567 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000568 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000569 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000570 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000571 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000572 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000573 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000574 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000575 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000576 }
577
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000578 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000579 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000580 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000581 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000582 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000583 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000584 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000585 *tmp++ = '\0'; /* ':' -> '\0' */
586 if (*tmp == '\0')
587 break; /* :<empty> */
588 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000589 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000590 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000591 return npth;
592}
593
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000594static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000595{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000596 DIR *dir;
597 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000598 struct stat st;
599 char *path1[1];
600 char **paths = path1;
601 int npaths;
602 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000603 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000604 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000605/* char dirbuf[MAX_LINELEN]; */
606#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000607
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000608 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000609 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000610
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000611 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000612 /* no dir, if flags==EXE_ONLY - get paths, else "." */
613 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000614 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000615 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000616 /* dirbuf = ".../.../.../" */
617 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000618#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000619 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000620 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000621#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000622 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000623 /* point to 'l' in "..../last_component" */
624 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000625 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000626
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000627 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000628 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000629 if (!dir)
630 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000631
632 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000633 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000634 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000635
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000636 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000637 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000638 continue;
639 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000640 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000641 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000642 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000643 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000644 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000645 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000646 /* hmm, remove in progress? */
647 /* NB: stat() first so that we see is it a directory;
648 * but if that fails, use lstat() so that
649 * we still match dangling links */
650 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000651 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000652 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000653 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000654 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000655
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000656 len1 = strlen(found);
657 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000658 found[len1] = '\0';
659 found[len1+1] = '\0';
660
Mark Whitley4e338752001-01-26 20:42:23 +0000661 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000662 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000663 if (found[len1-1] != '/') {
664 found[len1] = '/';
665 }
Mark Whitley4e338752001-01-26 20:42:23 +0000666 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000667 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000668 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000669 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000670 }
Mark Whitley4e338752001-01-26 20:42:23 +0000671 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000672 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000673 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000674 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000675 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000676 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000677 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000678 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000679 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000680 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000681 free(paths);
682 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000683#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000684}
Erik Andersenf0657d32000-04-12 17:49:52 +0000685
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000686#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000687
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000688#define collapse_pos(is, in) do { \
689 memmove(int_buf+(is), int_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
690 memmove(pos_buf+(is), pos_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
691} while (0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000692
693static int find_match(char *matchBuf, int *len_with_quotes)
694{
695 int i, j;
696 int command_mode;
697 int c, c2;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000698/* int16_t int_buf[MAX_LINELEN + 1]; */
699/* int16_t pos_buf[MAX_LINELEN + 1]; */
700#define int_buf (S.find_match__int_buf)
701#define pos_buf (S.find_match__pos_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000702
703 /* set to integer dimension characters and own positions */
704 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000705 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000706 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000707 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000708 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000709 }
710 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711 }
712
713 /* mask \+symbol and convert '\t' to ' ' */
714 for (i = j = 0; matchBuf[i]; i++, j++)
715 if (matchBuf[i] == '\\') {
716 collapse_pos(j, j + 1);
717 int_buf[j] |= QUOT;
718 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000719#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000720 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000721 int_buf[j] = ' ' | QUOT;
722#endif
723 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000724#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000725 else if (matchBuf[i] == '\t')
726 int_buf[j] = ' ';
727#endif
728
729 /* mask "symbols" or 'symbols' */
730 c2 = 0;
731 for (i = 0; int_buf[i]; i++) {
732 c = int_buf[i];
733 if (c == '\'' || c == '"') {
734 if (c2 == 0)
735 c2 = c;
736 else {
737 if (c == c2)
738 c2 = 0;
739 else
740 int_buf[i] |= QUOT;
741 }
742 } else if (c2 != 0 && c != '$')
743 int_buf[i] |= QUOT;
744 }
745
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000746 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
748 for (i = 0; int_buf[i]; i++) {
749 c = int_buf[i];
750 c2 = int_buf[i + 1];
751 j = i ? int_buf[i - 1] : -1;
752 command_mode = 0;
753 if (c == ';' || c == '&' || c == '|') {
754 command_mode = 1 + (c == c2);
755 if (c == '&') {
756 if (j == '>' || j == '<')
757 command_mode = 0;
758 } else if (c == '|' && j == '>')
759 command_mode = 0;
760 }
761 if (command_mode) {
762 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000763 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000764 }
765 }
766 /* collapse `command...` */
767 for (i = 0; int_buf[i]; i++)
768 if (int_buf[i] == '`') {
769 for (j = i + 1; int_buf[j]; j++)
770 if (int_buf[j] == '`') {
771 collapse_pos(i, j + 1);
772 j = 0;
773 break;
774 }
775 if (j) {
776 /* not found close ` - command mode, collapse all previous */
777 collapse_pos(0, i + 1);
778 break;
779 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000780 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000781 }
782
783 /* collapse (command...(command...)...) or {command...{command...}...} */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000784 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000785 c2 = 0;
786 for (i = 0; int_buf[i]; i++)
787 if (int_buf[i] == '(' || int_buf[i] == '{') {
788 if (int_buf[i] == '(')
789 c++;
790 else
791 c2++;
792 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000793 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000794 }
795 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
796 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
797 if (int_buf[i] == ')')
798 c--;
799 else
800 c2--;
801 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000802 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000803 }
804
805 /* skip first not quote space */
806 for (i = 0; int_buf[i]; i++)
807 if (int_buf[i] != ' ')
808 break;
809 if (i)
810 collapse_pos(0, i);
811
812 /* set find mode for completion */
813 command_mode = FIND_EXE_ONLY;
814 for (i = 0; int_buf[i]; i++)
815 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
816 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000817 && matchBuf[pos_buf[0]] == 'c'
818 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000819 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000820 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000821 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000822 command_mode = FIND_FILE_ONLY;
823 break;
824 }
825 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000826 for (i = 0; int_buf[i]; i++)
827 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000828 /* find last word */
829 for (--i; i >= 0; i--) {
830 c = int_buf[i];
831 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
832 collapse_pos(0, i + 1);
833 break;
834 }
835 }
836 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000837 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
838 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000839 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000840 while ((int_buf[i] & ~QUOT) == '/'
841 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
842 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000843 i++;
844 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000845
846 /* set only match and destroy quotes */
847 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000848 for (c = 0; pos_buf[i] >= 0; i++) {
849 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000850 j = pos_buf[i] + 1;
851 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000852 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000853 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000854 *len_with_quotes = j ? j - pos_buf[0] : 0;
855
856 return command_mode;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000857#undef int_buf
858#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000859}
860
Glenn L McGrath4d001292003-01-06 01:11:50 +0000861/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000862 * display by column (original idea from ls applet,
863 * very optimized by me :)
864 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000865static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000866{
867 int ncols, row;
868 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000869 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000870 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000871 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000872
873 /* find the longest file name- use that as the column width */
874 for (row = 0; row < nrows; row++) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000875 l = strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000876 if (column_width < l)
877 column_width = l;
878 }
879 column_width += 2; /* min space for columns */
880 ncols = cmdedit_termw / column_width;
881
882 if (ncols > 1) {
883 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000884 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000885 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000886 } else {
887 ncols = 1;
888 }
889 for (row = 0; row < nrows; row++) {
890 int n = row;
891 int nc;
892
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000893 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000894 printf("%s%-*s", matches[n],
Mike Frysinger57ec5742006-12-28 21:41:09 +0000895 (int)(column_width - strlen(matches[n])), "");
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000896 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000897 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000898 }
899}
900
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000901static char *add_quote_for_spec_chars(char *found)
902{
903 int l = 0;
904 char *s = xmalloc((strlen(found) + 1) * 2);
905
906 while (*found) {
907 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
908 s[l++] = '\\';
909 s[l++] = *found++;
910 }
911 s[l] = 0;
912 return s;
913}
914
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000915/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000916static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000917{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000918 if (!(state->flags & TAB_COMPLETION))
919 return;
920
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000921 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000922 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000923 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000924/* char matchBuf[MAX_LINELEN]; */
925#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000926 int find_type;
927 int recalc_pos;
928
Eric Andersenc470f442003-07-28 09:56:35 +0000929 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000930
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +0200931 /* Make a local copy of the string --
932 * up to the position of the cursor */
933 save_string(matchBuf, cursor + 1);
934 tmp = matchBuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000935
936 find_type = find_match(matchBuf, &recalc_pos);
937
938 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000939 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000940
Denis Vlasenko38f63192007-01-22 09:03:07 +0000941#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000942 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000943 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000944 if (state->flags & USERNAME_COMPLETION)
945 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
946 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000947#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000948 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000949 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000950 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000951 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000952 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000953 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000954 unsigned i;
955 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000956 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000957 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000958 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000959 if (strcmp(matches[i], matches[i+1]) == 0) {
960 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000961 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000962 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000963 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000964 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000965 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000966 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000967 matches[n] = matches[i];
968 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000969 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000970 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 if (!matches || num_matches > 1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000972 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000973 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000974 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000975 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000976 tmp1 = xstrdup(matches[0]);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000977 for (tmp = tmp1; *tmp; tmp++)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000978 for (len_found = 1; len_found < num_matches; len_found++)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000979 if (matches[len_found][(tmp - tmp1)] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000980 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000981 break;
982 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000983 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000984 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000985 return;
986 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000987 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000988 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +0000989 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000990 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000991 /* for next completion current found */
992 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000993
994 len_found = strlen(tmp);
995 if (tmp[len_found-1] != '/') {
996 tmp[len_found] = ' ';
997 tmp[len_found+1] = '\0';
998 }
Mark Whitley4e338752001-01-26 20:42:23 +0000999 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001000 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001001 /* have space to placed match? */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001002 if ((len_found - strlen(matchBuf) + command_len) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001003 /* before word for match */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001004//TODO:
1005#if !ENABLE_FEATURE_ASSUME_UNICODE
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001006 command_ps[cursor - recalc_pos] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001007 /* save tail line */
1008 strcpy(matchBuf, command_ps + cursor);
1009 /* add match */
1010 strcat(command_ps, tmp);
1011 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001012 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001013 /* back to begin word for match */
1014 input_backward(recalc_pos);
1015 /* new pos */
1016 recalc_pos = cursor + len_found;
1017 /* new len */
Denis Vlasenko253ce002007-01-22 08:34:44 +00001018 command_len = strlen(command_ps);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001019 /* write out the matched command */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001020#endif
Denis Vlasenko253ce002007-01-22 08:34:44 +00001021 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001022 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001023 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001024#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +00001025 } else {
1026 /* Ok -- the last char was a TAB. Since they
1027 * just hit TAB again, print a list of all the
1028 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001029 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00001030 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001031
1032 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001033 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +00001034 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001035 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001036 }
1037 }
1038}
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001039
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001040#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001041
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001042
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001043line_input_t* FAST_FUNC new_line_input_t(int flags)
1044{
1045 line_input_t *n = xzalloc(sizeof(*n));
1046 n->flags = flags;
1047 return n;
1048}
1049
1050
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001051#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001052
Denis Vlasenko682ad302008-09-27 01:28:56 +00001053static void save_command_ps_at_cur_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001054{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001055 if (command_ps[0] != BB_NUL) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001056 int cur = state->cur_history;
1057 free(state->history[cur]);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001058
1059#if ENABLE_FEATURE_ASSUME_UNICODE
1060 {
1061 char tbuf[MAX_LINELEN];
1062 save_string(tbuf, sizeof(tbuf));
1063 state->history[cur] = xstrdup(tbuf);
1064 }
1065#else
Denis Vlasenko682ad302008-09-27 01:28:56 +00001066 state->history[cur] = xstrdup(command_ps);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001067#endif
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001068 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001069}
1070
1071/* state->flags is already checked to be nonzero */
1072static int get_previous_history(void)
1073{
1074 if ((state->flags & DO_HISTORY) && state->cur_history) {
1075 save_command_ps_at_cur_history();
1076 state->cur_history--;
1077 return 1;
1078 }
1079 beep();
1080 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001081}
1082
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001083static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +00001084{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001085 if (state->flags & DO_HISTORY) {
Denis Vlasenko682ad302008-09-27 01:28:56 +00001086 if (state->cur_history < state->cnt_history) {
1087 save_command_ps_at_cur_history(); /* save the current history line */
1088 return ++state->cur_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001089 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001090 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001091 beep();
1092 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +00001093}
Robert Griebl350d26b2002-12-03 22:45:46 +00001094
Denis Vlasenko38f63192007-01-22 09:03:07 +00001095#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001096/* We try to ensure that concurrent additions to the history
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001097 * do not overwrite each other.
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001098 * Otherwise shell users get unhappy.
1099 *
1100 * History file is trimmed lazily, when it grows several times longer
1101 * than configured MAX_HISTORY lines.
1102 */
1103
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001104static void free_line_input_t(line_input_t *n)
1105{
1106 int i = n->cnt_history;
1107 while (i > 0)
1108 free(n->history[--i]);
1109 free(n);
1110}
1111
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001112/* state->flags is already checked to be nonzero */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001113static void load_history(line_input_t *st_parm)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001114{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001115 char *temp_h[MAX_HISTORY];
1116 char *line;
Robert Griebl350d26b2002-12-03 22:45:46 +00001117 FILE *fp;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001118 unsigned idx, i, line_len;
Robert Griebl350d26b2002-12-03 22:45:46 +00001119
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001120 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +00001121
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001122 fp = fopen_for_read(st_parm->hist_file);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001123 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001124 /* clean up old history */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001125 for (idx = st_parm->cnt_history; idx > 0;) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001126 idx--;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001127 free(st_parm->history[idx]);
1128 st_parm->history[idx] = NULL;
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001129 }
1130
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001131 /* fill temp_h[], retaining only last MAX_HISTORY lines */
1132 memset(temp_h, 0, sizeof(temp_h));
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001133 st_parm->cnt_history_in_file = idx = 0;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001134 while ((line = xmalloc_fgetline(fp)) != NULL) {
1135 if (line[0] == '\0') {
1136 free(line);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001137 continue;
1138 }
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001139 free(temp_h[idx]);
1140 temp_h[idx] = line;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001141 st_parm->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001142 idx++;
1143 if (idx == MAX_HISTORY)
1144 idx = 0;
Robert Griebl350d26b2002-12-03 22:45:46 +00001145 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001146 fclose(fp);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001147
1148 /* find first non-NULL temp_h[], if any */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001149 if (st_parm->cnt_history_in_file) {
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001150 while (temp_h[idx] == NULL) {
1151 idx++;
1152 if (idx == MAX_HISTORY)
1153 idx = 0;
1154 }
1155 }
1156
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001157 /* copy temp_h[] to st_parm->history[] */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001158 for (i = 0; i < MAX_HISTORY;) {
1159 line = temp_h[idx];
1160 if (!line)
1161 break;
1162 idx++;
1163 if (idx == MAX_HISTORY)
1164 idx = 0;
1165 line_len = strlen(line);
1166 if (line_len >= MAX_LINELEN)
1167 line[MAX_LINELEN-1] = '\0';
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001168 st_parm->history[i++] = line;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001169 }
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001170 st_parm->cnt_history = i;
Robert Griebl350d26b2002-12-03 22:45:46 +00001171 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001172}
1173
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001174/* state->flags is already checked to be nonzero */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001175static void save_history(char *str)
Robert Griebl350d26b2002-12-03 22:45:46 +00001176{
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001177 int fd;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001178 int len, len2;
Eric Andersenc470f442003-07-28 09:56:35 +00001179
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001180 fd = open(state->hist_file, O_WRONLY | O_CREAT | O_APPEND, 0666);
1181 if (fd < 0)
1182 return;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001183 xlseek(fd, 0, SEEK_END); /* paranoia */
1184 len = strlen(str);
1185 str[len] = '\n'; /* we (try to) do atomic write */
1186 len2 = full_write(fd, str, len + 1);
1187 str[len] = '\0';
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001188 close(fd);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001189 if (len2 != len + 1)
1190 return; /* "wtf?" */
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001191
1192 /* did we write so much that history file needs trimming? */
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001193 state->cnt_history_in_file++;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001194 if (state->cnt_history_in_file > MAX_HISTORY * 4) {
1195 FILE *fp;
1196 char *new_name;
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001197 line_input_t *st_temp;
1198 int i;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001199
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001200 /* we may have concurrently written entries from others.
1201 * load them */
1202 st_temp = new_line_input_t(state->flags);
1203 st_temp->hist_file = state->hist_file;
1204 load_history(st_temp);
1205
1206 /* write out temp file and replace hist_file atomically */
1207 new_name = xasprintf("%s.%u.new", state->hist_file, (int) getpid());
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001208 fp = fopen_for_write(new_name);
1209 if (fp) {
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001210 for (i = 0; i < st_temp->cnt_history; i++)
1211 fprintf(fp, "%s\n", st_temp->history[i]);
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001212 fclose(fp);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001213 if (rename(new_name, state->hist_file) == 0)
1214 state->cnt_history_in_file = st_temp->cnt_history;
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001215 }
1216 free(new_name);
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001217 free_line_input_t(st_temp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001218 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001219}
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001220#else
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001221#define load_history(a) ((void)0)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001222#define save_history(a) ((void)0)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001223#endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001224
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001225static void remember_in_history(char *str)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001226{
1227 int i;
1228
1229 if (!(state->flags & DO_HISTORY))
1230 return;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001231 if (str[0] == '\0')
1232 return;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001233 i = state->cnt_history;
Denis Vlasenko682ad302008-09-27 01:28:56 +00001234 /* Don't save dupes */
1235 if (i && strcmp(state->history[i-1], str) == 0)
1236 return;
1237
1238 free(state->history[MAX_HISTORY]); /* redundant, paranoia */
1239 state->history[MAX_HISTORY] = NULL; /* redundant, paranoia */
1240
1241 /* If history[] is full, remove the oldest command */
1242 /* we need to keep history[MAX_HISTORY] empty, hence >=, not > */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001243 if (i >= MAX_HISTORY) {
1244 free(state->history[0]);
1245 for (i = 0; i < MAX_HISTORY-1; i++)
1246 state->history[i] = state->history[i+1];
Denis Vlasenko682ad302008-09-27 01:28:56 +00001247 /* i == MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001248 }
Denis Vlasenko682ad302008-09-27 01:28:56 +00001249 /* i <= MAX_HISTORY-1 */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001250 state->history[i++] = xstrdup(str);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001251 /* i <= MAX_HISTORY */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001252 state->cur_history = i;
1253 state->cnt_history = i;
Denis Vlasenko09221922007-04-15 13:21:01 +00001254#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001255 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko57abf9e2009-03-22 19:00:05 +00001256 save_history(str);
Denis Vlasenko09221922007-04-15 13:21:01 +00001257#endif
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001258 IF_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001259}
1260
1261#else /* MAX_HISTORY == 0 */
1262#define remember_in_history(a) ((void)0)
1263#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001264
1265
Erik Andersen6273f652000-03-17 01:12:41 +00001266/*
1267 * This function is used to grab a character buffer
1268 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001269 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001270 * a mini readline).
1271 *
1272 * The following standard commands are not implemented:
1273 * ESC-b -- Move back one word
1274 * ESC-f -- Move forward one word
1275 * ESC-d -- Delete back one word
1276 * ESC-h -- Delete forward one word
1277 * CTL-t -- Transpose two characters
1278 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001279 * Minimalist vi-style command line editing available if configured.
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001280 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001281 */
Eric Andersenc470f442003-07-28 09:56:35 +00001282
Denis Vlasenko38f63192007-01-22 09:03:07 +00001283#if ENABLE_FEATURE_EDITING_VI
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001284static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001285vi_Word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001286{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001287 CHAR_T *command = command_ps;
1288
1289 while (cursor < command_len && !BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001290 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001291 if (eat) while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001292 input_forward();
1293}
1294
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001295static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001296vi_word_motion(int eat)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001297{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001298 CHAR_T *command = command_ps;
1299
1300 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001301 while (cursor < command_len
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001302 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_'))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001303 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001304 } else if (BB_ispunct(command[cursor])) {
1305 while (cursor < command_len && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001306 input_forward();
1307 }
1308
Denis Vlasenko253ce002007-01-22 08:34:44 +00001309 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001310 input_forward();
1311
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001312 if (eat && cursor < command_len && BB_isspace(command[cursor]))
1313 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001314 input_forward();
1315}
1316
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001317static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001318vi_End_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001319{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001320 CHAR_T *command = command_ps;
1321
Paul Fox3f11b1b2005-08-04 19:04:46 +00001322 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001323 while (cursor < command_len && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001324 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001325 while (cursor < command_len-1 && !BB_isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001326 input_forward();
1327}
1328
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001329static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001330vi_end_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001331{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001332 CHAR_T *command = command_ps;
1333
Denis Vlasenko253ce002007-01-22 08:34:44 +00001334 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001335 return;
1336 input_forward();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001337 while (cursor < command_len-1 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001338 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001339 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001340 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001341 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001342 while (cursor < command_len-1
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001343 && (BB_isalnum(command[cursor+1]) || command[cursor+1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001344 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001345 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001346 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001347 } else if (BB_ispunct(command[cursor])) {
1348 while (cursor < command_len-1 && BB_ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001349 input_forward();
1350 }
1351}
1352
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001353static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001354vi_Back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001355{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001356 CHAR_T *command = command_ps;
1357
1358 while (cursor > 0 && BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001359 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001360 while (cursor > 0 && !BB_isspace(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001361 input_backward(1);
1362}
1363
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001364static void
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001365vi_back_motion(void)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001366{
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001367 CHAR_T *command = command_ps;
1368
Paul Fox3f11b1b2005-08-04 19:04:46 +00001369 if (cursor <= 0)
1370 return;
1371 input_backward(1);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001372 while (cursor > 0 && BB_isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001373 input_backward(1);
1374 if (cursor <= 0)
1375 return;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001376 if (BB_isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001377 while (cursor > 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001378 && (BB_isalnum(command[cursor-1]) || command[cursor-1] == '_')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001379 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001380 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001381 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001382 } else if (BB_ispunct(command[cursor])) {
1383 while (cursor > 0 && BB_ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001384 input_backward(1);
1385 }
1386}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001387#endif
1388
1389
1390/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001391 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001392 */
1393
Denis Vlasenko38f63192007-01-22 09:03:07 +00001394#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001395static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001396{
1397 cmdedit_prompt = prmt_ptr;
1398 cmdedit_prmt_len = strlen(prmt_ptr);
1399 put_prompt();
1400}
1401#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001402static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001403{
1404 int prmt_len = 0;
1405 size_t cur_prmt_len = 0;
1406 char flg_not_length = '[';
1407 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001408 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1409 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001410 char c;
1411 char *pbuf;
1412
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001413 cmdedit_prmt_len = 0;
1414
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001415 if (!cwd_buf) {
1416 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001417 }
1418
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001419 cbuf[1] = '\0'; /* never changes */
1420
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001421 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001422 char *free_me = NULL;
1423
1424 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001425 c = *prmt_ptr++;
1426 if (c == '\\') {
1427 const char *cp = prmt_ptr;
1428 int l;
1429
1430 c = bb_process_escape_sequence(&prmt_ptr);
1431 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001432 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001433 break;
1434 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001435
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001436 switch (c) {
1437#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1438 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001439 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001440 break;
1441#endif
1442 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001443 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001444 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001445 break;
1446 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001447 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001448 break;
1449#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1450 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001451 /* /home/user[/something] -> ~[/something] */
1452 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001453 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001454 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001455 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1456 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1457 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001458 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001459 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001460 }
1461 break;
1462#endif
1463 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001464 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001465 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001466 if (cp != NULL && cp != pbuf)
1467 pbuf += (cp-pbuf) + 1;
1468 break;
1469 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001470 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001471 break;
1472 case 'e': case 'E': /* \e \E = \033 */
1473 c = '\033';
1474 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001475 case 'x': case 'X': {
1476 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001477 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001478 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001479 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001480 buf2[l] = '\0';
1481 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001482 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001483 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001484 break;
1485 }
1486 prmt_ptr++;
1487 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001488 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001489 if (c == 0)
1490 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001491 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001492 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001493 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001494 case '[': case ']':
1495 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001496 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001497 continue;
1498 }
1499 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001500 } /* switch */
1501 } /* if */
1502 } /* if */
1503 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001504 cur_prmt_len = strlen(pbuf);
1505 prmt_len += cur_prmt_len;
1506 if (flg_not_length != ']')
1507 cmdedit_prmt_len += cur_prmt_len;
1508 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001509 free(free_me);
1510 } /* while */
1511
1512 if (cwd_buf != (char *)bb_msg_unknown)
1513 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001514 cmdedit_prompt = prmt_mem_ptr;
1515 put_prompt();
1516}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001517#endif
1518
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001519static void cmdedit_setwidth(unsigned w, int redraw_flg)
1520{
1521 cmdedit_termw = w;
1522 if (redraw_flg) {
1523 /* new y for current cursor */
1524 int new_y = (cursor + cmdedit_prmt_len) / w;
1525 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001526 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001527 fflush(stdout);
1528 }
1529}
1530
1531static void win_changed(int nsig)
1532{
Denis Vlasenko55995022008-05-18 22:28:26 +00001533 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001534 get_terminal_width_height(0, &width, NULL);
1535 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1536 if (nsig == SIGWINCH)
1537 signal(SIGWINCH, win_changed); /* rearm ourself */
1538}
1539
Denys Vlasenko020f4062009-05-17 16:44:54 +02001540static int lineedit_read_key(char *read_key_buffer)
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001541{
Denys Vlasenko020f4062009-05-17 16:44:54 +02001542 int64_t ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001543 struct pollfd pfd;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001544 int delay = -1;
1545#if ENABLE_FEATURE_ASSUME_UNICODE
1546 char unicode_buf[MB_CUR_MAX + 1];
1547 int unicode_idx = 0;
1548#endif
Denys Vlasenko020f4062009-05-17 16:44:54 +02001549
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001550 pfd.fd = STDIN_FILENO;
1551 pfd.events = POLLIN;
1552 do {
Denys Vlasenko020f4062009-05-17 16:44:54 +02001553 poll_again:
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001554 if (read_key_buffer[0] == 0) {
1555 /* Wait for input. Can't just call read_key,
1556 * it returns at once if stdin
1557 * is in non-blocking mode. */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001558 safe_poll(&pfd, 1, delay);
Denys Vlasenko4b7db4f2009-05-29 10:39:06 +02001559 }
1560 /* Note: read_key sets errno to 0 on success: */
Denys Vlasenko020f4062009-05-17 16:44:54 +02001561 ic = read_key(STDIN_FILENO, read_key_buffer);
1562 if (ENABLE_FEATURE_EDITING_ASK_TERMINAL
1563 && (int32_t)ic == KEYCODE_CURSOR_POS
1564 ) {
1565 int col = ((ic >> 32) & 0x7fff) - 1;
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001566 if (col > cmdedit_prmt_len) {
1567 cmdedit_x += (col - cmdedit_prmt_len);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001568 while (cmdedit_x >= cmdedit_termw) {
1569 cmdedit_x -= cmdedit_termw;
1570 cmdedit_y++;
1571 }
1572 }
1573 goto poll_again;
1574 }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001575
1576#if ENABLE_FEATURE_ASSUME_UNICODE
1577 {
1578 wchar_t wc;
1579
1580 if ((int32_t)ic < 0) /* KEYCODE_xxx */
1581 return ic;
1582 unicode_buf[unicode_idx++] = ic;
1583 unicode_buf[unicode_idx] = '\0';
1584 if (mbstowcs(&wc, unicode_buf, 1) < 1 && unicode_idx < MB_CUR_MAX) {
1585 delay = 50;
1586 goto poll_again;
1587 }
1588 ic = wc;
1589 }
1590#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001591 } while (errno == EAGAIN);
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001592
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001593 return ic;
1594}
1595
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001596/* leave out the "vi-mode"-only case labels if vi editing isn't
1597 * configured. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00001598#define vi_case(caselabel) IF_FEATURE_EDITING(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001599
1600/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001601#undef CTRL
1602#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001603
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001604/* Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001605 * -1 on read errors or EOF, or on bare Ctrl-D,
1606 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001607 * >0 length of input string, including terminating '\n'
1608 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001609int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001610{
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00001611 int len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001612#if ENABLE_FEATURE_TAB_COMPLETION
1613 smallint lastWasTab = FALSE;
1614#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001615 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001616#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001617 smallint vi_cmdmode = 0;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001618#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001619 struct termios initial_settings;
1620 struct termios new_settings;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001621 char read_key_buffer[KEYCODE_BUFFER_SIZE];
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001622
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001623 INIT_S();
1624
1625 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1626 || !(initial_settings.c_lflag & ECHO)
1627 ) {
1628 /* Happens when e.g. stty -echo was run before */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001629 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001630 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001631 if (fgets(command, maxsize, stdin) == NULL)
1632 len = -1; /* EOF or error */
1633 else
1634 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001635 DEINIT_S();
1636 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001637 }
1638
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001639// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001640 if (maxsize > MAX_LINELEN)
1641 maxsize = MAX_LINELEN;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001642
1643 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001644 state = st ? st : (line_input_t*) &const_int_0;
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001645#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001646 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenkoc0ea82a2009-03-23 06:33:37 +00001647 if (state->cnt_history == 0)
1648 load_history(state);
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001649#endif
Denis Vlasenko3c385cd2008-11-02 00:41:05 +00001650 if (state->flags & DO_HISTORY)
1651 state->cur_history = state->cnt_history;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001652
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001653 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001654 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001655 command_len = 0;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001656#if ENABLE_FEATURE_ASSUME_UNICODE
1657 command_ps = xzalloc(maxsize * sizeof(command_ps[0]));
1658#else
Mark Whitley4e338752001-01-26 20:42:23 +00001659 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001660 command[0] = '\0';
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001661#endif
1662#define command command_must_not_be_used
Mark Whitley4e338752001-01-26 20:42:23 +00001663
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001664 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001665 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1666 /* Turn off echoing and CTRL-C, so we can trap it */
1667 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001668 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001669 new_settings.c_cc[VMIN] = 1;
1670 new_settings.c_cc[VTIME] = 0;
1671 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001672#ifndef _POSIX_VDISABLE
1673#define _POSIX_VDISABLE '\0'
1674#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001675 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko202ac502008-11-05 13:20:58 +00001676 tcsetattr_stdin_TCSANOW(&new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001677
Eric Andersen6faae7d2001-02-16 20:09:17 +00001678 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001679 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1680 win_changed(0); /* do initial resizing */
1681#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1682 {
1683 struct passwd *entry;
1684
1685 entry = getpwuid(geteuid());
1686 if (entry) {
1687 user_buf = xstrdup(entry->pw_name);
1688 home_pwd_buf = xstrdup(entry->pw_dir);
1689 }
1690 }
1691#endif
Denis Vlasenko682ad302008-09-27 01:28:56 +00001692
1693#if 0
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001694 for (i = 0; i <= MAX_HISTORY; i++)
1695 bb_error_msg("history[%d]:'%s'", i, state->history[i]);
Denis Vlasenko682ad302008-09-27 01:28:56 +00001696 bb_error_msg("cur_history:%d cnt_history:%d", state->cur_history, state->cnt_history);
1697#endif
1698
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001699 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001700 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001701
Denys Vlasenkoc396fe62009-05-17 19:28:14 +02001702 read_key_buffer[0] = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001703 while (1) {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001704 /*
1705 * The emacs and vi modes share much of the code in the big
1706 * command loop. Commands entered when in vi's command mode
1707 * (aka "escape mode") get an extra bit added to distinguish
1708 * them - this keeps them from being self-inserted. This
1709 * clutters the big switch a bit, but keeps all the code
1710 * in one place.
1711 */
1712 enum {
1713 VI_CMDMODE_BIT = 0x40000000,
1714 /* 0x80000000 bit flags KEYCODE_xxx */
1715 };
1716 int32_t ic;
1717
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001718 fflush(NULL);
Denys Vlasenko020f4062009-05-17 16:44:54 +02001719 ic = lineedit_read_key(read_key_buffer);
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001720
Denis Vlasenko38f63192007-01-22 09:03:07 +00001721#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001722 newdelflag = 1;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001723 if (vi_cmdmode) {
1724 /* btw, since KEYCODE_xxx are all < 0, this doesn't
1725 * change ic if it contains one of them: */
1726 ic |= VI_CMDMODE_BIT;
1727 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001728#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001729
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001730 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001731 case '\n':
1732 case '\r':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001733 vi_case('\n'|VI_CMDMODE_BIT:)
1734 vi_case('\r'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001735 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001736 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001737 break_out = 1;
1738 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001739 case CTRL('A'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001740 vi_case('0'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001741 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001742 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001743 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001744 case CTRL('B'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001745 vi_case('h'|VI_CMDMODE_BIT:)
1746 vi_case('\b'|VI_CMDMODE_BIT:)
1747 vi_case('\x7f'|VI_CMDMODE_BIT:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001748 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001749 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001750 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001751 case CTRL('C'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001752 vi_case(CTRL('C')|VI_CMDMODE_BIT:)
Eric Andersen86349772000-12-18 20:25:50 +00001753 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001754 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001755 command_len = 0;
1756 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001757 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001758 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001759 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001760 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001761 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001762 errno = 0;
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001763#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001764 prepare_to_die:
Mike Frysingerf524b6c2009-06-01 14:02:49 -04001765#endif
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001766 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001767 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001768 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001769 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001770 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001771 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001772 case CTRL('E'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001773 vi_case('$'|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001774 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001775 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001776 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001777 case CTRL('F'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001778 vi_case('l'|VI_CMDMODE_BIT:)
1779 vi_case(' '|VI_CMDMODE_BIT:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001780 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001781 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001782 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001783 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001784 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001785 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001786 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001787 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001788#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001789 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001790 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001791 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001792#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001793 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001794 /* Control-k -- clear to end of line */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001795 command_ps[cursor] = BB_NUL;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001796 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001797 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001798 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001799 case CTRL('L'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001800 vi_case(CTRL('L')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001801 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001802 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001803 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001804 break;
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001805#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001806 case CTRL('N'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001807 vi_case(CTRL('N')|VI_CMDMODE_BIT:)
1808 vi_case('j'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001809 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001810 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001811 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001812 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001813 case CTRL('P'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001814 vi_case(CTRL('P')|VI_CMDMODE_BIT:)
1815 vi_case('k'|VI_CMDMODE_BIT:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001816 /* Control-p -- Get previous command from history */
Denis Vlasenko682ad302008-09-27 01:28:56 +00001817 if (get_previous_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001818 goto rewrite_line;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001819 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001820#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001821 case CTRL('U'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001822 vi_case(CTRL('U')|VI_CMDMODE_BIT:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001823 /* Control-U -- Clear line before cursor */
1824 if (cursor) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001825 command_len -= cursor;
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001826 memmove(command_ps, command_ps + cursor,
1827 (command_len + 1) * sizeof(command_ps[0]));
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001828 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001829 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001830 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001831 case CTRL('W'):
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001832 vi_case(CTRL('W')|VI_CMDMODE_BIT:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001833 /* Control-W -- Remove the last word */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001834 while (cursor > 0 && BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001835 input_backspace();
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001836 while (cursor > 0 && !BB_isspace(command_ps[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001837 input_backspace();
1838 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001839
Denis Vlasenko38f63192007-01-22 09:03:07 +00001840#if ENABLE_FEATURE_EDITING_VI
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001841 case 'i'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001842 vi_cmdmode = 0;
1843 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001844 case 'I'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001845 input_backward(cursor);
1846 vi_cmdmode = 0;
1847 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001848 case 'a'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001849 input_forward();
1850 vi_cmdmode = 0;
1851 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001852 case 'A'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001853 input_end();
1854 vi_cmdmode = 0;
1855 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001856 case 'x'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001857 input_delete(1);
1858 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001859 case 'X'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001860 if (cursor > 0) {
1861 input_backward(1);
1862 input_delete(1);
1863 }
1864 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001865 case 'W'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001866 vi_Word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001867 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001868 case 'w'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001869 vi_word_motion(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +00001870 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001871 case 'E'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001872 vi_End_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001873 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001874 case 'e'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001875 vi_end_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001876 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001877 case 'B'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001878 vi_Back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001879 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001880 case 'b'|VI_CMDMODE_BIT:
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001881 vi_back_motion();
Paul Fox3f11b1b2005-08-04 19:04:46 +00001882 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001883 case 'C'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001884 vi_cmdmode = 0;
1885 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001886 case 'D'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001887 goto clear_to_eol;
1888
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001889 case 'c'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001890 vi_cmdmode = 0;
1891 /* fall through */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001892 case 'd'|VI_CMDMODE_BIT: {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001893 int nc, sc;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001894 int prev_ic;
1895
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001896 sc = cursor;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001897 prev_ic = ic;
1898
Denys Vlasenko020f4062009-05-17 16:44:54 +02001899 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001900 if (errno) /* error */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001901 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001902
1903 if ((ic | VI_CMDMODE_BIT) == prev_ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001904 /* "cc", "dd" */
1905 input_backward(cursor);
1906 goto clear_to_eol;
1907 break;
1908 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001909 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001910 case 'w':
1911 case 'W':
1912 case 'e':
1913 case 'E':
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001914 switch (ic) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001915 case 'w': /* "dw", "cw" */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001916 vi_word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001917 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001918 case 'W': /* 'dW', 'cW' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001919 vi_Word_motion(vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001920 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001921 case 'e': /* 'de', 'ce' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001922 vi_end_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001923 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001924 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001925 case 'E': /* 'dE', 'cE' */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001926 vi_End_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001927 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001928 break;
1929 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001930 nc = cursor;
1931 input_backward(cursor - sc);
1932 while (nc-- > cursor)
1933 input_delete(1);
1934 break;
1935 case 'b': /* "db", "cb" */
1936 case 'B': /* implemented as B */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001937 if (ic == 'b')
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001938 vi_back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001939 else
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001940 vi_Back_motion();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001941 while (sc-- > cursor)
1942 input_delete(1);
1943 break;
1944 case ' ': /* "d ", "c " */
1945 input_delete(1);
1946 break;
1947 case '$': /* "d$", "c$" */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001948 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001949 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001950 input_delete(1);
1951 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001952 }
1953 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001954 }
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001955 case 'p'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001956 input_forward();
1957 /* fallthrough */
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001958 case 'P'|VI_CMDMODE_BIT:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001959 put();
1960 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001961 case 'r'|VI_CMDMODE_BIT:
Denys Vlasenko020f4062009-05-17 16:44:54 +02001962 ic = lineedit_read_key(read_key_buffer);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001963 if (errno) /* error */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001964 goto prepare_to_die;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001965 if (ic < ' ' || ic > 255) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001966 beep();
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001967 } else {
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001968 command_ps[cursor] = ic;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001969 bb_putchar(ic);
Denis Vlasenko4daad902007-09-27 10:20:47 +00001970 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00001971 }
1972 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001973 case '\x1b': /* ESC */
1974 if (state->flags & VI_MODE) {
1975 /* insert mode --> command mode */
1976 vi_cmdmode = 1;
1977 input_backward(1);
1978 }
1979 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001980#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001981
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001982#if MAX_HISTORY > 0
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001983 case KEYCODE_UP:
1984 if (get_previous_history())
1985 goto rewrite_line;
1986 beep();
1987 break;
1988 case KEYCODE_DOWN:
1989 if (!get_next_history())
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001990 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001991 rewrite_line:
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001992 /* Rewrite the line with the selected history item */
1993 /* change command */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02001994 command_len = load_string(state->history[state->cur_history] ? : "", maxsize);
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001995 /* redraw and go to eol (bol, in vi) */
1996 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
1997 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001998#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02001999 case KEYCODE_RIGHT:
2000 input_forward();
2001 break;
2002 case KEYCODE_LEFT:
2003 input_backward(1);
2004 break;
2005 case KEYCODE_DELETE:
2006 input_delete(0);
2007 break;
2008 case KEYCODE_HOME:
2009 input_backward(cursor);
2010 break;
2011 case KEYCODE_END:
2012 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002013 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002014
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002015 default:
2016// /* Control-V -- force insert of next char */
2017// if (c == CTRL('V')) {
2018// if (safe_read(STDIN_FILENO, &c, 1) < 1)
2019// goto prepare_to_die;
2020// if (c == 0) {
2021// beep();
2022// break;
2023// }
2024// }
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002025 if (ic < ' '
2026 || (!ENABLE_FEATURE_ASSUME_UNICODE && ic >= 256)
2027 || (ENABLE_FEATURE_ASSUME_UNICODE && ic >= VI_CMDMODE_BIT)
2028 ) {
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002029 /* If VI_CMDMODE_BIT is set, ic is >= 256
2030 * and command mode ignores unexpected chars.
2031 * Otherwise, we are here if ic is a
2032 * control char or an unhandled ESC sequence,
2033 * which is also ignored.
2034 */
2035 break;
2036 }
2037 if ((int)command_len >= (maxsize - 2)) {
2038 /* Not enough space for the char and EOL */
2039 break;
Paul Fox84bbac52008-01-11 16:50:08 +00002040 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00002041
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002042 command_len++;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002043 if (cursor == (command_len - 1)) {
2044 /* We are at the end, append */
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002045 command_ps[cursor] = ic;
2046 command_ps[cursor + 1] = BB_NUL;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002047 cmdedit_set_out_char(' ');
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002048 } else {
2049 /* In the middle, insert */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002050 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00002051
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002052 memmove(command_ps + sc + 1, command_ps + sc,
2053 (command_len - sc) * sizeof(command_ps[0]));
2054 command_ps[sc] = ic;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002055 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00002056 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002057 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00002058 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002059 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00002060 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00002061 break;
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002062 } /* switch (input_key) */
2063
2064 if (break_out)
Erik Andersenc7c634b2000-03-19 05:28:55 +00002065 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002066
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002067#if ENABLE_FEATURE_TAB_COMPLETION
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002068 ic &= ~VI_CMDMODE_BIT;
2069 if (ic != '\t')
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002070 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002071#endif
Denys Vlasenkoc15f40c2009-05-15 03:27:53 +02002072 } /* while (1) */
Erik Andersenc7c634b2000-03-19 05:28:55 +00002073
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002074/* Stop bug catching using "command_must_not_be_used" trick */
2075#undef command
2076
2077#if ENABLE_FEATURE_ASSUME_UNICODE
2078 command_len = save_string(command, maxsize - 1);
2079 free(command_ps);
2080#endif
2081
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002082 if (command_len > 0)
2083 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002084
Eric Andersen27bb7902003-12-23 20:24:51 +00002085 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002086 command[command_len++] = '\n';
2087 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00002088 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002089
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002090#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00002091 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002092#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002093
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002094 /* restore initial_settings */
Denis Vlasenko202ac502008-11-05 13:20:58 +00002095 tcsetattr_stdin_TCSANOW(&initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00002096 /* restore SIGWINCH handler */
2097 signal(SIGWINCH, previous_SIGWINCH_handler);
2098 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002099
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002100 len = command_len;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00002101 DEINIT_S();
2102
Denis Vlasenkof31c3b62008-08-20 00:46:32 +00002103 return len; /* can't return command_len, DEINIT_S() destroys it */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002104}
2105
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002106#else
2107
2108#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00002109int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002110{
2111 fputs(prompt, stdout);
2112 fflush(stdout);
2113 fgets(command, maxsize, stdin);
2114 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00002115}
2116
Denys Vlasenko2e6d4ef2009-07-10 18:40:49 +02002117#endif /* FEATURE_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00002118
2119
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002120/*
2121 * Testing
2122 */
2123
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002124#ifdef TEST
2125
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002126#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00002127
2128const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002129
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002130int main(int argc, char **argv)
2131{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00002132 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002133 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00002134#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002135 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
2136 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
2137 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002138#else
2139 "% ";
2140#endif
2141
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002142#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00002143 setlocale(LC_ALL, "");
2144#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00002145 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00002146 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002147 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002148 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00002149 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00002150 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002151 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00002152 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00002153 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00002154 return 0;
2155}
2156
Eric Andersenc470f442003-07-28 09:56:35 +00002157#endif /* TEST */