chiark / gitweb /
69ef04b017c88fa6a881b8bbb045a0f1fd62c452
[elogind.git] / shell-completion / bash / systemctl.in
1 # systemctl(1) completion                                 -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2010 Ran Benita
6 #
7 # systemd is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU Lesser General Public License as published by
9 # the Free Software Foundation; either version 2.1 of the License, or
10 # (at your option) any later version.
11 #
12 # systemd is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public License
18 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
19
20 __systemctl() {
21         local mode=$1; shift 1
22         systemctl $mode --full --no-legend "$@"
23 }
24
25 __systemd_properties() {
26         local mode=$1
27         { __systemctl $mode show --all;
28          @rootlibexecdir@/systemd --dump-configuration-items; } |
29         while IFS='=' read -r key value; do
30             [[ $value ]] && echo "$key"
31         done
32 }
33
34 __contains_word () {
35         local w word=$1; shift
36         for w in "$@"; do
37                 [[ $w = "$word" ]] && return
38         done
39 }
40
41 __filter_units_by_property () {
42         local mode=$1 property=$2 value=$3 ; shift 3
43         local units=("$@")
44         local props
45         IFS=$'\n' read -rd '' -a props < \
46             <(__systemctl $mode show --property "$property" -- "${units[@]}")
47         for ((i=0; $i < ${#units[*]}; i++)); do
48                 if [[ "${props[i]}" = "$property=$value" ]]; then
49                         echo " ${units[i]}"
50                 fi
51         done
52 }
53
54 __get_all_units      () { { __systemctl $1 list-unit-files; __systemctl $1 list-units --all; } \
55         | { while read -r a b; do echo " $a"; done; }; }
56 __get_active_units   () { __systemctl $1 list-units       \
57         | { while read -r a b; do echo " $a"; done; }; }
58 __get_startable_units () { {
59         __systemctl $1 list-units --all -t service,timer,socket,mount,automount,path,snapshot,swap
60         __systemctl $1 list-unit-files -t service,timer,socket,mount,automount,path,snapshot,swap; } \
61         | { while read -r a b c d; do [[ $c == "inactive" || $c == "failed" ]] && echo " $a"; done; }; }
62 __get_failed_units   () { __systemctl $1 list-units       \
63         | { while read -r a b c d; do [[ $c == "failed"   ]] && echo " $a"; done; }; }
64 __get_enabled_units  () { __systemctl $1 list-unit-files  \
65         | { while read -r a b c  ; do [[ $b == "enabled"  ]] && echo " $a"; done; }; }
66 __get_disabled_units () { __systemctl $1 list-unit-files  \
67         | { while read -r a b c  ; do [[ $b == "disabled" ]] && echo " $a"; done; }; }
68 __get_masked_units   () { __systemctl $1 list-unit-files  \
69         | { while read -r a b c  ; do [[ $b == "masked"   ]] && echo " $a"; done; }; }
70
71 _systemctl () {
72         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
73         local i verb comps mode
74
75         local -A OPTS=(
76                [STANDALONE]='--all -a --reverse --after --before --defaults --fail --ignore-dependencies --failed --force -f --full -l --global
77                              --help -h --no-ask-password --no-block --no-legend --no-pager --no-reload --no-wall
78                              --quiet -q --privileged -P --system --user --version --runtime --recursive -r'
79                       [ARG]='--host -H --kill-who --property -p --signal -s --type -t --state --root'
80         )
81
82         if __contains_word "--user" ${COMP_WORDS[*]}; then
83             mode=--user
84         else
85             mode=--system
86         fi
87
88         if __contains_word "$prev" ${OPTS[ARG]}; then
89                 case $prev in
90                         --signal|-s)
91                                 comps=$(compgen -A signal)
92                         ;;
93                         --type|-t)
94                                 comps='automount busname device mount path service snapshot socket swap target timer'
95                         ;;
96                         --state)
97                                 comps='loaded not-found stub
98                                        active inactive
99                                        dead elapsed exited listening mounted plugged running waiting'
100                         ;;
101                         --kill-who)
102                                 comps='all control main'
103                         ;;
104                         --root)
105                                 comps=$(compgen -A directory -- "$cur" )
106                                 compopt -o filenames
107                         ;;
108                         --host|-H)
109                                 comps=$(compgen -A hostname)
110                         ;;
111                         --property|-p)
112                                 comps=$(__systemd_properties $mode)
113                         ;;
114                 esac
115                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
116                 return 0
117         fi
118
119         if [[ "$cur" = -* ]]; then
120                 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
121                 return 0
122         fi
123
124         local -A VERBS=(
125                 [ALL_UNITS]='is-active is-failed is-enabled status show cat mask preset help list-dependencies'
126             [ENABLED_UNITS]='disable'
127            [DISABLED_UNITS]='enable'
128         [REENABLABLE_UNITS]='reenable'
129              [FAILED_UNITS]='reset-failed'
130           [STARTABLE_UNITS]='start'
131           [STOPPABLE_UNITS]='stop condstop kill try-restart condrestart'
132          [ISOLATABLE_UNITS]='isolate'
133          [RELOADABLE_UNITS]='reload condreload reload-or-try-restart force-reload'
134         [RESTARTABLE_UNITS]='restart reload-or-restart'
135              [MASKED_UNITS]='unmask'
136                      [JOBS]='cancel'
137                 [SNAPSHOTS]='delete'
138                      [ENVS]='set-environment unset-environment'
139                [STANDALONE]='daemon-reexec daemon-reload default
140                              emergency exit halt hibernate hybrid-sleep kexec list-jobs
141                              list-sockets list-timers list-units list-unit-files poweroff
142                              reboot rescue show-environment suspend get-default'
143                      [NAME]='snapshot'
144                      [FILE]='link'
145                   [TARGETS]='set-default'
146         )
147
148         for ((i=0; i < COMP_CWORD; i++)); do
149                 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
150                  ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
151                         verb=${COMP_WORDS[i]}
152                         break
153                 fi
154         done
155
156         if [[ -z $verb ]]; then
157                 comps="${VERBS[*]}"
158
159         elif __contains_word "$verb" ${VERBS[ALL_UNITS]}; then
160                 comps=$( __get_all_units $mode )
161
162         elif __contains_word "$verb" ${VERBS[ENABLED_UNITS]}; then
163                 comps=$( __get_enabled_units $mode )
164
165         elif __contains_word "$verb" ${VERBS[DISABLED_UNITS]}; then
166                 comps=$( __get_disabled_units $mode )
167
168         elif __contains_word "$verb" ${VERBS[REENABLABLE_UNITS]}; then
169                 comps=$( __get_disabled_units $mode;
170                          __get_enabled_units $mode )
171
172         elif __contains_word "$verb" ${VERBS[STARTABLE_UNITS]}; then
173                 comps=$( __filter_units_by_property $mode CanStart yes \
174                       $( __get_startable_units $mode))
175
176         elif __contains_word "$verb" ${VERBS[RESTARTABLE_UNITS]}; then
177                 comps=$( __filter_units_by_property $mode CanStart yes \
178                       $( __get_all_units $mode \
179                         | while read -r line; do \
180                                 [[ "$line" =~ \.(device|snapshot|socket|timer)$ ]] || echo " $line"; \
181                         done ))
182
183         elif __contains_word "$verb" ${VERBS[STOPPABLE_UNITS]}; then
184                 comps=$( __filter_units_by_property $mode CanStop yes \
185                       $( __get_active_units $mode ) )
186
187         elif __contains_word "$verb" ${VERBS[RELOADABLE_UNITS]}; then
188                 comps=$( __filter_units_by_property $mode CanReload yes \
189                       $( __get_active_units $mode ) )
190
191         elif __contains_word "$verb" ${VERBS[ISOLATABLE_UNITS]}; then
192                 comps=$( __filter_units_by_property $mode AllowIsolate yes \
193                       $( __get_all_units $mode ) )
194
195         elif __contains_word "$verb" ${VERBS[FAILED_UNITS]}; then
196                 comps=$( __get_failed_units $mode )
197
198         elif __contains_word "$verb" ${VERBS[MASKED_UNITS]}; then
199                 comps=$( __get_masked_units $mode )
200
201         elif __contains_word "$verb" ${VERBS[STANDALONE]} ${VERBS[NAME]}; then
202                 comps=''
203
204         elif __contains_word "$verb" ${VERBS[JOBS]}; then
205                 comps=$( __systemctl $mode list-jobs | { while read -r a b; do echo " $a"; done; } )
206
207         elif __contains_word "$verb" ${VERBS[SNAPSHOTS]}; then
208                 comps=$( __systemctl $mode list-units --type snapshot --full --all \
209                         | { while read -r a b; do echo " $a"; done; } )
210
211         elif __contains_word "$verb" ${VERBS[ENVS]}; then
212                 comps=$( __systemctl $mode show-environment \
213                     | while read -r line; do echo " ${line%%=*}=";done )
214                 compopt -o nospace
215
216         elif __contains_word "$verb" ${VERBS[FILE]}; then
217                 comps=$( compgen -A file -- "$cur" )
218                 compopt -o filenames
219         elif __contains_word "$verb" ${VERBS[TARGETS]}; then
220                 comps=$( __systemctl $mode list-unit-files --type target --full --all \
221                         | { while read -r a b; do echo " $a"; done; } )
222         fi
223
224         COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
225         return 0
226 }
227
228 complete -F _systemctl systemctl