hush: use ash's read builtin

function                                             old     new   delta
shell_builtin_read                                     -    1000   +1000
set_local_var_from_halves                              -      24     +24
setvar2                                                -       7      +7
...
popstring                                            140     134      -6
ash_main                                            1375    1368      -7
setvar                                               184     174     -10
arith_set_local_var                                   36       -     -36
builtin_read                                        1096     185    -911
------------------------------------------------------------------------------
(add/remove: 3/1 grow/shrink: 5/23 up/down: 1038/-1007)        Total: 31 bytes

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2010-01-12 23:29:57 +01:00
parent 045f4ad92c
commit 03dad22f8a
18 changed files with 124 additions and 49 deletions

View File

@ -6,7 +6,7 @@
lib-y:= lib-y:=
lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o builtin_read.o lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o builtin_read.o
lib-$(CONFIG_HUSH) += hush.o match.o lib-$(CONFIG_HUSH) += hush.o match.o shell_common.o builtin_read.o
lib-$(CONFIG_CTTYHACK) += cttyhack.o lib-$(CONFIG_CTTYHACK) += cttyhack.o
lib-$(CONFIG_SH_MATH_SUPPORT) += math.o lib-$(CONFIG_SH_MATH_SUPPORT) += math.o

View File

@ -1884,7 +1884,7 @@ getoptsreset(const char *value)
* Return of a legal variable name (a letter or underscore followed by zero or * Return of a legal variable name (a letter or underscore followed by zero or
* more letters, underscores, and digits). * more letters, underscores, and digits).
*/ */
static char * static char* FAST_FUNC
endofname(const char *name) endofname(const char *name)
{ {
char *p; char *p;
@ -1991,7 +1991,7 @@ findvar(struct var **vpp, const char *name)
/* /*
* Find the value of a variable. Returns NULL if not set. * Find the value of a variable. Returns NULL if not set.
*/ */
static const char * static const char* FAST_FUNC
lookupvar(const char *name) lookupvar(const char *name)
{ {
struct var *v; struct var *v;
@ -2114,6 +2114,12 @@ setvar(const char *name, const char *val, int flags)
INT_ON; INT_ON;
} }
static void FAST_FUNC
setvar2(const char *name, const char *val)
{
setvar(name, val, 0);
}
#if ENABLE_ASH_GETOPTS #if ENABLE_ASH_GETOPTS
/* /*
* Safe version of setvar, returns 1 on success 0 on failure. * Safe version of setvar, returns 1 on success 0 on failure.
@ -5304,7 +5310,7 @@ ash_arith(const char *s)
int errcode = 0; int errcode = 0;
math_hooks.lookupvar = lookupvar; math_hooks.lookupvar = lookupvar;
math_hooks.setvar = setvar; math_hooks.setvar = setvar2;
math_hooks.endofname = endofname; math_hooks.endofname = endofname;
INT_OFF; INT_OFF;
@ -12526,7 +12532,7 @@ readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
} }
} }
r = builtin_read(setvar, r = shell_builtin_read(setvar2,
argptr, argptr,
bltinlookup("IFS"), /* can be NULL */ bltinlookup("IFS"), /* can be NULL */
read_flags, read_flags,

View File

@ -21,7 +21,7 @@
#include "builtin_read.h" #include "builtin_read.h"
const char* FAST_FUNC const char* FAST_FUNC
builtin_read(void (*setvar)(const char *name, const char *val, int flags), shell_builtin_read(void FAST_FUNC (*setvar)(const char *name, const char *val),
char **argv, char **argv,
const char *ifs, const char *ifs,
int read_flags, int read_flags,
@ -178,7 +178,7 @@ builtin_read(void (*setvar)(const char *name, const char *val, int flags),
if (argv[1] != NULL && is_ifs) { if (argv[1] != NULL && is_ifs) {
buffer[bufpos] = '\0'; buffer[bufpos] = '\0';
bufpos = 0; bufpos = 0;
setvar(*argv, buffer, 0); setvar(*argv, buffer);
argv++; argv++;
/* can we skip one non-space ifs char? (2: yes) */ /* can we skip one non-space ifs char? (2: yes) */
startword = isspace(c) ? 2 : 1; startword = isspace(c) ? 2 : 1;
@ -195,14 +195,14 @@ builtin_read(void (*setvar)(const char *name, const char *val, int flags),
continue; continue;
buffer[bufpos + 1] = '\0'; buffer[bufpos + 1] = '\0';
/* Use the remainder as a value for the next variable */ /* Use the remainder as a value for the next variable */
setvar(*argv, buffer, 0); setvar(*argv, buffer);
/* Set the rest to "" */ /* Set the rest to "" */
while (*++argv) while (*++argv)
setvar(*argv, "", 0); setvar(*argv, "");
} else { } else {
/* Note: no $IFS removal */ /* Note: no $IFS removal */
buffer[bufpos] = '\0'; buffer[bufpos] = '\0';
setvar("REPLY", buffer, 0); setvar("REPLY", buffer);
} }
ret: ret:

View File

@ -27,7 +27,7 @@ enum {
}; };
const char* FAST_FUNC const char* FAST_FUNC
builtin_read(void (*setvar)(const char *name, const char *val, int flags), shell_builtin_read(void FAST_FUNC (*setvar)(const char *name, const char *val),
char **argv, char **argv,
const char *ifs, const char *ifs,
int read_flags, int read_flags,

View File

@ -84,6 +84,9 @@
#if ENABLE_HUSH_CASE #if ENABLE_HUSH_CASE
# include <fnmatch.h> # include <fnmatch.h>
#endif #endif
#include "shell_common.h"
#include "builtin_read.h"
#include "math.h" #include "math.h"
#include "match.h" #include "match.h"
#if ENABLE_HUSH_RANDOM_SUPPORT #if ENABLE_HUSH_RANDOM_SUPPORT
@ -1307,7 +1310,7 @@ static struct variable *get_local_var(const char *name)
return NULL; return NULL;
} }
static const char *get_local_var_value(const char *name) static const char* FAST_FUNC get_local_var_value(const char *name)
{ {
struct variable **pp = get_ptr_to_local_var(name); struct variable **pp = get_ptr_to_local_var(name);
if (pp) if (pp)
@ -1510,7 +1513,7 @@ static void unset_vars(char **strings)
#if ENABLE_SH_MATH_SUPPORT #if ENABLE_SH_MATH_SUPPORT
#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c))) #define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c))) #define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
static char *endofname(const char *name) static char* FAST_FUNC endofname(const char *name)
{ {
char *p; char *p;
@ -1524,11 +1527,10 @@ static char *endofname(const char *name)
return p; return p;
} }
static void arith_set_local_var(const char *name, const char *val, int flags) static void FAST_FUNC set_local_var_from_halves(const char *name, const char *val)
{ {
/* arith code doesnt malloc space, so do it for it */
char *var = xasprintf("%s=%s", name, val); char *var = xasprintf("%s=%s", name, val);
set_local_var(var, flags, /*lvl:*/ 0, /*ro:*/ 0); set_local_var(var, /*flags:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
} }
#endif #endif
@ -2538,7 +2540,7 @@ static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg, char
exp_str = expand_pseudo_dquoted(arg); exp_str = expand_pseudo_dquoted(arg);
hooks.lookupvar = get_local_var_value; hooks.lookupvar = get_local_var_value;
hooks.setvar = arith_set_local_var; hooks.setvar = set_local_var_from_halves;
hooks.endofname = endofname; hooks.endofname = endofname;
res = arith(exp_str ? exp_str : arg, &errcode, &hooks); res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
free(exp_str); free(exp_str);
@ -6157,7 +6159,7 @@ static struct pipe *parse_stream(char **pstring,
G.ifs = get_local_var_value("IFS"); G.ifs = get_local_var_value("IFS");
if (G.ifs == NULL) if (G.ifs == NULL)
G.ifs = " \t\n"; G.ifs = defifs;
reset: reset:
#if ENABLE_HUSH_INTERACTIVE #if ENABLE_HUSH_INTERACTIVE
@ -7727,24 +7729,37 @@ static int FAST_FUNC builtin_pwd(char **argv UNUSED_PARAM)
static int FAST_FUNC builtin_read(char **argv) static int FAST_FUNC builtin_read(char **argv)
{ {
char *string; const char *r;
const char *name = "REPLY"; char *opt_n = NULL;
char *opt_p = NULL;
char *opt_t = NULL;
char *opt_u = NULL;
int read_flags;
if (argv[1]) { /* "!": do not abort on errors.
name = argv[1]; * Option string must start with "sr" to match BUILTIN_READ_xxx
/* bash (3.2.33(1)) bug: "read 0abcd" will execute, */
* and _after_ that_ it will complain */ read_flags = getopt32(argv, "!srn:p:t:u:", &opt_n, &opt_p, &opt_t, &opt_u);
if (!is_well_formed_var_name(name, '\0')) { if (read_flags == (uint32_t)-1)
/* Mimic bash message */ return EXIT_FAILURE;
bb_error_msg("read: '%s': not a valid identifier", name); argv += optind;
return 1;
} r = shell_builtin_read(set_local_var_from_halves,
argv,
get_local_var_value("IFS"), /* can be NULL */
read_flags,
opt_n,
opt_p,
opt_t,
opt_u
);
if ((uintptr_t)r > 1) {
bb_error_msg("%s", r);
r = (char*)(uintptr_t)1;
} }
//TODO: bash unbackslashes input, splits words and puts them in argv[i] return (uintptr_t)r;
string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
return set_local_var(string, /*exp:*/ 0, /*lvl:*/ 0, /*ro:*/ 0);
} }
/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set /* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set

View File

@ -0,0 +1,5 @@
test 1: | abc1 def |
test 2: | \abc2 d\ef |
test 3: |abc3 def|
test 4: |\abc4 d\ef|
Done

View File

@ -0,0 +1,5 @@
echo ' \abc1 d\ef ' | ( read ; echo "test 1: |$REPLY|" )
echo ' \abc2 d\ef ' | ( read -r ; echo "test 2: |$REPLY|" )
echo ' \abc3 d\ef ' | ( read REPLY; echo "test 3: |$REPLY|" )
echo ' \abc4 d\ef ' | ( read -r REPLY; echo "test 4: |$REPLY|" )
echo Done

View File

@ -0,0 +1,10 @@
test 1: .a. .b. .c.
test 2: .a. .b. .c.
test 3: .a. .. .b,c.
test 4: .a. .. .b,c.
test 5: .a. .. .c.
test 6: .a. .. .c. .d.
test 7: .a. .. .b,c,d , ,.
test 8: .. .a. .b. .c.
test 9: .a. .b. .c. ..
test A: .. .a. .. .b. .c.

View File

@ -0,0 +1,10 @@
printf 'a\t\tb\tc\n' | ( IFS=$(printf "\t") read a b c; echo "test 1: .$a. .$b. .$c." )
printf 'a\t\tb\tc\n' | ( IFS=$(printf " \t") read a b c; echo "test 2: .$a. .$b. .$c." )
printf 'a,,b,c\n' | ( IFS="," read a b c; echo "test 3: .$a. .$b. .$c." )
printf 'a,,b,c\n' | ( IFS=" ," read a b c; echo "test 4: .$a. .$b. .$c." )
printf 'a ,, c\n' | ( IFS=" ," read a b c; echo "test 5: .$a. .$b. .$c." )
printf 'a ,, c d\n' | ( IFS=" ," read a b c d; echo "test 6: .$a. .$b. .$c. .$d." )
printf ' a,,b,c,d , ,\n' | ( IFS=" ," read a b c; echo "test 7: .$a. .$b. .$c." )
printf '\t,\ta\t,\tb\tc' | ( IFS=$(printf " \t,") read a b c d; echo "test 8: .$a. .$b. .$c. .$d." )
printf '\t\ta\t,\tb\tc' | ( IFS=$(printf " \t,") read a b c d; echo "test 9: .$a. .$b. .$c. .$d." )
printf '\t,\ta\t,,\tb\tc' | ( IFS=$(printf " \t,") read a b c d e; echo "test A: .$a. .$b. .$c. .$d. .$e." )

View File

@ -0,0 +1,3 @@
test
tes
tes

View File

@ -0,0 +1,3 @@
echo 'test' | (read reply; echo "$reply")
echo 'test' | (read -n 3 reply; echo "$reply")
echo 'test' | (read -n3 reply; echo "$reply")

View File

@ -0,0 +1,2 @@
testbest
test\

View File

@ -0,0 +1,2 @@
echo -e 'test\\\nbest' | (read reply; echo "$reply")
echo -e 'test\\\nbest' | (read -r reply; echo "$reply")

View File

@ -0,0 +1,4 @@
><
><
>test<
>test<

View File

@ -0,0 +1,10 @@
# bash 3.2 outputs:
# ><
{ echo -n 'te'; sleep 2; echo 'st'; } | (read -t 1 reply; echo ">$reply<")
# ><
{ sleep 2; echo 'test'; } | (read -t 1 reply; echo ">$reply<")
# >test<
{ echo -n 'te'; sleep 1; echo 'st'; } | (read -t 2 reply; echo ">$reply<")
# >test<
{ sleep 1; echo 'test'; } | (read -t 2 reply; echo ">$reply<")

View File

@ -5,6 +5,8 @@
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
//TODO! Why ash.c still uses internal version?!
typedef char *(*scan_t)(char *string, char *match, bool match_at_left); typedef char *(*scan_t)(char *string, char *match, bool match_at_left);
char *scanleft(char *string, char *match, bool match_at_left); char *scanleft(char *string, char *match, bool match_at_left);

View File

@ -25,14 +25,6 @@
* *
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball. * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/ */
#include "libbb.h"
#include "math.h"
#define a_e_h_t arith_eval_hooks_t
#define lookupvar (math_hooks->lookupvar)
#define setvar (math_hooks->setvar)
#define endofname (math_hooks->endofname)
/* Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com> /* Copyright (c) 2001 Aaron Lehmann <aaronl@vitelus.com>
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
@ -99,7 +91,6 @@
* whitespace chars should be considered. Look below the "#include"s for a * whitespace chars should be considered. Look below the "#include"s for a
* precompiler test. * precompiler test.
*/ */
/* /*
* Aug 26, 2001 Manuel Novoa III * Aug 26, 2001 Manuel Novoa III
* *
@ -109,7 +100,6 @@
* modified slightly to take account of my changes to the code. * modified slightly to take account of my changes to the code.
* *
*/ */
/* /*
* (C) 2003 Vladimir Oleynik <dzo@simtreas.ru> * (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>
* *
@ -126,6 +116,13 @@
* - protect $((num num)) as true zero expr (Manuel`s error) * - protect $((num num)) as true zero expr (Manuel`s error)
* - always use special isspace(), see comment from bash ;-) * - always use special isspace(), see comment from bash ;-)
*/ */
#include "libbb.h"
#include "math.h"
#define a_e_h_t arith_eval_hooks_t
#define lookupvar (math_hooks->lookupvar)
#define setvar (math_hooks->setvar )
#define endofname (math_hooks->endofname)
#define arith_isspace(arithval) \ #define arith_isspace(arithval) \
(arithval == ' ' || arithval == '\n' || arithval == '\t') (arithval == ' ' || arithval == '\n' || arithval == '\t')
@ -420,7 +417,7 @@ arith_apply(operator op, v_n_t *numstack, v_n_t **numstackptr, a_e_h_t *math_hoo
} }
/* save to shell variable */ /* save to shell variable */
sprintf(buf, arith_t_fmt, rez); sprintf(buf, arith_t_fmt, rez);
setvar(numptr_m1->var, buf, 0); setvar(numptr_m1->var, buf);
/* after saving, make previous value for v++ or v-- */ /* after saving, make previous value for v++ or v-- */
if (op == TOK_POST_INC) if (op == TOK_POST_INC)
rez--; rez--;

View File

@ -87,12 +87,13 @@ typedef long arith_t;
#define strto_arith_t strtoul #define strto_arith_t strtoul
#endif #endif
typedef const char *(*arith_var_lookup_t)(const char *name); typedef const char* FAST_FUNC (*arith_var_lookup_t)(const char *name);
typedef void (*arith_var_set_t)(const char *name, const char *val, int flags); typedef void FAST_FUNC (*arith_var_set_t)(const char *name, const char *val);
typedef char *(*arith_var_endofname_t)(const char *name); typedef char* FAST_FUNC (*arith_var_endofname_t)(const char *name);
typedef struct arith_eval_hooks { typedef struct arith_eval_hooks {
arith_var_lookup_t lookupvar; arith_var_lookup_t lookupvar;
arith_var_set_t setvar; arith_var_set_t setvar;
arith_var_endofname_t endofname; arith_var_endofname_t endofname;
} arith_eval_hooks_t; } arith_eval_hooks_t;