blob: a46b5d2c41c25fed4fc6a8c1c047141a58b3d675 [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 */
36
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000037#include "libbb.h"
Glenn L McGrath67285962004-01-14 09:34:51 +000038
Glenn L McGrath475820c2004-01-22 12:42:23 +000039
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000040/* FIXME: obsolete CONFIG item? */
41#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
42
43
Glenn L McGrath3b251852004-01-03 12:07:32 +000044#ifdef TEST
Eric Andersen5f2c79d2001-02-16 18:36:04 +000045
Denis Vlasenko38f63192007-01-22 09:03:07 +000046#define ENABLE_FEATURE_EDITING 0
47#define ENABLE_FEATURE_TAB_COMPLETION 0
48#define ENABLE_FEATURE_USERNAME_COMPLETION 0
Denis Vlasenko7f1dc212006-12-19 01:10:25 +000049#define ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT 0
Eric Andersen5f2c79d2001-02-16 18:36:04 +000050
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +000051#endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000052
Eric Andersen5165fbe2001-02-20 06:42:29 +000053
Denis Vlasenko82b39e82007-01-21 19:18:19 +000054/* Entire file (except TESTing part) sits inside this #if */
Denis Vlasenko38f63192007-01-22 09:03:07 +000055#if ENABLE_FEATURE_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000056
Denis Vlasenko82b39e82007-01-21 19:18:19 +000057#if ENABLE_LOCALE_SUPPORT
58#define Isprint(c) isprint(c)
59#else
60#define Isprint(c) ((c) >= ' ' && (c) != ((unsigned char)'\233'))
61#endif
62
Denis Vlasenko7e46cf72006-12-23 01:21:55 +000063#define ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000064 (ENABLE_FEATURE_USERNAME_COMPLETION || ENABLE_FEATURE_EDITING_FANCY_PROMPT)
65#define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...)
66#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
67#undef USE_FEATURE_GETUSERNAME_AND_HOMEDIR
68#define USE_FEATURE_GETUSERNAME_AND_HOMEDIR(...) __VA_ARGS__
69#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +000070
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000071enum {
72 /* We use int16_t for positions, need to limit line len */
73 MAX_LINELEN = CONFIG_FEATURE_EDITING_MAX_LEN < 0x7ff0
Denis Vlasenko6b404432008-01-07 16:13:14 +000074 ? CONFIG_FEATURE_EDITING_MAX_LEN
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000075 : 0x7ff0
76};
Robert Griebl350d26b2002-12-03 22:45:46 +000077
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000078#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
79static const char null_str[] ALIGN1 = "";
80#endif
Erik Andersen1d1d9502000-04-21 01:26:49 +000081
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000082/* We try to minimize both static and stack usage. */
Denis Vlasenko5d89fba2008-04-22 00:08:27 +000083struct lineedit_statics {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000084 line_input_t *state;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +000085
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000086 volatile unsigned cmdedit_termw; /* = 80; */ /* actual terminal width */
87 sighandler_t previous_SIGWINCH_handler;
Mark Whitley4e338752001-01-26 20:42:23 +000088
Denis Vlasenkob267ed92008-05-25 21:52:03 +000089 unsigned cmdedit_x; /* real x terminal position */
90 unsigned cmdedit_y; /* pseudoreal y terminal position */
91 unsigned cmdedit_prmt_len; /* length of prompt (without colors etc) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000092
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000093 unsigned cursor;
94 unsigned command_len;
95 char *command_ps;
96
97 const char *cmdedit_prompt;
Denis Vlasenko38f63192007-01-22 09:03:07 +000098#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +000099 int num_ok_lines; /* = 1; */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000100#endif
101
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000102#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000103 char *user_buf;
104 char *home_pwd_buf; /* = (char*)null_str; */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000105#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000106
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000107#if ENABLE_FEATURE_TAB_COMPLETION
108 char **matches;
109 unsigned num_matches;
110#endif
111
112#if ENABLE_FEATURE_EDITING_VI
113#define DELBUFSIZ 128
114 char *delptr;
115 smallint newdelflag; /* whether delbuf should be reused yet */
116 char delbuf[DELBUFSIZ]; /* a place to store deleted characters */
117#endif
118
119 /* Formerly these were big buffers on stack: */
120#if ENABLE_FEATURE_TAB_COMPLETION
121 char exe_n_cwd_tab_completion__dirbuf[MAX_LINELEN];
122 char input_tab__matchBuf[MAX_LINELEN];
123 int16_t find_match__int_buf[MAX_LINELEN + 1]; /* need to have 9 bits at least */
124 int16_t find_match__pos_buf[MAX_LINELEN + 1];
125#endif
126};
127
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000128/* See lineedit_ptr_hack.c */
129extern struct lineedit_statics *const lineedit_ptr_to_statics;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000130
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000131#define S (*lineedit_ptr_to_statics)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000132#define state (S.state )
133#define cmdedit_termw (S.cmdedit_termw )
134#define previous_SIGWINCH_handler (S.previous_SIGWINCH_handler)
135#define cmdedit_x (S.cmdedit_x )
136#define cmdedit_y (S.cmdedit_y )
137#define cmdedit_prmt_len (S.cmdedit_prmt_len)
138#define cursor (S.cursor )
139#define command_len (S.command_len )
140#define command_ps (S.command_ps )
141#define cmdedit_prompt (S.cmdedit_prompt )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000142#define num_ok_lines (S.num_ok_lines )
Denis Vlasenkof7be20e2007-12-24 14:09:19 +0000143#define user_buf (S.user_buf )
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000144#define home_pwd_buf (S.home_pwd_buf )
145#define matches (S.matches )
146#define num_matches (S.num_matches )
147#define delptr (S.delptr )
148#define newdelflag (S.newdelflag )
149#define delbuf (S.delbuf )
150
151#define INIT_S() do { \
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000152 (*(struct lineedit_statics**)&lineedit_ptr_to_statics) = xzalloc(sizeof(S)); \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000153 barrier(); \
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000154 cmdedit_termw = 80; \
155 USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines = 1;) \
156 USE_FEATURE_GETUSERNAME_AND_HOMEDIR(home_pwd_buf = (char*)null_str;) \
157} while (0)
158static void deinit_S(void)
159{
160#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000161 /* This one is allocated only if FANCY_PROMPT is on
162 * (otherwise it points to verbatim prompt (NOT malloced) */
163 free((char*)cmdedit_prompt);
164#endif
165#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
166 free(user_buf);
167 if (home_pwd_buf != null_str)
168 free(home_pwd_buf);
169#endif
Denis Vlasenko5d89fba2008-04-22 00:08:27 +0000170 free(lineedit_ptr_to_statics);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000171}
172#define DEINIT_S() deinit_S()
173
Denis Vlasenko2c844952008-04-25 18:44:35 +0000174
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000175/* Put 'command_ps[cursor]', cursor++.
176 * Advance cursor on screen. If we reached right margin, scroll text up
177 * and remove terminal margin effect by printing 'next_char' */
Denis Vlasenko2c844952008-04-25 18:44:35 +0000178#define HACK_FOR_WRONG_WIDTH 1
179#if HACK_FOR_WRONG_WIDTH
180static void cmdedit_set_out_char(void)
181#define cmdedit_set_out_char(next_char) cmdedit_set_out_char()
182#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000183static void cmdedit_set_out_char(int next_char)
Denis Vlasenko2c844952008-04-25 18:44:35 +0000184#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000185{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000186 int c = (unsigned char)command_ps[cursor];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000187
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000188 if (c == '\0') {
189 /* erase character after end of input string */
190 c = ' ';
191 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000192#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000193 /* Display non-printable characters in reverse */
194 if (!Isprint(c)) {
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000195 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000196 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000197 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000198 c += '@';
199 if (c == 127)
200 c = '?';
201 printf("\033[7m%c\033[0m", c);
202 } else
203#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000204 {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000205 bb_putchar(c);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000206 }
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000207 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000208 /* terminal is scrolled down */
209 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000210 cmdedit_x = 0;
Denis Vlasenko2c844952008-04-25 18:44:35 +0000211#if HACK_FOR_WRONG_WIDTH
212 /* This works better if our idea of term width is wrong
213 * and it is actually wider (often happens on serial lines).
214 * Printing CR,LF *forces* cursor to next line.
215 * OTOH if terminal width is correct AND terminal does NOT
216 * have automargin (IOW: it is moving cursor to next line
217 * by itself (which is wrong for VT-10x terminals)),
218 * this will break things: there will be one extra empty line */
219 puts("\r"); /* + implicit '\n' */
220#else
221 /* Works ok only if cmdedit_termw is correct */
Mark Whitley4e338752001-01-26 20:42:23 +0000222 /* destroy "(auto)margin" */
Denis Vlasenko4daad902007-09-27 10:20:47 +0000223 bb_putchar(next_char);
224 bb_putchar('\b');
Denis Vlasenko2c844952008-04-25 18:44:35 +0000225#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000226 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000227// Huh? What if command_ps[cursor] == '\0' (we are at the end already?)
Mark Whitley4e338752001-01-26 20:42:23 +0000228 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000229}
230
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000231/* Move to end of line (by printing all chars till the end) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000232static void input_end(void)
233{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000234 while (cursor < command_len)
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000235 cmdedit_set_out_char(' ');
Mark Whitley4e338752001-01-26 20:42:23 +0000236}
237
238/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000239static void goto_new_line(void)
240{
Mark Whitley4e338752001-01-26 20:42:23 +0000241 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000242 if (cmdedit_x)
Denis Vlasenko4daad902007-09-27 10:20:47 +0000243 bb_putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000244}
245
246
Rob Landley88621d72006-08-29 19:41:06 +0000247static void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000248{
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000249 if (s)
Robert Grieblb2301592002-07-30 23:13:51 +0000250 fputs(s, stdout);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000251}
Eric Andersen81fe1232003-07-29 06:38:40 +0000252
Rob Landley88621d72006-08-29 19:41:06 +0000253static void beep(void)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000254{
Denis Vlasenko4daad902007-09-27 10:20:47 +0000255 bb_putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000256}
257
Eric Andersenaff114c2004-04-14 17:51:38 +0000258/* Move back one character */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000259/* (optimized for slow terminals) */
260static void input_backward(unsigned num)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000261{
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000262 int count_y;
263
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000264 if (num > cursor)
265 num = cursor;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000266 if (!num)
267 return;
268 cursor -= num;
Erik Andersen13456d12000-03-16 08:09:57 +0000269
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000270 if (cmdedit_x >= num) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000271 cmdedit_x -= num;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000272 if (num <= 4) {
Denis Vlasenko6f043912008-02-18 22:28:03 +0000273 /* This is longer by 5 bytes on x86.
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000274 * Also gets miscompiled for ARM users
275 * (busybox.net/bugs/view.php?id=2274).
Denis Vlasenko6f043912008-02-18 22:28:03 +0000276 * printf(("\b\b\b\b" + 4) - num);
277 * return;
278 */
279 do {
280 bb_putchar('\b');
281 } while (--num);
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000282 return;
283 }
284 printf("\033[%uD", num);
285 return;
Erik Andersen13456d12000-03-16 08:09:57 +0000286 }
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000287
288 /* Need to go one or more lines up */
289 num -= cmdedit_x;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000290 {
291 unsigned w = cmdedit_termw; /* volatile var */
292 count_y = 1 + (num / w);
293 cmdedit_y -= count_y;
294 cmdedit_x = w * count_y - num;
295 }
Denis Vlasenko35d4da02007-01-22 14:04:27 +0000296 /* go to 1st column; go up; go to correct column */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +0000297 printf("\r" "\033[%dA" "\033[%dC", count_y, cmdedit_x);
Erik Andersen13456d12000-03-16 08:09:57 +0000298}
299
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000300static void put_prompt(void)
301{
302 out1str(cmdedit_prompt);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000303 cursor = 0;
Denis Vlasenkob267ed92008-05-25 21:52:03 +0000304 {
305 unsigned w = cmdedit_termw; /* volatile var */
306 cmdedit_y = cmdedit_prmt_len / w; /* new quasireal y */
307 cmdedit_x = cmdedit_prmt_len % w;
308 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000309}
310
Eric Andersenaff114c2004-04-14 17:51:38 +0000311/* draw prompt, editor line, and clear tail */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000312static void redraw(int y, int back_cursor)
313{
Eric Andersenc470f442003-07-28 09:56:35 +0000314 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000315 printf("\033[%dA", y);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000316 bb_putchar('\r');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000317 put_prompt();
Eric Andersenc470f442003-07-28 09:56:35 +0000318 input_end(); /* rewrite */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000319 printf("\033[J"); /* erase after cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000320 input_backward(back_cursor);
321}
322
Paul Fox3f11b1b2005-08-04 19:04:46 +0000323/* Delete the char in front of the cursor, optionally saving it
324 * for later putback */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000325#if !ENABLE_FEATURE_EDITING_VI
326static void input_delete(void)
327#define input_delete(save) input_delete()
328#else
Paul Fox3f11b1b2005-08-04 19:04:46 +0000329static void input_delete(int save)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000330#endif
Erik Andersenf0657d32000-04-12 17:49:52 +0000331{
Mark Whitley4e338752001-01-26 20:42:23 +0000332 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000333
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000334 if (j == (int)command_len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000335 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000336
Denis Vlasenko38f63192007-01-22 09:03:07 +0000337#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000338 if (save) {
339 if (newdelflag) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000340 delptr = delbuf;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000341 newdelflag = 0;
342 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000343 if ((delptr - delbuf) < DELBUFSIZ)
344 *delptr++ = command_ps[j];
Paul Fox3f11b1b2005-08-04 19:04:46 +0000345 }
346#endif
347
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000348 strcpy(command_ps + j, command_ps + j + 1);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000349 command_len--;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000350 input_end(); /* rewrite new line */
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000351 cmdedit_set_out_char(' '); /* erase char */
Eric Andersenc470f442003-07-28 09:56:35 +0000352 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000353}
354
Denis Vlasenko38f63192007-01-22 09:03:07 +0000355#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +0000356static void put(void)
357{
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000358 int ocursor;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000359 int j = delptr - delbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000360
Paul Fox3f11b1b2005-08-04 19:04:46 +0000361 if (j == 0)
362 return;
363 ocursor = cursor;
364 /* open hole and then fill it */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000365 memmove(command_ps + cursor + j, command_ps + cursor, command_len - cursor + 1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000366 strncpy(command_ps + cursor, delbuf, j);
Denis Vlasenko253ce002007-01-22 08:34:44 +0000367 command_len += j;
Paul Fox3f11b1b2005-08-04 19:04:46 +0000368 input_end(); /* rewrite new line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000369 input_backward(cursor - ocursor - j + 1); /* at end of new text */
Paul Fox3f11b1b2005-08-04 19:04:46 +0000370}
371#endif
372
Mark Whitley4e338752001-01-26 20:42:23 +0000373/* Delete the char in back of the cursor */
374static void input_backspace(void)
375{
376 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000377 input_backward(1);
Paul Fox3f11b1b2005-08-04 19:04:46 +0000378 input_delete(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000379 }
380}
381
Eric Andersenaff114c2004-04-14 17:51:38 +0000382/* Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +0000383static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000384{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000385 if (cursor < command_len)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000386 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000387}
388
Denis Vlasenko38f63192007-01-22 09:03:07 +0000389#if ENABLE_FEATURE_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000390
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000391static void free_tab_completion_data(void)
392{
393 if (matches) {
394 while (num_matches)
395 free(matches[--num_matches]);
396 free(matches);
397 matches = NULL;
398 }
399}
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000400
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000401static void add_match(char *matched)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000402{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000403 matches = xrealloc_vector(matches, 4, num_matches);
404 matches[num_matches] = matched;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000405 num_matches++;
406}
407
Denis Vlasenko38f63192007-01-22 09:03:07 +0000408#if ENABLE_FEATURE_USERNAME_COMPLETION
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000409static void username_tab_completion(char *ud, char *with_shash_flg)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000410{
411 struct passwd *entry;
412 int userlen;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000413
Eric Andersenc470f442003-07-28 09:56:35 +0000414 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000415 userlen = strlen(ud);
416
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000417 if (with_shash_flg) { /* "~/..." or "~user/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000418 char *sav_ud = ud - 1;
Denis Vlasenko86b29ea2007-09-27 10:17:16 +0000419 char *home = NULL;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000420
Eric Andersenc470f442003-07-28 09:56:35 +0000421 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000422 home = home_pwd_buf;
423 } else {
424 /* "~user/..." */
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000425 char *temp;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000426 temp = strchr(ud, '/');
Denis Vlasenko7221c8c2007-12-03 10:45:14 +0000427 *temp = '\0'; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000428 entry = getpwnam(ud);
Eric Andersenc470f442003-07-28 09:56:35 +0000429 *temp = '/'; /* restore ~user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000430 ud = temp;
431 if (entry)
432 home = entry->pw_dir;
433 }
434 if (home) {
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000435 if ((userlen + strlen(home) + 1) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000436 /* /home/user/... */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000437 sprintf(sav_ud, "%s%s", home, ud);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000438 }
439 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000440 } else {
441 /* "~[^/]*" */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000442 /* Using _r function to avoid pulling in static buffers */
Denis Vlasenko6b343dd2007-03-18 00:57:15 +0000443 char line_buff[256];
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000444 struct passwd pwd;
445 struct passwd *result;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000446
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000447 setpwent();
448 while (!getpwent_r(&pwd, line_buff, sizeof(line_buff), &result)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000449 /* Null usernames should result in all users as possible completions. */
Denis Vlasenko5df955f2007-03-13 13:01:14 +0000450 if (/*!userlen || */ strncmp(ud, pwd.pw_name, userlen) == 0) {
451 add_match(xasprintf("~%s/", pwd.pw_name));
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000452 }
453 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000454 endpwent();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000455 }
456}
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000457#endif /* FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000458
459enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000460 FIND_EXE_ONLY = 0,
461 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000462 FIND_FILE_ONLY = 2,
463};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000464
Mark Whitley4e338752001-01-26 20:42:23 +0000465static int path_parse(char ***p, int flags)
466{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000467 int npth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000468 const char *pth;
Denis Vlasenko253ce002007-01-22 08:34:44 +0000469 char *tmp;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000470 char **res;
Mark Whitley4e338752001-01-26 20:42:23 +0000471
Mark Whitley4e338752001-01-26 20:42:23 +0000472 /* if not setenv PATH variable, to search cur dir "." */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000473 if (flags != FIND_EXE_ONLY)
Mark Whitley4e338752001-01-26 20:42:23 +0000474 return 1;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000475
476 if (state->flags & WITH_PATH_LOOKUP)
477 pth = state->path_lookup;
478 else
479 pth = getenv("PATH");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000480 /* PATH=<empty> or PATH=:<empty> */
481 if (!pth || !pth[0] || LONE_CHAR(pth, ':'))
482 return 1;
Mark Whitley4e338752001-01-26 20:42:23 +0000483
Denis Vlasenko253ce002007-01-22 08:34:44 +0000484 tmp = (char*)pth;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000485 npth = 1; /* path component count */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000486 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000487 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000488 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000489 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000490 if (*++tmp == '\0')
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000491 break; /* :<empty> */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000492 npth++;
Mark Whitley4e338752001-01-26 20:42:23 +0000493 }
494
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000495 res = xmalloc(npth * sizeof(char*));
Denis Vlasenko253ce002007-01-22 08:34:44 +0000496 res[0] = tmp = xstrdup(pth);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000497 npth = 1;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000498 while (1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000499 tmp = strchr(tmp, ':');
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000500 if (!tmp)
Mark Whitley4e338752001-01-26 20:42:23 +0000501 break;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000502 *tmp++ = '\0'; /* ':' -> '\0' */
503 if (*tmp == '\0')
504 break; /* :<empty> */
505 res[npth++] = tmp;
Mark Whitley4e338752001-01-26 20:42:23 +0000506 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000507 *p = res;
Mark Whitley4e338752001-01-26 20:42:23 +0000508 return npth;
509}
510
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000511static void exe_n_cwd_tab_completion(char *command, int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000512{
Erik Andersen1dbe3402000-03-19 10:46:06 +0000513 DIR *dir;
514 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000515 struct stat st;
516 char *path1[1];
517 char **paths = path1;
518 int npaths;
519 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000520 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000521 char *pfind = strrchr(command, '/');
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000522/* char dirbuf[MAX_LINELEN]; */
523#define dirbuf (S.exe_n_cwd_tab_completion__dirbuf)
Mark Whitley4e338752001-01-26 20:42:23 +0000524
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000525 npaths = 1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000526 path1[0] = (char*)".";
Mark Whitley4e338752001-01-26 20:42:23 +0000527
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000528 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000529 /* no dir, if flags==EXE_ONLY - get paths, else "." */
530 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000531 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000532 } else {
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000533 /* dirbuf = ".../.../.../" */
534 safe_strncpy(dirbuf, command, (pfind - command) + 2);
Denis Vlasenko38f63192007-01-22 09:03:07 +0000535#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +0000536 if (dirbuf[0] == '~') /* ~/... or ~user/... */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000537 username_tab_completion(dirbuf, dirbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000538#endif
Mark Whitley4e338752001-01-26 20:42:23 +0000539 paths[0] = dirbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000540 /* point to 'l' in "..../last_component" */
541 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000542 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000543
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000544 for (i = 0; i < npaths; i++) {
Mark Whitley4e338752001-01-26 20:42:23 +0000545 dir = opendir(paths[i]);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000546 if (!dir)
547 continue; /* don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000548
549 while ((next = readdir(dir)) != NULL) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000550 int len1;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000551 const char *str_found = next->d_name;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000552
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000553 /* matched? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000554 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000555 continue;
556 /* not see .name without .match */
Denis Vlasenkob5202712008-04-24 04:42:52 +0000557 if (*str_found == '.' && *pfind == '\0') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000558 if (NOT_LONE_CHAR(paths[i], '/') || str_found[1])
Mark Whitley4e338752001-01-26 20:42:23 +0000559 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000560 str_found = ""; /* only "/" */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000561 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000562 found = concat_path_file(paths[i], str_found);
Denis Vlasenkob5202712008-04-24 04:42:52 +0000563 /* hmm, remove in progress? */
564 /* NB: stat() first so that we see is it a directory;
565 * but if that fails, use lstat() so that
566 * we still match dangling links */
567 if (stat(found, &st) && lstat(found, &st))
Eric Andersene5dfced2001-04-09 22:48:12 +0000568 goto cont;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000569 /* find with dirs? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000570 if (paths[i] != dirbuf)
Denis Vlasenkob5202712008-04-24 04:42:52 +0000571 strcpy(found, next->d_name); /* only name */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000572
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000573 len1 = strlen(found);
574 found = xrealloc(found, len1 + 2);
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000575 found[len1] = '\0';
576 found[len1+1] = '\0';
577
Mark Whitley4e338752001-01-26 20:42:23 +0000578 if (S_ISDIR(st.st_mode)) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000579 /* name is a directory */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000580 if (found[len1-1] != '/') {
581 found[len1] = '/';
582 }
Mark Whitley4e338752001-01-26 20:42:23 +0000583 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000584 /* not put found file if search only dirs for cd */
Eric Andersenc470f442003-07-28 09:56:35 +0000585 if (type == FIND_DIR_ONLY)
Eric Andersene5dfced2001-04-09 22:48:12 +0000586 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000587 }
Mark Whitley4e338752001-01-26 20:42:23 +0000588 /* Add it to the list */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000589 add_match(found);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000590 continue;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000591 cont:
Eric Andersene5dfced2001-04-09 22:48:12 +0000592 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000593 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000594 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000595 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000596 if (paths != path1) {
Denis Vlasenkob5202712008-04-24 04:42:52 +0000597 free(paths[0]); /* allocated memory is only in first member */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000598 free(paths);
599 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000600#undef dirbuf
Erik Andersen6273f652000-03-17 01:12:41 +0000601}
Erik Andersenf0657d32000-04-12 17:49:52 +0000602
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000603#define QUOT (UCHAR_MAX+1)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000604
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000605#define collapse_pos(is, in) do { \
606 memmove(int_buf+(is), int_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
607 memmove(pos_buf+(is), pos_buf+(in), (MAX_LINELEN+1-(is)-(in)) * sizeof(pos_buf[0])); \
608} while (0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000609
610static int find_match(char *matchBuf, int *len_with_quotes)
611{
612 int i, j;
613 int command_mode;
614 int c, c2;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000615/* int16_t int_buf[MAX_LINELEN + 1]; */
616/* int16_t pos_buf[MAX_LINELEN + 1]; */
617#define int_buf (S.find_match__int_buf)
618#define pos_buf (S.find_match__pos_buf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000619
620 /* set to integer dimension characters and own positions */
621 for (i = 0;; i++) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000622 int_buf[i] = (unsigned char)matchBuf[i];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000623 if (int_buf[i] == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000624 pos_buf[i] = -1; /* indicator end line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000625 break;
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000626 }
627 pos_buf[i] = i;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000628 }
629
630 /* mask \+symbol and convert '\t' to ' ' */
631 for (i = j = 0; matchBuf[i]; i++, j++)
632 if (matchBuf[i] == '\\') {
633 collapse_pos(j, j + 1);
634 int_buf[j] |= QUOT;
635 i++;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000636#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenc470f442003-07-28 09:56:35 +0000637 if (matchBuf[i] == '\t') /* algorithm equivalent */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000638 int_buf[j] = ' ' | QUOT;
639#endif
640 }
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000641#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000642 else if (matchBuf[i] == '\t')
643 int_buf[j] = ' ';
644#endif
645
646 /* mask "symbols" or 'symbols' */
647 c2 = 0;
648 for (i = 0; int_buf[i]; i++) {
649 c = int_buf[i];
650 if (c == '\'' || c == '"') {
651 if (c2 == 0)
652 c2 = c;
653 else {
654 if (c == c2)
655 c2 = 0;
656 else
657 int_buf[i] |= QUOT;
658 }
659 } else if (c2 != 0 && c != '$')
660 int_buf[i] |= QUOT;
661 }
662
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000663 /* skip commands with arguments if line has commands delimiters */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000664 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
665 for (i = 0; int_buf[i]; i++) {
666 c = int_buf[i];
667 c2 = int_buf[i + 1];
668 j = i ? int_buf[i - 1] : -1;
669 command_mode = 0;
670 if (c == ';' || c == '&' || c == '|') {
671 command_mode = 1 + (c == c2);
672 if (c == '&') {
673 if (j == '>' || j == '<')
674 command_mode = 0;
675 } else if (c == '|' && j == '>')
676 command_mode = 0;
677 }
678 if (command_mode) {
679 collapse_pos(0, i + command_mode);
Eric Andersenc470f442003-07-28 09:56:35 +0000680 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000681 }
682 }
683 /* collapse `command...` */
684 for (i = 0; int_buf[i]; i++)
685 if (int_buf[i] == '`') {
686 for (j = i + 1; int_buf[j]; j++)
687 if (int_buf[j] == '`') {
688 collapse_pos(i, j + 1);
689 j = 0;
690 break;
691 }
692 if (j) {
693 /* not found close ` - command mode, collapse all previous */
694 collapse_pos(0, i + 1);
695 break;
696 } else
Eric Andersenc470f442003-07-28 09:56:35 +0000697 i--; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000698 }
699
700 /* collapse (command...(command...)...) or {command...{command...}...} */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000701 c = 0; /* "recursive" level */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000702 c2 = 0;
703 for (i = 0; int_buf[i]; i++)
704 if (int_buf[i] == '(' || int_buf[i] == '{') {
705 if (int_buf[i] == '(')
706 c++;
707 else
708 c2++;
709 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000710 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711 }
712 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
713 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
714 if (int_buf[i] == ')')
715 c--;
716 else
717 c2--;
718 collapse_pos(0, i + 1);
Eric Andersenc470f442003-07-28 09:56:35 +0000719 i = -1; /* hack incremet */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000720 }
721
722 /* skip first not quote space */
723 for (i = 0; int_buf[i]; i++)
724 if (int_buf[i] != ' ')
725 break;
726 if (i)
727 collapse_pos(0, i);
728
729 /* set find mode for completion */
730 command_mode = FIND_EXE_ONLY;
731 for (i = 0; int_buf[i]; i++)
732 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
733 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000734 && matchBuf[pos_buf[0]] == 'c'
735 && matchBuf[pos_buf[1]] == 'd'
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000736 ) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000737 command_mode = FIND_DIR_ONLY;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000738 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000739 command_mode = FIND_FILE_ONLY;
740 break;
741 }
742 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000743 for (i = 0; int_buf[i]; i++)
744 /* "strlen" */;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000745 /* find last word */
746 for (--i; i >= 0; i--) {
747 c = int_buf[i];
748 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
749 collapse_pos(0, i + 1);
750 break;
751 }
752 }
753 /* skip first not quoted '\'' or '"' */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000754 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++)
755 /*skip*/;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000756 /* collapse quote or unquote // or /~ */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000757 while ((int_buf[i] & ~QUOT) == '/'
758 && ((int_buf[i+1] & ~QUOT) == '/' || (int_buf[i+1] & ~QUOT) == '~')
759 ) {
Mark Whitley7e5291f2001-03-08 19:31:12 +0000760 i++;
761 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000762
763 /* set only match and destroy quotes */
764 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000765 for (c = 0; pos_buf[i] >= 0; i++) {
766 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000767 j = pos_buf[i] + 1;
768 }
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000769 matchBuf[c] = '\0';
Denis Vlasenkof74194e2007-10-18 12:54:39 +0000770 /* old length matchBuf with quotes symbols */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000771 *len_with_quotes = j ? j - pos_buf[0] : 0;
772
773 return command_mode;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000774#undef int_buf
775#undef pos_buf
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000776}
777
Glenn L McGrath4d001292003-01-06 01:11:50 +0000778/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000779 * display by column (original idea from ls applet,
780 * very optimized by me :)
781 */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000782static void showfiles(void)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000783{
784 int ncols, row;
785 int column_width = 0;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000786 int nfiles = num_matches;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000787 int nrows = nfiles;
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000788 int l;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000789
790 /* find the longest file name- use that as the column width */
791 for (row = 0; row < nrows; row++) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000792 l = strlen(matches[row]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000793 if (column_width < l)
794 column_width = l;
795 }
796 column_width += 2; /* min space for columns */
797 ncols = cmdedit_termw / column_width;
798
799 if (ncols > 1) {
800 nrows /= ncols;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000801 if (nfiles % ncols)
Glenn L McGrath4d001292003-01-06 01:11:50 +0000802 nrows++; /* round up fractionals */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000803 } else {
804 ncols = 1;
805 }
806 for (row = 0; row < nrows; row++) {
807 int n = row;
808 int nc;
809
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000810 for (nc = 1; nc < ncols && n+nrows < nfiles; n += nrows, nc++) {
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000811 printf("%s%-*s", matches[n],
Mike Frysinger57ec5742006-12-28 21:41:09 +0000812 (int)(column_width - strlen(matches[n])), "");
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000813 }
Denis Vlasenkofeb7ae72007-10-01 12:05:12 +0000814 puts(matches[n]);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000815 }
816}
817
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000818static char *add_quote_for_spec_chars(char *found)
819{
820 int l = 0;
821 char *s = xmalloc((strlen(found) + 1) * 2);
822
823 while (*found) {
824 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
825 s[l++] = '\\';
826 s[l++] = *found++;
827 }
828 s[l] = 0;
829 return s;
830}
831
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000832/* Do TAB completion */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000833static void input_tab(smallint *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000834{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000835 if (!(state->flags & TAB_COMPLETION))
836 return;
837
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000838 if (!*lastWasTab) {
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000839 char *tmp, *tmp1;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000840 size_t len_found;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000841/* char matchBuf[MAX_LINELEN]; */
842#define matchBuf (S.input_tab__matchBuf)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000843 int find_type;
844 int recalc_pos;
845
Eric Andersenc470f442003-07-28 09:56:35 +0000846 *lastWasTab = TRUE; /* flop trigger */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000847
848 /* Make a local copy of the string -- up
849 * to the position of the cursor */
850 tmp = strncpy(matchBuf, command_ps, cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000851 tmp[cursor] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000852
853 find_type = find_match(matchBuf, &recalc_pos);
854
855 /* Free up any memory already allocated */
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000856 free_tab_completion_data();
Erik Andersenf0657d32000-04-12 17:49:52 +0000857
Denis Vlasenko38f63192007-01-22 09:03:07 +0000858#if ENABLE_FEATURE_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000859 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +0000860 * then try completing this word as a username. */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000861 if (state->flags & USERNAME_COMPLETION)
862 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
863 username_tab_completion(matchBuf, NULL);
Mark Whitley4e338752001-01-26 20:42:23 +0000864#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000865 /* Try to match any executable in our path and everything
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000866 * in the current working directory */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000867 if (!matches)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000868 exe_n_cwd_tab_completion(matchBuf, find_type);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000869 /* Sort, then remove any duplicates found */
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000870 if (matches) {
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000871 unsigned i;
872 int n = 0;
Denis Vlasenkofb290382008-03-02 12:51:26 +0000873 qsort_string_vector(matches, num_matches);
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000874 for (i = 0; i < num_matches - 1; ++i) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000875 if (matches[i] && matches[i+1]) { /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000876 if (strcmp(matches[i], matches[i+1]) == 0) {
877 free(matches[i]);
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000878 matches[i] = NULL; /* paranoia */
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000879 } else {
Denis Vlasenkof58906b2006-12-19 19:30:37 +0000880 matches[n++] = matches[i];
Denis Vlasenko92758142006-10-03 19:56:34 +0000881 }
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000882 }
Denis Vlasenko92758142006-10-03 19:56:34 +0000883 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000884 matches[n] = matches[i];
885 num_matches = n + 1;
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000886 }
Erik Andersenf0657d32000-04-12 17:49:52 +0000887 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000888 if (!matches || num_matches > 1) {
Mark Whitley4e338752001-01-26 20:42:23 +0000889 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000890 if (!matches)
Eric Andersenc470f442003-07-28 09:56:35 +0000891 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000892 /* find minimal match */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000893 tmp1 = xstrdup(matches[0]);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000894 for (tmp = tmp1; *tmp; tmp++)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000895 for (len_found = 1; len_found < num_matches; len_found++)
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000896 if (matches[len_found][(tmp - tmp1)] != *tmp) {
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000897 *tmp = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000898 break;
899 }
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000900 if (*tmp1 == '\0') { /* have unique */
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000901 free(tmp1);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000902 return;
903 }
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000904 tmp = add_quote_for_spec_chars(tmp1);
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000905 free(tmp1);
Eric Andersenc470f442003-07-28 09:56:35 +0000906 } else { /* one match */
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000907 tmp = add_quote_for_spec_chars(matches[0]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000908 /* for next completion current found */
909 *lastWasTab = FALSE;
Denis Vlasenkod56b47f2006-12-21 22:24:46 +0000910
911 len_found = strlen(tmp);
912 if (tmp[len_found-1] != '/') {
913 tmp[len_found] = ' ';
914 tmp[len_found+1] = '\0';
915 }
Mark Whitley4e338752001-01-26 20:42:23 +0000916 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000917 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +0000918 /* have space to placed match? */
Denis Vlasenkoe8a07882007-06-10 15:08:44 +0000919 if ((len_found - strlen(matchBuf) + command_len) < MAX_LINELEN) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000920 /* before word for match */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000921 command_ps[cursor - recalc_pos] = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000922 /* save tail line */
923 strcpy(matchBuf, command_ps + cursor);
924 /* add match */
925 strcat(command_ps, tmp);
926 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +0000927 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000928 /* back to begin word for match */
929 input_backward(recalc_pos);
930 /* new pos */
931 recalc_pos = cursor + len_found;
932 /* new len */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000933 command_len = strlen(command_ps);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000934 /* write out the matched command */
Denis Vlasenko253ce002007-01-22 08:34:44 +0000935 redraw(cmdedit_y, command_len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +0000936 }
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000937 free(tmp);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +0000938#undef matchBuf
Erik Andersenf0657d32000-04-12 17:49:52 +0000939 } else {
940 /* Ok -- the last char was a TAB. Since they
941 * just hit TAB again, print a list of all the
942 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000943 if (matches && num_matches > 0) {
Eric Andersenc470f442003-07-28 09:56:35 +0000944 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +0000945
946 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +0000947 goto_new_line();
"Vladimir N. Oleynik"fdb871c2006-01-25 11:53:47 +0000948 showfiles();
Denis Vlasenko253ce002007-01-22 08:34:44 +0000949 redraw(0, command_len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +0000950 }
951 }
952}
Denis Vlasenko5592fac2007-01-21 19:19:46 +0000953
Denis Vlasenko7f1dc212006-12-19 01:10:25 +0000954#endif /* FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +0000955
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000956
Denis Vlasenko9d4533e2006-11-02 22:09:37 +0000957#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +0000958
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000959/* state->flags is already checked to be nonzero */
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000960static void get_previous_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000961{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000962 if (command_ps[0] != '\0' || state->history[state->cur_history] == NULL) {
963 free(state->history[state->cur_history]);
964 state->history[state->cur_history] = xstrdup(command_ps);
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000965 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000966 state->cur_history--;
Erik Andersenf0657d32000-04-12 17:49:52 +0000967}
968
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000969static int get_next_history(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000970{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000971 if (state->flags & DO_HISTORY) {
972 int ch = state->cur_history;
973 if (ch < state->cnt_history) {
974 get_previous_history(); /* save the current history line */
975 state->cur_history = ch + 1;
976 return state->cur_history;
977 }
Glenn L McGrath062c74f2002-11-27 09:29:49 +0000978 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000979 beep();
980 return 0;
Erik Andersenf0657d32000-04-12 17:49:52 +0000981}
Robert Griebl350d26b2002-12-03 22:45:46 +0000982
Denis Vlasenko38f63192007-01-22 09:03:07 +0000983#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko8e1c7152007-01-22 07:21:38 +0000984/* state->flags is already checked to be nonzero */
Denis Vlasenko769d1e02007-01-22 23:04:27 +0000985static void load_history(const char *fromfile)
Glenn L McGrathfdbbb042002-12-09 11:10:40 +0000986{
Robert Griebl350d26b2002-12-03 22:45:46 +0000987 FILE *fp;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +0000988 int hi;
Robert Griebl350d26b2002-12-03 22:45:46 +0000989
Denis Vlasenko08ec67b2008-03-26 13:32:30 +0000990 /* NB: do not trash old history if file can't be opened */
Robert Griebl350d26b2002-12-03 22:45:46 +0000991
Denis Vlasenko0a8a7742006-12-21 22:27:10 +0000992 fp = fopen(fromfile, "r");
993 if (fp) {
Denis Vlasenko08ec67b2008-03-26 13:32:30 +0000994 /* clean up old history */
995 for (hi = state->cnt_history; hi > 0;) {
996 hi--;
997 free(state->history[hi]);
998 }
999
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001000 for (hi = 0; hi < MAX_HISTORY;) {
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001001 char *hl = xmalloc_fgetline(fp);
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001002 int l;
1003
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001004 if (!hl)
Robert Griebl350d26b2002-12-03 22:45:46 +00001005 break;
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001006 l = strlen(hl);
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001007 if (l >= MAX_LINELEN)
1008 hl[MAX_LINELEN-1] = '\0';
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001009 if (l == 0 || hl[0] == ' ') {
Glenn L McGrathfdbbb042002-12-09 11:10:40 +00001010 free(hl);
1011 continue;
1012 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001013 state->history[hi++] = hl;
Robert Griebl350d26b2002-12-03 22:45:46 +00001014 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001015 fclose(fp);
Denis Vlasenko08ec67b2008-03-26 13:32:30 +00001016 state->cur_history = state->cnt_history = hi;
Robert Griebl350d26b2002-12-03 22:45:46 +00001017 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001018}
1019
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001020/* state->flags is already checked to be nonzero */
Denis Vlasenko769d1e02007-01-22 23:04:27 +00001021static void save_history(const char *tofile)
Robert Griebl350d26b2002-12-03 22:45:46 +00001022{
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001023 FILE *fp;
Eric Andersenc470f442003-07-28 09:56:35 +00001024
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001025 fp = fopen(tofile, "w");
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001026 if (fp) {
Robert Griebl350d26b2002-12-03 22:45:46 +00001027 int i;
Eric Andersenc470f442003-07-28 09:56:35 +00001028
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001029 for (i = 0; i < state->cnt_history; i++) {
1030 fprintf(fp, "%s\n", state->history[i]);
Robert Griebl350d26b2002-12-03 22:45:46 +00001031 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001032 fclose(fp);
Robert Griebl350d26b2002-12-03 22:45:46 +00001033 }
Robert Griebl350d26b2002-12-03 22:45:46 +00001034}
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001035#else
1036#define load_history(a) ((void)0)
1037#define save_history(a) ((void)0)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001038#endif /* FEATURE_COMMAND_SAVEHISTORY */
Robert Griebl350d26b2002-12-03 22:45:46 +00001039
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001040static void remember_in_history(const char *str)
1041{
1042 int i;
1043
1044 if (!(state->flags & DO_HISTORY))
1045 return;
1046
1047 i = state->cnt_history;
1048 free(state->history[MAX_HISTORY]);
1049 state->history[MAX_HISTORY] = NULL;
1050 /* After max history, remove the oldest command */
1051 if (i >= MAX_HISTORY) {
1052 free(state->history[0]);
1053 for (i = 0; i < MAX_HISTORY-1; i++)
1054 state->history[i] = state->history[i+1];
1055 }
1056// Maybe "if (!i || strcmp(history[i-1], command) != 0) ..."
1057// (i.e. do not save dups?)
1058 state->history[i++] = xstrdup(str);
1059 state->cur_history = i;
1060 state->cnt_history = i;
Denis Vlasenko09221922007-04-15 13:21:01 +00001061#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001062 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001063 save_history(state->hist_file);
Denis Vlasenko09221922007-04-15 13:21:01 +00001064#endif
Denis Vlasenko38f63192007-01-22 09:03:07 +00001065 USE_FEATURE_EDITING_FANCY_PROMPT(num_ok_lines++;)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001066}
1067
1068#else /* MAX_HISTORY == 0 */
1069#define remember_in_history(a) ((void)0)
1070#endif /* MAX_HISTORY */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001071
1072
Erik Andersen6273f652000-03-17 01:12:41 +00001073/*
1074 * This function is used to grab a character buffer
1075 * from the input file descriptor and allows you to
Eric Andersen9b3ce772004-04-12 15:03:51 +00001076 * a string with full command editing (sort of like
Erik Andersen6273f652000-03-17 01:12:41 +00001077 * a mini readline).
1078 *
1079 * The following standard commands are not implemented:
1080 * ESC-b -- Move back one word
1081 * ESC-f -- Move forward one word
1082 * ESC-d -- Delete back one word
1083 * ESC-h -- Delete forward one word
1084 * CTL-t -- Transpose two characters
1085 *
Paul Fox3f11b1b2005-08-04 19:04:46 +00001086 * Minimalist vi-style command line editing available if configured.
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001087 * vi mode implemented 2005 by Paul Fox <pgf@foxharp.boston.ma.us>
Erik Andersen6273f652000-03-17 01:12:41 +00001088 */
Eric Andersenc470f442003-07-28 09:56:35 +00001089
Denis Vlasenko38f63192007-01-22 09:03:07 +00001090#if ENABLE_FEATURE_EDITING_VI
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001091static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001092vi_Word_motion(char *command, int eat)
1093{
Denis Vlasenko253ce002007-01-22 08:34:44 +00001094 while (cursor < command_len && !isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001095 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001096 if (eat) while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001097 input_forward();
1098}
1099
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001100static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001101vi_word_motion(char *command, int eat)
1102{
1103 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001104 while (cursor < command_len
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001105 && (isalnum(command[cursor+1]) || command[cursor+1] == '_'))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001106 input_forward();
1107 } else if (ispunct(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001108 while (cursor < command_len && ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001109 input_forward();
1110 }
1111
Denis Vlasenko253ce002007-01-22 08:34:44 +00001112 if (cursor < command_len)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001113 input_forward();
1114
Denis Vlasenko253ce002007-01-22 08:34:44 +00001115 if (eat && cursor < command_len && isspace(command[cursor]))
1116 while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001117 input_forward();
1118}
1119
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001120static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001121vi_End_motion(char *command)
1122{
1123 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001124 while (cursor < command_len && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001125 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001126 while (cursor < command_len-1 && !isspace(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001127 input_forward();
1128}
1129
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001130static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001131vi_end_motion(char *command)
1132{
Denis Vlasenko253ce002007-01-22 08:34:44 +00001133 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001134 return;
1135 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001136 while (cursor < command_len-1 && isspace(command[cursor]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001137 input_forward();
Denis Vlasenko253ce002007-01-22 08:34:44 +00001138 if (cursor >= command_len-1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001139 return;
1140 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001141 while (cursor < command_len-1
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001142 && (isalnum(command[cursor+1]) || command[cursor+1] == '_')
1143 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001144 input_forward();
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001145 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001146 } else if (ispunct(command[cursor])) {
Denis Vlasenko253ce002007-01-22 08:34:44 +00001147 while (cursor < command_len-1 && ispunct(command[cursor+1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001148 input_forward();
1149 }
1150}
1151
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001152static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001153vi_Back_motion(char *command)
1154{
1155 while (cursor > 0 && isspace(command[cursor-1]))
1156 input_backward(1);
1157 while (cursor > 0 && !isspace(command[cursor-1]))
1158 input_backward(1);
1159}
1160
"Vladimir N. Oleynik"e4baaa22005-09-22 12:59:26 +00001161static void
Paul Fox3f11b1b2005-08-04 19:04:46 +00001162vi_back_motion(char *command)
1163{
1164 if (cursor <= 0)
1165 return;
1166 input_backward(1);
1167 while (cursor > 0 && isspace(command[cursor]))
1168 input_backward(1);
1169 if (cursor <= 0)
1170 return;
1171 if (isalnum(command[cursor]) || command[cursor] == '_') {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001172 while (cursor > 0
1173 && (isalnum(command[cursor-1]) || command[cursor-1] == '_')
1174 ) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001175 input_backward(1);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001176 }
Paul Fox3f11b1b2005-08-04 19:04:46 +00001177 } else if (ispunct(command[cursor])) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001178 while (cursor > 0 && ispunct(command[cursor-1]))
Paul Fox3f11b1b2005-08-04 19:04:46 +00001179 input_backward(1);
1180 }
1181}
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001182#endif
1183
1184
1185/*
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001186 * read_line_input and its helpers
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001187 */
1188
Denis Vlasenko38f63192007-01-22 09:03:07 +00001189#if !ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001190static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001191{
1192 cmdedit_prompt = prmt_ptr;
1193 cmdedit_prmt_len = strlen(prmt_ptr);
1194 put_prompt();
1195}
1196#else
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001197static void parse_and_put_prompt(const char *prmt_ptr)
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001198{
1199 int prmt_len = 0;
1200 size_t cur_prmt_len = 0;
1201 char flg_not_length = '[';
1202 char *prmt_mem_ptr = xzalloc(1);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001203 char *cwd_buf = xrealloc_getcwd_or_warn(NULL);
1204 char cbuf[2];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001205 char c;
1206 char *pbuf;
1207
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001208 cmdedit_prmt_len = 0;
1209
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001210 if (!cwd_buf) {
1211 cwd_buf = (char *)bb_msg_unknown;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001212 }
1213
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001214 cbuf[1] = '\0'; /* never changes */
1215
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001216 while (*prmt_ptr) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001217 char *free_me = NULL;
1218
1219 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001220 c = *prmt_ptr++;
1221 if (c == '\\') {
1222 const char *cp = prmt_ptr;
1223 int l;
1224
1225 c = bb_process_escape_sequence(&prmt_ptr);
1226 if (prmt_ptr == cp) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001227 if (*cp == '\0')
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001228 break;
1229 c = *prmt_ptr++;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001230
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001231 switch (c) {
1232#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1233 case 'u':
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001234 pbuf = user_buf ? user_buf : (char*)"";
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001235 break;
1236#endif
1237 case 'h':
Denis Vlasenko6f1713f2008-02-25 23:23:58 +00001238 pbuf = free_me = safe_gethostname();
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001239 *strchrnul(pbuf, '.') = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001240 break;
1241 case '$':
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001242 c = (geteuid() == 0 ? '#' : '$');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001243 break;
1244#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1245 case 'w':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001246 /* /home/user[/something] -> ~[/something] */
1247 pbuf = cwd_buf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001248 l = strlen(home_pwd_buf);
Denis Vlasenko86b29ea2007-09-27 10:17:16 +00001249 if (l != 0
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001250 && strncmp(home_pwd_buf, cwd_buf, l) == 0
1251 && (cwd_buf[l]=='/' || cwd_buf[l]=='\0')
1252 && strlen(cwd_buf + l) < PATH_MAX
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001253 ) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001254 pbuf = free_me = xasprintf("~%s", cwd_buf + l);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001255 }
1256 break;
1257#endif
1258 case 'W':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001259 pbuf = cwd_buf;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +00001260 cp = strrchr(pbuf, '/');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001261 if (cp != NULL && cp != pbuf)
1262 pbuf += (cp-pbuf) + 1;
1263 break;
1264 case '!':
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001265 pbuf = free_me = xasprintf("%d", num_ok_lines);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001266 break;
1267 case 'e': case 'E': /* \e \E = \033 */
1268 c = '\033';
1269 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001270 case 'x': case 'X': {
1271 char buf2[4];
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001272 for (l = 0; l < 3;) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001273 unsigned h;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001274 buf2[l++] = *prmt_ptr;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001275 buf2[l] = '\0';
1276 h = strtoul(buf2, &pbuf, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001277 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001278 buf2[--l] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001279 break;
1280 }
1281 prmt_ptr++;
1282 }
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001283 c = (char)strtoul(buf2, NULL, 16);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001284 if (c == 0)
1285 c = '?';
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001286 pbuf = cbuf;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001287 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001288 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001289 case '[': case ']':
1290 if (c == flg_not_length) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001291 flg_not_length = (flg_not_length == '[' ? ']' : '[');
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001292 continue;
1293 }
1294 break;
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001295 } /* switch */
1296 } /* if */
1297 } /* if */
1298 cbuf[0] = c;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001299 cur_prmt_len = strlen(pbuf);
1300 prmt_len += cur_prmt_len;
1301 if (flg_not_length != ']')
1302 cmdedit_prmt_len += cur_prmt_len;
1303 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Denis Vlasenko7221c8c2007-12-03 10:45:14 +00001304 free(free_me);
1305 } /* while */
1306
1307 if (cwd_buf != (char *)bb_msg_unknown)
1308 free(cwd_buf);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001309 cmdedit_prompt = prmt_mem_ptr;
1310 put_prompt();
1311}
Paul Fox3f11b1b2005-08-04 19:04:46 +00001312#endif
1313
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001314static void cmdedit_setwidth(unsigned w, int redraw_flg)
1315{
1316 cmdedit_termw = w;
1317 if (redraw_flg) {
1318 /* new y for current cursor */
1319 int new_y = (cursor + cmdedit_prmt_len) / w;
1320 /* redraw */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001321 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), command_len - cursor);
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001322 fflush(stdout);
1323 }
1324}
1325
1326static void win_changed(int nsig)
1327{
Denis Vlasenko55995022008-05-18 22:28:26 +00001328 unsigned width;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001329 get_terminal_width_height(0, &width, NULL);
1330 cmdedit_setwidth(width, nsig /* - just a yes/no flag */);
1331 if (nsig == SIGWINCH)
1332 signal(SIGWINCH, win_changed); /* rearm ourself */
1333}
1334
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001335/*
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001336 * The emacs and vi modes share much of the code in the big
1337 * command loop. Commands entered when in vi's command mode (aka
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001338 * "escape mode") get an extra bit added to distinguish them --
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001339 * this keeps them from being self-inserted. This clutters the
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001340 * big switch a bit, but keeps all the code in one place.
Paul Fox3f11b1b2005-08-04 19:04:46 +00001341 */
1342
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001343#define vbit 0x100
1344
1345/* leave out the "vi-mode"-only case labels if vi editing isn't
1346 * configured. */
Denis Vlasenko38f63192007-01-22 09:03:07 +00001347#define vi_case(caselabel) USE_FEATURE_EDITING(case caselabel)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001348
1349/* convert uppercase ascii to equivalent control char, for readability */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001350#undef CTRL
1351#define CTRL(a) ((a) & ~0x40)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001352
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001353/* Returns:
Denis Vlasenko80667e32008-02-02 18:35:55 +00001354 * -1 on read errors or EOF, or on bare Ctrl-D,
1355 * 0 on ctrl-C (the line entered is still returned in 'command'),
Denis Vlasenko6a5377a2007-09-25 18:35:28 +00001356 * >0 length of input string, including terminating '\n'
1357 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001358int FAST_FUNC read_line_input(const char *prompt, char *command, int maxsize, line_input_t *st)
Erik Andersen13456d12000-03-16 08:09:57 +00001359{
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001360#if ENABLE_FEATURE_TAB_COMPLETION
1361 smallint lastWasTab = FALSE;
1362#endif
Denis Vlasenko55995022008-05-18 22:28:26 +00001363 unsigned ic;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001364 unsigned char c;
1365 smallint break_out = 0;
Denis Vlasenko38f63192007-01-22 09:03:07 +00001366#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001367 smallint vi_cmdmode = 0;
1368 smalluint prevc;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001369#endif
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001370 struct termios initial_settings;
1371 struct termios new_settings;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001372
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001373 INIT_S();
1374
1375 if (tcgetattr(STDIN_FILENO, &initial_settings) < 0
1376 || !(initial_settings.c_lflag & ECHO)
1377 ) {
1378 /* Happens when e.g. stty -echo was run before */
1379 int len;
1380 parse_and_put_prompt(prompt);
Denis Vlasenko037576d2007-10-20 18:30:38 +00001381 fflush(stdout);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00001382 if (fgets(command, maxsize, stdin) == NULL)
1383 len = -1; /* EOF or error */
1384 else
1385 len = strlen(command);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001386 DEINIT_S();
1387 return len;
Denis Vlasenko037576d2007-10-20 18:30:38 +00001388 }
1389
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001390// FIXME: audit & improve this
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001391 if (maxsize > MAX_LINELEN)
1392 maxsize = MAX_LINELEN;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001393
1394 /* With null flags, no other fields are ever used */
Denis Vlasenko703e2022007-01-22 14:12:08 +00001395 state = st ? st : (line_input_t*) &const_int_0;
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001396#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenkobf3561f2007-04-14 10:10:40 +00001397 if ((state->flags & SAVE_HISTORY) && state->hist_file)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001398 load_history(state->hist_file);
Denis Vlasenkoe968fcd2007-02-03 02:42:47 +00001399#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001400
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001401 /* prepare before init handlers */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001402 cmdedit_y = 0; /* quasireal y, not true if line > xt*yt */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001403 command_len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001404 command_ps = command;
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001405 command[0] = '\0';
Mark Whitley4e338752001-01-26 20:42:23 +00001406
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001407 new_settings = initial_settings;
Eric Andersen34506362001-08-02 05:02:46 +00001408 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1409 /* Turn off echoing and CTRL-C, so we can trap it */
1410 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001411 /* Hmm, in linux c_cc[] is not parsed if ICANON is off */
Eric Andersen34506362001-08-02 05:02:46 +00001412 new_settings.c_cc[VMIN] = 1;
1413 new_settings.c_cc[VTIME] = 0;
1414 /* Turn off CTRL-C, so we can trap it */
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001415#ifndef _POSIX_VDISABLE
1416#define _POSIX_VDISABLE '\0'
1417#endif
Eric Andersenc470f442003-07-28 09:56:35 +00001418 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001419 tcsetattr(STDIN_FILENO, TCSANOW, &new_settings);
Erik Andersen13456d12000-03-16 08:09:57 +00001420
Eric Andersen6faae7d2001-02-16 20:09:17 +00001421 /* Now initialize things */
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001422 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
1423 win_changed(0); /* do initial resizing */
1424#if ENABLE_FEATURE_GETUSERNAME_AND_HOMEDIR
1425 {
1426 struct passwd *entry;
1427
1428 entry = getpwuid(geteuid());
1429 if (entry) {
1430 user_buf = xstrdup(entry->pw_name);
1431 home_pwd_buf = xstrdup(entry->pw_dir);
1432 }
1433 }
1434#endif
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001435 /* Print out the command prompt */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001436 parse_and_put_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001437
Erik Andersenc7c634b2000-03-19 05:28:55 +00001438 while (1) {
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001439 fflush(NULL);
Mark Whitley4e338752001-01-26 20:42:23 +00001440
Denis Vlasenkoe376d452008-02-20 22:23:24 +00001441 if (nonblock_safe_read(STDIN_FILENO, &c, 1) < 1) {
Eric Andersened424db2001-04-23 15:28:28 +00001442 /* if we can't read input then exit */
1443 goto prepare_to_die;
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001444 }
Erik Andersenf3b3d172000-04-09 18:24:05 +00001445
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001446 ic = c;
1447
Denis Vlasenko38f63192007-01-22 09:03:07 +00001448#if ENABLE_FEATURE_EDITING_VI
Paul Fox3f11b1b2005-08-04 19:04:46 +00001449 newdelflag = 1;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001450 if (vi_cmdmode)
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001451 ic |= vbit;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001452#endif
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001453 switch (ic) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001454 case '\n':
1455 case '\r':
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001456 vi_case('\n'|vbit:)
1457 vi_case('\r'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001458 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001459 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001460 break_out = 1;
1461 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001462 case CTRL('A'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001463 vi_case('0'|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001464 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001465 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001466 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001467 case CTRL('B'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001468 vi_case('h'|vbit:)
1469 vi_case('\b'|vbit:)
1470 vi_case('\x7f'|vbit:) /* DEL */
Erik Andersenf0657d32000-04-12 17:49:52 +00001471 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001472 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001473 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001474 case CTRL('C'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001475 vi_case(CTRL('C')|vbit:)
Eric Andersen86349772000-12-18 20:25:50 +00001476 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001477 goto_new_line();
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001478 command_len = 0;
1479 break_out = -1; /* "do not append '\n'" */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001480 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001481 case CTRL('D'):
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001482 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001483 * if the len=0 and no chars to delete */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001484 if (command_len == 0) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001485 errno = 0;
1486 prepare_to_die:
Glenn L McGrath7fc504c2004-02-22 11:13:28 +00001487 /* to control stopped jobs */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001488 break_out = command_len = -1;
Eric Andersen044228d2001-07-17 01:12:36 +00001489 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001490 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001491 input_delete(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001492 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001493
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001494 case CTRL('E'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001495 vi_case('$'|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001496 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001497 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001498 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001499 case CTRL('F'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001500 vi_case('l'|vbit:)
1501 vi_case(' '|vbit:)
Erik Andersenc7c634b2000-03-19 05:28:55 +00001502 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001503 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001504 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001505
Erik Andersenf0657d32000-04-12 17:49:52 +00001506 case '\b':
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001507 case '\x7f': /* DEL */
Erik Andersen1d1d9502000-04-21 01:26:49 +00001508 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001509 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001510 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001511
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001512#if ENABLE_FEATURE_TAB_COMPLETION
Erik Andersenc7c634b2000-03-19 05:28:55 +00001513 case '\t':
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001514 input_tab(&lastWasTab);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001515 break;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001516#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001517
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001518 case CTRL('K'):
Eric Andersenc470f442003-07-28 09:56:35 +00001519 /* Control-k -- clear to end of line */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001520 command[cursor] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001521 command_len = cursor;
Eric Andersenae103612002-04-24 23:08:23 +00001522 printf("\033[J");
Eric Andersen65a07302002-04-13 13:26:49 +00001523 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001524 case CTRL('L'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001525 vi_case(CTRL('L')|vbit:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001526 /* Control-l -- clear screen */
Eric Andersenc470f442003-07-28 09:56:35 +00001527 printf("\033[H");
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001528 redraw(0, command_len - cursor);
Eric Andersenf1f2bd02001-12-21 11:20:15 +00001529 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001530
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001531#if MAX_HISTORY > 0
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001532 case CTRL('N'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001533 vi_case(CTRL('N')|vbit:)
1534 vi_case('j'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001535 /* Control-n -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001536 if (get_next_history())
Erik Andersenf0657d32000-04-12 17:49:52 +00001537 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001538 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001539 case CTRL('P'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001540 vi_case(CTRL('P')|vbit:)
1541 vi_case('k'|vbit:)
Erik Andersenf0657d32000-04-12 17:49:52 +00001542 /* Control-p -- Get previous command from history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001543 if ((state->flags & DO_HISTORY) && state->cur_history > 0) {
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001544 get_previous_history();
Erik Andersenf0657d32000-04-12 17:49:52 +00001545 goto rewrite_line;
Erik Andersenf0657d32000-04-12 17:49:52 +00001546 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001547 beep();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001548 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001549#endif
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001550
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001551 case CTRL('U'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001552 vi_case(CTRL('U')|vbit:)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001553 /* Control-U -- Clear line before cursor */
1554 if (cursor) {
1555 strcpy(command, command + cursor);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001556 command_len -= cursor;
1557 redraw(cmdedit_y, command_len);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001558 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001559 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001560 case CTRL('W'):
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001561 vi_case(CTRL('W')|vbit:)
Eric Andersen27bb7902003-12-23 20:24:51 +00001562 /* Control-W -- Remove the last word */
1563 while (cursor > 0 && isspace(command[cursor-1]))
1564 input_backspace();
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001565 while (cursor > 0 && !isspace(command[cursor-1]))
Eric Andersen27bb7902003-12-23 20:24:51 +00001566 input_backspace();
1567 break;
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001568
Denis Vlasenko38f63192007-01-22 09:03:07 +00001569#if ENABLE_FEATURE_EDITING_VI
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001570 case 'i'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001571 vi_cmdmode = 0;
1572 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001573 case 'I'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001574 input_backward(cursor);
1575 vi_cmdmode = 0;
1576 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001577 case 'a'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001578 input_forward();
1579 vi_cmdmode = 0;
1580 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001581 case 'A'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001582 input_end();
1583 vi_cmdmode = 0;
1584 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001585 case 'x'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001586 input_delete(1);
1587 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001588 case 'X'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001589 if (cursor > 0) {
1590 input_backward(1);
1591 input_delete(1);
1592 }
1593 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001594 case 'W'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001595 vi_Word_motion(command, 1);
1596 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001597 case 'w'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001598 vi_word_motion(command, 1);
1599 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001600 case 'E'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001601 vi_End_motion(command);
1602 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001603 case 'e'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001604 vi_end_motion(command);
1605 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001606 case 'B'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001607 vi_Back_motion(command);
1608 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001609 case 'b'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001610 vi_back_motion(command);
1611 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001612 case 'C'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001613 vi_cmdmode = 0;
1614 /* fall through */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001615 case 'D'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001616 goto clear_to_eol;
1617
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001618 case 'c'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001619 vi_cmdmode = 0;
1620 /* fall through */
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001621 case 'd'|vbit: {
1622 int nc, sc;
1623 sc = cursor;
1624 prevc = ic;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001625 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001626 goto prepare_to_die;
1627 if (c == (prevc & 0xff)) {
1628 /* "cc", "dd" */
1629 input_backward(cursor);
1630 goto clear_to_eol;
1631 break;
1632 }
1633 switch (c) {
1634 case 'w':
1635 case 'W':
1636 case 'e':
1637 case 'E':
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001638 switch (c) {
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001639 case 'w': /* "dw", "cw" */
1640 vi_word_motion(command, vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001641 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001642 case 'W': /* 'dW', 'cW' */
1643 vi_Word_motion(command, vi_cmdmode);
Denis Vlasenko92758142006-10-03 19:56:34 +00001644 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001645 case 'e': /* 'de', 'ce' */
1646 vi_end_motion(command);
1647 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001648 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001649 case 'E': /* 'dE', 'cE' */
1650 vi_End_motion(command);
1651 input_forward();
Denis Vlasenko92758142006-10-03 19:56:34 +00001652 break;
1653 }
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001654 nc = cursor;
1655 input_backward(cursor - sc);
1656 while (nc-- > cursor)
1657 input_delete(1);
1658 break;
1659 case 'b': /* "db", "cb" */
1660 case 'B': /* implemented as B */
1661 if (c == 'b')
1662 vi_back_motion(command);
1663 else
1664 vi_Back_motion(command);
1665 while (sc-- > cursor)
1666 input_delete(1);
1667 break;
1668 case ' ': /* "d ", "c " */
1669 input_delete(1);
1670 break;
1671 case '$': /* "d$", "c$" */
1672 clear_to_eol:
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001673 while (cursor < command_len)
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001674 input_delete(1);
1675 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001676 }
1677 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001678 }
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001679 case 'p'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001680 input_forward();
1681 /* fallthrough */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001682 case 'P'|vbit:
Paul Fox3f11b1b2005-08-04 19:04:46 +00001683 put();
1684 break;
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001685 case 'r'|vbit:
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001686 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Paul Fox3f11b1b2005-08-04 19:04:46 +00001687 goto prepare_to_die;
1688 if (c == 0)
1689 beep();
1690 else {
1691 *(command + cursor) = c;
Denis Vlasenko4daad902007-09-27 10:20:47 +00001692 bb_putchar(c);
1693 bb_putchar('\b');
Paul Fox3f11b1b2005-08-04 19:04:46 +00001694 }
1695 break;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001696#endif /* FEATURE_COMMAND_EDITING_VI */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001697
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001698 case '\x1b': /* ESC */
Paul Fox0f2dd9f2006-03-07 20:26:11 +00001699
Denis Vlasenko38f63192007-01-22 09:03:07 +00001700#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001701 if (state->flags & VI_MODE) {
Paul Fox3f11b1b2005-08-04 19:04:46 +00001702 /* ESC: insert mode --> command mode */
1703 vi_cmdmode = 1;
1704 input_backward(1);
1705 break;
1706 }
1707#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001708 /* escape sequence follows */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001709 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001710 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001711 /* different vt100 emulations */
1712 if (c == '[' || c == 'O') {
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001713 vi_case('['|vbit:)
1714 vi_case('O'|vbit:)
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001715 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001716 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001717 }
Glenn L McGrath475820c2004-01-22 12:42:23 +00001718 if (c >= '1' && c <= '9') {
1719 unsigned char dummy;
1720
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001721 if (safe_read(STDIN_FILENO, &dummy, 1) < 1)
Glenn L McGrath475820c2004-01-22 12:42:23 +00001722 goto prepare_to_die;
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001723 if (dummy != '~')
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001724 c = '\0';
Glenn L McGrath475820c2004-01-22 12:42:23 +00001725 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001726
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001727 switch (c) {
Denis Vlasenko38f63192007-01-22 09:03:07 +00001728#if ENABLE_FEATURE_TAB_COMPLETION
Eric Andersenc470f442003-07-28 09:56:35 +00001729 case '\t': /* Alt-Tab */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001730 input_tab(&lastWasTab);
1731 break;
1732#endif
Denis Vlasenko9d4533e2006-11-02 22:09:37 +00001733#if MAX_HISTORY > 0
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001734 case 'A':
1735 /* Up Arrow -- Get previous command from history */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001736 if ((state->flags & DO_HISTORY) && state->cur_history > 0) {
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001737 get_previous_history();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001738 goto rewrite_line;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001739 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001740 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001741 break;
1742 case 'B':
1743 /* Down Arrow -- Get next command in history */
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001744 if (!get_next_history())
Paul Fox3f11b1b2005-08-04 19:04:46 +00001745 break;
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001746 rewrite_line:
Denis Vlasenko47bdb3a2007-01-21 19:18:59 +00001747 /* Rewrite the line with the selected history item */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001748 /* change command */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001749 command_len = strlen(strcpy(command, state->history[state->cur_history]));
Paul Fox3f11b1b2005-08-04 19:04:46 +00001750 /* redraw and go to eol (bol, in vi */
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001751 redraw(cmdedit_y, (state->flags & VI_MODE) ? 9999 : 0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001752 break;
Glenn L McGrath062c74f2002-11-27 09:29:49 +00001753#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001754 case 'C':
1755 /* Right Arrow -- Move forward one character */
1756 input_forward();
1757 break;
1758 case 'D':
1759 /* Left Arrow -- Move back one character */
1760 input_backward(1);
1761 break;
1762 case '3':
1763 /* Delete */
Paul Fox3f11b1b2005-08-04 19:04:46 +00001764 input_delete(0);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001765 break;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001766 case '1': // vt100? linux vt? or what?
1767 case '7': // vt100? linux vt? or what?
1768 case 'H': /* xterm's <Home> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001769 input_backward(cursor);
1770 break;
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001771 case '4': // vt100? linux vt? or what?
1772 case '8': // vt100? linux vt? or what?
1773 case 'F': /* xterm's <End> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001774 input_end();
1775 break;
1776 default:
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001777 c = '\0';
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001778 beep();
1779 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001780 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001781
Eric Andersenc470f442003-07-28 09:56:35 +00001782 default: /* If it's regular input, do the normal thing */
Paul Fox84bbac52008-01-11 16:50:08 +00001783
1784 /* Control-V -- force insert of next char */
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001785 if (c == CTRL('V')) {
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001786 if (safe_read(STDIN_FILENO, &c, 1) < 1)
Eric Andersen7467c8d2001-07-12 20:26:32 +00001787 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001788 if (c == 0) {
1789 beep();
1790 break;
1791 }
Paul Fox84bbac52008-01-11 16:50:08 +00001792 }
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001793
Denis Vlasenko38f63192007-01-22 09:03:07 +00001794#if ENABLE_FEATURE_EDITING_VI
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001795 if (vi_cmdmode) /* Don't self-insert */
1796 break;
Paul Fox3f11b1b2005-08-04 19:04:46 +00001797#endif
Denis Vlasenko77ad97f2008-05-13 02:27:31 +00001798 if ((int)command_len >= (maxsize - 2)) /* Need to leave space for enter */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001799 break;
1800
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001801 command_len++;
1802 if (cursor == (command_len - 1)) { /* Append if at the end of the line */
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001803 command[cursor] = c;
1804 command[cursor+1] = '\0';
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001805 cmdedit_set_out_char(' ');
Eric Andersenc470f442003-07-28 09:56:35 +00001806 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001807 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001808
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001809 memmove(command + sc + 1, command + sc, command_len - sc);
Denis Vlasenko00cdbd82007-01-21 19:21:21 +00001810 command[sc] = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001811 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001812 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001813 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001814 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001815 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001816 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001817 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001818 }
Eric Andersenc470f442003-07-28 09:56:35 +00001819 if (break_out) /* Enter is the command terminator, no more input. */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001820 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001821
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001822#if ENABLE_FEATURE_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001823 if (c != '\t')
1824 lastWasTab = FALSE;
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001825#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001826 }
1827
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001828 if (command_len > 0)
1829 remember_in_history(command);
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001830
Eric Andersen27bb7902003-12-23 20:24:51 +00001831 if (break_out > 0) {
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001832 command[command_len++] = '\n';
1833 command[command_len] = '\0';
Eric Andersen044228d2001-07-17 01:12:36 +00001834 }
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001835
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001836#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko5592fac2007-01-21 19:19:46 +00001837 free_tab_completion_data();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001838#endif
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001839
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001840 /* restore initial_settings */
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001841 tcsetattr(STDIN_FILENO, TCSANOW, &initial_settings);
Denis Vlasenko6258fd32007-01-22 07:30:26 +00001842 /* restore SIGWINCH handler */
1843 signal(SIGWINCH, previous_SIGWINCH_handler);
1844 fflush(stdout);
Denis Vlasenko73cb1fd2007-11-10 01:35:47 +00001845
1846 DEINIT_S();
1847
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001848 return command_len;
1849}
1850
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001851line_input_t* FAST_FUNC new_line_input_t(int flags)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001852{
1853 line_input_t *n = xzalloc(sizeof(*n));
1854 n->flags = flags;
1855 return n;
1856}
1857
1858#else
1859
1860#undef read_line_input
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +00001861int FAST_FUNC read_line_input(const char* prompt, char* command, int maxsize)
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001862{
1863 fputs(prompt, stdout);
1864 fflush(stdout);
1865 fgets(command, maxsize, stdin);
1866 return strlen(command);
Eric Andersen501c88b2000-07-28 15:14:45 +00001867}
1868
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001869#endif /* FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001870
1871
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001872/*
1873 * Testing
1874 */
1875
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001876#ifdef TEST
1877
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001878#include <locale.h>
Denis Vlasenko82b39e82007-01-21 19:18:19 +00001879
1880const char *applet_name = "debug stuff usage";
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001881
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001882int main(int argc, char **argv)
1883{
Denis Vlasenkoe8a07882007-06-10 15:08:44 +00001884 char buff[MAX_LINELEN];
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001885 char *prompt =
Denis Vlasenko38f63192007-01-22 09:03:07 +00001886#if ENABLE_FEATURE_EDITING_FANCY_PROMPT
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001887 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:"
1888 "\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] "
1889 "\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001890#else
1891 "% ";
1892#endif
1893
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001894#if ENABLE_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001895 setlocale(LC_ALL, "");
1896#endif
Denis Vlasenko7f1dc212006-12-19 01:10:25 +00001897 while (1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001898 int l;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001899 l = read_line_input(prompt, buff);
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001900 if (l <= 0 || buff[l-1] != '\n')
Eric Andersen27bb7902003-12-23 20:24:51 +00001901 break;
Denis Vlasenko0a8a7742006-12-21 22:27:10 +00001902 buff[l-1] = 0;
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001903 printf("*** read_line_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001904 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00001905 printf("*** read_line_input() detect ^D\n");
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001906 return 0;
1907}
1908
Eric Andersenc470f442003-07-28 09:56:35 +00001909#endif /* TEST */