summaryrefslogtreecommitdiff
path: root/completions/tipc
blob: 830040d9d21d2ce81ca9d1621fcaab09ebc29f34 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# tipc(8) completion                                       -*- shell-script -*-

_tipc_media() {
    local optind=$1

    if [[ $cword -eq $optind ]]; then
        COMPREPLY=( $(compgen -W 'media' -- $cur) )
        return 0
    elif [[ $cword -eq $optind+1 ]]; then
        COMPREPLY=( $(compgen -W 'udp eth ib' -- $cur) )
        return 0
    fi

    return 1
}

_tipc_bearer() {
    local optind=$1
    local media i

    if _tipc_media $optind; then
        return
    fi

    for ((i = 0; i < $cword; i++)); do
        if [[ ${words[$i]} == 'media' ]]; then
            media=${words[$(($i + 1))]}
        fi
    done

    if [[ $cword -eq $optind+2 ]]; then
        case "$media" in
        "udp")
            COMPREPLY=( $(compgen -W 'name' -- $cur) )
            ;;
        "eth" | "ib")
            COMPREPLY=( $(compgen -W 'device' -- $cur) )
            ;;
        esac
    elif [[ $cword -eq $optind+3 ]]; then
        case "$media" in
        "udp")
            local names=$(tipc bearer list 2>/dev/null | awk -F: '/^udp:/ {print $2}')
            COMPREPLY=( $(compgen -W '$names' -- $cur) )
            ;;
        "eth")
            local interfaces=$(command ls /sys/class/net/)
            COMPREPLY=( $(compgen -W '$interfaces' -- $cur) )
            ;;
        esac
    fi
}

_tipc_link_opts() {
    COMPREPLY=( $(compgen -W 'priority tolerance window' -- $cur) )
}

_tipc_link() {
    local optind=$1
    local filter=$2

    if [[ $cword -eq $optind ]]; then
        COMPREPLY=( $(compgen -W 'link' -- $cur) )
    elif [[ $cword -eq $optind+1 ]]; then
        # awk drops link state and last trailing :
        local links=$(tipc link list 2>/dev/null | \
            awk '{print substr($1, 0, length($1))}')
        local -a exclude
        [[ $filter == peers ]] && exclude=( -X broadcast-link )
        COMPREPLY=( $(compgen "${exclude[@]}" -W '$links' -- $cur) )
    fi
}

_tipc()
{
    local cur prev words cword optind i p
    _init_completion || return

    optind=1
    COMPREPLY=()

    # Flags can be placed anywhere in the commandline
    case "$cur" in
        -*)
            COMPREPLY=( $(compgen -W '-h --help' -- $cur) )
            return
            ;;
    esac

    if [[ $cword -eq 1 ]]; then
        COMPREPLY=( $(compgen -W 'bearer link media nametable node socket' -- $cur) )
        return
    fi

    case "${words[$optind]}" in
    bearer)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'enable disable set get list' -- $cur) )
            return
        fi

        case "${words[$optind]}" in
        enable)
            local media params
            (( optind++ ))

            if [[ $cword -lt $optind+4 ]]; then
                _tipc_bearer $optind
                return
            fi

            for ((i = 0; i < $cword; i++)); do
                if [[ ${words[$i]} == 'media' ]]; then
                    media=${words[$(($i + 1))]}
                fi
            done
            case "$media" in
                "udp")
                    declare -a  params=("localip" "localport" "remoteip"
                    "remoteport" "domain" "priority")
                    ;;
                "eth" | "ib")
                    declare -a params=("domain" "priority")
                    ;;
                *)
                    return
                    ;;
            esac

            # If the previous word was a known paramater we assume a value for
            # that key Note that this would break if the user attempts to use a
            # kown key as value
            for i in "${params[@]}"; do
                if [[ $prev == $i ]]; then
                    return
                fi
            done

            # In order not to print already used options we remove them
            for p in "${words[@]}"; do
                for i in "${params[@]}"; do
                    if [[ $p == $i ]]; then
                        params=( "${params[@]/$i}" )
                    fi
                done
            done

            COMPREPLY=( $(compgen -W '${params[@]}' -- $cur) )
            ;;
        disable)
            (( optind++ ))

            _tipc_bearer $optind
            ;;
        get)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+1 ]]; then
                _tipc_bearer $(($optind + 1))
            fi
            ;;
        set)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+2 ]]; then
                _tipc_bearer $(($optind + 2))
            fi
            ;;
        esac
        ;;
    link)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'get set list statistics'  -- $cur) )
            return
        fi

        case "${words[$optind]}" in
        get)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+1 ]]; then
                _tipc_link $(($optind + 1)) "peers"
            fi
            ;;
        set)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+2 ]]; then
                _tipc_link $(($optind + 2)) "peers"
            fi
            ;;
        statistics)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                COMPREPLY=( $(compgen -W 'show reset' -- $cur) )
                return
            fi

            case "${words[$optind]}" in
            show|reset)
                _tipc_link $(($optind + 1))
                ;;
            esac
            ;;
        esac
        ;;
    media)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'get set list'  -- $cur) )
            return
        fi

        case "${words[$optind]}" in
        get)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+1 ]]; then
                _tipc_media $(($optind + 1))
            fi
            ;;
        set)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                _tipc_link_opts
            elif [[ $cword -ge $optind+2 ]]; then
                _tipc_media $(($optind + 2))
            fi
            ;;
        esac
        ;;
    nametable)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'show'  -- $cur) )
        fi
        ;;
    node)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'list get set'  -- $cur) )
            return
        fi

        case "${words[$optind]}" in
        get|set)
            (( optind++ ))

            if [[ $cword -eq $optind ]]; then
                COMPREPLY=( $(compgen -W 'address netid'  -- $cur) )
            fi
        esac
        ;;
    socket)
        (( optind++ ))

        if [[ $cword -eq $optind ]]; then
            COMPREPLY=( $(compgen -W 'list'  -- $cur) )
        fi
        ;;
    esac
} &&
complete -F _tipc tipc

# ex: filetype=sh