-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·358 lines (299 loc) · 13 KB
/
install.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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#!/bin/bash
# Copyright (c) 2016, RTE (http://www.rte-france.com)
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
sourceDir=$(dirname $(readlink -f $0))
## install default settings
###############################################################################
ipst_prefix=$HOME/ipst
ipst_package_version=` mvn -f "$sourceDir/pom.xml" org.apache.maven.plugins:maven-help-plugin:evaluate -Dexpression=project.version | grep -v "Download" | grep -v "\["`
ipst_package_name=ipst-$ipst_package_version
ipst_package_type=zip
dymola_build=false
dymola_home=
eurostag_build=false
eurostag_home=
matlab_build=false
matlab_home=
thirdparty_build=true
thirdparty_prefix=$HOME/powsybl_thirdparty
thirdparty_download=true
thirdparty_packs=$HOME/ipst_packs
# Targets
ipst_clean=false
ipst_compile=false
ipst_docs=false
ipst_package=false
ipst_install=false
thirdparty_clean=false
## read settings from configuration file
###############################################################################
settings="$sourceDir/install.cfg"
if [ -f "${settings}" ]; then
source "${settings}"
fi
## Usage/Help
###############################################################################
cmd=$0
usage() {
echo "usage: $cmd [options] [target...]"
echo ""
echo "Available targets:"
echo " clean Clean iPST modules"
echo " clean-thirdparty Clean the thirdparty libraries"
echo " compile Compile iPST modules"
echo " package Compile iPST modules and create a distributable package"
echo " install Compile iPST modules and install it (default target)"
echo " help Display this help"
echo " docs Generate the documentation (Doxygen/Javadoc)"
echo ""
echo "iPST options:"
echo " --help Display this help"
echo " --prefix Set the installation directory (default is $HOME/ipst)"
echo " --package-type Set the package format. The supported formats are zip, tar, tar.gz and tar.bz2 (default is zip)"
echo ""
echo "iPST C++ options:"
echo " --with-dymola Enable the compilation of Dymola dependant modules (DYMOLA_HOME)"
echo " --without-dymola Disable the compilation of Dymola dependant modules (default)"
echo " --with-eurostag Enable the compilation of Eurostag dependant modules (EUROSTAG_SDK_HOME)"
echo " --without-eurostag Disable the compilation of Eurostag dependant modules (default)"
echo " --with-matlab Enable the compilation of Matlab dependant modules (MATLAB_HOME)"
echo " --without-matlab Disable the compilation of Matlab dependant modules (default)"
echo ""
echo "Thirdparty options:"
echo " --with-thirdparty Enable the compilation of thirdparty libraries (default)"
echo " --without-thirdparty Disable the compilation of thirdparty libraries"
echo " --thirdparty-prefix Set the thirdparty installation directory (default is $HOME/ipst_thirdparty)"
echo " --thirdparty-download Sets false to compile thirdparty libraries from a local repository (default is true)"
echo " --thirdparty-packs Sets the thirdparty libraries local repository (default is $HOME/ipst_packs)"
echo ""
}
## Write Settings functions
###############################################################################
writeSetting() {
if [[ $# -lt 2 || $# -gt 3 ]]; then
echo "WARNING: writeSetting <setting> <value> [comment (true|false)]"
exit 1
fi
SETTING=$1
VALUE=$2
if [[ $# -eq 3 ]]; then
echo -ne "# "
fi
echo "${SETTING}=${VALUE}"
return 0
}
writeComment() {
echo "# $*"
return 0
}
writeEmptyLine() {
echo ""
return 0
}
writeSettings() {
writeComment " -- iPST global options --"
writeSetting "ipst_prefix" ${ipst_prefix}
writeSetting "ipst_package_type" ${ipst_package_type}
writeEmptyLine
writeComment " -- iPST C++ modules options --"
writeSetting "eurostag_build" ${eurostag_build}
writeSetting "eurostag_home" "${eurostag_home}"
writeSetting "dymola_build" ${dymola_build}
writeSetting "dymola_home" "${dymola_home}"
writeSetting "matlab_build" ${matlab_build}
writeSetting "matlab_home" "${matlab_home}"
writeEmptyLine
writeComment " -- iPST thirdparty libraries --"
writeSetting "thirdparty_build" ${thirdparty_build}
writeSetting "thirdparty_prefix" ${thirdparty_prefix}
writeSetting "thirdparty_download" ${thirdparty_download}
writeSetting "thirdparty_packs" ${thirdparty_packs}
return 0
}
## Build required C++ thirdparty libraries
###############################################################################
buildthirdparty()
{
if [[ $thirdparty_clean = true || $ipst_compile = true ]]; then
echo "** C++ thirdparty libraries"
if [ $thirdparty_clean = true ]; then
echo "**** Removing thirdparty install directory (if already exists)."
rm -rf "$thirdparty_prefix"
fi
if [ $ipst_compile = true ]; then
if [ $thirdparty_build = true ]; then
echo "**** Building the C++ thirdparty libraries"
thirdparty_builddir="${thirdparty_prefix}/build/ipst"
cmake -Dprefix="$thirdparty_prefix" -Ddownload="$thirdparty_download" -Dpacks="$thirdparty_packs" -G "Unix Makefiles" -H"$sourceDir/thirdparty" -B"$thirdparty_builddir" || exit $?
make -C "$thirdparty_builddir" || exit $?
thirdparty_build=false
else
echo "**** Skipping the build of the required thirdparty libraries, assuming a previous build in $thirdparty_prefix"
fi
fi
fi
}
## Build C++ modules
###############################################################################
ipst_cpp()
{
if [[ $ipst_clean = true || $ipst_compile = true || $ipst_docs = true ]]; then
echo "** iPST C++ modules"
ipst_builddir=$sourceDir/build
if [ $ipst_clean = true ]; then
echo "**** Removing build directory (if already exists)."
rm -rf "$ipst_builddir"
fi
if [[ $ipst_compile = true || $ipst_docs = true ]]; then
# TODO: rename variable
cmake -DCMAKE_INSTALL_PREFIX="$ipst_prefix" -Dthirdparty_prefix="$thirdparty_prefix" -DBUILD_EUROSTAG=$eurostag_build -DEUROSTAG_SDK_HOME="${eurostag_home}" -DBUILD_MATLAB=$matlab_build -DMATLAB_HOME="${matlab_home}" -DBUILD_DYMOLA=$dymola_build -DDYMOLA_HOME="${dymola_home}" -G "Unix Makefiles" -H"$sourceDir" -B"$ipst_builddir" || exit $?
if [ $ipst_compile = true ]; then
echo "**** Compiling C++ modules"
make -C "$ipst_builddir" || exit $?
fi
if [ $ipst_docs = true ]; then
echo "**** Generating Doxygen documentation"
make -C "$ipst_builddir" doc || exit $?
fi
fi
fi
}
## Build Java Modules
###############################################################################
ipst_java()
{
if [[ $ipst_clean = true || $ipst_compile = true || $ipst_docs = true ]]; then
echo "** Building iPST Java modules"
mvn_options=""
[ $ipst_clean = true ] && mvn_options="$mvn_options clean"
[ $ipst_compile = true ] && mvn_options="$mvn_options install"
if [ ! -z "$mvn_options" ]; then
mvn -f "$sourceDir/pom.xml" $mvn_options || exit $?
fi
if [ $ipst_docs = true ]; then
echo "**** Generating Javadoc documentation"
mvn -f "$sourceDir/pom.xml" javadoc:javadoc || exit $?
mvn -f "$sourceDir/distribution/pom.xml" install || exit $?
fi
fi
}
## Package iPST
###############################################################################
ipst_package()
{
if [ $ipst_package = true ]; then
echo "** Packaging iPST"
case "$ipst_package_type" in
zip)
[ -f "${ipst_package_name}.zip" ] && rm -f "${ipst_package_name}.zip"
$(cd "$sourceDir/distribution-dynamic-simulation/target/ipst-distribution-dynamic-simulation-${ipst_package_version}-full" && zip -rq "$sourceDir/${ipst_package_name}.zip" "ipst")
zip -qT "${ipst_package_name}.zip" > /dev/null 2>&1 || exit $?
;;
tar)
[ -f "${ipst_package_name}.tar" ] && rm -f "${ipst_package_name}.tar"
tar -cf "${ipst_package_name}.tar" -C "$sourceDir/distribution-dynamic-simulation/target/ipst-distribution-dynamic-simulation-${ipst_package_version}-full" . || exit $?
;;
tar.gz | tgz)
[ -f "${ipst_package_name}.tar.gz" ] && rm -f "${ipst_package_name}.tar.gz"
[ -f "${ipst_package_name}.tgz" ] && rm -f "${ipst_package_name}.tgz"
tar -czf "${ipst_package_name}.tar.gz" -C "$sourceDir/distribution-dynamic-simulation/target/ipst-distribution-dynamic-simulation-${ipst_package_version}-full" . || exit $?
;;
tar.bz2 | tbz)
[ -f "${ipst_package_name}.tar.bz2" ] && rm -f "${ipst_package_name}.tar.bz2"
[ -f "${ipst_package_name}.tbz" ] && rm -f "${ipst_package_name}.tbz"
tar -cjf "${ipst_package_name}.tar.bz2" -C "$sourceDir/distribution/target/ipst-distribution-dynamic-simulation-${ipst_package_version}-full" . || exit $?
;;
*)
echo "Invalid package format: zip, tar, tar.gz, tar.bz2 are supported."
exit 1;
;;
esac
fi
}
## Install iPST
###############################################################################
ipst_install()
{
if [ $ipst_install = true ]; then
echo "** Installing iPST"
echo "**** Copying files"
mkdir -p "$ipst_prefix" || exit $?
cp -Rp "$sourceDir/distribution-dynamic-simulation/target/ipst-distribution-dynamic-simulation-${ipst_package_version}-full/ipst"/* "$ipst_prefix" || exit $?
fi
}
## Parse command line
###############################################################################
ipst_options="prefix:,package-type:"
ipst_cpp_options="with-eurostag::,without-eurostag,with-dymola::,without-dymola,with-matlab::,without-matlab"
thirdparty_options="with-thirdparty,without-thirdparty,thirdparty-prefix:,thirdparty-download,thirdparty-packs:"
opts=`getopt -o '' --long "help,$ipst_options,$ipst_cpp_options,$thirdparty_options" -n 'install.sh' -- "$@"`
eval set -- "$opts"
while true; do
case "$1" in
# iPST options
--prefix) ipst_prefix=$2 ; shift 2 ;;
--package-type) ipst_package_type=$2 ; shift 2 ;;
# iPST C++ options
--with-dymola)
case "$2" in
"") dymola_build=true ; dymola_home=${DYMOLA_HOME} ; shift 2 ;;
*) dymola_build=true ; dymola_home=$2 ; shift 2 ;;
esac ;;
--without-dymola) dymola_build=false ; shift ;;
--with-eurostag)
case "$2" in
"") eurostag_build=true ; eurostag_home=${EUROSTAG_SDK_HOME} ; shift 2 ;;
*) eurostag_build=true ; eurostag_home=$2 ; shift 2 ;;
esac ;;
--without-eurostag) eurostag_build=false ; shift ;;
--with-matlab)
case "$2" in
"") matlab_build=true ; matlab_home=${MATLAB_HOME} ; shift 2 ;;
*) matlab_build=true ; matlab_home=$2 ; shift 2 ;;
esac ;;
--without-matlab) matlab_build=false ; shift ;;
# Third-party options
--with-thirdparty) thirdparty_build=true ; shift ;;
--without-thirdparty) thirdparty_build=false ; shift ;;
--thirdparty-prefix) thirdparty_prefix=$2 ; shift 2 ;;
--thirdparty-download) thirdparty_download=true ; shift ;;
--thirdparty-packs) thirdparty_packs=$2 ; thirdparty_download=false ; shift 2 ;;
# Help
--help) usage ; exit 0 ;;
--) shift ; break ;;
*) usage ; exit 1 ;;
esac
done
if [ $# -ne 0 ]; then
for command in $*; do
case "$command" in
clean) ipst_clean=true ;;
clean-thirdparty) thirdparty_clean=true ; thirdparty_build=true ;;
compile) ipst_compile=true ;;
docs) ipst_docs=true ;;
package) ipst_package=true ; ipst_compile=true ;;
install) ipst_install=true ; ipst_compile=true ;;
help) usage; exit 0 ;;
*) usage ; exit 1 ;;
esac
done
else
ipst_compile=true
ipst_install=true
fi
## Build iPST platform
###############################################################################
# Build required C++ thirdparty libraries
buildthirdparty
# Build C++ modules
ipst_cpp
# Build Java modules
ipst_java
# Package iPST
ipst_package
# Install iPST
ipst_install
# Save settings
writeSettings > "${settings}"