blob: e463069094b78bcc2a5aaecb87f79c3d707ee8c9 (
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
|
#!bash
__gobgp_q() {
gobgp 2>/dev/null "$@"
}
__search_target() {
local word target c=1
while [ $c -lt $cword ]; do
word="${words[c]}"
for target in $1; do
if [ "$target" = "$word" ]; then
echo "$target"
return
fi
done
((c++))
done
}
__gobgp_table_list() {
local targets=("local adj-in adj-out reset softreset softresetin softresetout shutdown enable disable")
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur") )
;;
esac
return
fi
return
}
__gobgp_neighbr_list() {
local url=""
local port=""
if [ ! -z "$gobgp_ip" ]; then
url="-u $gobgp_ip"
fi
if [ ! -z "$gobgp_port" ]; then
port="-p $gobgp_port"
fi
local neighbor_list=( $(__gobgp_q $url $port --quiet neighbor) )
local target="$(__search_target "${neighbor_list[*]}")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${neighbor_list[*]}" -- "$cur") )
;;
esac
__ltrim_colon_completions "$cur"
return 0
fi
return 1
}
_gobgp_global_rib(){
local targets="add del"
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur" ) )
;;
esac
return
fi
}
_gobgp_global() {
local targets="rib"
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur" ) )
;;
esac
return
fi
_gobgp_global_${target}
}
_gobgp_neighbor() {
__gobgp_neighbr_list
if [ $? -ne 0 ] ; then
__gobgp_table_list
fi
}
_gobgp_policy_prefix_add(){
return
}
_gobgp_policy_prefix_del(){
local targets="all"
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur" ) )
;;
esac
return
fi
}
_gobgp_policy_prefix(){
local targets="add del"
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur" ) )
;;
esac
return
fi
_gobgp_policy_prefix_${target}
}
_gobgp_policy() {
local targets="prefix"
local target="$(__search_target "$targets")"
if [ -z "$target" ]; then
case "$cur" in
*)
COMPREPLY=( $( compgen -W "${targets[*]}" -- "$cur" ) )
;;
esac
return
fi
_gobgp_policy_${target}
}
_gobgp_gobgp() {
case "$prev" in
-h)
return
;;
*)
;;
esac
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "-h" -- "$cur" ) )
;;
*)
COMPREPLY=( $( compgen -W "${commands[*]} " -- "$cur" ) )
;;
esac
}
_gobgp() {
local commands=(
global
neighbor
policy
)
COMPREPLY=()
local cur prev words cword
_get_comp_words_by_ref -n : cur prev words cword
local command='gobgp'
local counter=1
while [ $counter -lt $cword ]; do
case "${words[$counter]}" in
-u)
(( counter++ ))
gobgp_ip="${words[$counter]}"
;;
-p)
(( counter++ ))
gobgp_port="${words[$counter]}"
;;
-*)
;;
*)
command="${words[$counter]}"
cpos=$counter
(( cpos++ ))
break
;;
esac
(( counter++ ))
done
local completions_func=_gobgp_${command}
declare -F $completions_func > /dev/null && $completions_func
return 0
}
complete -F _gobgp gobgp
|