hush: rework input char buffering to allow more than one-deep peek

...this time with actual hush.c changes too :)

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
1_26_stable
Denys Vlasenko 2016-09-29 18:02:37 +02:00
parent 459293b1c5
commit d17a91db6e
1 changed files with 126 additions and 69 deletions

View File

@ -462,19 +462,19 @@ static const char *const assignment_flag[] = {
typedef struct in_str { typedef struct in_str {
const char *p; const char *p;
/* eof_flag=1: last char in ->p is really an EOF */
char eof_flag; /* meaningless if ->p == NULL */
char peek_buf[2];
#if ENABLE_HUSH_INTERACTIVE #if ENABLE_HUSH_INTERACTIVE
smallint promptmode; /* 0: PS1, 1: PS2 */ smallint promptmode; /* 0: PS1, 1: PS2 */
#endif #endif
int peek_buf[2];
int last_char; int last_char;
FILE *file; FILE *file;
int (*get) (struct in_str *) FAST_FUNC; int (*get) (struct in_str *) FAST_FUNC;
int (*peek) (struct in_str *) FAST_FUNC; int (*peek) (struct in_str *) FAST_FUNC;
int (*peek2) (struct in_str *) FAST_FUNC;
} in_str; } in_str;
#define i_getch(input) ((input)->get(input)) #define i_getch(input) ((input)->get(input))
#define i_peek(input) ((input)->peek(input)) #define i_peek(input) ((input)->peek(input))
#define i_peek2(input) ((input)->peek2(input))
/* The descrip member of this structure is only used to make /* The descrip member of this structure is only used to make
* debugging output pretty */ * debugging output pretty */
@ -2122,28 +2122,11 @@ static void reinit_unicode_for_hush(void)
} }
} }
/* /*
* in_str support * in_str support (strings, and "strings" read from files).
*/ */
static int FAST_FUNC static_get(struct in_str *i)
{
int ch = *i->p;
if (ch != '\0') {
i->p++;
i->last_char = ch;
return ch;
}
return EOF;
}
static int FAST_FUNC static_peek(struct in_str *i)
{
return *i->p;
}
#if ENABLE_HUSH_INTERACTIVE #if ENABLE_HUSH_INTERACTIVE
static void cmdedit_update_prompt(void) static void cmdedit_update_prompt(void)
{ {
if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) { if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
@ -2157,7 +2140,6 @@ static void cmdedit_update_prompt(void)
if (G.PS2 == NULL) if (G.PS2 == NULL)
G.PS2 = "> "; G.PS2 = "> ";
} }
static const char *setup_prompt_string(int promptmode) static const char *setup_prompt_string(int promptmode)
{ {
const char *prompt_str; const char *prompt_str;
@ -2178,8 +2160,7 @@ static const char *setup_prompt_string(int promptmode)
debug_printf("result '%s'\n", prompt_str); debug_printf("result '%s'\n", prompt_str);
return prompt_str; return prompt_str;
} }
static int get_user_input(struct in_str *i)
static void get_user_input(struct in_str *i)
{ {
int r; int r;
const char *prompt_str; const char *prompt_str;
@ -2197,11 +2178,14 @@ static void get_user_input(struct in_str *i)
/* catch *SIGINT* etc (^C is handled by read_line_input) */ /* catch *SIGINT* etc (^C is handled by read_line_input) */
check_and_run_traps(); check_and_run_traps();
} while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */ } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
i->eof_flag = (r < 0); i->p = G.user_input_buf;
if (i->eof_flag) { /* EOF/error detected */ if (r < 0) {
G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */ /* EOF/error detected */
G.user_input_buf[1] = '\0'; G.user_input_buf[0] = '\0';
i->peek_buf[1] = i->peek_buf[0] = r = EOF;
return r;
} }
return (unsigned char)*i->p++;
# else # else
do { do {
G.flag_SIGINT = 0; G.flag_SIGINT = 0;
@ -2215,14 +2199,11 @@ static void get_user_input(struct in_str *i)
fputs(prompt_str, stdout); fputs(prompt_str, stdout);
} }
fflush_all(); fflush_all();
G.user_input_buf[0] = r = fgetc(i->file); r = fgetc(i->file);
/*G.user_input_buf[1] = '\0'; - already is and never changed */ } while (G.flag_SIGINT || r == '\0');
} while (G.flag_SIGINT); return r;
i->eof_flag = (r == EOF);
# endif # endif
i->p = G.user_input_buf;
} }
#endif /* INTERACTIVE */ #endif /* INTERACTIVE */
/* This is the magic location that prints prompts /* This is the magic location that prints prompts
@ -2232,28 +2213,36 @@ static int FAST_FUNC file_get(struct in_str *i)
int ch; int ch;
/* If there is data waiting, eat it up */ /* If there is data waiting, eat it up */
if (i->p && *i->p) { /* peek_buf[] is an int array, not char. Can contain EOF. */
#if ENABLE_HUSH_INTERACTIVE ch = i->peek_buf[0];
take_cached: if (ch != '\0') {
#endif int ch2 = i->peek_buf[1];
ch = *i->p++; i->peek_buf[0] = ch2;
if (i->eof_flag && !*i->p) if (ch2 == 0) /* very likely, avoid redundant write */
ch = EOF; goto out;
/* note: ch is never NUL */ i->peek_buf[1] = 0;
} else { goto out;
/* need to double check i->file because we might be doing something
* more complicated by now, like sourcing or substituting. */
#if ENABLE_HUSH_INTERACTIVE
if (G_interactive_fd && i->file == stdin) {
do {
get_user_input(i);
} while (!*i->p); /* need non-empty line */
i->promptmode = 1; /* PS2 */
goto take_cached;
}
#endif
do ch = fgetc(i->file); while (ch == '\0');
} }
#if ENABLE_HUSH_INTERACTIVE
/* This can be stdin, check line editing char[] buffer */
if (i->p && *i->p != '\0') {
ch = (unsigned char)*i->p++;
goto out;
}
/* It's empty.
* If it's interactive stdin, get new line.
*/
if (G_interactive_fd && i->file == stdin) {
/* Returns first char (or EOF), the rest are in i->p[] */
ch = get_user_input(i);
i->promptmode = 1; /* PS2 */
goto out;
}
/* Not stdin: script file */
#endif
do ch = fgetc(i->file); while (ch == '\0');
out:
debug_printf("file_get: got '%c' %d\n", ch, ch); debug_printf("file_get: got '%c' %d\n", ch, ch);
i->last_char = ch; i->last_char = ch;
return ch; return ch;
@ -2265,26 +2254,82 @@ static int FAST_FUNC file_get(struct in_str *i)
static int FAST_FUNC file_peek(struct in_str *i) static int FAST_FUNC file_peek(struct in_str *i)
{ {
int ch; int ch;
if (i->p && *i->p) {
if (i->eof_flag && !i->p[1]) /* peek_buf[] is an int array, not char. Can contain EOF. */
return EOF; ch = i->peek_buf[0];
return *i->p; if (ch != '\0')
/* note: ch is never NUL */ return ch;
}
#if ENABLE_HUSH_INTERACTIVE
/* This can be stdin, check line editing char[] buffer */
if (i->p && *i->p != '\0')
return (unsigned char)*i->p;
#endif
do ch = fgetc(i->file); while (ch == '\0'); do ch = fgetc(i->file); while (ch == '\0');
i->eof_flag = (ch == EOF);
i->peek_buf[0] = ch; i->peek_buf[0] = ch;
i->peek_buf[1] = '\0'; i->peek_buf[1] = 0;
i->p = i->peek_buf;
debug_printf("file_peek: got '%c' %d\n", ch, ch); debug_printf("file_peek: got '%c' %d\n", ch, ch);
return ch; return ch;
} }
/* Only ever called if i_peek() was called, and did not return EOF */
static int FAST_FUNC file_peek2(struct in_str *i)
{
int ch;
/* peek_buf[] is an int array, not char. Can contain EOF. */
ch = i->peek_buf[0];
if (ch != 0) {
/* peek_buf[] is not empty. Is there 2nd char? */
ch = i->peek_buf[1];
if (ch == 0) {
/* We did not read it yet, get it now */
do ch = fgetc(i->file); while (ch == '\0');
i->peek_buf[1] = ch;
}
goto out;
}
#if ENABLE_HUSH_INTERACTIVE
/* This can be stdin, check line editing char[] buffer */
if (i->p && i->p[0] != '\0')
ch = i->p[1];
#endif
out:
debug_printf("file_peek2: got '%c' %d\n", ch, ch);
return ch;
}
static int FAST_FUNC static_get(struct in_str *i)
{
int ch = *i->p;
if (ch != '\0') {
i->p++;
i->last_char = ch;
return ch;
}
return EOF;
}
static int FAST_FUNC static_peek(struct in_str *i)
{
/* Doesn't report EOF on NUL. None of the callers care. */
return *i->p;
}
/* Only ever called if i_peek() was called, and did not return EOF */
static int FAST_FUNC static_peek2(struct in_str *i)
{
return i->p[1];
}
static void setup_file_in_str(struct in_str *i, FILE *f) static void setup_file_in_str(struct in_str *i, FILE *f)
{ {
memset(i, 0, sizeof(*i)); memset(i, 0, sizeof(*i));
i->peek = file_peek;
i->get = file_get; i->get = file_get;
i->peek = file_peek;
i->peek2 = file_peek2;
/* i->promptmode = 0; - PS1 (memset did it) */ /* i->promptmode = 0; - PS1 (memset did it) */
i->file = f; i->file = f;
/* i->p = NULL; */ /* i->p = NULL; */
@ -2293,11 +2338,11 @@ static void setup_file_in_str(struct in_str *i, FILE *f)
static void setup_string_in_str(struct in_str *i, const char *s) static void setup_string_in_str(struct in_str *i, const char *s)
{ {
memset(i, 0, sizeof(*i)); memset(i, 0, sizeof(*i));
i->peek = static_peek;
i->get = static_get; i->get = static_get;
i->peek = static_peek;
i->peek2 = static_peek2;
/* i->promptmode = 0; - PS1 (memset did it) */ /* i->promptmode = 0; - PS1 (memset did it) */
i->p = s; i->p = s;
/* i->eof_flag = 0; */
} }
@ -4040,9 +4085,21 @@ static int parse_dollar(o_string *as_string,
debug_printf_parse(": '%c'\n", ch); debug_printf_parse(": '%c'\n", ch);
o_addchr(dest, ch | quote_mask); o_addchr(dest, ch | quote_mask);
quote_mask = 0; quote_mask = 0;
next_ch:
ch = i_peek(input); ch = i_peek(input);
if (!isalnum(ch) && ch != '_') if (!isalnum(ch) && ch != '_') {
if (ch == '\\') {
/* If backslash+newline, skip it */
int ch2 = i_peek2(input);
if (ch2 == '\n') {
i_getch(input);
i_getch(input);
goto next_ch;
}
}
/* End of variable name reached */
break; break;
}
ch = i_getch(input); ch = i_getch(input);
nommu_addchr(as_string, ch); nommu_addchr(as_string, ch);
} }