amiro-os / tools / ide / QtCreator / QtCreatorSetup.sh @ e7c4f797
History | View | Annotate | Download (26.964 KB)
1 | e545e620 | Thomas Schöpping | ################################################################################ |
---|---|---|---|
2 | # AMiRo-OS is an operating system designed for the Autonomous Mini Robot # |
||
3 | # (AMiRo) platform. # |
||
4 | 96621a83 | Thomas Schöpping | # Copyright (C) 2016..2020 Thomas Schöpping et al. # |
5 | e545e620 | Thomas Schöpping | # # |
6 | # This program is free software: you can redistribute it and/or modify # |
||
7 | # it under the terms of the GNU General Public License as published by # |
||
8 | # the Free Software Foundation, either version 3 of the License, or # |
||
9 | # (at your option) any later version. # |
||
10 | # # |
||
11 | # This program is distributed in the hope that it will be useful, # |
||
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # |
||
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # |
||
14 | # GNU General Public License for more details. # |
||
15 | # # |
||
16 | # You should have received a copy of the GNU General Public License # |
||
17 | # along with this program. If not, see <http://www.gnu.org/licenses/>. # |
||
18 | # # |
||
19 | # This research/work was supported by the Cluster of Excellence Cognitive # |
||
20 | # Interaction Technology 'CITEC' (EXC 277) at Bielefeld University, which is # |
||
21 | # funded by the German Research Foundation (DFG). # |
||
22 | ################################################################################ |
||
23 | |||
24 | #!/bin/bash |
||
25 | |||
26 | 8516dad6 | Thomas Schöpping | # load library |
27 | source "$(dirname ${BASH_SOURCE[0]})/../../bash/setuplib.sh" |
||
28 | e545e620 | Thomas Schöpping | |
29 | ### print welcome text ######################################################### |
||
30 | # Prints a welcome message to standard out. |
||
31 | # |
||
32 | # usage: printWelcomeText |
||
33 | # arguments: n/a |
||
34 | # return: n/a |
||
35 | # |
||
36 | function printWelcomeText { |
||
37 | printf "######################################################################\n" |
||
38 | printf "# #\n" |
||
39 | printf "# Welcome to the QtCreator setup! #\n" |
||
40 | printf "# #\n" |
||
41 | printf "######################################################################\n" |
||
42 | printf "# #\n" |
||
43 | 96621a83 | Thomas Schöpping | printf "# Copyright (c) 2016..2020 Thomas Schöpping #\n" |
44 | e545e620 | Thomas Schöpping | printf "# #\n" |
45 | printf "# This is free software; see the source for copying conditions. #\n" |
||
46 | printf "# There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR #\n" |
||
47 | printf "# A PARTICULAR PURPOSE. The development of this software was #\n" |
||
48 | printf "# supported by the Excellence Cluster EXC 227 Cognitive Interaction #\n" |
||
49 | printf "# Technology. The Excellence Cluster EXC 227 is a grant of the #\n" |
||
50 | printf "# Deutsche Forschungsgemeinschaft (DFG) in the context of the German #\n" |
||
51 | printf "# Excellence Initiative. #\n" |
||
52 | printf "# #\n" |
||
53 | printf "######################################################################\n" |
||
54 | } |
||
55 | |||
56 | ### print help ################################################################# |
||
57 | # Prints a help text to standard out. |
||
58 | # |
||
59 | # usage: printHelp |
||
60 | # arguments: n/a |
||
61 | # return: n/a |
||
62 | # |
||
63 | function printHelp { |
||
64 | printInfo "printing help text\n" |
||
65 | 7387fb42 | Thomas Schöpping | printf "usage: $(basename ${BASH_SOURCE[0]}) [-h|--help] [-c|--create=<module>] [-d|--delete=<module>] [-q|--quit] [--log=<file>]\n" |
66 | e545e620 | Thomas Schöpping | printf "\n" |
67 | printf "options: -h, --help\n" |
||
68 | printf " Print this help text.\n" |
||
69 | 7387fb42 | Thomas Schöpping | printf " -c, --create <module>\n" |
70 | 4e8e8462 | Thomas Schöpping | printf " Create project files for a sigle module or for all modules (<module>='*').\n" |
71 | printf " -d, --delete <module>\n" |
||
72 | 7387fb42 | Thomas Schöpping | printf " Delete projet files of a single module or of all modules (<module>='*').\n" |
73 | e545e620 | Thomas Schöpping | printf " -q, --quit\n" |
74 | printf " Quit the script.\n" |
||
75 | printf " --log=<file>\n" |
||
76 | printf " Specify a log file.\n" |
||
77 | } |
||
78 | |||
79 | ### read directory where to create/delete projects ############################# |
||
80 | # Read the directory where to create/delete project files from user. |
||
81 | # |
||
82 | # usage: getProjectDir <pathvar> |
||
83 | # arguments: <pathvar> |
||
84 | # Variable to store the selected path to. |
||
85 | # return: n/a |
||
86 | # |
||
87 | function getProjectDir { |
||
88 | local amiroosdir=$(realpath $(dirname $(realpath ${BASH_SOURCE[0]}))/../../../) |
||
89 | local input="" |
||
90 | 4e8e8462 | Thomas Schöpping | |
91 | printLog "reading path for project files from user...\n" |
||
92 | e545e620 | Thomas Schöpping | read -p "Path where to create/delete project files: " -i $amiroosdir -e input |
93 | printLog "user selected path $(realpath $input)\n" |
||
94 | eval $1="$(realpath $input)" |
||
95 | } |
||
96 | |||
97 | ### retrieves the ARM-NONE-EABI-GCC include directory ########################## |
||
98 | # Retrieves the include directory of the currently set arm-none-eabi-gcc. |
||
99 | # |
||
100 | # usage: retrieveGccIncludeDir <path> |
||
101 | # arguments: <path> |
||
102 | # Variable to store the path to. |
||
103 | # return: 0 |
||
104 | # No error or warning occurred. |
||
105 | # -1 |
||
106 | # Error: Command 'arm-none-eabi-gcc' not found. |
||
107 | 9cee554d | Thomas Schöpping | # -2 |
108 | cacd990c | Thomas Schöpping | # Error: include directory could not be resolved. |
109 | e545e620 | Thomas Schöpping | # |
110 | function retrieveGccIncludeDir { |
||
111 | local binpath=$(which arm-none-eabi-gcc) |
||
112 | 9cee554d | Thomas Schöpping | local gccincpath="" |
113 | 7387fb42 | Thomas Schöpping | |
114 | # retrieve binary path or link |
||
115 | e545e620 | Thomas Schöpping | if [ -z "$binpath" ]; then |
116 | printError "command 'arm-none-eabi-gcc' not found\n" |
||
117 | return -1 |
||
118 | else |
||
119 | |||
120 | # traverse any links |
||
121 | while [ -L "$binpath" ]; do |
||
122 | 680d05e5 | Thomas Schöpping | binpath=$(realpath $(dirname $binpath)/$(readlink $binpath)) |
123 | e545e620 | Thomas Schöpping | done |
124 | printInfo "gcc-arm-none-eabi detected: $binpath\n" |
||
125 | |||
126 | # return include path |
||
127 | 9cee554d | Thomas Schöpping | gccincpath=$(realpath $(dirname ${binpath})/../arm-none-eabi/include/) |
128 | if [ ! -d "$gccincpath" ]; then |
||
129 | printWarning "$gccincpath does not exist\n" |
||
130 | return -2 |
||
131 | else |
||
132 | eval $1="$gccincpath" |
||
133 | return 0 |
||
134 | fi |
||
135 | e545e620 | Thomas Schöpping | fi |
136 | } |
||
137 | |||
138 | 959f302e | Thomas Schöpping | ### detect available modules ################################################### |
139 | # Detect all avalable modules supported by AMiRo-OS. |
||
140 | e545e620 | Thomas Schöpping | # |
141 | 959f302e | Thomas Schöpping | # usage: detectModules <modulearray> |
142 | # arguments: <modulearray> |
||
143 | # Array variable to store all detected modules to. |
||
144 | # return: n/a |
||
145 | # |
||
146 | function detectModules { |
||
147 | local modules_detected=() |
||
148 | 7387fb42 | Thomas Schöpping | local modulesdir=$(realpath $(dirname $(realpath ${BASH_SOURCE[0]}))/../../../modules) |
149 | e545e620 | Thomas Schöpping | |
150 | 959f302e | Thomas Schöpping | # detect all available modules (via directories) |
151 | for dir in $(ls -d ${modulesdir}/*/); do |
||
152 | modules_detected[${#modules_detected[@]}]=$(basename $dir) |
||
153 | e545e620 | Thomas Schöpping | done |
154 | |||
155 | 959f302e | Thomas Schöpping | # set the output variable |
156 | eval "$1=(${modules_detected[*]})" |
||
157 | e545e620 | Thomas Schöpping | } |
158 | |||
159 | 4e8e8462 | Thomas Schöpping | ### create project files for a single or all modules ########################### |
160 | # Create project files for a single or all modules. |
||
161 | e545e620 | Thomas Schöpping | # |
162 | 4e8e8462 | Thomas Schöpping | # usage: createProject <modules> [-m|--module=<module>] [-p|--path=<path>] [--gcc=<path>] [-o|--out=<var>] [--gccout=<var>] |
163 | 959f302e | Thomas Schöpping | # arguments: <modules> |
164 | # Array containing all modules available. |
||
165 | # -m, --module <module> |
||
166 | 4e8e8462 | Thomas Schöpping | # Name (folder name) of the module for which project files shall be generated, or '*' to generate for all modules. |
167 | 959f302e | Thomas Schöpping | # -p, --path <path> |
168 | e545e620 | Thomas Schöpping | # Path where to create the project files. |
169 | # --gcc=<path> |
||
170 | # Path to the GCC include directory. |
||
171 | # -o, --out <var> |
||
172 | # Variable to store the path to. |
||
173 | # --gccout=<var> |
||
174 | # Variable to store the path to the GCC include directory to. |
||
175 | 959f302e | Thomas Schöpping | # If this optional arguments is absent, ths function will ask for user input. |
176 | e545e620 | Thomas Schöpping | # return: 0 |
177 | # No error or warning occurred. |
||
178 | 959f302e | Thomas Schöpping | # 1 |
179 | # Aborted by user. |
||
180 | # -1 |
||
181 | # No modules available. |
||
182 | # -2 |
||
183 | # The specified <module> could not be found. |
||
184 | # -3 |
||
185 | # Parsing the project for the specified module failed. |
||
186 | 57cbd1cd | Thomas Schöpping | # -4 |
187 | # Missing dependencies. |
||
188 | e545e620 | Thomas Schöpping | # |
189 | 4e8e8462 | Thomas Schöpping | function createProject { |
190 | e545e620 | Thomas Schöpping | local gccincludedir="" |
191 | local gccoutvar="" |
||
192 | 7387fb42 | Thomas Schöpping | local includes=() |
193 | local makedir="" |
||
194 | local makedirs=() |
||
195 | local module="" |
||
196 | local modules=("${!1}") |
||
197 | 4e8e8462 | Thomas Schöpping | local modules2generate=() |
198 | 7387fb42 | Thomas Schöpping | local modulesdir=$(realpath $(dirname $(realpath ${BASH_SOURCE[0]}))/../../../modules) |
199 | local otherargs=() |
||
200 | local outvar="" |
||
201 | local parse_state="" |
||
202 | local projectdir="" |
||
203 | local projectfiles=() |
||
204 | local quotes="\'\"\´\`\„\“" |
||
205 | local rawout="" |
||
206 | local sourcefile="" |
||
207 | local sourcefiles=() |
||
208 | local userdir=$(pwd) |
||
209 | local userinput="" |
||
210 | e545e620 | Thomas Schöpping | |
211 | 57cbd1cd | Thomas Schöpping | # check dependencies |
212 | checkCommands make |
||
213 | if [ $? -ne 0 ]; then |
||
214 | printError "Missing dependencies detected.\n" |
||
215 | return -4 |
||
216 | fi |
||
217 | |||
218 | e545e620 | Thomas Schöpping | # parse arguments |
219 | while [ $# -gt 0 ]; do |
||
220 | if ( parseIsOption $1 ); then |
||
221 | case "$1" in |
||
222 | 959f302e | Thomas Schöpping | -m=*|--module=*) |
223 | module="${1#*=}"; shift 1;; |
||
224 | -m|--module) |
||
225 | module="$2"; shift 2;; |
||
226 | e545e620 | Thomas Schöpping | -p=*|--path=*) |
227 | projectdir=$(realpath "${1#*=}"); shift 1;; |
||
228 | -p|--path) |
||
229 | projectdir=$(realpath "$2"); shift 2;; |
||
230 | --gcc=*) |
||
231 | gccincludedir=$(realpath "${1#*=}"); shift 1;; |
||
232 | --gcc) |
||
233 | gccincludedir=$(realpath "$2"); shift 2;; |
||
234 | -o=*|--out=*) |
||
235 | outvar=${1#*=}; shift 1;; |
||
236 | -o|--out) |
||
237 | outvar=$2; shift 2;; |
||
238 | --gccout=*) |
||
239 | gccoutvar=$(realpath "${1#*=}"); shift 1;; |
||
240 | --gccout) |
||
241 | gccoutvar=$(realpath "$2"); shift 2;; |
||
242 | *) |
||
243 | printError "invalid option: $1\n"; shift 1;; |
||
244 | esac |
||
245 | else |
||
246 | otherargs+=("$1") |
||
247 | shift 1 |
||
248 | fi |
||
249 | done |
||
250 | |||
251 | 959f302e | Thomas Schöpping | # sanity check for the modules variable |
252 | if [ -z "${modules[*]}" ]; then |
||
253 | printError "no modules available\n" |
||
254 | return -1 |
||
255 | fi |
||
256 | |||
257 | # select module |
||
258 | if [ -z $module ]; then |
||
259 | # list all available modules |
||
260 | 4e8e8462 | Thomas Schöpping | printInfo "select a module, type '*' for all or type 'A' to abort:\n" |
261 | 959f302e | Thomas Schöpping | for (( idx=0; idx<${#modules[@]}; ++idx )); do |
262 | printf "%4u: %s\n" $(($idx + 1)) "${modules[$idx]}" |
||
263 | done |
||
264 | # read user input |
||
265 | printLog "read user selection\n" |
||
266 | 7387fb42 | Thomas Schöpping | userinput="" |
267 | 4e8e8462 | Thomas Schöpping | while [[ ! "$userinput" =~ ^[0-9]+$ ]] || [ ! "$userinput" -gt 0 ] || [ ! "$userinput" -le ${#modules[@]} ] && [[ ! "$userinput" =~ ^(\*|[Aa])$ ]]; do |
268 | 959f302e | Thomas Schöpping | read -p "your selection: " -e userinput |
269 | printLog "user selection: $userinput\n" |
||
270 | 4e8e8462 | Thomas Schöpping | if [[ ! "$userinput" =~ ^[0-9]+$ ]] || [ ! "$userinput" -gt 0 ] || [ ! "$userinput" -le ${#modules[@]} ] && [[ ! "$userinput" =~ ^(\*|[Aa])$ ]]; then |
271 | printWarning "Please enter an integer between 1 and ${#modules[@]}, '*' to select all or 'A' to abort.\n" |
||
272 | 959f302e | Thomas Schöpping | fi |
273 | done |
||
274 | 4e8e8462 | Thomas Schöpping | if [[ "$userinput" =~ ^[0-9]+$ ]]; then |
275 | # store selection |
||
276 | modules2generate=(${modules[$(($userinput - 1))]}) |
||
277 | elif [[ "$userinput" =~ ^\*$ ]]; then |
||
278 | modules2generate=(${modules[@]}) |
||
279 | elif [[ "$userinput" =~ ^[Aa]$ ]]; then |
||
280 | 959f302e | Thomas Schöpping | printWarning "aborted by user\n" |
281 | return 1 |
||
282 | fi |
||
283 | printf "\n" |
||
284 | else |
||
285 | 4e8e8462 | Thomas Schöpping | # check whether the specified module is available |
286 | if [[ ! "${modules[@]}" =~ "$module" ]]; then |
||
287 | printError "module '$module' not available\n" |
||
288 | 959f302e | Thomas Schöpping | return -2 |
289 | 4e8e8462 | Thomas Schöpping | else |
290 | modules2generate=($module) |
||
291 | 959f302e | Thomas Schöpping | fi |
292 | fi |
||
293 | e545e620 | Thomas Schöpping | |
294 | # read absolute project directory if required |
||
295 | if [ -z "$projectdir" ]; then |
||
296 | getProjectDir projectdir |
||
297 | 959f302e | Thomas Schöpping | printf "\n" |
298 | fi |
||
299 | |||
300 | # check for existing project files |
||
301 | 4e8e8462 | Thomas Schöpping | for module in ${modules2generate[@]}; do |
302 | projectfiles+=($(find ${projectdir} -maxdepth 1 -type f -regextype posix-extended -regex "^.*/${module}\.(includes|files|config|creator)$" | sort)) |
||
303 | done |
||
304 | df5aa9b6 | Thomas Schöpping | if [ ${#projectfiles[@]} != 0 ]; then |
305 | 959f302e | Thomas Schöpping | printWarning "The following files will be overwritten:\n" |
306 | 23230307 | Thomas Schöpping | for pfile in ${projectfiles[@]}; do |
307 | printWarning "\t$(basename $pfile)\n" |
||
308 | done |
||
309 | 7387fb42 | Thomas Schöpping | userinput="" |
310 | 959f302e | Thomas Schöpping | printInfo "Continue and overwrite? [y/n]\n" |
311 | readUserInput "YyNn" userinput |
||
312 | case "$userinput" in |
||
313 | Y|y) |
||
314 | ;; |
||
315 | N|n) |
||
316 | 4e8e8462 | Thomas Schöpping | printWarning "project generation aborted by user\n" |
317 | 959f302e | Thomas Schöpping | return 1 |
318 | ;; |
||
319 | *) |
||
320 | printError "unexpected input: ${userinput}\n"; return -999;; |
||
321 | esac |
||
322 | printf "\n" |
||
323 | e545e620 | Thomas Schöpping | fi |
324 | |||
325 | 959f302e | Thomas Schöpping | # retrieve absolute GCC include path |
326 | e545e620 | Thomas Schöpping | if [ -z "$gccincludedir" ]; then |
327 | retrieveGccIncludeDir gccincludedir |
||
328 | fi |
||
329 | |||
330 | 4e8e8462 | Thomas Schöpping | # generate all modules |
331 | 7387fb42 | Thomas Schöpping | cd "$projectdir" |
332 | 4e8e8462 | Thomas Schöpping | for module in ${modules2generate[@]}; do |
333 | # print message |
||
334 | printInfo "generating QtCreator project files for the $module module...\n" |
||
335 | |||
336 | # run make, but only run the GCC preprocessor and produce no binaries |
||
337 | 7387fb42 | Thomas Schöpping | sourcefiles=() |
338 | sourcefile="" |
||
339 | parse_state="WAIT_FOR_INCLUDE_COMPILE_MAKE" |
||
340 | makedir="" |
||
341 | makedirs=() |
||
342 | 4e8e8462 | Thomas Schöpping | # capture all output from make and GCC and append the return value of make as last line |
343 | printInfo "processing project (this may take a while)...\n" |
||
344 | 7387fb42 | Thomas Schöpping | rawout=$(make --directory ${modulesdir}/${module} --always-make USE_OPT="-v -E -H" USE_VERBOSE_COMPILE="no" OUTFILES="" 2>&1 && echo $?) |
345 | 4e8e8462 | Thomas Schöpping | # check whether the make call was successfull |
346 | if [[ $(echo "${rawout}" | tail -n 1) != "0" ]]; then |
||
347 | printError "executing 'make' in module directory failed\n" |
||
348 | cd "$userdir" |
||
349 | return -3 |
||
350 | else |
||
351 | # cleanup |
||
352 | make --directory ${modulesdir}/${module} clean &>/dev/null |
||
353 | fi |
||
354 | # extract file names from raw output |
||
355 | IFS=$'\n'; rawout=($rawout); unset IFS |
||
356 | for line in "${rawout[@]}"; do |
||
357 | case $parse_state in |
||
358 | WAIT_FOR_INCLUDE_COMPILE_MAKE) |
||
359 | # lines stating include files look like: |
||
360 | # ... <../relative/path/to/file> |
||
361 | if [[ "$line" =~ ^\.+[[:blank:]].+\..+$ ]]; then |
||
362 | sourcefile=${line##* } |
||
363 | if [[ ! "$sourcefile" =~ ^/ ]]; then |
||
364 | sourcefile=$(realpath ${makedirs[-1]}/${sourcefile}) |
||
365 | fi |
||
366 | sourcefiles[${#sourcefiles[@]}]="$sourcefile" |
||
367 | # whenever the next source file is processed, a message appears like: |
||
368 | # Compiling <filename> |
||
369 | elif [[ "$line" =~ ^Compiling[[:blank:]](.+\..+)$ ]]; then |
||
370 | printf "." |
||
371 | sourcefile=${BASH_REMATCH[1]} |
||
372 | parse_state="WAIT_FOR_COMPILERCALL" |
||
373 | # if make is called again in another directory or a nested make call leaves the directory, a message appears like: |
||
374 | # make[1]: Entering directory 'directory' |
||
375 | # make[999]: Verzeichnis „directory“ wird verlassen |
||
376 | elif [[ "$line" =~ ^make(\[[0-9]+\])?:([[:alnum:]]|[[:blank:]])*[$quotes].*[$quotes]([[:alnum:]]|[[:blank:]])*$ ]]; then |
||
377 | # extract directory path |
||
378 | makedir=$(echo ${line} | grep -oE "[${quotes}].*[${quotes}]" | grep -oE "[^${quotes}].*[^${quotes}]") |
||
379 | # if the makedirs stack is empty or the directory does not mathc the last entry |
||
380 | if [ ${#makedirs[@]} == 0 ] || [ "${makedir}" != "${makedirs[-1]}" ]; then |
||
381 | # push the directory to the stack |
||
382 | makedirs+=(${makedir}) |
||
383 | else |
||
384 | # pop the directory from the stack |
||
385 | unset makedirs[-1] |
||
386 | fi |
||
387 | fi;; |
||
388 | WAIT_FOR_COMPILERCALL) |
||
389 | # wait for the actual call of the compiler to retrieve the full path to the source file |
||
390 | if [[ "$line" == *${sourcefile}* ]]; then |
||
391 | line="${line%%${sourcefile}*}${sourcefile}" |
||
392 | line="${line##* }" |
||
393 | if [[ "$line" =~ ^/ ]]; then |
||
394 | # aboslute path |
||
395 | sourcefile=$line |
||
396 | else |
||
397 | # relative path |
||
398 | sourcefile=$(realpath ${makedirs[-1]}/${line##* }) |
||
399 | fi |
||
400 | sourcefiles[${#sourcefiles[@]}]="$sourcefile" |
||
401 | parse_state="WAIT_FOR_INCLUDE_COMPILE_MAKE" |
||
402 | fi;; |
||
403 | esac |
||
404 | done |
||
405 | printf "\n" |
||
406 | # sort and remove duplicates |
||
407 | IFS=$'\n'; sourcefiles=($(sort --unique <<< "${sourcefiles[*]}")); unset IFS |
||
408 | 959f302e | Thomas Schöpping | |
409 | 4e8e8462 | Thomas Schöpping | # extract include paths |
410 | 7387fb42 | Thomas Schöpping | includes=() |
411 | 4e8e8462 | Thomas Schöpping | for source in ${sourcefiles[*]}; do |
412 | includes[${#includes[@]}]="$(dirname ${source})" |
||
413 | done |
||
414 | # sort and remove duplicates |
||
415 | IFS=$'\n'; includes=($(sort --unique <<< "${includes[*]}")); unset IFS |
||
416 | 959f302e | Thomas Schöpping | |
417 | 4e8e8462 | Thomas Schöpping | # generate the .incldues file, containing all include paths |
418 | echo "" > ${projectdir}/${module}.includes |
||
419 | for inc in ${includes[*]}; do |
||
420 | echo "$inc" >> ${projectdir}/${module}.includes |
||
421 | done |
||
422 | # generate the .files file, containing all source files |
||
423 | echo "" > ${projectdir}/${module}.files |
||
424 | for source in ${sourcefiles[*]}; do |
||
425 | # skip GCC files |
||
426 | if [[ ! "$source" =~ .*/gcc.* ]]; then |
||
427 | echo "$source" >> ${projectdir}/${module}.files |
||
428 | fi |
||
429 | done |
||
430 | # generate a default project configuration file if it doesn't exist yet |
||
431 | if [ ! -f ${projectdir}/${module}.config ]; then |
||
432 | echo "// Add predefined macros for your project here. For example:" > ${projectdir}/${module}.config |
||
433 | echo "// #define YOUR_CONFIGURATION belongs here" >> ${projectdir}/${module}.config |
||
434 | fi |
||
435 | # generate a default .creator file if it doesn't exist yet |
||
436 | if [ ! -f ${projectdir}/${module}.creator ]; then |
||
437 | echo "[general]" > ${projectdir}/${module}.creator |
||
438 | 959f302e | Thomas Schöpping | fi |
439 | 4e8e8462 | Thomas Schöpping | done |
440 | e545e620 | Thomas Schöpping | |
441 | 7387fb42 | Thomas Schöpping | # go back to user directory |
442 | cd "$userdir" |
||
443 | |||
444 | e545e620 | Thomas Schöpping | # fill the output variables |
445 | if [ ! -z "$outvar" ]; then |
||
446 | eval $outvar="$projectdir" |
||
447 | fi |
||
448 | if [ ! -z "$gccoutvar" ]; then |
||
449 | eval $gccoutvar="$gccincludedir" |
||
450 | fi |
||
451 | |||
452 | return 0 |
||
453 | } |
||
454 | |||
455 | 4e8e8462 | Thomas Schöpping | ### delete project files for a single or all modules ########################### |
456 | 959f302e | Thomas Schöpping | # Deletes all project files and optionally .user files, too. |
457 | e545e620 | Thomas Schöpping | # |
458 | 4e8e8462 | Thomas Schöpping | # usage: deleteProject [-p|--path=<path>] [-m|--module=<module>] [-o|--out=<var>] [-w|--wipe=<flag>] |
459 | e545e620 | Thomas Schöpping | # arguments: -p, --path <path> |
460 | 959f302e | Thomas Schöpping | # Path where to delete the project files. |
461 | # -m, --module <module> |
||
462 | 7387fb42 | Thomas Schöpping | # Module name for which the project files shall be deleted or '*' to delete for all modules. |
463 | e545e620 | Thomas Schöpping | # -o, --out <var> |
464 | # Variable to store the path to. |
||
465 | 4e8e8462 | Thomas Schöpping | # -w, --wipe <flag> |
466 | # Flag whether to delete .user files as well (must be either "true" or "false"). |
||
467 | # return: 0 |
||
468 | # No error or warning occurred. |
||
469 | # 1 |
||
470 | # Aborted by user. |
||
471 | # 2 |
||
472 | 7387fb42 | Thomas Schöpping | # There are no project files (for the specified module) at the specified location. |
473 | e545e620 | Thomas Schöpping | # |
474 | 4e8e8462 | Thomas Schöpping | function deleteProject { |
475 | 7387fb42 | Thomas Schöpping | local files=() |
476 | 4e8e8462 | Thomas Schöpping | local module="" |
477 | local modules=() |
||
478 | local modules2delete=() |
||
479 | 7387fb42 | Thomas Schöpping | local otherargs=() |
480 | local outvar="" |
||
481 | local projectdir="" |
||
482 | 4e8e8462 | Thomas Schöpping | local userinput="" |
483 | 7387fb42 | Thomas Schöpping | local wipe="" |
484 | e545e620 | Thomas Schöpping | |
485 | # parse arguments |
||
486 | while [ $# -gt 0 ]; do |
||
487 | if ( parseIsOption $1 ); then |
||
488 | case "$1" in |
||
489 | -p=*|--path=*) |
||
490 | projectdir=$(realpath "${1#*=}"); shift 1;; |
||
491 | -p|--path) |
||
492 | projectdir=$(realpath "$2"); shift 2;; |
||
493 | 959f302e | Thomas Schöpping | -m=*|--module=*) |
494 | 4e8e8462 | Thomas Schöpping | module="${1#*=}"; shift 1;; |
495 | 959f302e | Thomas Schöpping | -m|--module) |
496 | 4e8e8462 | Thomas Schöpping | module="${2}"; shift 2;; |
497 | e545e620 | Thomas Schöpping | -o=*|--out=*) |
498 | outvar=${1#*=}; shift 1;; |
||
499 | -o|--out) |
||
500 | outvar=$2; shift 2;; |
||
501 | 4e8e8462 | Thomas Schöpping | -w=*|--wipe=*) |
502 | wipe="${1#*=}"; shift 1;; |
||
503 | 959f302e | Thomas Schöpping | -w|--wipe) |
504 | 4e8e8462 | Thomas Schöpping | wipe="$2"; shift 2;; |
505 | e545e620 | Thomas Schöpping | *) |
506 | printError "invalid option: $1\n"; shift 1;; |
||
507 | esac |
||
508 | else |
||
509 | otherargs+=("$1") |
||
510 | shift 1 |
||
511 | fi |
||
512 | done |
||
513 | |||
514 | 4e8e8462 | Thomas Schöpping | # sanity checks on parameters |
515 | 7387fb42 | Thomas Schöpping | if [ ! -z $wipe ] && [[ ! "$wipe" =~ ^(true|false)$ ]]; then |
516 | 4e8e8462 | Thomas Schöpping | printWarning "invalid value set to 'wipe' argument\n" |
517 | 7387fb42 | Thomas Schöpping | printInfo "I will act as if there was no '--wipe' argument and ask for input later.\n" |
518 | 4e8e8462 | Thomas Schöpping | wipe="" |
519 | fi |
||
520 | |||
521 | e545e620 | Thomas Schöpping | # read absolute project directory if required |
522 | if [ -z "$projectdir" ]; then |
||
523 | getProjectDir projectdir |
||
524 | 4e8e8462 | Thomas Schöpping | printf "\n" |
525 | e545e620 | Thomas Schöpping | fi |
526 | |||
527 | 4e8e8462 | Thomas Schöpping | # retrieve all modules in the specified directory |
528 | 7387fb42 | Thomas Schöpping | modules=($(find "${projectdir}" -maxdepth 1 -type f -regextype posix-extended -regex "^.+\.(includes|files|config|creator|cflags|cxxflags|creator\.user(\..+)?)$" | grep -oE "/[^/\.]+\." | grep -oE "[^/].+[^\.]" | sort --unique)) |
529 | 4e8e8462 | Thomas Schöpping | |
530 | # check whether there are any project files at the specified location |
||
531 | if [ ${#modules[@]} -eq 0 ]; then |
||
532 | printWarning "no projects detected at '${projectdir}'\n" |
||
533 | return 2 |
||
534 | fi |
||
535 | |||
536 | # select module |
||
537 | if [ -z "$module" ]; then |
||
538 | # list all available modules |
||
539 | printInfo "select a module, type '*' for all or type 'A' to abort:\n" |
||
540 | for (( idx=0; idx<${#modules[@]}; ++idx )); do |
||
541 | printf "%4u: %s\n" $(($idx + 1)) "${modules[$idx]}" |
||
542 | done |
||
543 | # read user input |
||
544 | printLog "read user selection\n" |
||
545 | userinput="" |
||
546 | while [[ ! "$userinput" =~ ^[0-9]+$ ]] || [ ! "$userinput" -gt 0 ] || [ ! "$userinput" -le ${#modules[@]} ] && [[ ! "$userinput" =~ ^(\*|[Aa])$ ]]; do |
||
547 | read -p "your selection: " -e userinput |
||
548 | printLog "user selection: $userinput\n" |
||
549 | if [[ ! "$userinput" =~ ^[0-9]+$ ]] || [ ! "$userinput" -gt 0 ] || [ ! "$userinput" -le ${#modules[@]} ] && [[ ! "$userinput" =~ ^(\*|[Aa])$ ]]; then |
||
550 | printWarning "Please enter an integer between 1 and ${#modules[@]}, '*' to select all or 'A' to abort.\n" |
||
551 | fi |
||
552 | done |
||
553 | if [[ "$userinput" =~ ^[0-9]+$ ]]; then |
||
554 | # store selection |
||
555 | modules2delete=(${modules[$(($userinput - 1))]}) |
||
556 | elif [[ "$userinput" =~ ^\*$ ]]; then |
||
557 | modules2delete=(${modules[@]}) |
||
558 | elif [[ "$userinput" =~ ^[Aa]$ ]]; then |
||
559 | printWarning "aborted by user\n" |
||
560 | return 1 |
||
561 | 7387fb42 | Thomas Schöpping | else |
562 | printError "unexpected user input: ${userinput}\n" |
||
563 | return -999 |
||
564 | 959f302e | Thomas Schöpping | fi |
565 | 4e8e8462 | Thomas Schöpping | printf "\n" |
566 | 959f302e | Thomas Schöpping | else |
567 | 4e8e8462 | Thomas Schöpping | # check whether the specified module is available |
568 | if [[ ! "${modules[@]}" =~ "$module" ]]; then |
||
569 | printWarning "there are no project files for module '$module' at location '$projectdir'\n" |
||
570 | return 2 |
||
571 | 959f302e | Thomas Schöpping | else |
572 | 4e8e8462 | Thomas Schöpping | modules2delete=($module) |
573 | 959f302e | Thomas Schöpping | fi |
574 | e545e620 | Thomas Schöpping | fi |
575 | 4e8e8462 | Thomas Schöpping | |
576 | 7387fb42 | Thomas Schöpping | # check for .user files |
577 | files=() |
||
578 | 4e8e8462 | Thomas Schöpping | for module in ${modules2delete[@]}; do |
579 | 7387fb42 | Thomas Schöpping | files+=($(find "${projectdir}" -maxdepth 1 -type f -regextype posix-extended -regex "^.*${module}\.creator\.user(\..+)?)$")) |
580 | 4e8e8462 | Thomas Schöpping | done |
581 | |||
582 | # read wipe information if required |
||
583 | 7387fb42 | Thomas Schöpping | if [ ${#files[@]} -gt 0 ] && [ -z "$wipe" ]; then |
584 | 4e8e8462 | Thomas Schöpping | userinput="" |
585 | printInfo "Wipe user data as well? [y/n]\n" |
||
586 | readUserInput "YyNn" userinput |
||
587 | case "$userinput" in |
||
588 | Y|y) |
||
589 | wipe="true";; |
||
590 | N|n) |
||
591 | wipe="false";; |
||
592 | *) |
||
593 | printError "unexpected input: ${userinput}\n"; return -999;; |
||
594 | esac |
||
595 | printf "\n" |
||
596 | fi |
||
597 | |||
598 | 7387fb42 | Thomas Schöpping | # retrieve all files |
599 | files=() |
||
600 | for module in ${modules2delete[@]}; do |
||
601 | if [ "$wipe" == "true" ]; then |
||
602 | files+=($(find "${projectdir}" -maxdepth 1 -type f -regextype posix-extended -regex "^.*${module}\.(includes|files|config|creator|cflags|cxxflags|creator\.user(\..+)?)$")) |
||
603 | else |
||
604 | 4e8e8462 | Thomas Schöpping | files+=($(find "${projectdir}" -maxdepth 1 -type f -regextype posix-extended -regex "^.*${module}\.(includes|files|config|creator|cflags|cxxflags)$")) |
605 | 7387fb42 | Thomas Schöpping | fi |
606 | done |
||
607 | 4e8e8462 | Thomas Schöpping | |
608 | # list all files to be deleted and ask for confirmation |
||
609 | if [ ${#files[@]} -gt 0 ]; then |
||
610 | 7387fb42 | Thomas Schöpping | printWarning "The following files will be deleted:\n" |
611 | df5aa9b6 | Thomas Schöpping | for file in ${files[@]}; do |
612 | 7387fb42 | Thomas Schöpping | printWarning "\t$(basename ${file})\n" |
613 | df5aa9b6 | Thomas Schöpping | done |
614 | 4e8e8462 | Thomas Schöpping | userinput="" |
615 | printInfo "Do you want to continue? [y/n]\n" |
||
616 | readUserInput "YyNn" userinput |
||
617 | case "$userinput" in |
||
618 | Y|y) |
||
619 | ;; |
||
620 | N|n) |
||
621 | printWarning "aborted by user\n" |
||
622 | return 1;; |
||
623 | *) |
||
624 | printError "unexpected input: ${userinput}\n"; return -999;; |
||
625 | esac |
||
626 | 959f302e | Thomas Schöpping | else |
627 | 7387fb42 | Thomas Schöpping | printInfo "no files to delete\n" |
628 | e545e620 | Thomas Schöpping | fi |
629 | |||
630 | 4e8e8462 | Thomas Schöpping | # finally delete the files |
631 | for file in ${files[@]}; do |
||
632 | rm ${file} 2>&1 | tee -a $LOG_FILE |
||
633 | done |
||
634 | |||
635 | 959f302e | Thomas Schöpping | # store the path to the output variable, if required |
636 | e545e620 | Thomas Schöpping | if [ ! -z "$outvar" ]; then |
637 | eval $outvar="$projectdir" |
||
638 | fi |
||
639 | |||
640 | return 0 |
||
641 | } |
||
642 | |||
643 | ### main function of this script ############################################### |
||
644 | cacd990c | Thomas Schöpping | # Creates, deletes and wipes QtCreator project files for any module supported by AMiRo-OS. |
645 | e545e620 | Thomas Schöpping | # |
646 | # usage: see function printHelp |
||
647 | # arguments: see function printHelp |
||
648 | # return: 0 |
||
649 | # No error or warning ocurred. |
||
650 | # |
||
651 | function main { |
||
652 | 7387fb42 | Thomas Schöpping | local cmd="" |
653 | local cmdidx="" |
||
654 | local filenameidx="" |
||
655 | local logfile="" |
||
656 | local modules=() |
||
657 | local otherargs=() |
||
658 | local userinput="" |
||
659 | |||
660 | # print welcome/info text if not suppressed |
||
661 | e545e620 | Thomas Schöpping | if [[ $@ != *"--noinfo"* ]]; then |
662 | printWelcomeText |
||
663 | else |
||
664 | printf "######################################################################\n" |
||
665 | fi |
||
666 | printf "\n" |
||
667 | |||
668 | # if --help or -h was specified, print the help text and exit |
||
669 | if [[ $@ == *"--help"* || $@ == *"-h"* ]]; then |
||
670 | printHelp |
||
671 | printf "\n" |
||
672 | quitScript |
||
673 | fi |
||
674 | |||
675 | # set log file if specified |
||
676 | if [[ $@ == *"--log"* ]] || [[ $@ == *"--LOG"* ]]; then |
||
677 | # get the parameter (file name) |
||
678 | 7387fb42 | Thomas Schöpping | cmdidx=1 |
679 | e545e620 | Thomas Schöpping | while [[ ! "${!cmdidx}" = "--log"* ]] && [[ ! "${!cmdidx}" = "--LOG"* ]]; do |
680 | cmdidx=$[cmdidx + 1] |
||
681 | done |
||
682 | 7387fb42 | Thomas Schöpping | cmd="${!cmdidx}" |
683 | logfile="" |
||
684 | e545e620 | Thomas Schöpping | if [[ "$cmd" = "--log="* ]] || [[ "$cmd" = "--LOG="* ]]; then |
685 | logfile=${cmd#*=} |
||
686 | else |
||
687 | 7387fb42 | Thomas Schöpping | filenameidx=$((cmdidx + 1)) |
688 | e545e620 | Thomas Schöpping | logfile="${!filenameidx}" |
689 | fi |
||
690 | # optionally force silent appending |
||
691 | if [[ "$cmd" = "--LOG"* ]]; then |
||
692 | setLogFile --option=c --quiet "$logfile" LOG_FILE |
||
693 | else |
||
694 | setLogFile "$logfile" LOG_FILE |
||
695 | printf "\n" |
||
696 | fi |
||
697 | fi |
||
698 | # log script name |
||
699 | printLog "this is $(realpath ${BASH_SOURCE[0]})\n" |
||
700 | |||
701 | 959f302e | Thomas Schöpping | # detect available modules and inform user |
702 | detectModules modules |
||
703 | case "${#modules[@]}" in |
||
704 | 0) |
||
705 | printInfo "no module has been detected\n";; |
||
706 | 1) |
||
707 | printInfo "1 module has been detected:\n";; |
||
708 | *) |
||
709 | printInfo "${#modules[@]} modules have been detected:\n" |
||
710 | esac |
||
711 | for (( idx=0; idx<${#modules[@]}; ++idx )); do |
||
712 | printInfo " - ${modules[$idx]}\n" |
||
713 | done |
||
714 | printf "\n" |
||
715 | |||
716 | e545e620 | Thomas Schöpping | # parse arguments |
717 | while [ $# -gt 0 ]; do |
||
718 | if ( parseIsOption $1 ); then |
||
719 | case "$1" in |
||
720 | -h|--help) # already handled; ignore |
||
721 | shift 1;; |
||
722 | 7387fb42 | Thomas Schöpping | -c=*|--create=*) |
723 | 4e8e8462 | Thomas Schöpping | createProject modules[@] --module="${1#*=}"; printf "\n"; shift 1;; |
724 | 7387fb42 | Thomas Schöpping | -c|--create) |
725 | 4e8e8462 | Thomas Schöpping | createProject modules[@] --module="${2}"; printf "\n"; shift 2;; |
726 | -d=*|--delete=*) |
||
727 | deleteProject --module="${1#*=}"; printf "\n"; shift 1;; |
||
728 | -d|--delete) |
||
729 | deleteProject --module="${2}"; printf "\n"; shift 2;; |
||
730 | e545e620 | Thomas Schöpping | -q|--quit) |
731 | quitScript; shift 1;; |
||
732 | --log=*|--LOG=*) # already handled; ignore |
||
733 | shift 1;; |
||
734 | --log|--LOG) # already handled; ignore |
||
735 | shift 2;; |
||
736 | --noinfo) # already handled; ignore |
||
737 | shift 1;; |
||
738 | *) |
||
739 | printError "invalid option: $1\n"; shift 1;; |
||
740 | esac |
||
741 | else |
||
742 | otherargs+=("$1") |
||
743 | shift 1 |
||
744 | fi |
||
745 | done |
||
746 | |||
747 | # interactive menu |
||
748 | while ( true ); do |
||
749 | # main menu info prompt and selection |
||
750 | printInfo "QtCreator setup main menu\n" |
||
751 | printf "Please select one of the following actions:\n" |
||
752 | 7387fb42 | Thomas Schöpping | printf " [C] - create project files\n" |
753 | 4e8e8462 | Thomas Schöpping | printf " [D] - delete project files\n" |
754 | e545e620 | Thomas Schöpping | printf " [Q] - quit this setup\n" |
755 | 7387fb42 | Thomas Schöpping | userinput="" |
756 | readUserInput "CcDdQq" userinput |
||
757 | e545e620 | Thomas Schöpping | printf "\n" |
758 | |||
759 | # evaluate user selection |
||
760 | case "$userinput" in |
||
761 | 7387fb42 | Thomas Schöpping | C|c) |
762 | 4e8e8462 | Thomas Schöpping | createProject modules[@]; printf "\n";; |
763 | D|d) |
||
764 | deleteProject; printf "\n";; |
||
765 | e545e620 | Thomas Schöpping | Q|q) |
766 | quitScript;; |
||
767 | *) # sanity check (exit with error) |
||
768 | printError "unexpected argument: $userinput\n";; |
||
769 | esac |
||
770 | done |
||
771 | |||
772 | exit 0 |
||
773 | } |
||
774 | |||
775 | ################################################################################ |
||
776 | # SCRIPT ENTRY POINT # |
||
777 | ################################################################################ |
||
778 | |||
779 | main "$@" |