forked from OpenCAEPlus/OpenCAEPoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli
executable file
·340 lines (290 loc) · 7.08 KB
/
cli
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#!/bin/bash
system="linux"
compiler="gnu"
build="Debug"
target="all"
docBuild="doxygen"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
system="linux"
elif [[ "$OSTYPE" == "darwin"* ]]; then
system="mac"
elif [[ "$OSTYPE" == "cygwin" ]]; then
# POSIX compatibility layer and Linux environment emulation for Windows
system="cygwin"
elif [[ "$OSTYPE" == "msys" ]]; then
# Lightweight shell and GNU utilities compiled for Windows (part of MinGW)
system="msys"
else
system="windows"
fi
helperBuild() {
cat <<EOF
CLI subcommand "build" to compile the source codes.
Usage:
The command will automatically detect your system, you just need to tell the
cli which compiler, build type, and target you want to use
cli build -c|--compiler -b|--build -t|--target [-h|--help]
Example:
cli build -c intel -b Debug
cli build -c intel -b Debug -t all
cli build -c intel -b Debug -t clean
EOF
exit 0
}
helperTest() {
cat <<EOF
CLI subcommand "test" to compile and test the source codes.
Usage:
The command will automatically detect your system, you just need to tell the
cli which compiler, build type, target, and the testing type, either unit or benchmark
cli test -c|--compiler -b|--build -t|--target -u|--unit -m|--benchmark [-h|--help]
Example:
cli test -c intel -b Debug
cli test -c intel -b Debug -u
cli test -c intel -b Debug -m -u
EOF
exit 0
}
helperDoc() {
cat <<EOF
CLI subcommand "doc" to build the documentation
Usage:
You can choose to build either the vitepress website or latexpdf.
cli doc -b|--build -p|--publish [-h|--help]
Example:
cli doc -b vitepress
cli doc -b latexpdf
EOF
exit 0
}
helperCLI() {
cat <<EOF
Command line interface for OpenCAEPlus to make life easier.
Two subcommands available:
cli build
cli doc
Use -h or --help option to check the usage for each of the
subcommand.
EOF
exit 0
}
echo $1
case "$1" in
build)
echo "Compile the program"
shift
if [[ ${system} == "linux" ]]; then
OPT=$(getopt -o t:c:b:h --long target:,compiler:,build:,help -n 'cli build' -- "$@")
elif [[ ${system} == "mac" ]]; then
OPT=$(getopt t:c:b:h "$@")
fi
eval set -- ${OPT}
[ $# -le 1 ] && {
helperBuild
}
while true; do
case "$1" in
-t | --target)
target="$2"
shift 2
;;
-c | --compiler)
compiler="$2"
shift 2
;;
-b | --build)
build="$2"
shift 2
;;
-h | --help)
helperBuild
shift 1
;;
--)
# echo "Using all default variables ${system}-${compiler}-${build}-${target}"
break
;;
*)
echo "Unknown options!"
helperBuild
;;
esac
done
set --
echo ${system}-${compiler}-${build}-${target}
if [[ ${compiler} = "intel" ]]; then
source /opt/intel/oneapi/setvars.sh
if [[ ${system} = "mac" ]]; then
export CC=icc
export CXX=icpc
fi
fi
case "$system" in
"linux" | "mac")
cmake --preset="${system}-${compiler}-${build}" -S "."
cmake --build --clean-first --verbose --preset="${system}-${compiler}-${build}" --target ${target}
;;
"windows")
echo "Please use the cli.bat script on windows "
;;
--)
break
;;
*)
echo "System $system not supported"
helperBuild
;;
esac
;;
test)
unit_test=0
benchmark=0
args=""
echo "Test the program"
shift
if [[ ${system} == "linux" ]]; then
OPT=$(getopt -o t:c:b:hum --long target:,compiler:,build:,help,unit,benchmark -n 'cli build' -- "$@")
elif [[ ${system} == "mac" ]]; then
OPT=$(getopt t:c:b:hum "$@")
fi
eval set -- ${OPT}
[ $# -le 1 ] && {
helperTest
}
while true; do
case "$1" in
-t | --target)
target="$2"
shift 2
;;
-c | --compiler)
compiler="$2"
shift 2
;;
-b | --build)
build="$2"
shift 2
;;
-h | --help)
helperTest
shift
;;
-u | --unit)
unit_test=1
args=args" -DENABLE_TEST_UNIT=ON"
shift
;;
-m | --benchmark)
benchmark=1
args=args" -DENABLE_TEST_BENCHMARK=ON"
shift
;;
--)
echo "Using all default variables ${system}-${compiler}-${build}-${target}"
break
;;
*)
echo "Unknown options!"
helperTest
;;
esac
done
set --
echo ${system}-${compiler}-${build}-${target}
if [[ ${compiler} = "intel" ]]; then
source /opt/intel/oneapi/setvars.sh
if [[ ${system} = "mac" ]]; then
export CC=icc
export CXX=icpc
fi
fi
case "$system" in
"linux" | "mac")
cmake --preset="${system}-${compiler}-${build}" ${args} -S "."
cmake --build --preset="${system}-${compiler}-${build}" --target ${target}
ctest --preset="${system}-${compiler}-${build}"
;;
"windows")
echo "Please use the cli.bat script on windows "
;;
--)
break
;;
*)
echo "System $system not supported"
helperTest
;;
esac
;;
doc)
echo "Build the doc"
shift
if [[ ${system} == "linux" ]]; then
OPT=$(getopt -o hb: --long help,build: -n 'cli doc' -- "$@")
elif [[ ${system} == "mac" ]]; then
OPT=$(getopt b:h "$@")
fi
eval set -- "${OPT}"
[ $# -le 1 ] && {
helperDoc
}
while true; do
case "$1" in
-b | --build)
docBuild=$2
shift 2
;;
-p | --publish)
curl https://api.render.com/deploy/srv-cd6nb2un6mprs1qjju00?key=wb1xAsG-x_U
shift
;;
-h | --help)
helperDoc
shift
;;
--)
break
;;
*)
echo "Unknown options!"
helperDoc
;;
esac
done
set --
echo "Build the doxygen"
cd doc
rm -rf doxygen-out
PROJECT_NUMBER=$(git describe --tags --abbrev=0) doxygen Doxyfile
if [[ $docBuild == "latexpdf" ]]; then
# cd doxygen-out/latex
# make
# cd -
make latexpdf
cp _build/latex/opencaeporo.pdf website/manual/
fi
if [[ $docBuild == "vitepress" ]]; then
rm -rf doxybook-out website/api
mkdir -p doxybook-out
doxybook2 --input doxygen-out/xml --output doxybook-out --config doxybook-config.json --templates .
cp -r doxybook-out website/api
pnpm install
pnpm doc:build
cd website/.vitepress
zip -r dist.zip dist
cd -
fi
cd ..
;;
-h | --help)
helperCLI
shift
;;
--)
break
;;
*)
helperCLI
shift
;;
esac