summaryrefslogtreecommitdiff
path: root/completions/jarsigner
blob: 1f26c9c23964b9bfcd4dfa6b13fceacb532387d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# jarsigner(1) completion                                  -*- shell-script -*-

_jarsigner()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -keystore)
            COMPREPLY=($(compgen -W 'NONE' -- "$cur"))
            _filedir '@(jks|ks|p12|pfx)'
            return
            ;;
        -storepass | -keypass | -sigfile | -digestalg | -sigalg | -tsacert | -tsapolicyid | \
            -tsadigestalg | -altsigner | -altsignerpath | -providerName | -providerClass | \
            -providerArg)
            return
            ;;
        -certchain | -tsa)
            _filedir
            return
            ;;
        -storetype)
            COMPREPLY=($(compgen -W 'JKS PKCS11 PKCS12' -- "$cur"))
            return
            ;;
        -signedjar)
            _filedir '@(jar|apk)'
            return
            ;;
    esac

    # Check if a jar was already given.
    local i jar=false
    for ((i = 1; i < ${#words[@]} - 1; i++)); do
        if [[ ${words[i]} == *.@(jar|apk) && \
            ${words[i - 1]} != -signedjar ]]; then
            jar=true
            break
        fi
    done

    if ! $jar; then
        if [[ $cur == -* ]]; then
            # Documented as "should not be used": -internalsf, -sectionsonly
            COMPREPLY=($(compgen -W '-keystore -storepass -storetype
                -keypass -sigfile -signedjar -digestalg -sigalg -verify
                -verbose -certs -tsa -tsacert -altsigner -altsignerpath
                -protected -providerName -providerClass -providerArg' \
                -- "$cur"))
        fi
        _filedir '@(jar|apk)'
    fi
} &&
    complete -F _jarsigner jarsigner

# ex: filetype=sh