blob: 16ec2f823323491ff3cdedad97c073bb5f976d51 [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 Andersen5f2c79d2001-02-16 18:36:04 +00003 * Termios command line History and Editting.
Erik Andersen13456d12000-03-16 08:09:57 +00004 *
Eric Andersen5f2c79d2001-02-16 18:36:04 +00005 * Copyright (c) 1986-2001 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
12 * Erik Andersen <andersee@debian.org> (Majorly adjusted for busybox)
13 *
Erik Andersen13456d12000-03-16 08:09:57 +000014 * This code is 'as is' with no warranty.
Erik Andersen13456d12000-03-16 08:09:57 +000015 *
Erik Andersen13456d12000-03-16 08:09:57 +000016 *
17 */
18
19/*
20 Usage and Known bugs:
21 Terminal key codes are not extensive, and more will probably
22 need to be added. This version was created on Debian GNU/Linux 2.x.
23 Delete, Backspace, Home, End, and the arrow keys were tested
24 to work in an Xterm and console. Ctrl-A also works as Home.
Mark Whitley4e338752001-01-26 20:42:23 +000025 Ctrl-E also works as End.
Erik Andersen13456d12000-03-16 08:09:57 +000026
Eric Andersen5f2c79d2001-02-16 18:36:04 +000027 Small bugs (simple effect):
28 - not true viewing if terminal size (x*y symbols) less
29 size (prompt + editor`s line + 2 symbols)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000030 - not true viewing if length prompt less terminal width
Erik Andersen13456d12000-03-16 08:09:57 +000031 */
32
Mark Whitley4e338752001-01-26 20:42:23 +000033
Eric Andersencbe31da2001-02-20 06:14:08 +000034#include <stdio.h>
35#include <errno.h>
36#include <unistd.h>
37#include <stdlib.h>
38#include <string.h>
39#include <sys/ioctl.h>
40#include <ctype.h>
41#include <signal.h>
42#include <limits.h>
43
Eric Andersen3570a342000-09-25 21:45:58 +000044#include "busybox.h"
Mark Whitley4e338752001-01-26 20:42:23 +000045
Eric Andersene5dfced2001-04-09 22:48:12 +000046#ifdef BB_LOCALE_SUPPORT
47#define Isprint(c) isprint((c))
48#else
49#define Isprint(c) ( (c) >= ' ' && (c) != ((unsigned char)'\233') )
50#endif
51
52#ifndef TEST
53
Eric Andersen5f2c79d2001-02-16 18:36:04 +000054#define D(x)
55
56#else
57
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000058#define BB_FEATURE_COMMAND_EDITING
59#define BB_FEATURE_COMMAND_TAB_COMPLETION
60#define BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen94456f52001-02-18 20:26:48 +000061#define BB_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersen94456f52001-02-18 20:26:48 +000062#define BB_FEATURE_CLEAN_UP
Eric Andersen5f2c79d2001-02-16 18:36:04 +000063
Eric Andersen5f2c79d2001-02-16 18:36:04 +000064#define D(x) x
65
66#endif /* TEST */
67
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000068#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5165fbe2001-02-20 06:42:29 +000069#include <dirent.h>
70#include <sys/stat.h>
71#endif
72
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000073#ifdef BB_FEATURE_COMMAND_EDITING
Erik Andersen13456d12000-03-16 08:09:57 +000074
Eric Andersenb3d6e2d2001-03-13 22:57:56 +000075#ifndef BB_FEATURE_COMMAND_TAB_COMPLETION
76#undef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +000077#endif
78
Eric Andersen004015e2001-05-21 20:30:51 +000079#if defined(BB_FEATURE_COMMAND_USERNAME_COMPLETION) || defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +000080#define BB_FEATURE_GETUSERNAME_AND_HOMEDIR
81#endif
82
Eric Andersen5f2c79d2001-02-16 18:36:04 +000083#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Glenn L McGrath78b0e372001-06-26 02:06:08 +000084# ifndef TEST
85# include "pwd_grp/pwd.h"
86# else
87# include <pwd.h>
88# endif /* TEST */
Eric Andersen5f2c79d2001-02-16 18:36:04 +000089#endif /* advanced FEATURES */
Eric Andersenaf4ac772001-02-01 22:43:49 +000090
91
Eric Andersen5f2c79d2001-02-16 18:36:04 +000092
93struct history {
94 char *s;
95 struct history *p;
96 struct history *n;
Mark Whitley59ab0252001-01-23 22:30:04 +000097};
98
Eric Andersen5f2c79d2001-02-16 18:36:04 +000099/* Maximum length of the linked list for the command line history */
100static const int MAX_HISTORY = 15;
Erik Andersen13456d12000-03-16 08:09:57 +0000101
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000102/* First element in command line list */
103static struct history *his_front = NULL;
104
105/* Last element in command line list */
106static struct history *his_end = NULL;
107
Erik Andersen1d1d9502000-04-21 01:26:49 +0000108
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000109#include <termios.h>
110#define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
111#define getTermSettings(fd,argp) tcgetattr(fd, argp);
Erik Andersen1d1d9502000-04-21 01:26:49 +0000112
113/* Current termio and the previous termio before starting sh */
Eric Andersen63a86222000-11-07 06:52:13 +0000114static struct termios initial_settings, new_settings;
Erik Andersen8ea7d8c2000-05-20 00:40:08 +0000115
116
Mark Whitley4e338752001-01-26 20:42:23 +0000117static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000118volatile int cmdedit_termw = 80; /* actual terminal width */
119static int history_counter = 0; /* Number of commands in history list */
Mark Whitley4e338752001-01-26 20:42:23 +0000120static
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000121volatile int handlers_sets = 0; /* Set next bites: */
122
Mark Whitley4e338752001-01-26 20:42:23 +0000123enum {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000124 SET_ATEXIT = 1, /* when atexit() has been called
125 and get euid,uid,gid to fast compare */
Eric Andersen7467c8d2001-07-12 20:26:32 +0000126 SET_WCHG_HANDLERS = 2, /* winchg signal handler */
127 SET_RESET_TERM = 4, /* if the terminal needs to be reset upon exit */
Mark Whitley4e338752001-01-26 20:42:23 +0000128};
Erik Andersen13456d12000-03-16 08:09:57 +0000129
Mark Whitley4e338752001-01-26 20:42:23 +0000130
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000131static int cmdedit_x; /* real x terminal position */
132static int cmdedit_y; /* pseudoreal y terminal position */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000133static int cmdedit_prmt_len; /* lenght prompt without colores string */
Eric Andersen86349772000-12-18 20:25:50 +0000134
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000135static int cursor; /* required global for signal handler */
136static int len; /* --- "" - - "" - -"- --""-- --""--- */
137static char *command_ps; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000138static
Eric Andersen004015e2001-05-21 20:30:51 +0000139#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000140 const
141#endif
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000142char *cmdedit_prompt; /* --- "" - - "" - -"- --""-- --""--- */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000143
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000144#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
145static char *user_buf = "";
146static char *home_pwd_buf = "";
147static int my_euid;
148#endif
149
Eric Andersen004015e2001-05-21 20:30:51 +0000150#ifdef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000151static char *hostname_buf = "";
152static int num_ok_lines = 1;
153#endif
154
155
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000156#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000157
158#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
159static int my_euid;
160#endif
161
162static int my_uid;
163static int my_gid;
164
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000165#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000166
Eric Andersen95b52012001-08-02 09:52:40 +0000167/* It seems that libc5 doesn't know what a sighandler_t is... */
168#if (__GLIBC__ <= 2) && (__GLIBC_MINOR__ < 1)
169typedef void (*sighandler_t) (int);
170#endif
Erik Andersen13456d12000-03-16 08:09:57 +0000171
Mark Whitley4e338752001-01-26 20:42:23 +0000172static void cmdedit_setwidth(int w, int redraw_flg);
Erik Andersen13456d12000-03-16 08:09:57 +0000173
Mark Whitley4e338752001-01-26 20:42:23 +0000174static void win_changed(int nsig)
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000175{
176 struct winsize win = { 0, 0, 0, 0 };
Eric Andersen8d79ce82001-07-22 23:00:15 +0000177 static sighandler_t previous_SIGWINCH_handler; /* for reset */
Erik Andersen61677fe2000-04-13 01:18:56 +0000178
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000179 /* emulate || signal call */
180 if (nsig == -SIGWINCH || nsig == SIGWINCH) {
Mark Whitley4e338752001-01-26 20:42:23 +0000181 ioctl(0, TIOCGWINSZ, &win);
182 if (win.ws_col > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000183 cmdedit_setwidth(win.ws_col, nsig == SIGWINCH);
184 }
Mark Whitley4e338752001-01-26 20:42:23 +0000185 }
Eric Andersen4bbdd782001-01-30 22:23:17 +0000186 /* Unix not all standart in recall signal */
Mark Whitley4e338752001-01-26 20:42:23 +0000187
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000188 if (nsig == -SIGWINCH) /* save previous handler */
Mark Whitley4e338752001-01-26 20:42:23 +0000189 previous_SIGWINCH_handler = signal(SIGWINCH, win_changed);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000190 else if (nsig == SIGWINCH) /* signaled called handler */
191 signal(SIGWINCH, win_changed); /* set for next call */
192 else /* nsig == 0 */
193 /* set previous handler */
194 signal(SIGWINCH, previous_SIGWINCH_handler); /* reset */
Mark Whitley4e338752001-01-26 20:42:23 +0000195}
Eric Andersenb3dc3b82001-01-04 11:08:45 +0000196
197static void cmdedit_reset_term(void)
Erik Andersen13456d12000-03-16 08:09:57 +0000198{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000199 if ((handlers_sets & SET_RESET_TERM) != 0) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000200/* sparc and other have broken termios support: use old termio handling. */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000201 setTermSettings(fileno(stdin), (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +0000202 handlers_sets &= ~SET_RESET_TERM;
203 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000204 if ((handlers_sets & SET_WCHG_HANDLERS) != 0) {
Mark Whitley4e338752001-01-26 20:42:23 +0000205 /* reset SIGWINCH handler to previous (default) */
206 win_changed(0);
207 handlers_sets &= ~SET_WCHG_HANDLERS;
208 }
209 fflush(stdout);
Eric Andersenb040d4f2000-07-25 18:01:20 +0000210#ifdef BB_FEATURE_CLEAN_UP
211 if (his_front) {
212 struct history *n;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000213
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000214 while (his_front != his_end) {
Eric Andersenb040d4f2000-07-25 18:01:20 +0000215 n = his_front->n;
216 free(his_front->s);
217 free(his_front);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000218 his_front = n;
Eric Andersenb040d4f2000-07-25 18:01:20 +0000219 }
220 }
221#endif
Erik Andersen13456d12000-03-16 08:09:57 +0000222}
223
Mark Whitley4e338752001-01-26 20:42:23 +0000224
Mark Whitley4e338752001-01-26 20:42:23 +0000225/* special for recount position for scroll and remove terminal margin effect */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000226static void cmdedit_set_out_char(int next_char)
227{
228
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000229 int c = (int)((unsigned char) command_ps[cursor]);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000230
231 if (c == 0)
Eric Andersene5dfced2001-04-09 22:48:12 +0000232 c = ' '; /* destroy end char? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000233#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
Eric Andersene5dfced2001-04-09 22:48:12 +0000234 if (!Isprint(c)) { /* Inverse put non-printable characters */
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000235 if (c >= 128)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000236 c -= 128;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000237 if (c < ' ')
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000238 c += '@';
239 if (c == 127)
240 c = '?';
241 printf("\033[7m%c\033[0m", c);
242 } else
243#endif
244 putchar(c);
245 if (++cmdedit_x >= cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000246 /* terminal is scrolled down */
247 cmdedit_y++;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000248 cmdedit_x = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000249
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000250 if (!next_char)
Mark Whitley4e338752001-01-26 20:42:23 +0000251 next_char = ' ';
252 /* destroy "(auto)margin" */
253 putchar(next_char);
254 putchar('\b');
255 }
256 cursor++;
Erik Andersen13456d12000-03-16 08:09:57 +0000257}
258
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000259/* Move to end line. Bonus: rewrite line from cursor */
260static void input_end(void)
261{
262 while (cursor < len)
263 cmdedit_set_out_char(0);
Mark Whitley4e338752001-01-26 20:42:23 +0000264}
265
266/* Go to the next line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000267static void goto_new_line(void)
268{
Mark Whitley4e338752001-01-26 20:42:23 +0000269 input_end();
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000270 if (cmdedit_x)
271 putchar('\n');
Mark Whitley4e338752001-01-26 20:42:23 +0000272}
273
274
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000275static inline void out1str(const char *s)
Erik Andersenf0657d32000-04-12 17:49:52 +0000276{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000277 fputs(s, stdout);
278}
279static inline void beep(void)
280{
281 putchar('\007');
Erik Andersen13456d12000-03-16 08:09:57 +0000282}
283
Mark Whitley4e338752001-01-26 20:42:23 +0000284/* Move back one charactor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000285/* special for slow terminal */
286static void input_backward(int num)
287{
288 if (num > cursor)
289 num = cursor;
Eric Andersene5dfced2001-04-09 22:48:12 +0000290 cursor -= num; /* new cursor (in command, not terminal) */
Erik Andersen13456d12000-03-16 08:09:57 +0000291
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000292 if (cmdedit_x >= num) { /* no to up line */
293 cmdedit_x -= num;
294 if (num < 4)
295 while (num-- > 0)
296 putchar('\b');
297
298 else
299 printf("\033[%dD", num);
300 } else {
301 int count_y;
302
303 if (cmdedit_x) {
304 putchar('\r'); /* back to first terminal pos. */
305 num -= cmdedit_x; /* set previous backward */
306 }
307 count_y = 1 + num / cmdedit_termw;
308 printf("\033[%dA", count_y);
309 cmdedit_y -= count_y;
310 /* require forward after uping */
311 cmdedit_x = cmdedit_termw * count_y - num;
312 printf("\033[%dC", cmdedit_x); /* set term cursor */
Erik Andersen13456d12000-03-16 08:09:57 +0000313 }
Erik Andersen13456d12000-03-16 08:09:57 +0000314}
315
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000316static void put_prompt(void)
317{
318 out1str(cmdedit_prompt);
319 cmdedit_x = cmdedit_prmt_len; /* count real x terminal position */
320 cursor = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +0000321 cmdedit_y = 0; /* new quasireal y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000322}
323
Eric Andersen004015e2001-05-21 20:30:51 +0000324#ifndef BB_FEATURE_SH_FANCY_PROMPT
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000325static void parse_prompt(const char *prmt_ptr)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000326{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000327 cmdedit_prompt = prmt_ptr;
328 cmdedit_prmt_len = strlen(prmt_ptr);
329 put_prompt();
330}
331#else
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000332static void parse_prompt(const char *prmt_ptr)
333{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000334 int prmt_len = 0;
335 int sub_len = 0;
Eric Andersene5dfced2001-04-09 22:48:12 +0000336 char flg_not_length = '[';
337 char *prmt_mem_ptr = xcalloc(1, 1);
338 char *pwd_buf = xgetcwd(0);
339 char buf2[PATH_MAX + 1];
340 char buf[2];
341 char c;
342 char *pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000343
Eric Andersen5f265b72001-05-11 16:58:46 +0000344 if (!pwd_buf) {
Glenn L McGrath78b0e372001-06-26 02:06:08 +0000345 pwd_buf=(char *)unknown;
Eric Andersen5f265b72001-05-11 16:58:46 +0000346 }
347
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000348 while (*prmt_ptr) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000349 pbuf = buf;
350 pbuf[1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000351 c = *prmt_ptr++;
352 if (c == '\\') {
Eric Andersene5dfced2001-04-09 22:48:12 +0000353 const char *cp = prmt_ptr;
354 int l;
355
356 c = process_escape_sequence(&prmt_ptr);
357 if(prmt_ptr==cp) {
358 if (*cp == 0)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000359 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000360 c = *prmt_ptr++;
361 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000362#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000363 case 'u':
364 pbuf = user_buf;
365 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000366#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000367 case 'h':
368 pbuf = hostname_buf;
369 if (*pbuf == 0) {
370 pbuf = xcalloc(256, 1);
371 if (gethostname(pbuf, 255) < 0) {
372 strcpy(pbuf, "?");
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000373 } else {
Eric Andersene5dfced2001-04-09 22:48:12 +0000374 char *s = strchr(pbuf, '.');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000375
376 if (s)
377 *s = 0;
378 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000379 hostname_buf = pbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000380 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000381 break;
382 case '$':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000383 c = my_euid == 0 ? '#' : '$';
384 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000385#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
Eric Andersene5dfced2001-04-09 22:48:12 +0000386 case 'w':
387 pbuf = pwd_buf;
388 l = strlen(home_pwd_buf);
389 if (home_pwd_buf[0] != 0 &&
390 strncmp(home_pwd_buf, pbuf, l) == 0 &&
391 (pbuf[l]=='/' || pbuf[l]=='\0') &&
392 strlen(pwd_buf+l)<PATH_MAX) {
393 pbuf = buf2;
394 *pbuf = '~';
395 strcpy(pbuf+1, pwd_buf+l);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000396 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000397 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000398#endif
Eric Andersene5dfced2001-04-09 22:48:12 +0000399 case 'W':
400 pbuf = pwd_buf;
401 cp = strrchr(pbuf,'/');
402 if ( (cp != NULL) && (cp != pbuf) )
403 pbuf += (cp-pbuf)+1;
404 break;
405 case '!':
406 snprintf(pbuf = buf2, sizeof(buf2), "%d", num_ok_lines);
407 break;
408 case 'e': case 'E': /* \e \E = \033 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000409 c = '\033';
410 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000411 case 'x': case 'X':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000412 for (l = 0; l < 3;) {
Eric Andersene5dfced2001-04-09 22:48:12 +0000413 int h;
414 buf2[l++] = *prmt_ptr;
415 buf2[l] = 0;
416 h = strtol(buf2, &pbuf, 16);
417 if (h > UCHAR_MAX || (pbuf - buf2) < l) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000418 l--;
419 break;
420 }
421 prmt_ptr++;
422 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000423 buf2[l] = 0;
424 c = (char)strtol(buf2, 0, 16);
425 if(c==0)
426 c = '?';
427 pbuf = buf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000428 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000429 case '[': case ']':
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000430 if (c == flg_not_length) {
431 flg_not_length = flg_not_length == '[' ? ']' : '[';
432 continue;
433 }
434 break;
Eric Andersene5dfced2001-04-09 22:48:12 +0000435 }
436 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000437 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000438 if(pbuf == buf)
439 *pbuf = c;
440 prmt_len += strlen(pbuf);
441 prmt_mem_ptr = strcat(xrealloc(prmt_mem_ptr, prmt_len+1), pbuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000442 if (flg_not_length == ']')
443 sub_len++;
444 }
Eric Andersen8f697842001-07-02 15:36:57 +0000445 if(pwd_buf!=(char *)unknown)
446 free(pwd_buf);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000447 cmdedit_prompt = prmt_mem_ptr;
Eric Andersenf9ff8a72001-03-15 20:51:09 +0000448 cmdedit_prmt_len = prmt_len - sub_len;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000449 put_prompt();
450}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000451#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000452
453
454/* draw promt, editor line, and clear tail */
455static void redraw(int y, int back_cursor)
456{
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000457 if (y > 0) /* up to start y */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000458 printf("\033[%dA", y);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000459 putchar('\r');
460 put_prompt();
461 input_end(); /* rewrite */
462 printf("\033[J"); /* destroy tail after cursor */
463 input_backward(back_cursor);
464}
465
Erik Andersenf0657d32000-04-12 17:49:52 +0000466/* Delete the char in front of the cursor */
Mark Whitley4e338752001-01-26 20:42:23 +0000467static void input_delete(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000468{
Mark Whitley4e338752001-01-26 20:42:23 +0000469 int j = cursor;
Erik Andersena2685732000-04-09 18:27:46 +0000470
Mark Whitley4e338752001-01-26 20:42:23 +0000471 if (j == len)
Erik Andersenf0657d32000-04-12 17:49:52 +0000472 return;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000473
474 strcpy(command_ps + j, command_ps + j + 1);
Mark Whitley4e338752001-01-26 20:42:23 +0000475 len--;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000476 input_end(); /* rewtite new line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000477 cmdedit_set_out_char(0); /* destroy end char */
478 input_backward(cursor - j); /* back to old pos cursor */
Erik Andersenf0657d32000-04-12 17:49:52 +0000479}
480
Mark Whitley4e338752001-01-26 20:42:23 +0000481/* Delete the char in back of the cursor */
482static void input_backspace(void)
483{
484 if (cursor > 0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000485 input_backward(1);
486 input_delete();
Mark Whitley4e338752001-01-26 20:42:23 +0000487 }
488}
489
490
Erik Andersenf0657d32000-04-12 17:49:52 +0000491/* Move forward one charactor */
Mark Whitley4e338752001-01-26 20:42:23 +0000492static void input_forward(void)
Erik Andersenf0657d32000-04-12 17:49:52 +0000493{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000494 if (cursor < len)
495 cmdedit_set_out_char(command_ps[cursor + 1]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000496}
497
498
Mark Whitley4e338752001-01-26 20:42:23 +0000499static void cmdedit_setwidth(int w, int redraw_flg)
500{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000501 cmdedit_termw = cmdedit_prmt_len + 2;
Eric Andersen6faae7d2001-02-16 20:09:17 +0000502 if (w <= cmdedit_termw) {
503 cmdedit_termw = cmdedit_termw % w;
504 }
Mark Whitley4e338752001-01-26 20:42:23 +0000505 if (w > cmdedit_termw) {
Mark Whitley4e338752001-01-26 20:42:23 +0000506 cmdedit_termw = w;
507
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000508 if (redraw_flg) {
509 /* new y for current cursor */
510 int new_y = (cursor + cmdedit_prmt_len) / w;
Mark Whitley4e338752001-01-26 20:42:23 +0000511
512 /* redraw */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000513 redraw((new_y >= cmdedit_y ? new_y : cmdedit_y), len - cursor);
514 fflush(stdout);
Mark Whitley4e338752001-01-26 20:42:23 +0000515 }
Eric Andersen6faae7d2001-02-16 20:09:17 +0000516 }
Mark Whitley4e338752001-01-26 20:42:23 +0000517}
518
Eric Andersen7467c8d2001-07-12 20:26:32 +0000519static void cmdedit_init(void)
Mark Whitley4e338752001-01-26 20:42:23 +0000520{
Eric Andersen61173a52001-03-19 17:48:55 +0000521 cmdedit_prmt_len = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000522 if ((handlers_sets & SET_WCHG_HANDLERS) == 0) {
523 /* emulate usage handler to set handler and call yours work */
Mark Whitley4e338752001-01-26 20:42:23 +0000524 win_changed(-SIGWINCH);
525 handlers_sets |= SET_WCHG_HANDLERS;
526 }
527
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000528 if ((handlers_sets & SET_ATEXIT) == 0) {
529#ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
530 struct passwd *entry;
531
532 my_euid = geteuid();
533 entry = getpwuid(my_euid);
534 if (entry) {
535 user_buf = xstrdup(entry->pw_name);
536 home_pwd_buf = xstrdup(entry->pw_dir);
537 }
538#endif
539
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000540#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000541
542#ifndef BB_FEATURE_GETUSERNAME_AND_HOMEDIR
543 my_euid = geteuid();
544#endif
545 my_uid = getuid();
546 my_gid = getgid();
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000547#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000548 handlers_sets |= SET_ATEXIT;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000549 atexit(cmdedit_reset_term); /* be sure to do this only once */
Mark Whitley4e338752001-01-26 20:42:23 +0000550 }
Mark Whitley4e338752001-01-26 20:42:23 +0000551}
Erik Andersenf0657d32000-04-12 17:49:52 +0000552
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000553#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Mark Whitley4e338752001-01-26 20:42:23 +0000554
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000555static int is_execute(const struct stat *st)
Erik Andersen6273f652000-03-17 01:12:41 +0000556{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000557 if ((!my_euid && (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) ||
558 (my_uid == st->st_uid && (st->st_mode & S_IXUSR)) ||
559 (my_gid == st->st_gid && (st->st_mode & S_IXGRP)) ||
560 (st->st_mode & S_IXOTH)) return TRUE;
561 return FALSE;
Erik Andersen6273f652000-03-17 01:12:41 +0000562}
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000563
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000564#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000565
566static char **username_tab_completion(char *ud, int *num_matches)
567{
568 struct passwd *entry;
569 int userlen;
570 char *temp;
571
572
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000573 ud++; /* ~user/... to user/... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000574 userlen = strlen(ud);
575
576 if (num_matches == 0) { /* "~/..." or "~user/..." */
577 char *sav_ud = ud - 1;
578 char *home = 0;
579
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000580 if (*ud == '/') { /* "~/..." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000581 home = home_pwd_buf;
582 } else {
583 /* "~user/..." */
584 temp = strchr(ud, '/');
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000585 *temp = 0; /* ~user\0 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000586 entry = getpwnam(ud);
587 *temp = '/'; /* restore ~user/... */
588 ud = temp;
589 if (entry)
590 home = entry->pw_dir;
591 }
592 if (home) {
593 if ((userlen + strlen(home) + 1) < BUFSIZ) {
594 char temp2[BUFSIZ]; /* argument size */
595
596 /* /home/user/... */
597 sprintf(temp2, "%s%s", home, ud);
598 strcpy(sav_ud, temp2);
599 }
600 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000601 return 0; /* void, result save to argument :-) */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000602 } else {
603 /* "~[^/]*" */
604 char **matches = (char **) NULL;
605 int nm = 0;
606
607 setpwent();
608
609 while ((entry = getpwent()) != NULL) {
610 /* Null usernames should result in all users as possible completions. */
611 if ( /*!userlen || */ !strncmp(ud, entry->pw_name, userlen)) {
612
613 temp = xmalloc(3 + strlen(entry->pw_name));
614 sprintf(temp, "~%s/", entry->pw_name);
615 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
616
617 matches[nm++] = temp;
618 }
619 }
620
621 endpwent();
622 (*num_matches) = nm;
623 return (matches);
624 }
625}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000626#endif /* BB_FEATURE_COMMAND_USERNAME_COMPLETION */
Mark Whitley4e338752001-01-26 20:42:23 +0000627
628enum {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000629 FIND_EXE_ONLY = 0,
630 FIND_DIR_ONLY = 1,
Mark Whitley4e338752001-01-26 20:42:23 +0000631 FIND_FILE_ONLY = 2,
632};
Erik Andersen1dbe3402000-03-19 10:46:06 +0000633
Mark Whitley4e338752001-01-26 20:42:23 +0000634static int path_parse(char ***p, int flags)
635{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000636 int npth;
Mark Whitley4e338752001-01-26 20:42:23 +0000637 char *tmp;
638 char *pth;
639
Mark Whitley4e338752001-01-26 20:42:23 +0000640 /* if not setenv PATH variable, to search cur dir "." */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000641 if (flags != FIND_EXE_ONLY || (pth = getenv("PATH")) == 0 ||
642 /* PATH=<empty> or PATH=:<empty> */
643 *pth == 0 || (*pth == ':' && *(pth + 1) == 0)) {
Mark Whitley4e338752001-01-26 20:42:23 +0000644 return 1;
645 }
646
647 tmp = pth;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000648 npth = 0;
Mark Whitley4e338752001-01-26 20:42:23 +0000649
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000650 for (;;) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000651 npth++; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000652 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000653 if (tmp) {
654 if (*++tmp == 0)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000655 break; /* :<empty> */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000656 } else
Mark Whitley4e338752001-01-26 20:42:23 +0000657 break;
658 }
659
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000660 *p = xmalloc(npth * sizeof(char *));
Mark Whitley4e338752001-01-26 20:42:23 +0000661
662 tmp = pth;
663 (*p)[0] = xstrdup(tmp);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000664 npth = 1; /* count words is + 1 count ':' */
Mark Whitley4e338752001-01-26 20:42:23 +0000665
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000666 for (;;) {
Mark Whitley4e338752001-01-26 20:42:23 +0000667 tmp = strchr(tmp, ':');
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000668 if (tmp) {
669 (*p)[0][(tmp - pth)] = 0; /* ':' -> '\0' */
670 if (*++tmp == 0)
671 break; /* :<empty> */
Mark Whitley4e338752001-01-26 20:42:23 +0000672 } else
673 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000674 (*p)[npth++] = &(*p)[0][(tmp - pth)]; /* p[next]=p[0][&'\0'+1] */
Mark Whitley4e338752001-01-26 20:42:23 +0000675 }
676
677 return npth;
678}
679
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000680static char *add_quote_for_spec_chars(char *found)
Erik Andersen6273f652000-03-17 01:12:41 +0000681{
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000682 int l = 0;
683 char *s = xmalloc((strlen(found) + 1) * 2);
684
685 while (*found) {
686 if (strchr(" `\"#$%^&*()=+{}[]:;\'|\\<>", *found))
687 s[l++] = '\\';
688 s[l++] = *found++;
689 }
690 s[l] = 0;
691 return s;
692}
693
694static char **exe_n_cwd_tab_completion(char *command, int *num_matches,
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000695 int type)
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000696{
697
698 char **matches = 0;
Erik Andersen1dbe3402000-03-19 10:46:06 +0000699 DIR *dir;
700 struct dirent *next;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000701 char dirbuf[BUFSIZ];
702 int nm = *num_matches;
703 struct stat st;
704 char *path1[1];
705 char **paths = path1;
706 int npaths;
707 int i;
Eric Andersene5dfced2001-04-09 22:48:12 +0000708 char *found;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000709 char *pfind = strrchr(command, '/');
Mark Whitley4e338752001-01-26 20:42:23 +0000710
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000711 path1[0] = ".";
Mark Whitley4e338752001-01-26 20:42:23 +0000712
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000713 if (pfind == NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +0000714 /* no dir, if flags==EXE_ONLY - get paths, else "." */
715 npaths = path_parse(&paths, type);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000716 pfind = command;
Mark Whitley4e338752001-01-26 20:42:23 +0000717 } else {
718 /* with dir */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000719 /* save for change */
720 strcpy(dirbuf, command);
721 /* set dir only */
722 dirbuf[(pfind - command) + 1] = 0;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000723#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000724 if (dirbuf[0] == '~') /* ~/... or ~user/... */
725 username_tab_completion(dirbuf, 0);
726#endif
727 /* "strip" dirname in command */
728 pfind++;
Mark Whitley4e338752001-01-26 20:42:23 +0000729
Mark Whitley4e338752001-01-26 20:42:23 +0000730 paths[0] = dirbuf;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000731 npaths = 1; /* only 1 dir */
Mark Whitley4e338752001-01-26 20:42:23 +0000732 }
Erik Andersenc7c634b2000-03-19 05:28:55 +0000733
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000734 for (i = 0; i < npaths; i++) {
Erik Andersenc7c634b2000-03-19 05:28:55 +0000735
Mark Whitley4e338752001-01-26 20:42:23 +0000736 dir = opendir(paths[i]);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000737 if (!dir) /* Don't print an error */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000738 continue;
739
740 while ((next = readdir(dir)) != NULL) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000741 char *str_found = next->d_name;
742
Mark Whitley4e338752001-01-26 20:42:23 +0000743 /* matched ? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000744 if (strncmp(str_found, pfind, strlen(pfind)))
Mark Whitley4e338752001-01-26 20:42:23 +0000745 continue;
746 /* not see .name without .match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000747 if (*str_found == '.' && *pfind == 0) {
748 if (*paths[i] == '/' && paths[i][1] == 0
749 && str_found[1] == 0) str_found = ""; /* only "/" */
750 else
Mark Whitley4e338752001-01-26 20:42:23 +0000751 continue;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000752 }
Eric Andersene5dfced2001-04-09 22:48:12 +0000753 found = concat_path_file(paths[i], str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000754 /* hmm, remover in progress? */
Eric Andersene5dfced2001-04-09 22:48:12 +0000755 if (stat(found, &st) < 0)
756 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000757 /* find with dirs ? */
758 if (paths[i] != dirbuf)
759 strcpy(found, next->d_name); /* only name */
Mark Whitley4e338752001-01-26 20:42:23 +0000760 if (S_ISDIR(st.st_mode)) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000761 /* name is directory */
Eric Andersene5dfced2001-04-09 22:48:12 +0000762 str_found = found;
763 found = concat_path_file(found, "");
764 free(str_found);
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000765 str_found = add_quote_for_spec_chars(found);
Mark Whitley4e338752001-01-26 20:42:23 +0000766 } else {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000767 /* not put found file if search only dirs for cd */
Eric Andersene5dfced2001-04-09 22:48:12 +0000768 if (type == FIND_DIR_ONLY)
769 goto cont;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000770 str_found = add_quote_for_spec_chars(found);
771 if (type == FIND_FILE_ONLY ||
772 (type == FIND_EXE_ONLY && is_execute(&st) == TRUE))
773 strcat(str_found, " ");
774 }
Mark Whitley4e338752001-01-26 20:42:23 +0000775 /* Add it to the list */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000776 matches = xrealloc(matches, (nm + 1) * sizeof(char *));
777
778 matches[nm++] = str_found;
Eric Andersene5dfced2001-04-09 22:48:12 +0000779cont:
780 free(found);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000781 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000782 closedir(dir);
Erik Andersen1dbe3402000-03-19 10:46:06 +0000783 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000784 if (paths != path1) {
785 free(paths[0]); /* allocated memory only in first member */
786 free(paths);
787 }
Mark Whitley4e338752001-01-26 20:42:23 +0000788 *num_matches = nm;
Erik Andersenc7c634b2000-03-19 05:28:55 +0000789 return (matches);
Erik Andersen6273f652000-03-17 01:12:41 +0000790}
Erik Andersenf0657d32000-04-12 17:49:52 +0000791
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000792static int match_compare(const void *a, const void *b)
793{
794 return strcmp(*(char **) a, *(char **) b);
795}
796
797
798
799#define QUOT (UCHAR_MAX+1)
800
801#define collapse_pos(is, in) { \
802 memcpy(int_buf+is, int_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); \
803 memcpy(pos_buf+is, pos_buf+in, (BUFSIZ+1-is-in)*sizeof(int)); }
804
805static int find_match(char *matchBuf, int *len_with_quotes)
806{
807 int i, j;
808 int command_mode;
809 int c, c2;
810 int int_buf[BUFSIZ + 1];
811 int pos_buf[BUFSIZ + 1];
812
813 /* set to integer dimension characters and own positions */
814 for (i = 0;; i++) {
815 int_buf[i] = (int) ((unsigned char) matchBuf[i]);
816 if (int_buf[i] == 0) {
817 pos_buf[i] = -1; /* indicator end line */
818 break;
819 } else
820 pos_buf[i] = i;
821 }
822
823 /* mask \+symbol and convert '\t' to ' ' */
824 for (i = j = 0; matchBuf[i]; i++, j++)
825 if (matchBuf[i] == '\\') {
826 collapse_pos(j, j + 1);
827 int_buf[j] |= QUOT;
828 i++;
829#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
830 if (matchBuf[i] == '\t') /* algorithm equivalent */
831 int_buf[j] = ' ' | QUOT;
832#endif
833 }
834#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
835 else if (matchBuf[i] == '\t')
836 int_buf[j] = ' ';
837#endif
838
839 /* mask "symbols" or 'symbols' */
840 c2 = 0;
841 for (i = 0; int_buf[i]; i++) {
842 c = int_buf[i];
843 if (c == '\'' || c == '"') {
844 if (c2 == 0)
845 c2 = c;
846 else {
847 if (c == c2)
848 c2 = 0;
849 else
850 int_buf[i] |= QUOT;
851 }
852 } else if (c2 != 0 && c != '$')
853 int_buf[i] |= QUOT;
854 }
855
856 /* skip commands with arguments if line have commands delimiters */
857 /* ';' ';;' '&' '|' '&&' '||' but `>&' `<&' `>|' */
858 for (i = 0; int_buf[i]; i++) {
859 c = int_buf[i];
860 c2 = int_buf[i + 1];
861 j = i ? int_buf[i - 1] : -1;
862 command_mode = 0;
863 if (c == ';' || c == '&' || c == '|') {
864 command_mode = 1 + (c == c2);
865 if (c == '&') {
866 if (j == '>' || j == '<')
867 command_mode = 0;
868 } else if (c == '|' && j == '>')
869 command_mode = 0;
870 }
871 if (command_mode) {
872 collapse_pos(0, i + command_mode);
873 i = -1; /* hack incremet */
874 }
875 }
876 /* collapse `command...` */
877 for (i = 0; int_buf[i]; i++)
878 if (int_buf[i] == '`') {
879 for (j = i + 1; int_buf[j]; j++)
880 if (int_buf[j] == '`') {
881 collapse_pos(i, j + 1);
882 j = 0;
883 break;
884 }
885 if (j) {
886 /* not found close ` - command mode, collapse all previous */
887 collapse_pos(0, i + 1);
888 break;
889 } else
890 i--; /* hack incremet */
891 }
892
893 /* collapse (command...(command...)...) or {command...{command...}...} */
894 c = 0; /* "recursive" level */
895 c2 = 0;
896 for (i = 0; int_buf[i]; i++)
897 if (int_buf[i] == '(' || int_buf[i] == '{') {
898 if (int_buf[i] == '(')
899 c++;
900 else
901 c2++;
902 collapse_pos(0, i + 1);
903 i = -1; /* hack incremet */
904 }
905 for (i = 0; pos_buf[i] >= 0 && (c > 0 || c2 > 0); i++)
906 if ((int_buf[i] == ')' && c > 0) || (int_buf[i] == '}' && c2 > 0)) {
907 if (int_buf[i] == ')')
908 c--;
909 else
910 c2--;
911 collapse_pos(0, i + 1);
912 i = -1; /* hack incremet */
913 }
914
915 /* skip first not quote space */
916 for (i = 0; int_buf[i]; i++)
917 if (int_buf[i] != ' ')
918 break;
919 if (i)
920 collapse_pos(0, i);
921
922 /* set find mode for completion */
923 command_mode = FIND_EXE_ONLY;
924 for (i = 0; int_buf[i]; i++)
925 if (int_buf[i] == ' ' || int_buf[i] == '<' || int_buf[i] == '>') {
926 if (int_buf[i] == ' ' && command_mode == FIND_EXE_ONLY
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000927 && matchBuf[pos_buf[0]]=='c'
928 && matchBuf[pos_buf[1]]=='d' )
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000929 command_mode = FIND_DIR_ONLY;
930 else {
931 command_mode = FIND_FILE_ONLY;
932 break;
933 }
934 }
935 /* "strlen" */
936 for (i = 0; int_buf[i]; i++);
937 /* find last word */
938 for (--i; i >= 0; i--) {
939 c = int_buf[i];
940 if (c == ' ' || c == '<' || c == '>' || c == '|' || c == '&') {
941 collapse_pos(0, i + 1);
942 break;
943 }
944 }
945 /* skip first not quoted '\'' or '"' */
946 for (i = 0; int_buf[i] == '\'' || int_buf[i] == '"'; i++);
947 /* collapse quote or unquote // or /~ */
Mark Whitley7e5291f2001-03-08 19:31:12 +0000948 while ((int_buf[i] & ~QUOT) == '/' &&
949 ((int_buf[i + 1] & ~QUOT) == '/'
950 || (int_buf[i + 1] & ~QUOT) == '~')) {
951 i++;
952 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000953
954 /* set only match and destroy quotes */
955 j = 0;
Eric Andersen4f990532001-05-31 17:15:57 +0000956 for (c = 0; pos_buf[i] >= 0; i++) {
957 matchBuf[c++] = matchBuf[pos_buf[i]];
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000958 j = pos_buf[i] + 1;
959 }
Eric Andersen4f990532001-05-31 17:15:57 +0000960 matchBuf[c] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000961 /* old lenght matchBuf with quotes symbols */
962 *len_with_quotes = j ? j - pos_buf[0] : 0;
963
964 return command_mode;
965}
966
967
968static void input_tab(int *lastWasTab)
Erik Andersenf0657d32000-04-12 17:49:52 +0000969{
970 /* Do TAB completion */
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000971 static int num_matches;
Mark Whitley4e338752001-01-26 20:42:23 +0000972 static char **matches;
973
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000974 if (lastWasTab == 0) { /* free all memory */
Erik Andersenf0657d32000-04-12 17:49:52 +0000975 if (matches) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000976 while (num_matches > 0)
Mark Whitley4e338752001-01-26 20:42:23 +0000977 free(matches[--num_matches]);
Erik Andersenf0657d32000-04-12 17:49:52 +0000978 free(matches);
979 matches = (char **) NULL;
980 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +0000981 return;
982 }
983 if (*lastWasTab == FALSE) {
984
985 char *tmp;
986 int len_found;
987 char matchBuf[BUFSIZ];
988 int find_type;
989 int recalc_pos;
990
991 *lastWasTab = TRUE; /* flop trigger */
992
993 /* Make a local copy of the string -- up
994 * to the position of the cursor */
995 tmp = strncpy(matchBuf, command_ps, cursor);
996 tmp[cursor] = 0;
997
998 find_type = find_match(matchBuf, &recalc_pos);
999
1000 /* Free up any memory already allocated */
1001 input_tab(0);
Erik Andersenf0657d32000-04-12 17:49:52 +00001002
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001003#ifdef BB_FEATURE_COMMAND_USERNAME_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001004 /* If the word starts with `~' and there is no slash in the word,
Erik Andersenf0657d32000-04-12 17:49:52 +00001005 * then try completing this word as a username. */
1006
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001007 if (matchBuf[0] == '~' && strchr(matchBuf, '/') == 0)
Mark Whitley4e338752001-01-26 20:42:23 +00001008 matches = username_tab_completion(matchBuf, &num_matches);
Mark Whitley4e338752001-01-26 20:42:23 +00001009#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001010 /* Try to match any executable in our path and everything
Erik Andersenf0657d32000-04-12 17:49:52 +00001011 * in the current working directory that matches. */
1012 if (!matches)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001013 matches =
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001014 exe_n_cwd_tab_completion(matchBuf,
1015 &num_matches, find_type);
1016 /* Remove duplicate found */
1017 if(matches) {
1018 int i, j;
1019 /* bubble */
1020 for(i=0; i<(num_matches-1); i++)
1021 for(j=i+1; j<num_matches; j++)
1022 if(matches[i]!=0 && matches[j]!=0 &&
1023 strcmp(matches[i], matches[j])==0) {
1024 free(matches[j]);
1025 matches[j]=0;
1026 }
1027 j=num_matches;
1028 num_matches = 0;
1029 for(i=0; i<j; i++)
1030 if(matches[i]) {
1031 if(!strcmp(matches[i], "./"))
1032 matches[i][1]=0;
1033 else if(!strcmp(matches[i], "../"))
1034 matches[i][2]=0;
1035 matches[num_matches++]=matches[i];
1036 }
1037 }
Erik Andersenf0657d32000-04-12 17:49:52 +00001038 /* Did we find exactly one match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001039 if (!matches || num_matches > 1) {
1040 char *tmp1;
1041
Mark Whitley4e338752001-01-26 20:42:23 +00001042 beep();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001043 if (!matches)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001044 return; /* not found */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001045 /* sort */
1046 qsort(matches, num_matches, sizeof(char *), match_compare);
1047
1048 /* find minimal match */
1049 tmp = xstrdup(matches[0]);
1050 for (tmp1 = tmp; *tmp1; tmp1++)
1051 for (len_found = 1; len_found < num_matches; len_found++)
1052 if (matches[len_found][(tmp1 - tmp)] != *tmp1) {
1053 *tmp1 = 0;
1054 break;
1055 }
1056 if (*tmp == 0) { /* have unique */
1057 free(tmp);
1058 return;
1059 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001060 } else { /* one match */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001061 tmp = matches[0];
1062 /* for next completion current found */
1063 *lastWasTab = FALSE;
Mark Whitley4e338752001-01-26 20:42:23 +00001064 }
1065
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001066 len_found = strlen(tmp);
Mark Whitley4e338752001-01-26 20:42:23 +00001067 /* have space to placed match? */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001068 if ((len_found - strlen(matchBuf) + len) < BUFSIZ) {
Mark Whitley4e338752001-01-26 20:42:23 +00001069
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001070 /* before word for match */
1071 command_ps[cursor - recalc_pos] = 0;
1072 /* save tail line */
1073 strcpy(matchBuf, command_ps + cursor);
1074 /* add match */
1075 strcat(command_ps, tmp);
1076 /* add tail */
Mark Whitley4e338752001-01-26 20:42:23 +00001077 strcat(command_ps, matchBuf);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001078 /* back to begin word for match */
1079 input_backward(recalc_pos);
1080 /* new pos */
1081 recalc_pos = cursor + len_found;
1082 /* new len */
1083 len = strlen(command_ps);
1084 /* write out the matched command */
Eric Andersen4f990532001-05-31 17:15:57 +00001085 redraw(cmdedit_y, len - recalc_pos);
Erik Andersenf0657d32000-04-12 17:49:52 +00001086 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001087 if (tmp != matches[0])
1088 free(tmp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001089 } else {
1090 /* Ok -- the last char was a TAB. Since they
1091 * just hit TAB again, print a list of all the
1092 * available choices... */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001093 if (matches && num_matches > 0) {
1094 int i, col, l;
1095 int sav_cursor = cursor; /* change goto_new_line() */
Erik Andersenf0657d32000-04-12 17:49:52 +00001096
1097 /* Go to the next line */
Mark Whitley4e338752001-01-26 20:42:23 +00001098 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001099 for (i = 0, col = 0; i < num_matches; i++) {
1100 l = strlen(matches[i]);
1101 if (l < 14)
1102 l = 14;
1103 printf("%-14s ", matches[i]);
1104 if ((l += 2) > 16)
1105 while (l % 16) {
1106 putchar(' ');
1107 l++;
1108 }
1109 col += l;
1110 col -= (col / cmdedit_termw) * cmdedit_termw;
1111 if (col > 60 && matches[i + 1] != NULL) {
Mark Whitley4e338752001-01-26 20:42:23 +00001112 putchar('\n');
Erik Andersenf0657d32000-04-12 17:49:52 +00001113 col = 0;
1114 }
1115 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001116 /* Go to the next line and rewrite */
1117 putchar('\n');
1118 redraw(0, len - sav_cursor);
Erik Andersenf0657d32000-04-12 17:49:52 +00001119 }
1120 }
1121}
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001122#endif /* BB_FEATURE_COMMAND_TAB_COMPLETION */
Erik Andersenf0657d32000-04-12 17:49:52 +00001123
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001124static void get_previous_history(struct history **hp, struct history *p)
Erik Andersenf0657d32000-04-12 17:49:52 +00001125{
Eric Andersen91a44002000-07-19 17:37:57 +00001126 if ((*hp)->s)
1127 free((*hp)->s);
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001128 (*hp)->s = xstrdup(command_ps);
1129 *hp = p;
Erik Andersenf0657d32000-04-12 17:49:52 +00001130}
1131
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001132static inline void get_next_history(struct history **hp)
Erik Andersenf0657d32000-04-12 17:49:52 +00001133{
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001134 get_previous_history(hp, (*hp)->n);
Erik Andersenf0657d32000-04-12 17:49:52 +00001135}
1136
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001137enum {
1138 ESC = 27,
1139 DEL = 127,
1140};
1141
1142
Erik Andersen6273f652000-03-17 01:12:41 +00001143/*
1144 * This function is used to grab a character buffer
1145 * from the input file descriptor and allows you to
1146 * a string with full command editing (sortof like
1147 * a mini readline).
1148 *
1149 * The following standard commands are not implemented:
1150 * ESC-b -- Move back one word
1151 * ESC-f -- Move forward one word
1152 * ESC-d -- Delete back one word
1153 * ESC-h -- Delete forward one word
1154 * CTL-t -- Transpose two characters
1155 *
1156 * Furthermore, the "vi" command editing keys are not implemented.
1157 *
Erik Andersen6273f652000-03-17 01:12:41 +00001158 */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001159
Eric Andersen044228d2001-07-17 01:12:36 +00001160
1161int cmdedit_read_input(char *prompt, char command[BUFSIZ])
Erik Andersen13456d12000-03-16 08:09:57 +00001162{
1163
Erik Andersenc7c634b2000-03-19 05:28:55 +00001164 int break_out = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001165 int lastWasTab = FALSE;
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001166 unsigned char c = 0;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001167 struct history *hp = his_end;
Erik Andersen13456d12000-03-16 08:09:57 +00001168
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001169 /* prepare before init handlers */
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001170 cmdedit_y = 0; /* quasireal y, not true work if line > xt*yt */
Mark Whitley4e338752001-01-26 20:42:23 +00001171 len = 0;
Mark Whitley4e338752001-01-26 20:42:23 +00001172 command_ps = command;
1173
Eric Andersen34506362001-08-02 05:02:46 +00001174 getTermSettings(0, (void *) &initial_settings);
1175 memcpy(&new_settings, &initial_settings, sizeof(struct termios));
1176 new_settings.c_lflag &= ~ICANON; /* unbuffered input */
1177 /* Turn off echoing and CTRL-C, so we can trap it */
1178 new_settings.c_lflag &= ~(ECHO | ECHONL | ISIG);
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001179#ifndef linux
Eric Andersen34506362001-08-02 05:02:46 +00001180 /* Hmm, in linux c_cc[] not parsed if set ~ICANON */
1181 new_settings.c_cc[VMIN] = 1;
1182 new_settings.c_cc[VTIME] = 0;
1183 /* Turn off CTRL-C, so we can trap it */
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001184# ifndef _POSIX_VDISABLE
1185# define _POSIX_VDISABLE '\0'
1186# endif
Eric Andersen34506362001-08-02 05:02:46 +00001187 new_settings.c_cc[VINTR] = _POSIX_VDISABLE;
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001188#endif
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001189 command[0] = 0;
1190
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001191 setTermSettings(0, (void *) &new_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001192 handlers_sets |= SET_RESET_TERM;
Erik Andersen13456d12000-03-16 08:09:57 +00001193
Eric Andersen6faae7d2001-02-16 20:09:17 +00001194 /* Now initialize things */
1195 cmdedit_init();
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001196 /* Print out the command prompt */
1197 parse_prompt(prompt);
Eric Andersenb3dc3b82001-01-04 11:08:45 +00001198
Erik Andersenc7c634b2000-03-19 05:28:55 +00001199 while (1) {
Erik Andersen6273f652000-03-17 01:12:41 +00001200
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001201 fflush(stdout); /* buffered out to fast */
Mark Whitley4e338752001-01-26 20:42:23 +00001202
Eric Andersen7467c8d2001-07-12 20:26:32 +00001203 if (safe_read(0, &c, 1) < 1)
Eric Andersened424db2001-04-23 15:28:28 +00001204 /* if we can't read input then exit */
1205 goto prepare_to_die;
Erik Andersenf3b3d172000-04-09 18:24:05 +00001206
Erik Andersen13456d12000-03-16 08:09:57 +00001207 switch (c) {
Erik Andersenf0657d32000-04-12 17:49:52 +00001208 case '\n':
1209 case '\r':
1210 /* Enter */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001211 goto_new_line();
Erik Andersenf0657d32000-04-12 17:49:52 +00001212 break_out = 1;
1213 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001214 case 1:
1215 /* Control-a -- Beginning of line */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001216 input_backward(cursor);
Mark Whitley4e338752001-01-26 20:42:23 +00001217 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001218 case 2:
1219 /* Control-b -- Move back one character */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001220 input_backward(1);
Erik Andersenf0657d32000-04-12 17:49:52 +00001221 break;
Erik Andersen1d1d9502000-04-21 01:26:49 +00001222 case 3:
Eric Andersen86349772000-12-18 20:25:50 +00001223 /* Control-c -- stop gathering input */
Mark Whitley4e338752001-01-26 20:42:23 +00001224 goto_new_line();
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001225 command[0] = 0;
Eric Andersen7467c8d2001-07-12 20:26:32 +00001226 len = 0;
1227 lastWasTab = FALSE;
1228 put_prompt();
1229 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001230 case 4:
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001231 /* Control-d -- Delete one character, or exit
Erik Andersenf0657d32000-04-12 17:49:52 +00001232 * if the len=0 and no chars to delete */
1233 if (len == 0) {
Eric Andersened424db2001-04-23 15:28:28 +00001234prepare_to_die:
Eric Andersenff9b4a82001-08-02 08:42:58 +00001235#if !defined(BB_ASH)
Mark Whitley4e338752001-01-26 20:42:23 +00001236 printf("exit");
Eric Andersen7467c8d2001-07-12 20:26:32 +00001237 goto_new_line();
1238 /* cmdedit_reset_term() called in atexit */
1239 exit(EXIT_SUCCESS);
Eric Andersen044228d2001-07-17 01:12:36 +00001240#else
1241 break_out = -1; /* for control stoped jobs */
1242 break;
1243#endif
Erik Andersenf0657d32000-04-12 17:49:52 +00001244 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001245 input_delete();
Erik Andersenf0657d32000-04-12 17:49:52 +00001246 }
1247 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001248 case 5:
1249 /* Control-e -- End of line */
Mark Whitley4e338752001-01-26 20:42:23 +00001250 input_end();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001251 break;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001252 case 6:
1253 /* Control-f -- Move forward one character */
Mark Whitley4e338752001-01-26 20:42:23 +00001254 input_forward();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001255 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001256 case '\b':
1257 case DEL:
Erik Andersen1d1d9502000-04-21 01:26:49 +00001258 /* Control-h and DEL */
Mark Whitley4e338752001-01-26 20:42:23 +00001259 input_backspace();
Erik Andersenc7c634b2000-03-19 05:28:55 +00001260 break;
1261 case '\t':
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001262#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001263 input_tab(&lastWasTab);
Erik Andersena2685732000-04-09 18:27:46 +00001264#endif
Erik Andersenc7c634b2000-03-19 05:28:55 +00001265 break;
Erik Andersenf0657d32000-04-12 17:49:52 +00001266 case 14:
1267 /* Control-n -- Get next command in history */
1268 if (hp && hp->n && hp->n->s) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001269 get_next_history(&hp);
Erik Andersenf0657d32000-04-12 17:49:52 +00001270 goto rewrite_line;
1271 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001272 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001273 }
1274 break;
1275 case 16:
1276 /* Control-p -- Get previous command from history */
1277 if (hp && hp->p) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001278 get_previous_history(&hp, hp->p);
Erik Andersenf0657d32000-04-12 17:49:52 +00001279 goto rewrite_line;
1280 } else {
Mark Whitley4e338752001-01-26 20:42:23 +00001281 beep();
Erik Andersenf0657d32000-04-12 17:49:52 +00001282 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001283 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001284 case 21:
1285 /* Control-U -- Clear line before cursor */
1286 if (cursor) {
1287 strcpy(command, command + cursor);
1288 redraw(cmdedit_y, len -= cursor);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001289 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001290 break;
1291
1292 case ESC:{
1293 /* escape sequence follows */
Eric Andersen7467c8d2001-07-12 20:26:32 +00001294 if (safe_read(0, &c, 1) < 1)
1295 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001296 /* different vt100 emulations */
1297 if (c == '[' || c == 'O') {
Eric Andersen7467c8d2001-07-12 20:26:32 +00001298 if (safe_read(0, &c, 1) < 1)
1299 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001300 }
1301 switch (c) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001302#ifdef BB_FEATURE_COMMAND_TAB_COMPLETION
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001303 case '\t': /* Alt-Tab */
1304
1305 input_tab(&lastWasTab);
1306 break;
1307#endif
1308 case 'A':
1309 /* Up Arrow -- Get previous command from history */
1310 if (hp && hp->p) {
1311 get_previous_history(&hp, hp->p);
1312 goto rewrite_line;
1313 } else {
1314 beep();
1315 }
1316 break;
1317 case 'B':
1318 /* Down Arrow -- Get next command in history */
1319 if (hp && hp->n && hp->n->s) {
1320 get_next_history(&hp);
1321 goto rewrite_line;
1322 } else {
1323 beep();
1324 }
1325 break;
1326
1327 /* Rewrite the line with the selected history item */
1328 rewrite_line:
1329 /* change command */
1330 len = strlen(strcpy(command, hp->s));
1331 /* redraw and go to end line */
1332 redraw(cmdedit_y, 0);
1333 break;
1334 case 'C':
1335 /* Right Arrow -- Move forward one character */
1336 input_forward();
1337 break;
1338 case 'D':
1339 /* Left Arrow -- Move back one character */
1340 input_backward(1);
1341 break;
1342 case '3':
1343 /* Delete */
1344 input_delete();
1345 break;
1346 case '1':
1347 case 'H':
1348 /* Home (Ctrl-A) */
1349 input_backward(cursor);
1350 break;
1351 case '4':
1352 case 'F':
1353 /* End (Ctrl-E) */
1354 input_end();
1355 break;
1356 default:
1357 if (!(c >= '1' && c <= '9'))
1358 c = 0;
1359 beep();
1360 }
1361 if (c >= '1' && c <= '9')
1362 do
Eric Andersen7467c8d2001-07-12 20:26:32 +00001363 if (safe_read(0, &c, 1) < 1)
1364 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001365 while (c != '~');
1366 break;
1367 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001368
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001369 default: /* If it's regular input, do the normal thing */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001370#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1371 /* Control-V -- Add non-printable symbol */
1372 if (c == 22) {
Eric Andersen7467c8d2001-07-12 20:26:32 +00001373 if (safe_read(0, &c, 1) < 1)
1374 goto prepare_to_die;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001375 if (c == 0) {
1376 beep();
1377 break;
1378 }
1379 } else
1380#endif
Eric Andersene5dfced2001-04-09 22:48:12 +00001381 if (!Isprint(c)) /* Skip non-printable characters */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001382 break;
1383
1384 if (len >= (BUFSIZ - 2)) /* Need to leave space for enter */
1385 break;
1386
1387 len++;
1388
1389 if (cursor == (len - 1)) { /* Append if at the end of the line */
Erik Andersenf0657d32000-04-12 17:49:52 +00001390 *(command + cursor) = c;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001391 *(command + cursor + 1) = 0;
1392 cmdedit_set_out_char(0);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001393 } else { /* Insert otherwise */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001394 int sc = cursor;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001395
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001396 memmove(command + sc + 1, command + sc, len - sc);
1397 *(command + sc) = c;
1398 sc++;
Mark Whitley4e338752001-01-26 20:42:23 +00001399 /* rewrite from cursor */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001400 input_end();
Mark Whitley4e338752001-01-26 20:42:23 +00001401 /* to prev x pos + 1 */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001402 input_backward(cursor - sc);
Erik Andersenc7c634b2000-03-19 05:28:55 +00001403 }
1404
Erik Andersenc7c634b2000-03-19 05:28:55 +00001405 break;
Erik Andersen13456d12000-03-16 08:09:57 +00001406 }
Erik Andersenc7c634b2000-03-19 05:28:55 +00001407 if (break_out) /* Enter is the command terminator, no more input. */
1408 break;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001409
1410 if (c != '\t')
1411 lastWasTab = FALSE;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001412 }
1413
Glenn L McGrath78b0e372001-06-26 02:06:08 +00001414 setTermSettings(0, (void *) &initial_settings);
Mark Whitley4e338752001-01-26 20:42:23 +00001415 handlers_sets &= ~SET_RESET_TERM;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001416
1417 /* Handle command history log */
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001418 if (len) { /* no put empty line */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001419
1420 struct history *h = his_end;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001421 char *ss;
Mark Whitley4e338752001-01-26 20:42:23 +00001422
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001423 ss = xstrdup(command); /* duplicate */
Erik Andersenc7c634b2000-03-19 05:28:55 +00001424
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001425 if (h == 0) {
Eric Andersen91a44002000-07-19 17:37:57 +00001426 /* No previous history -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001427 h = his_front = xmalloc(sizeof(struct history));
1428 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001429
1430 h->p = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001431 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001432 h->n->p = h;
1433 h->n->n = NULL;
1434 h->n->s = NULL;
1435 his_end = h->n;
1436 history_counter++;
1437 } else {
Eric Andersen91a44002000-07-19 17:37:57 +00001438 /* Add a new history command -- this memory is never freed */
Matt Kraai322ae932000-09-13 02:46:14 +00001439 h->n = xmalloc(sizeof(struct history));
Erik Andersenc7c634b2000-03-19 05:28:55 +00001440
1441 h->n->p = h;
1442 h->n->n = NULL;
1443 h->n->s = NULL;
Mark Whitley4e338752001-01-26 20:42:23 +00001444 h->s = ss;
Erik Andersenc7c634b2000-03-19 05:28:55 +00001445 his_end = h->n;
1446
1447 /* After max history, remove the oldest command */
1448 if (history_counter >= MAX_HISTORY) {
1449
1450 struct history *p = his_front->n;
1451
1452 p->p = NULL;
1453 free(his_front->s);
1454 free(his_front);
1455 his_front = p;
1456 } else {
1457 history_counter++;
1458 }
Erik Andersen13456d12000-03-16 08:09:57 +00001459 }
Eric Andersen004015e2001-05-21 20:30:51 +00001460#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001461 num_ok_lines++;
1462#endif
Erik Andersen6273f652000-03-17 01:12:41 +00001463 }
Eric Andersen044228d2001-07-17 01:12:36 +00001464 if(break_out>0) {
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001465 command[len++] = '\n'; /* set '\n' */
1466 command[len] = 0;
Eric Andersen044228d2001-07-17 01:12:36 +00001467 }
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001468#if defined(BB_FEATURE_CLEAN_UP) && defined(BB_FEATURE_COMMAND_TAB_COMPLETION)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001469 input_tab(0); /* strong free */
1470#endif
Eric Andersen004015e2001-05-21 20:30:51 +00001471#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001472 free(cmdedit_prompt);
1473#endif
Eric Andersen501c88b2000-07-28 15:14:45 +00001474 cmdedit_reset_term();
Eric Andersen044228d2001-07-17 01:12:36 +00001475 return len;
Eric Andersen501c88b2000-07-28 15:14:45 +00001476}
1477
Eric Andersen7467c8d2001-07-12 20:26:32 +00001478
1479
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001480#endif /* BB_FEATURE_COMMAND_EDITING */
Eric Andersen501c88b2000-07-28 15:14:45 +00001481
1482
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001483#ifdef TEST
1484
Eric Andersene5dfced2001-04-09 22:48:12 +00001485const char *applet_name = "debug stuff usage";
1486const char *memory_exhausted = "Memory exhausted";
1487
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001488#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1489#include <locale.h>
1490#endif
1491
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001492int main(int argc, char **argv)
1493{
1494 char buff[BUFSIZ];
1495 char *prompt =
Eric Andersen004015e2001-05-21 20:30:51 +00001496#if defined(BB_FEATURE_SH_FANCY_PROMPT)
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001497 "\\[\\033[32;1m\\]\\u@\\[\\x1b[33;1m\\]\\h:\
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001498\\[\\033[34;1m\\]\\w\\[\\033[35;1m\\] \
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001499\\!\\[\\e[36;1m\\]\\$ \\[\\E[0m\\]";
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001500#else
1501 "% ";
1502#endif
1503
Eric Andersenf9ff8a72001-03-15 20:51:09 +00001504#ifdef BB_FEATURE_NONPRINTABLE_INVERSE_PUT
1505 setlocale(LC_ALL, "");
1506#endif
Eric Andersen7467c8d2001-07-12 20:26:32 +00001507 while(1) {
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001508 int l;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001509 cmdedit_read_input(prompt, buff);
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001510 l = strlen(buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001511 if(l==0)
1512 break;
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001513 if(l > 0 && buff[l-1] == '\n')
1514 buff[l-1] = 0;
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001515 printf("*** cmdedit_read_input() returned line =%s=\n", buff);
Eric Andersen7467c8d2001-07-12 20:26:32 +00001516 }
Eric Andersen5f2c79d2001-02-16 18:36:04 +00001517 printf("*** cmdedit_read_input() detect ^C\n");
1518 return 0;
1519}
1520
Eric Andersenb3d6e2d2001-03-13 22:57:56 +00001521#endif /* TEST */