adb: New completion

This commit is contained in:
Ville Skyttä 2014-07-01 17:34:42 +03:00
parent afe39fd1e1
commit 4bbab196cb
4 changed files with 86 additions and 0 deletions

View File

@ -5,6 +5,7 @@ bashcomp_DATA = 2to3 \
abook \ abook \
aclocal \ aclocal \
acpi \ acpi \
adb \
add_members \ add_members \
alias \ alias \
ant \ ant \

66
completions/adb Normal file
View File

@ -0,0 +1,66 @@
# adb completion -*- shell-script -*-
_adb_command_usage()
{
COMPREPLY=( $( compgen -W \
'$( "$1" help 2>&1 | command grep "^ *\(adb \)\? *$2 " \
| sed -e "s/[]|[]/\n/g" | _parse_help - )' -- "$cur" ) )
}
_adb()
{
local cur prev words cword
_init_completion || return
case $prev in
-s|-p|--algo|--key|--iv)
return
;;
-f)
_filedir
return
;;
esac
local cmd i
for (( i=1; i < cword; i++ )); do
if [[ "${words[i]}" != -* && "${words[i-1]}" != -@(s|p) ]]; then
cmd="${words[i]}"
break
fi
done
if [[ ! "$cmd" ]]; then
local tmp=()
if [[ ! $cur || $cur == -* ]]; then
tmp+=( $( compgen -W '$( _parse_help "$1" help )' -- "$cur" ) )
fi
if [[ ! $cur || $cur != -* ]]; then
tmp+=( $( $1 help 2>&1 | awk '$1 == "adb" { print $2 }' ) )
tmp+=( devices connect disconnect sideload )
fi
COMPREPLY=( $( compgen -W '${tmp[@]}' -- "$cur" ) )
return
fi
# TODO: more and better command completions
_adb_command_usage "$1" $cmd
case $cmd in
push|restore|sideload)
_filedir
;;
forward)
COMPREPLY=( $( compgen -W \
'$( "$1" help 2>&1 | sed -ne "s/^ *adb *forward *-/-/p" | \
_parse_help - )' -- "$cur" ) )
;;
reboot)
COMPREPLY=( $( compgen -W 'bootloader recovery' -- "$cur" ) )
;;
esac
} &&
complete -F _adb adb
# ex: ts=4 sw=4 et filetype=sh

1
test/completion/adb.exp Normal file
View File

@ -0,0 +1 @@
assert_source_completions adb

View File

@ -0,0 +1,18 @@
proc setup {} {
save_env
}
proc teardown {} {
assert_env_unmodified
}
setup
assert_complete_any "adb "
sync_after_int
teardown