Systemd/shell-completion/bash/busctl

90 lines
2.9 KiB
Plaintext
Raw Normal View History

2014-02-19 17:12:17 +01:00
# busctl(1) completion -*- shell-script -*-
2013-12-06 03:33:08 +01:00
#
# This file is part of systemd.
#
# Copyright 2013 Zbigniew Jędrzejewski-Szmek
2014-02-19 17:12:17 +01:00
# Copyright 2014 Thomas H.P. Andersen
2013-12-06 03:33:08 +01:00
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with systemd; If not, see <http://www.gnu.org/licenses/>.
__contains_word () {
local w word=$1; shift
for w in "$@"; do
[[ $w = "$word" ]] && return
done
}
2014-02-19 17:12:17 +01:00
__get_machines() {
local a b
machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
}
__get_endpoints() {
local a b
busctl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
2014-02-19 17:12:17 +01:00
}
2013-12-06 03:33:08 +01:00
_busctl() {
local i verb comps
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local -A OPTS=(
[STANDALONE]='-h --help --version --no-pager --no-legend --system --user
2014-02-19 17:12:17 +01:00
--show-machine --unique --acquired --activatable'
[ARG]='-H --host -M --machine --address --match'
2013-12-06 03:33:08 +01:00
)
if __contains_word "$prev" ${OPTS[ARG]}; then
case $prev in
--host|-H)
comps=$(compgen -A hostname)
;;
2014-02-19 17:12:17 +01:00
--machine|-M)
comps=$( __get_machines )
2013-12-06 03:33:08 +01:00
esac
COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
return 0
fi
if [[ "$cur" = -* ]]; then
COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
return 0
fi
local -A VERBS=(
2014-02-19 17:12:17 +01:00
[STANDALONE]='list help'
[ENDPOINT]='monitor status'
2013-12-06 03:33:08 +01:00
)
for ((i=0; i < COMP_CWORD; i++)); do
2013-12-06 03:33:08 +01:00
if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
verb=${COMP_WORDS[i]}
break
fi
done
if [[ -z $verb ]]; then
comps=${VERBS[*]}
elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
comps=''
2014-02-19 17:12:17 +01:00
elif __contains_word "$verb" ${VERBS[ENDPOINT]}; then
comps=$( __get_endpoints )
2013-12-06 03:33:08 +01:00
fi
COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
return 0
}
complete -F _busctl busctl