blob: 3ba80b2359cc8c03d51b86b38713cb9f3226f43b [file] [log] [blame]
Ramkumar Ramachandraf38ab8af2013-11-17 21:43:26 +05301# perf bash and zsh completion
Frederic Weisbecker98a41792012-08-09 16:31:51 +02002
Ramkumar Ramachandrac3fb6712013-07-04 18:11:30 +05303# Taken from git.git's completion script.
4__my_reassemble_comp_words_by_ref()
5{
6 local exclude i j first
7 # Which word separators to exclude?
8 exclude="${1//[^$COMP_WORDBREAKS]}"
9 cword_=$COMP_CWORD
10 if [ -z "$exclude" ]; then
11 words_=("${COMP_WORDS[@]}")
12 return
13 fi
14 # List of word completion separators has shrunk;
15 # re-assemble words to complete.
16 for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
17 # Append each nonempty word consisting of just
18 # word separator characters to the current word.
19 first=t
20 while
21 [ $i -gt 0 ] &&
22 [ -n "${COMP_WORDS[$i]}" ] &&
23 # word consists of excluded word separators
24 [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
25 do
26 # Attach to the previous token,
27 # unless the previous token is the command name.
28 if [ $j -ge 2 ] && [ -n "$first" ]; then
29 ((j--))
30 fi
31 first=
32 words_[$j]=${words_[j]}${COMP_WORDS[i]}
33 if [ $i = $COMP_CWORD ]; then
34 cword_=$j
35 fi
36 if (($i < ${#COMP_WORDS[@]} - 1)); then
37 ((i++))
38 else
39 # Done.
40 return
41 fi
42 done
43 words_[$j]=${words_[j]}${COMP_WORDS[i]}
44 if [ $i = $COMP_CWORD ]; then
45 cword_=$j
46 fi
47 done
48}
49
Yunlong Song1312c8a2015-03-18 21:35:58 +080050# Define preload_get_comp_words_by_ref="false", if the function
51# __perf_get_comp_words_by_ref() is required instead.
52preload_get_comp_words_by_ref="true"
53
54if [ $preload_get_comp_words_by_ref = "true" ]; then
55 type _get_comp_words_by_ref &>/dev/null ||
56 preload_get_comp_words_by_ref="false"
57fi
58[ $preload_get_comp_words_by_ref = "true" ] ||
59__perf_get_comp_words_by_ref()
Ramkumar Ramachandrac3fb6712013-07-04 18:11:30 +053060{
61 local exclude cur_ words_ cword_
62 if [ "$1" = "-n" ]; then
63 exclude=$2
64 shift 2
65 fi
66 __my_reassemble_comp_words_by_ref "$exclude"
67 cur_=${words_[cword_]}
68 while [ $# -gt 0 ]; do
69 case "$1" in
70 cur)
71 cur=$cur_
72 ;;
73 prev)
74 prev=${words_[$cword_-1]}
75 ;;
76 words)
77 words=("${words_[@]}")
78 ;;
79 cword)
80 cword=$cword_
81 ;;
82 esac
83 shift
84 done
85}
86
Yunlong Song1312c8a2015-03-18 21:35:58 +080087# Define preload__ltrim_colon_completions="false", if the function
88# __perf__ltrim_colon_completions() is required instead.
89preload__ltrim_colon_completions="true"
90
91if [ $preload__ltrim_colon_completions = "true" ]; then
92 type __ltrim_colon_completions &>/dev/null ||
93 preload__ltrim_colon_completions="false"
94fi
95[ $preload__ltrim_colon_completions = "true" ] ||
96__perf__ltrim_colon_completions()
Namhyung Kimae0c1f92012-10-04 14:23:54 +090097{
98 if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then
99 # Remove colon-word prefix from COMPREPLY items
Ramkumar Ramachandra30079d12013-07-04 18:11:26 +0530100 local colon_word=${1%"${1##*:}"}
Namhyung Kimae0c1f92012-10-04 14:23:54 +0900101 local i=${#COMPREPLY[*]}
102 while [[ $((--i)) -ge 0 ]]; do
103 COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"}
104 done
105 fi
106}
107
Ramkumar Ramachandra12f9dd52013-11-17 21:43:24 +0530108__perfcomp ()
109{
110 COMPREPLY=( $( compgen -W "$1" -- "$2" ) )
111}
112
Ramkumar Ramachandra37e72c32013-11-17 21:43:25 +0530113__perfcomp_colon ()
114{
115 __perfcomp "$1" "$2"
Yunlong Song1312c8a2015-03-18 21:35:58 +0800116 if [ $preload__ltrim_colon_completions = "true" ]; then
117 __ltrim_colon_completions $cur
118 else
119 __perf__ltrim_colon_completions $cur
120 fi
Ramkumar Ramachandra37e72c32013-11-17 21:43:25 +0530121}
122
Yunlong Song67afff42015-03-18 21:35:47 +0800123__perf_prev_skip_opts ()
124{
125 local i cmd_ cmds_
126
127 let i=cword-1
Yunlong Songeee200a2015-03-18 21:35:48 +0800128 cmds_=$($cmd $1 --list-cmds)
Yunlong Song67afff42015-03-18 21:35:47 +0800129 prev_skip_opts=()
130 while [ $i -ge 0 ]; do
Yunlong Songeee200a2015-03-18 21:35:48 +0800131 if [[ ${words[i]} == $1 ]]; then
132 return
133 fi
Yunlong Song67afff42015-03-18 21:35:47 +0800134 for cmd_ in $cmds_; do
135 if [[ ${words[i]} == $cmd_ ]]; then
136 prev_skip_opts=${words[i]}
137 return
138 fi
139 done
140 ((i--))
141 done
142}
Yunlong Song6fdd9cb2015-03-18 21:35:57 +0800143
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530144__perf_main ()
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200145{
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530146 local cmd
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200147
Ramkumar Ramachandra6e0dc372013-07-04 18:11:31 +0530148 cmd=${words[0]}
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530149 COMPREPLY=()
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200150
Yunlong Song67afff42015-03-18 21:35:47 +0800151 # Skip options backward and find the last perf command
152 __perf_prev_skip_opts
Namhyung Kim35c2fde2012-10-03 00:21:33 +0900153 # List perf subcommands or long options
Yunlong Songe003ce52015-03-18 21:35:51 +0800154 if [ -z $prev_skip_opts ]; then
Namhyung Kim35c2fde2012-10-03 00:21:33 +0900155 if [[ $cur == --* ]]; then
Yunlong Song73353992015-02-27 18:21:31 +0800156 cmds=$($cmd --list-opts)
Namhyung Kim35c2fde2012-10-03 00:21:33 +0900157 else
158 cmds=$($cmd --list-cmds)
Namhyung Kim35c2fde2012-10-03 00:21:33 +0900159 fi
Yunlong Song73353992015-02-27 18:21:31 +0800160 __perfcomp "$cmds" "$cur"
Yunlong Song6fdd9cb2015-03-18 21:35:57 +0800161 # List possible events for -e option
162 elif [[ $prev == @("-e"|"--event") &&
163 $prev_skip_opts == @(record|stat|top) ]]; then
Namhyung Kim4d8061f2012-10-03 00:21:34 +0900164 evts=$($cmd list --raw-dump)
Ramkumar Ramachandra37e72c32013-11-17 21:43:25 +0530165 __perfcomp_colon "$evts" "$cur"
Yunlong Song02fde322015-03-18 21:35:46 +0800166 else
167 # List subcommands for perf commands
Yunlong Song6fdd9cb2015-03-18 21:35:57 +0800168 if [[ $prev_skip_opts == @(kvm|kmem|mem|lock|sched|
169 |data|help|script|test|timechart|trace) ]]; then
Yunlong Song67afff42015-03-18 21:35:47 +0800170 subcmds=$($cmd $prev_skip_opts --list-cmds)
Yunlong Song02fde322015-03-18 21:35:46 +0800171 __perfcomp_colon "$subcmds" "$cur"
172 fi
173 # List long option names
174 if [[ $cur == --* ]]; then
Yunlong Songeee200a2015-03-18 21:35:48 +0800175 subcmd=$prev_skip_opts
176 __perf_prev_skip_opts $subcmd
177 subcmd=$subcmd" "$prev_skip_opts
Yunlong Song02fde322015-03-18 21:35:46 +0800178 opts=$($cmd $subcmd --list-opts)
179 __perfcomp "$opts" "$cur"
180 fi
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200181 fi
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530182}
183
Ramkumar Ramachandraf38ab8af2013-11-17 21:43:26 +0530184if [[ -n ${ZSH_VERSION-} ]]; then
185 autoload -U +X compinit && compinit
186
187 __perfcomp ()
188 {
189 emulate -L zsh
190
191 local c IFS=$' \t\n'
192 local -a array
193
194 for c in ${=1}; do
195 case $c in
196 --*=*|*.) ;;
197 *) c="$c " ;;
198 esac
199 array[${#array[@]}+1]="$c"
200 done
201
202 compset -P '*[=:]'
203 compadd -Q -S '' -a -- array && _ret=0
204 }
205
206 __perfcomp_colon ()
207 {
208 emulate -L zsh
209
210 local cur_="${2-$cur}"
211 local c IFS=$' \t\n'
212 local -a array
213
214 if [[ "$cur_" == *:* ]]; then
215 local colon_word=${cur_%"${cur_##*:}"}
216 fi
217
218 for c in ${=1}; do
219 case $c in
220 --*=*|*.) ;;
221 *) c="$c " ;;
222 esac
223 array[$#array+1]=${c#"$colon_word"}
224 done
225
226 compset -P '*[=:]'
227 compadd -Q -S '' -a -- array && _ret=0
228 }
229
230 _perf ()
231 {
232 local _ret=1 cur cword prev
233 cur=${words[CURRENT]}
234 prev=${words[CURRENT-1]}
235 let cword=CURRENT-1
236 emulate ksh -c __perf_main
237 let _ret && _default && _ret=0
238 return _ret
239 }
240
241 compdef _perf perf
242 return
243fi
244
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530245type perf &>/dev/null &&
246_perf()
247{
248 local cur words cword prev
Yunlong Song1312c8a2015-03-18 21:35:58 +0800249 if [ $preload_get_comp_words_by_ref = "true" ]; then
250 _get_comp_words_by_ref -n =: cur words cword prev
251 else
252 __perf_get_comp_words_by_ref -n =: cur words cword prev
253 fi
Ramkumar Ramachandra2cf025e2013-11-17 21:43:23 +0530254 __perf_main
Frederic Weisbecker98a41792012-08-09 16:31:51 +0200255} &&
Ramkumar Ramachandra7b6c48e2013-07-04 18:11:27 +0530256
257complete -o bashdefault -o default -o nospace -F _perf perf 2>/dev/null \
258 || complete -o default -o nospace -F _perf perf