1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Resync bash completion to include all flags defined in the code, and to autocomplete properly on all parameters that are reasonably possible to do so on today

This also includes several new minor features that are interesting, so do explore a little. :)

Finally, this also fixes a few bugs where commands would complete parameters that they won't necessarily accept.  We still have a few of these cases, but they're reduced to a minimum now.

Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
This commit is contained in:
Tianon Gravi 2014-01-11 01:00:03 -07:00
parent a60f0a0754
commit c6e43154f1

View file

@ -23,62 +23,82 @@
__docker_containers_all() __docker_containers_all()
{ {
local containers local containers="$( docker ps -a -q )"
containers="$( docker ps -a -q )" local names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) )
} }
__docker_containers_running() __docker_containers_running()
{ {
local containers local containers="$( docker ps -q )"
containers="$( docker ps -q )" local names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) )
} }
__docker_containers_stopped() __docker_containers_stopped()
{ {
local containers local containers="$( { docker ps -a -q; docker ps -q; } | sort | uniq -u )"
containers="$( comm -13 <(docker ps -q | sort -u) <(docker ps -a -q | sort -u) )" local names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$names $containers" -- "$cur" ) )
} }
__docker_image_repos() __docker_image_repos()
{ {
local repos local repos="$( docker images | awk 'NR>1{print $1}' | grep -v '^<none>$' )"
repos="$( docker images | awk 'NR>1{print $1}' )"
COMPREPLY=( $( compgen -W "$repos" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$repos" -- "$cur" ) )
} }
__docker_images()
{
local images
images="$( docker images | awk 'NR>1{print $1":"$2}' )"
COMPREPLY=( $( compgen -W "$images" -- "$cur" ) )
__ltrim_colon_completions "$cur"
}
__docker_image_repos_and_tags() __docker_image_repos_and_tags()
{ {
local repos images local repos="$( docker images | awk 'NR>1{print $1}' | grep -v '^<none>$' )"
repos="$( docker images | awk 'NR>1{print $1}' )" local images="$( docker images | awk 'NR>1{print $1":"$2}' | grep -v '^<none>:' )"
images="$( docker images | awk 'NR>1{print $1":"$2}' )"
COMPREPLY=( $( compgen -W "$repos $images" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$repos $images" -- "$cur" ) )
__ltrim_colon_completions "$cur" __ltrim_colon_completions "$cur"
} }
__docker_image_repos_and_tags_and_ids()
{
local repos="$( docker images | awk 'NR>1{print $1}' | grep -v '^<none>$' )"
local images="$( docker images | awk 'NR>1{print $1":"$2}' | grep -v '^<none>:' )"
local ids="$( docker images -a -q )"
COMPREPLY=( $( compgen -W "$repos $images $ids" -- "$cur" ) )
__ltrim_colon_completions "$cur"
}
__docker_containers_and_images() __docker_containers_and_images()
{ {
local containers images local containers="$( docker ps -a -q )"
containers="$( docker ps -a -q )" local names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )"
names="$( docker inspect --format '{{.Name}}' $containers | sed 's,^/,,' )" local repos="$( docker images | awk 'NR>1{print $1}' | grep -v '^<none>$' )"
images="$( docker images | awk 'NR>1{print $1":"$2}' )" local images="$( docker images | awk 'NR>1{print $1":"$2}' | grep -v '^<none>:' )"
COMPREPLY=( $( compgen -W "$images $names $containers" -- "$cur" ) ) local ids="$( docker images -a -q )"
COMPREPLY=( $( compgen -W "$containers $names $repos $images $ids" -- "$cur" ) )
__ltrim_colon_completions "$cur" __ltrim_colon_completions "$cur"
} }
__docker_pos_first_nonflag()
{
local argument_flags=$1
local counter=$cpos
while [ $counter -le $cword ]; do
if [ -n "$argument_flags" ] && eval "case '${words[$counter]}' in $argument_flags) true ;; *) false ;; esac"; then
(( counter++ ))
else
case "${words[$counter]}" in
-*)
;;
*)
break
;;
esac
fi
(( counter++ ))
done
echo $counter
}
_docker_docker() _docker_docker()
{ {
case "$prev" in case "$prev" in
@ -101,15 +121,24 @@ _docker_docker()
_docker_attach() _docker_attach()
{ {
if [ $cpos -eq $cword ]; then case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--no-stdin --sig-proxy" -- "$cur" ) )
;;
*)
local counter="$(__docker_pos_first_nonflag)"
if [ $cword -eq $counter ]; then
__docker_containers_running __docker_containers_running
fi fi
;;
esac
} }
_docker_build() _docker_build()
{ {
case "$prev" in case "$prev" in
-t) -t|--tag)
__docker_image_repos_and_tags
return return
;; ;;
*) *)
@ -118,10 +147,13 @@ _docker_build()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "--no-cache -t -q --rm" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-t --tag -q --quiet --no-cache --rm" -- "$cur" ) )
;; ;;
*) *)
local counter="$(__docker_pos_first_nonflag '-t|--tag')"
if [ $cword -eq $counter ]; then
_filedir _filedir
fi
;; ;;
esac esac
} }
@ -129,7 +161,7 @@ _docker_build()
_docker_commit() _docker_commit()
{ {
case "$prev" in case "$prev" in
-author|-m|-run) -m|--message|-a|--author|--run)
return return
;; ;;
*) *)
@ -138,26 +170,20 @@ _docker_commit()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "--author -m --run" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-m --message -a --author --run" -- "$cur" ) )
;; ;;
*) *)
local counter=$cpos local counter=$(__docker_pos_first_nonflag '-m|--message|-a|--author|--run')
while [ $counter -le $cword ]; do
case "${words[$counter]}" in
-author|-m|-run)
(( counter++ ))
;;
-*)
;;
*)
break
;;
esac
(( counter++ ))
done
if [ $counter -eq $cword ]; then if [ $cword -eq $counter ]; then
__docker_containers_all __docker_containers_all
return
fi
(( counter++ ))
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags
return
fi fi
;; ;;
esac esac
@ -165,16 +191,32 @@ _docker_commit()
_docker_cp() _docker_cp()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
case "$cur" in
*:)
return
;;
*)
__docker_containers_all __docker_containers_all
else COMPREPLY=( $( compgen -W "${COMPREPLY[*]}" -S ':' ) )
compopt -o nospace
return
;;
esac
fi
(( counter++ ))
if [ $cword -eq $counter ]; then
_filedir _filedir
return
fi fi
} }
_docker_diff() _docker_diff()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_all __docker_containers_all
fi fi
} }
@ -182,7 +224,7 @@ _docker_diff()
_docker_events() _docker_events()
{ {
case "$prev" in case "$prev" in
-since) --since)
return return
;; ;;
*) *)
@ -200,45 +242,44 @@ _docker_events()
_docker_export() _docker_export()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_all __docker_containers_all
fi fi
} }
_docker_help() _docker_help()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
COMPREPLY=( $( compgen -W "$commands" -- "$cur" ) ) COMPREPLY=( $( compgen -W "$commands" -- "$cur" ) )
fi fi
} }
_docker_history() _docker_history()
{ {
if [ $cpos -eq $cword ]; then case "$cur" in
__docker_image_repos_and_tags -*)
COMPREPLY=( $( compgen -W "-q --quiet --no-trunc" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags_and_ids
fi fi
;;
esac
} }
_docker_images() _docker_images()
{ {
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-a --no-trunc -q --viz" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-q --quiet -a --all --no-trunc -v --viz -t --tree" -- "$cur" ) )
;; ;;
*) *)
local counter=$cpos local counter=$(__docker_pos_first_nonflag)
while [ $counter -le $cword ]; do if [ $cword -eq $counter ]; then
case "${words[$counter]}" in
-*)
;;
*)
break
;;
esac
(( counter++ ))
done
if [ $counter -eq $cword ]; then
__docker_image_repos __docker_image_repos
fi fi
;; ;;
@ -247,7 +288,16 @@ _docker_images()
_docker_import() _docker_import()
{ {
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
return return
fi
(( counter++ ))
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags
return
fi
} }
_docker_info() _docker_info()
@ -257,25 +307,16 @@ _docker_info()
_docker_insert() _docker_insert()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
__docker_image_repos_and_tags if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags_and_ids
fi fi
} }
_docker_inspect() _docker_inspect()
{
__docker_containers_and_images
}
_docker_kill()
{
__docker_containers_running
}
_docker_login()
{ {
case "$prev" in case "$prev" in
-e|-p|-u) -f|--format)
return return
;; ;;
*) *)
@ -284,7 +325,37 @@ _docker_login()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-e -p -u" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-f --format" -- "$cur" ) )
;;
*)
__docker_containers_and_images
;;
esac
}
_docker_kill()
{
__docker_containers_running
}
_docker_load()
{
return
}
_docker_login()
{
case "$prev" in
-u|--username|-p|--password|-e|--email)
return
;;
*)
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-u --username -p --password -e --email" -- "$cur" ) )
;; ;;
*) *)
;; ;;
@ -293,14 +364,23 @@ _docker_login()
_docker_logs() _docker_logs()
{ {
if [ $cpos -eq $cword ]; then case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-f --follow" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_all __docker_containers_all
fi fi
;;
esac
} }
_docker_port() _docker_port()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_all __docker_containers_all
fi fi
} }
@ -308,7 +388,13 @@ _docker_port()
_docker_ps() _docker_ps()
{ {
case "$prev" in case "$prev" in
-before-id|-n|-since-id) --since-id|--before-id)
COMPREPLY=( $( compgen -W "$(docker ps -a -q)" -- "$cur" ) )
# TODO replace this with __docker_containers_all
# see https://github.com/dotcloud/docker/issues/3565
return
;;
-n)
return return
;; ;;
*) *)
@ -317,7 +403,7 @@ _docker_ps()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-a --before-id -l -n --no-trunc -q -s --since-id" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-q --quiet -s --size -a --all --no-trunc -l --latest --since-id --before-id -n" -- "$cur" ) )
;; ;;
*) *)
;; ;;
@ -327,7 +413,7 @@ _docker_ps()
_docker_pull() _docker_pull()
{ {
case "$prev" in case "$prev" in
-t) -t|--tag)
return return
;; ;;
*) *)
@ -336,22 +422,31 @@ _docker_pull()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-t" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-t --tag" -- "$cur" ) )
;; ;;
*) *)
local counter=$(__docker_pos_first_nonflag '-t|--tag')
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags
fi
;; ;;
esac esac
} }
_docker_push() _docker_push()
{ {
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_image_repos __docker_image_repos
# TODO replace this with __docker_image_repos_and_tags
# see https://github.com/dotcloud/docker/issues/3411
fi
} }
_docker_restart() _docker_restart()
{ {
case "$prev" in case "$prev" in
-t) -t|--time)
return return
;; ;;
*) *)
@ -360,7 +455,7 @@ _docker_restart()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-t" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-t --time" -- "$cur" ) )
;; ;;
*) *)
__docker_containers_all __docker_containers_all
@ -372,7 +467,7 @@ _docker_rm()
{ {
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-v" -- "$cur" ) ) COMPREPLY=( $( compgen -W "-v --volumes -l --link" -- "$cur" ) )
;; ;;
*) *)
__docker_containers_stopped __docker_containers_stopped
@ -382,7 +477,7 @@ _docker_rm()
_docker_rmi() _docker_rmi()
{ {
__docker_image_repos_and_tags __docker_image_repos_and_tags_and_ids
} }
_docker_run() _docker_run()
@ -394,7 +489,15 @@ _docker_run()
--volumes-from) --volumes-from)
__docker_containers_all __docker_containers_all
;; ;;
-a|-c|--dns|-e|--entrypoint|-h|--lxc-conf|-m|-p|-u|-v|-w) -v|--volume)
# TODO something magical with colons and _filedir ?
return
;;
-e|--env)
COMPREPLY=( $( compgen -e -- "$cur" ) )
return
;;
--entrypoint|-h|--hostname|-m|--memory|-u|--username|-w|--workdir|-c|--cpu-shares|-n|--name|-a|--attach|--link|-p|--publish|--expose|--dns|--lxc-conf)
return return
;; ;;
*) *)
@ -403,45 +506,30 @@ _docker_run()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-a -c --cidfile -d --dns -e --entrypoint -h -i --lxc-conf -m -n -p --privileged -t -u -v --volumes-from -w" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--rm -d --detach -n --networking --privileged -P --publish-all -i --interactive -t --tty --cidfile --entrypoint -h --hostname -m --memory -u --username -w --workdir -c --cpu-shares --sig-proxy --name -a --attach -v --volume --link -e --env -p --publish --expose --dns --volumes-from --lxc-conf" -- "$cur" ) )
;; ;;
*) *)
local counter=$cpos local counter=$(__docker_pos_first_nonflag '--cidfile|--volumes-from|-v|--volume|-e|--env|--entrypoint|-h|--hostname|-m|--memory|-u|--username|-w|--workdir|-c|--cpu-shares|-n|--name|-a|--attach|--link|-p|--publish|--expose|--dns|--lxc-conf')
while [ $counter -le $cword ]; do
case "${words[$counter]}" in
-a|-c|--cidfile|--dns|-e|--entrypoint|-h|--lxc-conf|-m|-p|-u|-v|--volumes-from|-w)
(( counter++ ))
;;
-*)
;;
*)
break
;;
esac
(( counter++ ))
done
if [ $counter -eq $cword ]; then if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags __docker_image_repos_and_tags_and_ids
fi fi
;; ;;
esac esac
} }
_docker_save()
{
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags_and_ids
fi
}
_docker_search() _docker_search()
{
COMPREPLY=( $( compgen -W "--no-trunc" "--stars" "--trusted" -- "$cur" ) )
}
_docker_start()
{
__docker_containers_stopped
}
_docker_stop()
{ {
case "$prev" in case "$prev" in
-t) -s|--stars)
return return
;; ;;
*) *)
@ -450,7 +538,38 @@ _docker_stop()
case "$cur" in case "$cur" in
-*) -*)
COMPREPLY=( $( compgen -W "-t" -- "$cur" ) ) COMPREPLY=( $( compgen -W "--no-trunc -t --trusted -s --stars" -- "$cur" ) )
;;
*)
;;
esac
}
_docker_start()
{
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-a --attach -i --interactive" -- "$cur" ) )
;;
*)
__docker_containers_stopped
;;
esac
}
_docker_stop()
{
case "$prev" in
-t|--time)
return
;;
*)
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-t --time" -- "$cur" ) )
;; ;;
*) *)
__docker_containers_running __docker_containers_running
@ -460,12 +579,31 @@ _docker_stop()
_docker_tag() _docker_tag()
{ {
COMPREPLY=( $( compgen -W "-f" -- "$cur" ) ) case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-f --force" -- "$cur" ) )
;;
*)
local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags
return
fi
(( counter++ ))
if [ $cword -eq $counter ]; then
__docker_image_repos_and_tags
return
fi
;;
esac
} }
_docker_top() _docker_top()
{ {
if [ $cpos -eq $cword ]; then local counter=$(__docker_pos_first_nonflag)
if [ $cword -eq $counter ]; then
__docker_containers_running __docker_containers_running
fi fi
} }
@ -482,7 +620,6 @@ _docker_wait()
_docker() _docker()
{ {
local cur prev words cword command="docker" counter=1 word cpos
local commands=" local commands="
attach attach
build build
@ -498,6 +635,7 @@ _docker()
insert insert
inspect inspect
kill kill
load
login login
logs logs
port port
@ -508,6 +646,7 @@ _docker()
rm rm
rmi rmi
run run
save
search search
start start
stop stop
@ -518,18 +657,20 @@ _docker()
" "
COMPREPLY=() COMPREPLY=()
local cur prev words cword
_get_comp_words_by_ref -n : cur prev words cword _get_comp_words_by_ref -n : cur prev words cword
local command='docker'
local counter=1
while [ $counter -lt $cword ]; do while [ $counter -lt $cword ]; do
word="${words[$counter]}" case "${words[$counter]}" in
case "$word" in
-H) -H)
(( counter++ )) (( counter++ ))
;; ;;
-*) -*)
;; ;;
*) *)
command="$word" command="${words[$counter]}"
cpos=$counter cpos=$counter
(( cpos++ )) (( cpos++ ))
break break