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)
39 COMPREPLY=( $(compgen -W "${opts2}" -- ${cur}) )
44 if [[ $appli != $prev ]]
46 opts=$(for x in `$SAT_PATH/sat -s config $appli -nv APPLICATION.products`
49 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
53 _salomeTools_complete()
55 if [[ "${SAT_PATH}x" == "x" ]]
60 local cur opts args command
63 cur="${COMP_WORDS[COMP_CWORD]}"
65 # second argument => show available APPLICATION
68 command="${COMP_WORDS[1]}"
73 if [[ ${command%%-*} == "" ]]
75 command="${COMP_WORDS[2]}"
76 argc="$((( argc - 1)))"
80 # first argument => show available commands
83 opts="config log testcommand source patch prepare environ clean configure make makeinstall compile launcher jobs --help"
84 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
90 # get list of APPLICATIONS
95 # option depending on command
96 local prev="${COMP_WORDS[COMP_CWORD-1]}"
98 if [[ ${prev} == "--value" || ${prev} == "-v" ]]
100 if [[ ${argc} == 4 ]]
103 opts=$(for x in `$SAT_PATH/sat config ${COMP_WORDS[COMP_CWORD-2]} -s ${COMP_WORDS[COMP_CWORD]}`
105 COMPREPLY=( $(compgen -W "${opts}" -S "." -- ${cur}) )
107 # without application
108 opts=$(for x in `$SAT_PATH/sat config -s ${COMP_WORDS[COMP_CWORD]}`
110 COMPREPLY=( $(compgen -W "${opts}" -S "." -- ${cur}) )
116 # show list of products
117 if [[ ${prev} == "--product" || ${prev} == "-p" ]]
119 appli="${COMP_WORDS[2]}"
120 if [[ ${command} != "source" ]]
122 opts=$(for x in `$SAT_PATH/sat config $appli -nv APPLICATION.products`
125 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
130 # show argument for each command
133 opts="--value --list --copy --edit --no_label"
134 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
138 opts="--clean --last --terminal --last"
139 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
143 opts="--products --sources --build --install --all --sources_without_dev"
144 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
149 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
154 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
158 opts="--products --force --force_patch"
159 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
163 opts="--products --shell --prefix --target"
164 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
168 opts="--products --option"
169 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
173 opts="--products --option"
174 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
179 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
183 opts="--products --with_fathers --with_children --clean_all --make_flags --show --stop_first_fail"
184 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
188 opts="--name --catalog --gencat"
189 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
193 opts="--jobs_config --only_jobs --list --no_label --test_connection --publish"
194 COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
202 # activation of auto-completion for the sat command
203 complete -F _salomeTools_complete sat
204 complete -F _salomeTools_complete ./sat