chiark / gitweb /
udev: add builtin 'keyboard' to manage key mappings
[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 word=$1; shift
23         for w in $*; do [[ $w = $word ]] && return 0; done
24         return 1
25 }
26
27 _systemd_analyze() {
28         local i verb comps
29         local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
30         local OPTS='--help --version --system --user --from-pattern --to-pattern --order --require'
31
32         local -A VERBS=(
33                 [NO_OPTION]='time blame plot'
34                 [CRITICAL_CHAIN]='critical-chain'
35                 [DOT]='dot'
36         )
37
38         _init_completion || return
39
40         for ((i=0; $i <= $COMP_CWORD; i++)); do
41                 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} &&
42                  ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then
43                         verb=${COMP_WORDS[i]}
44                         break
45                 fi
46         done
47
48         if [[ -z $verb  && $cur = -* ]]; then
49                 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
50                 return 0
51         fi
52
53         if [[ -z $verb ]]; then
54                 comps=${VERBS[*]}
55
56         elif __contains_word "$verb" ${VERBS[NO_OPTION]}; then
57                 if [[ $cur = -* ]]; then
58                         comps='--help --version --system --user'
59                 fi
60
61         elif __contains_word "$verb" ${VERBS[CRITICAL_CHAIN]}; then
62                 if [[ $cur = -* ]]; then
63                         comps='--help --version --system --user --fuzz'
64                 fi
65
66         elif __contains_word "$verb" ${VERBS[DOT]}; then
67                 if [[ $cur = -* ]]; then
68                         comps='--help --version --system --user --from-pattern --to-pattern --order --require'
69                 fi
70         fi
71
72         COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
73         return 0
74 }
75
76 complete -F _systemd_analyze systemd-analyze