Bash
Cuándo usar eval
Buscar..
Introducción
En primer lugar: ¡sabe lo que estás haciendo! En segundo lugar, aunque debe evitar usar eval
, si su uso hace que el código sea más limpio, adelante.
Usando Eval
Por ejemplo, considere lo siguiente que establece el contenido de $@
al contenido de una variable dada:
a=(1 2 3)
eval set -- "${a[@]}"
Este código suele ir acompañado de getopt
u getopts
para establecer $@
en la salida de los analizadores de opciones mencionados anteriormente. Sin embargo, también puede usarlo para crear una función pop
simple que puede operar en las variables de forma silenciosa y directamente sin tener que almacenar el resultado para la variable original:
isnum()
{
# is argument an integer?
local re='^[0-9]+$'
if [[ -n $1 ]]; then
[[ $1 =~ $re ]] && return 0
return 1
else
return 2
fi
}
isvar()
{
if isnum "$1"; then
return 1
fi
local arr="$(eval eval -- echo -n "\$$1")"
if [[ -n ${arr[@]} ]]; then
return 0
fi
return 1
}
pop()
{
if [[ -z $@ ]]; then
return 1
fi
local var=
local isvar=0
local arr=()
if isvar "$1"; then # let's check to see if this is a variable or just a bare array
var="$1"
isvar=1
arr=($(eval eval -- echo -n "\${$1[@]}")) # if it is a var, get its contents
else
arr=($@)
fi
# we need to reverse the contents of $@ so that we can shift
# the last element into nothingness
arr=($(awk <<<"${arr[@]}" '{ for (i=NF; i>1; --i) printf("%s ",$i); print $1; }'
# set $@ to ${arr[@]} so that we can run shift against it.
eval set -- "${arr[@]}"
shift # remove the last element
# put the array back to its original order
arr=($(awk <<<"$@" '{ for (i=NF; i>1; --i) printf("%s ",$i); print $1; }'
# echo the contents for the benefit of users and for bare arrays
echo "${arr[@]}"
if ((isvar)); then
# set the contents of the original var to the new modified array
eval -- "$var=(${arr[@]})"
fi
}
Usando Eval con Getopt
Si bien es posible que eval no sea necesario para una función de estilo pop
, sin embargo, se requiere cada vez que use getopt
:
Considere la siguiente función que acepta -h
como una opción:
f()
{
local __me__="${FUNCNAME[0]}"
local argv="$(getopt -o 'h' -n $__me__ -- "$@")"
eval set -- "$argv"
while :; do
case "$1" in
-h)
echo "LOLOLOLOL"
return 0
;;
--)
shift
break
;;
done
echo "$@"
}
Sin el set -- "$argv"
eval
set -- "$argv"
genera -h --
lugar del deseado (-h --)
y luego ingresa en un bucle infinito porque -h --
no coincide --
o -h
.