mirror of
https://github.com/zplug/zplug
synced 2025-04-05 15:19:13 +02:00
97 lines
1.8 KiB
Bash
97 lines
1.8 KiB
Bash
__zplug::core::options::get()
|
|
{
|
|
__zplug::core::core::get_interfaces \
|
|
"options" \
|
|
"$argv[@]"
|
|
}
|
|
|
|
__zplug::core::options::parse()
|
|
{
|
|
local arg
|
|
local -i ret=1
|
|
|
|
while (( $# > 0 ))
|
|
do
|
|
arg="$1"
|
|
case "$arg" in
|
|
"--")
|
|
# TODO
|
|
;;
|
|
|
|
"-")
|
|
# TODO
|
|
;;
|
|
|
|
--*)
|
|
__zplug::core::options::long \
|
|
"$arg" \
|
|
${2:+"$argv[2,-1]"}
|
|
ret=$status
|
|
;;
|
|
|
|
-*)
|
|
__zplug::core::options::short \
|
|
"$arg" \
|
|
${2:+"$argv[2,-1]"}
|
|
ret=$status
|
|
;;
|
|
|
|
*)
|
|
# Impossible condition
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
return $ret
|
|
}
|
|
|
|
__zplug::core::options::short()
|
|
{
|
|
__zplug::core::options::unknown "$arg"
|
|
return $status
|
|
}
|
|
|
|
__zplug::core::options::long()
|
|
{
|
|
local key value
|
|
local -a args opts
|
|
|
|
__zplug::utils::shell::getopts "$argv[@]" \
|
|
| while read key value; \
|
|
do
|
|
case "$key" in
|
|
_)
|
|
args+=( "$value" )
|
|
;;
|
|
*)
|
|
opts+=( "$key" )
|
|
args+=( "$value" )
|
|
;;
|
|
esac
|
|
done
|
|
|
|
opt="$opts[1]"
|
|
|
|
if [[ -f $ZPLUG_ROOT/autoload/options/__${opt}__ ]]; then
|
|
__zplug::core::core::run_interfaces \
|
|
"$opt" \
|
|
"$args[@]"
|
|
return $status
|
|
else
|
|
__zplug::core::options::unknown "$argv[1]"
|
|
return $status
|
|
fi
|
|
}
|
|
|
|
__zplug::core::options::unknown()
|
|
{
|
|
local arg="$1"
|
|
|
|
__zplug::io::print::f \
|
|
--die \
|
|
--zplug \
|
|
"$arg: unknown option\n"
|
|
return 1
|
|
}
|