chiark / gitweb /
7a083d28756cde70594649ea676402b589bebdec
[elogind.git] / shell-completion / bash / loginctl
1 # loginctl(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 __contains_word () {
21         local w word=$1; shift
22         for w in "$@"; do
23                 [[ $w = "$word" ]] && return
24         done
25 }
26
27 __get_all_sessions () { loginctl --no-legend list-sessions | { while read -r a b; do printf "%s\n" "$a"; done; } ; }
28 __get_all_users    () { loginctl --no-legend list-users    | { while read -r a b; do printf "%s\n" "$b"; done; } ; }
29 __get_all_seats    () { loginctl --no-legend list-seats    | { while read -r a b; do printf "%s\n" "$a"; done; } ; }
30
31 _loginctl () {
32         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
33         local i verb comps
34
35         local -A OPTS=(
36                [STANDALONE]='--all -a --help -h --no-pager --privileged -P --version
37                              --no-legend --no-ask-password -l --full'
38                       [ARG]='--host -H --kill-who --property -p --signal -s --machine'
39                       )
40
41         if __contains_word "$prev" ${OPTS[ARG]}; then
42                 case $prev in
43                         --signal|-s)
44                                 comps=$(compgen -A signal)
45                         ;;
46                         --kill-who)
47                                 comps='all leader'
48                         ;;
49                         --host|-H)
50                                 comps=$(compgen -A hostname)
51                         ;;
52                         --property|-p)
53                                 comps=''
54                         ;;
55                 esac
56                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
57                 return 0
58         fi
59
60
61         if [[ "$cur" = -* ]]; then
62                 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
63                 return 0
64         fi
65
66         local -A VERBS=(
67                 [SESSIONS]='session-status show-session activate lock-session unlock-session terminate-session kill-session'
68                 [USERS]='user-status show-user enable-linger disable-linger terminate-user kill-user'
69                 [SEATS]='seat-status show-seat terminate-seat'
70                 [STANDALONE]='list-sessions list-users list-seats flush-devices'
71                 [ATTACH]='attach'
72         )
73
74         for ((i=0; i < COMP_CWORD; i++)); do
75                 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
76                  ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
77                         verb=${COMP_WORDS[i]}
78                         break
79                 fi
80         done
81
82         if   [[ -z $verb ]]; then
83                 comps="${VERBS[*]}"
84
85         elif __contains_word "$verb" ${VERBS[SESSIONS]}; then
86                 comps=$( __get_all_sessions )
87
88         elif __contains_word "$verb" ${VERBS[USERS]}; then
89                 comps=$( __get_all_users )
90
91         elif __contains_word "$verb" ${VERBS[SEATS]}; then
92                 comps=$( __get_all_seats )
93
94         elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
95                 comps=''
96
97         elif __contains_word "$verb" ${VERBS[ATTACH]}; then
98                 if [[ $prev = $verb ]]; then
99                         comps=$( __get_all_seats )
100                 else
101                         comps=$(compgen -A file -- "$cur" )
102                         compopt -o filenames
103                 fi
104         fi
105
106         COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
107         return 0
108 }
109
110 complete -F _loginctl loginctl