-
Notifications
You must be signed in to change notification settings - Fork 1
/
bash_completion.sh
239 lines (211 loc) · 6.23 KB
/
bash_completion.sh
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
# Comment out to disable logging to ./completion.log
DEBUG=0
__ezp_reassemble_comp_words_by_ref()
{
local exclude i j first
# Which word separators to exclude?
exclude="${1//[^$COMP_WORDBREAKS]}"
cword_=$COMP_CWORD
if [ -z "$exclude" ]; then
words_=("${COMP_WORDS[@]}")
return
fi
# List of word completion separators has shrunk;
# re-assemble words to complete.
for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do
# Append each nonempty word consisting of just
# word separator characters to the current word.
first=t
while
[ $i -gt 0 ] &&
[ -n "${COMP_WORDS[$i]}" ] &&
# word consists of excluded word separators
[ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ]
do
# Attach to the previous token,
# unless the previous token is the command name.
if [ $j -ge 2 ] && [ -n "$first" ]; then
((j--))
fi
first=
words_[$j]=${words_[j]}${COMP_WORDS[i]}
if [ $i = $COMP_CWORD ]; then
cword_=$j
fi
if (($i < ${#COMP_WORDS[@]} - 1)); then
((i++))
else
# Done.
return
fi
done
words_[$j]=${words_[j]}${COMP_WORDS[i]}
if [ $i = $COMP_CWORD ]; then
cword_=$j
fi
done
}
if ! type _get_comp_words_by_ref >/dev/null 2>&1; then
_get_comp_words_by_ref()
{
local exclude cur_ words_ cword_
if [ "$1" = "-n" ]; then
exclude=$2
shift 2
fi
__ezp_reassemble_comp_words_by_ref "$exclude"
cur_=${words_[cword_]}
while [ $# -gt 0 ]; do
case "$1" in
cur)
cur=$cur_
;;
prev)
prev=${words_[$cword_-1]}
;;
words)
words=("${words_[@]}")
;;
cword)
cword=$cword_
;;
esac
shift
done
}
fi
_ezp()
{
local cur prev opts
if [ -n "$EZPCOMP_IS_EZ_DIR" ]; then EZPCOMP_IS_EZ_DIR=0; fi
# Exit directly if not in an ezpublish instance
CWD=$(pwd)
EZPCOMP_PWD=$CWD
# Reset the previous working directory if it doesn't match the current one
if [ -n "$EZPCOMP_PWD" ] || [ "$EZPCOMP_PWD" -ne "$CWD" ]; then
local cwd_array ifs_bak
IFS_BAK=$IFS
IFS="/"
CWD_ARRAY=( $CWD )
EZPCOMP_IS_EZ_DIR=0
for(( index=${#CWD_ARRAY[*]} ; index > 0 ; index-- ))
do
local testdir
testdir="${CWD_ARRAY[*]:0:$index}"
_ezp_p_debug "$index: $testdir/lib/version.php"
if [ -f "$testdir/lib/version.php" ]; then
_ezp_p_debug "$testdir did match"
EZPCOMP_EZ_DIR="$testdir"
EZPCOMP_IS_EZ_DIR=1
EZPCOMP_PWD=$CWD
export EZPCOMP_EZ_DIR
export EZPCOMP_IS_EZ_DIR
break
fi
done
IFS=$IFS_BAK
fi
# Not an eZ Dir
if [ -z "$EZPCOMP_IS_EZ_DIR" ] || [ "$EZPCOMP_IS_EZ_DIR" -eq 0 ]; then
return 0
fi
COMPREPLY=()
#cur=$(_get_cword "=")
_get_comp_words_by_ref -n =: cur prev
prev="${COMP_WORDS[COMP_CWORD-1]}"
# Store the current command for further usage
if [ $COMP_CWORD -gt 1 ]; then COMMAND=${COMP_WORDS[1]}; fi
_ezp_p_debug "COMP_CWORD: ${COMP_CWORD} | COMP_WORDS: ${COMP_WORDS[*]} | PREV: ${prev} | CUR: ${cur} | COMMAND: ${COMMAND}"
case "$cur" in
# siteaccess completion
--siteaccess=*)
_ezp_exec "_siteaccess_list"
_ezp_complete "${exec_result}" "${cur##--siteaccess=}"
return 0
;;
# ezcache.php --clear-tag=
--clear-tag=*)
_ezp_exec "_ezcache_tags"
_ezp_complete "${exec_result}" "${cur##--clear-tag=}"
return 0
;;
# ezcache.php --clear-id=
--clear-id=*)
_ezp_exec "_ezcache_ids"
_ezp_complete "${exec_result}" "${cur##--clear-id=}"
return 0
esac
case "$prev" in
# completion for ezp command: script names
ezp)
_ezp_exec "_scripts"
scripts=$exec_result
_ezp_complete "${scripts}" "${cur}"
return 0
;;
# siteaccess completion
--siteaccess | -s)
_ezp_exec "_siteaccess_list"
_ezp_complete "${exec_result}" "${cur##--siteaccess=}"
return 0
;;
# ezcache.php --clear-tag=
--clear-tag=)
_ezp_exec "_ezcache_tags"
_ezp_complete "${exec_result}" "${cur}"
return 0
;;
# ezcache.php --clear-id=
--clear-id=)
_ezp_exec "_ezcache_ids"
_ezp_complete "${exec_result}" "${cur}"
return 0
;;
# other: arguments for the executed script
*)
script="${COMP_WORDS[1]}"
_ezp_exec "_args" "${script}"
options=$exec_result
_ezp_complete "${options}" "${cur}"
return 0
;;
esac
}
complete -o default -o nospace -F _ezp ezp 2>>/dev/null || -o default -o nospace -F _ezp ezp 2>>/dev/null
# COMPREPLY generator, based on a \n separated list of words
#
# @param $1 Options string, \n separated
# @param $2 Current word
_ezp_complete()
{
# _ezp_p_debug "_ezp_complete '$1' '$2'"
local IFS=$'\n'
COMPREPLY=( $(compgen -W "$1" -- "$2" ) )
}
# Executes ezp.php with the given arguments
#
# @param $1 Command to execute
# @param $2...n Extra arguments
_ezp_exec()
{
if [ -n "$EZPCOMP_IS_EZ_DIR" ] || [ "$EZPCOMP_IS_EZ_DIR" -eq 1 ]; then
_ezp_p_debug "cd $EZPCOMP_EZ_DIR"
cd "$EZPCOMP_EZ_DIR" > /dev/null
fi
local command="ezp ${1} ${2}"
_ezp_p_debug "Exec command: ${command} from wd $(pwd)"
exec_result=`echo "" | ${command}`
if [ -n "$EZPCOMP_IS_EZ_DIR" ] || [ "$EZPCOMP_IS_EZ_DIR" -eq 1 ]; then
_ezp_p_debug "cd -"
cd - > /dev/null
fi
}
# Debug method. Prints to completion.log
# @param $1 String to print
_ezp_p_debug()
{
local DEBUG
if [ -n "$DEBUG" ]; then
echo "* ${1}" >> /tmp/ezcompletion.log
fi
}