2 # Copyright (C) 2010-2012 CEA/DEN
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 # Completion Function for salomeTools (sat)
20 export SAT_PATH=$(cd `dirname "${BASH_SOURCE}"` && pwd)
24 local opts2=$(for x in `$SAT_PATH/sat config -nl`
29 # additional options for command working without applications
32 opts2=$(echo --list --value --edit --info $opts2)
35 opts2=$(echo --clean --full --last --terminal $opts2)
38 opts2=$(echo --name --only_jobs --list --completion --test_connection --input_boards --publish $opts2)
41 opts2=$(echo --command --sat $opts2)
44 opts2=$(echo --jobs_config --name $opts2)
47 opts2=$(echo --base --display --grid --launcher --session $opts2)
50 opts2=$(echo --name --project --salometools $opts2)
53 opts2=$(echo --path --exclude-file --exclude-extension --exclude-path $opts2)
56 opts2=$(echo --name --template --target --param --info $opts2)
59 opts2=$(echo --set $opts2)
63 COMPREPLY=( $(compgen -W "${opts2}" -- ${cur}) )
68 if [[ $appli != $prev ]]
70 opts=$(for x in `$SAT_PATH/sat -s config $appli -nv APPLICATION.products`
73 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
77 _salomeTools_complete()
79 if [[ "${SAT_PATH}x" == "x" ]]
84 local cur opts args command
87 cur="${COMP_WORDS[COMP_CWORD]}"
89 # second argument => show available APPLICATION
92 command="${COMP_WORDS[1]}"
97 if [[ ${command%%-*} == "" ]]
99 command="${COMP_WORDS[2]}"
100 argc="$((( argc - 1)))"
104 # first argument => show available commands
105 if [[ ${argc} == 1 ]]
107 opts="config log testcommand source patch prepare environ clean configure make makeinstall compile launcher run jobs job shell test package generate find_duplicates application template base --help"
108 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
112 if [[ ${argc} == 2 ]]
114 # get list of APPLICATIONS
119 # option depending on command
120 local prev="${COMP_WORDS[COMP_CWORD-1]}"
122 if [[ ${prev} == "--value" || ${prev} == "-v" ]]
124 if [[ ${argc} == 4 ]]
127 opts=$(for x in `$SAT_PATH/sat config ${COMP_WORDS[COMP_CWORD-2]} -s ${COMP_WORDS[COMP_CWORD]}`
129 COMPREPLY=( $(compgen -W "${opts}" -S "." -- ${cur}) )
131 # without application
132 opts=$(for x in `$SAT_PATH/sat config -s ${COMP_WORDS[COMP_CWORD]}`
134 COMPREPLY=( $(compgen -W "${opts}" -S "." -- ${cur}) )
140 # show list of products
141 if [[ ${prev} == "--product" || ${prev} == "-p" ]]
143 appli="${COMP_WORDS[2]}"
144 if [[ ${command} != "source" ]]
146 opts=$(for x in `$SAT_PATH/sat config $appli -nv APPLICATION.products`
149 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
154 # show argument for each command
157 opts="--value --list --copy --edit --no_label --info"
158 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
162 opts="--clean --last --terminal --last"
163 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
167 opts="--products --sources --build --install --all --sources_without_dev --properties"
168 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
173 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
178 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
182 opts="--products --force --force_patch"
183 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
187 opts="--products --shell --prefix --target"
188 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
192 opts="--products --option"
193 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
197 opts="--products --option"
198 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
203 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
207 opts="--products --with_fathers --with_children --clean_all --make_flags --show --stop_first_fail"
208 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
212 opts="--name --catalog --gencat"
213 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
217 opts="--name --only_jobs --list --completion --test_connection --input_boards --publish"
218 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
223 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
227 opts="--jobs_config --name"
228 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
232 opts="--base --launcher --grid --session --display"
233 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
237 opts="--name --binaries --sources --project --salometools --with_vcs"
238 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
242 opts="--products --yacsgen"
243 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
247 opts="--path --sources --exclude-file --exclude-extension --exclude-path"
248 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
252 opts="--name --catalog --target --gencat --module"
253 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
257 opts="--name --template --target --param --info"
258 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
263 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
271 # activation of auto-completion for the sat command
272 complete -F _salomeTools_complete sat
273 complete -F _salomeTools_complete ./sat