chiark / gitweb /
timesyncd: also try next server when sendto() fails
[elogind.git] / shell-completion / bash / systemd-analyze
1 # systemd-analyze(1) completion                      -*- shell-script -*-
2 #
3 # This file is part of systemd.
4 #
5 # Copyright 2010 Ran Benita
6 # Copyright 2013 Harald Hoyer
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 _systemd_analyze() {
34         local i verb comps
35         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
36
37         local -A OPTS=(
38                [STANDALONE]='--help --version --system --user --from-pattern --to-pattern --order --require --no-pager'
39                       [ARG]='-H --host -M --machine'
40         )
41
42         local -A VERBS=(
43                 [STANDALONE]='time blame plot dump'
44                 [CRITICAL_CHAIN]='critical-chain'
45                 [DOT]='dot'
46                 [LOG_LEVEL]='set-log-level'
47         )
48
49         _init_completion || return
50
51         for ((i=0; i < COMP_CWORD; i++)); do
52                 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
53                  ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
54                         verb=${COMP_WORDS[i]}
55                         break
56                 fi
57         done
58
59         if __contains_word "$prev" ${OPTS[ARG]}; then
60                 case $prev in
61                         --host|-H)
62                                 comps=$(compgen -A hostname)
63                         ;;
64                         --machine|-M)
65                                 comps=$( __get_machines )
66                         ;;
67                 esac
68                 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
69                 return 0
70         fi
71
72         if [[ -z $verb  && $cur = -* ]]; then
73                 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
74                 return 0
75         fi
76
77         if [[ -z $verb ]]; then
78                 comps=${VERBS[*]}
79
80         elif __contains_word "$verb" ${VERBS[STANDALONE]}; then
81                 if [[ $cur = -* ]]; then
82                         comps='--help --version --system --user'
83                 fi
84
85         elif __contains_word "$verb" ${VERBS[CRITICAL_CHAIN]}; then
86                 if [[ $cur = -* ]]; then
87                         comps='--help --version --system --user --fuzz'
88                 fi
89
90         elif __contains_word "$verb" ${VERBS[DOT]}; then
91                 if [[ $cur = -* ]]; then
92                         comps='--help --version --system --user --from-pattern --to-pattern --order --require'
93                 fi
94
95         elif __contains_word "$verb" ${VERBS[LOG_LEVEL]}; then
96                 if [[ $cur = -* ]]; then
97                         comps='--help --version --system --user'
98                 else
99                         comps='debug info notice warning err crit alert emerg'
100                 fi
101
102         fi
103
104         COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
105         return 0
106 }
107
108 complete -F _systemd_analyze systemd-analyze