Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 1 | # perf completion |
| 2 | |
Ramkumar Ramachandra | c3fb671 | 2013-07-04 18:11:30 +0530 | [diff] [blame] | 3 | # 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 | |
| 50 | type _get_comp_words_by_ref &>/dev/null || |
| 51 | _get_comp_words_by_ref() |
| 52 | { |
| 53 | local exclude cur_ words_ cword_ |
| 54 | if [ "$1" = "-n" ]; then |
| 55 | exclude=$2 |
| 56 | shift 2 |
| 57 | fi |
| 58 | __my_reassemble_comp_words_by_ref "$exclude" |
| 59 | cur_=${words_[cword_]} |
| 60 | while [ $# -gt 0 ]; do |
| 61 | case "$1" in |
| 62 | cur) |
| 63 | cur=$cur_ |
| 64 | ;; |
| 65 | prev) |
| 66 | prev=${words_[$cword_-1]} |
| 67 | ;; |
| 68 | words) |
| 69 | words=("${words_[@]}") |
| 70 | ;; |
| 71 | cword) |
| 72 | cword=$cword_ |
| 73 | ;; |
| 74 | esac |
| 75 | shift |
| 76 | done |
| 77 | } |
| 78 | |
Ramkumar Ramachandra | 4685a6c | 2013-07-04 18:11:29 +0530 | [diff] [blame] | 79 | type __ltrim_colon_completions &>/dev/null || |
Namhyung Kim | ae0c1f9 | 2012-10-04 14:23:54 +0900 | [diff] [blame] | 80 | __ltrim_colon_completions() |
| 81 | { |
| 82 | if [[ "$1" == *:* && "$COMP_WORDBREAKS" == *:* ]]; then |
| 83 | # Remove colon-word prefix from COMPREPLY items |
Ramkumar Ramachandra | 30079d1 | 2013-07-04 18:11:26 +0530 | [diff] [blame] | 84 | local colon_word=${1%"${1##*:}"} |
Namhyung Kim | ae0c1f9 | 2012-10-04 14:23:54 +0900 | [diff] [blame] | 85 | local i=${#COMPREPLY[*]} |
| 86 | while [[ $((--i)) -ge 0 ]]; do |
| 87 | COMPREPLY[$i]=${COMPREPLY[$i]#"$colon_word"} |
| 88 | done |
| 89 | fi |
| 90 | } |
| 91 | |
Ramkumar Ramachandra | 2cf025e | 2013-11-17 21:43:23 +0530 | [diff] [blame^] | 92 | __perf_main () |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 93 | { |
Ramkumar Ramachandra | 2cf025e | 2013-11-17 21:43:23 +0530 | [diff] [blame^] | 94 | local cmd |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 95 | |
Ramkumar Ramachandra | 6e0dc37 | 2013-07-04 18:11:31 +0530 | [diff] [blame] | 96 | cmd=${words[0]} |
Ramkumar Ramachandra | 2cf025e | 2013-11-17 21:43:23 +0530 | [diff] [blame^] | 97 | COMPREPLY=() |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 98 | |
Namhyung Kim | 35c2fde | 2012-10-03 00:21:33 +0900 | [diff] [blame] | 99 | # List perf subcommands or long options |
Ramkumar Ramachandra | 6e0dc37 | 2013-07-04 18:11:31 +0530 | [diff] [blame] | 100 | if [ $cword -eq 1 ]; then |
Namhyung Kim | 35c2fde | 2012-10-03 00:21:33 +0900 | [diff] [blame] | 101 | if [[ $cur == --* ]]; then |
| 102 | COMPREPLY=( $( compgen -W '--help --version \ |
| 103 | --exec-path --html-path --paginate --no-pager \ |
| 104 | --perf-dir --work-tree --debugfs-dir' -- "$cur" ) ) |
| 105 | else |
| 106 | cmds=$($cmd --list-cmds) |
| 107 | COMPREPLY=( $( compgen -W '$cmds' -- "$cur" ) ) |
| 108 | fi |
Frederic Weisbecker | a3277d2 | 2012-08-09 16:31:52 +0200 | [diff] [blame] | 109 | # List possible events for -e option |
Ramkumar Ramachandra | 6e0dc37 | 2013-07-04 18:11:31 +0530 | [diff] [blame] | 110 | elif [[ $prev == "-e" && "${words[1]}" == @(record|stat|top) ]]; then |
Namhyung Kim | 4d8061f | 2012-10-03 00:21:34 +0900 | [diff] [blame] | 111 | evts=$($cmd list --raw-dump) |
| 112 | COMPREPLY=( $( compgen -W '$evts' -- "$cur" ) ) |
Namhyung Kim | ae0c1f9 | 2012-10-04 14:23:54 +0900 | [diff] [blame] | 113 | __ltrim_colon_completions $cur |
Namhyung Kim | 4d8061f | 2012-10-03 00:21:34 +0900 | [diff] [blame] | 114 | # List long option names |
| 115 | elif [[ $cur == --* ]]; then |
Ramkumar Ramachandra | 6e0dc37 | 2013-07-04 18:11:31 +0530 | [diff] [blame] | 116 | subcmd=${words[1]} |
Namhyung Kim | 4d8061f | 2012-10-03 00:21:34 +0900 | [diff] [blame] | 117 | opts=$($cmd $subcmd --list-opts) |
| 118 | COMPREPLY=( $( compgen -W '$opts' -- "$cur" ) ) |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 119 | fi |
Ramkumar Ramachandra | 2cf025e | 2013-11-17 21:43:23 +0530 | [diff] [blame^] | 120 | } |
| 121 | |
| 122 | type perf &>/dev/null && |
| 123 | _perf() |
| 124 | { |
| 125 | local cur words cword prev |
| 126 | _get_comp_words_by_ref -n =: cur words cword prev |
| 127 | __perf_main |
Frederic Weisbecker | 98a4179 | 2012-08-09 16:31:51 +0200 | [diff] [blame] | 128 | } && |
Ramkumar Ramachandra | 7b6c48e | 2013-07-04 18:11:27 +0530 | [diff] [blame] | 129 | |
| 130 | complete -o bashdefault -o default -o nospace -F _perf perf 2>/dev/null \ |
| 131 | || complete -o default -o nospace -F _perf perf |