chiark / gitweb /
hostnamed: introduce new "embedded" chassis type
[elogind.git] / shell-completion / bash / busctl
1 # busctl(1) completion                               -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2013 Zbigniew JÄ™drzejewski-Szmek
6 # Copyright 2014 Thomas H.P. Andersen
7 #
8 # systemd is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU Lesser General Public License as published by
10 # the Free Software Foundation; either version 2.1 of the License, or
11 # (at your option) any later version.
12 #
13 # systemd is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public License
19 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
20
21 __contains_word () {
22         local w word=$1; shift
23         for w in "$@"; do
24                 [[ $w = "$word" ]] && return
25         done
26 }
27
28 __get_machines() {
29         local a b
30         machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
31 }
32
33 __get_endpoints() {
34         local mode=$1
35         local a b
36         busctl $mode list --no-legend --no-pager | { while read a b; do echo " $a"; done; };
37 }
38
39 _busctl() {
40         local i verb comps mode
41         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
42         local -A OPTS=(
43                [STANDALONE]='-h --help --version --no-pager --no-legend --system --user
44                              --show-machine --unique --acquired --activatable'
45                       [ARG]='-H --host -M --machine --address --match'
46         )
47
48         if __contains_word "--user" ${COMP_WORDS[*]}; then
49             mode=--user
50         else
51             mode=--system
52         fi
53
54         if __contains_word "$prev" ${OPTS[ARG]}; then
55                 case $prev in
56                         --host|-H)
57                                 comps=$(compgen -A hostname)
58                         ;;
59                         --machine|-M)
60                                 comps=$( __get_machines )
61                 esac
62                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
63                 return 0
64         fi
65
66         if [[ "$cur" = -* ]]; then
67                 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
68                 return 0
69         fi
70
71         local -A VERBS=(
72                 [STANDALONE]='list help'
73                 [ENDPOINT]='monitor status'
74         )
75
76         for ((i=0; i < COMP_CWORD; i++)); do
77                 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
78                  ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
79                         verb=${COMP_WORDS[i]}
80                         break
81                 fi
82         done
83
84         if [[ -z $verb ]]; then
85                 comps=${VERBS[*]}
86         elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
87                 comps=''
88         elif __contains_word "$verb" ${VERBS[ENDPOINT]}; then
89                 comps=$( __get_endpoints $mode)
90         fi
91
92         COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
93         return 0
94 }
95
96 complete -F _busctl busctl