forked from ASNeG/OpcUaStack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·470 lines (414 loc) · 10.4 KB
/
build.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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#!/bin/bash
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# config section
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
CMAKE_GENERATOR_LOCAL=-G"Eclipse CDT4 - Unix Makefiles"
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
usage()
{
echo "build.sh --target(-t) TARGET [OPTIONS] ..."
echo "--target, -t: sets one of the folowing target:"
echo " info - create version and dependency files"
echo " local - create local build and install in local directory defined in --install-prefix"
echo " deb - create deb package"
echo " rpm - create rpm package"
echo " tst - build unit application"
echo " clean - delete all build directories"
echo ""
echo "--stack-prefix, -s STACK_PREFIX: set the path to directory"
echo "\twhere the OpcUaStack is installed (default: /)"
echo ""
echo "--install-prefix, -i INSTALL_PREFIX: is the path to directory"
echo "\twhere the application should be installed (default: ${HOME}/.ASNeG)"
echo "--jobs, -j JOB_COUNT: sets the number of the jobs of make"
echo ""
echo "--build-type, -B BUILD_TYPE: set the build types (Debug | Release). By default, it is Debug type"
echo "--test-with-server URI: build client test for real OPC UA server. By default, empty "
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# create version and dependency files
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_info()
{
echo "version info"
rm -rf build_info
mkdir build_info
cd build_info
cmake -DCREATE_INFO_FILES=1 ../src/
}
build_info_clean()
{
set -e
rm -rf build_info*
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# build and install local
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_local()
{
echo "build local start"
# check build directoriy
if [ ! -d "build_local_${BUILD_TYPE}" ] ;
then
BUILD_FIRST=1
rm -rf build_local_${BUILD_TYPE}
mkdir build_local_${BUILD_TYPE}
else
BUILD_FIRST=0
fi
cd build_local_${BUILD_TYPE}
# build local
if [ ${BUILD_FIRST} -eq 1 ] ;
then
set -x
cmake ../src \
"${CMAKE_GENERATOR_LOCAL}" \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}"
RESULT=$?
set +x
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
else
set -x
cmake .
RESULT=$?
set +x
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
fi
# install local
make DESTDIR="${INSTALL_PREFIX}" install -j"${JOBS}"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "make install error"
return ${RESULT}
fi
return 0
}
build_local_clean()
{
set -e
rm -rf build_local*
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# build deb package
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_deb()
{
echo "build deb package start"
# check if debian package to be produced
if which dpkg > /dev/null ;
then
echo "build deb package enable"
else
echo "build deb package disable"
return -1
fi
# check build directoriy
if [ ! -d "build_deb_${BUILD_TYPE}" ] ;
then
BUILD_FIRST=1
rm -rf build_deb_${BUILD_TYPE}
mkdir build_deb_${BUILD_TYPE}
else
BUILD_FIRST=0
fi
cd build_deb_${BUILD_TYPE}
# build package
if [ ${BUILD_FIRST} -eq 1 ] ;
then
cmake ../src \
"${CMAKE_GENERATOR_LOCAL}" \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}" \
"-DCPACK_BINARY_DEB=1" \
"-DCPACK_BINARY_RPM=0" \
"-DCPACK_BINARY_STGZ=0" \
"-DCPACK_BINARY_TGZ=0" \
"-DCPACK_BINARY_TZ=0"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
else
cmake .
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
fi
make package -j"${JOBS}"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "make package error"
return ${RESULT}
fi
return 0
}
build_deb_clean()
{
set -e
rm -rf build_deb*
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# build rpm package
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_rpm()
{
echo "build rpm package start"
# check if rpm package to be produced
if which rpmbuild > /dev/null ;
then
echo "build rpm package enable"
else
echo "build rpm package disable"
return -1
fi
# build package directory
if [ ! -d "build_rpm_${BUILD_TYPE}" ] ;
then
BUILD_FIRST=1
rm -rf build_rpm_${BUILD_TYPE}
mkdir build_rpm_${BUILD_TYPE}
else
BUILD_FIRST=0
fi
cd build_rpm_${BUILD_TYPE}
# build package
if [ ${BUILD_FIRST} -eq 1 ] ;
then
cmake ../src \
"${CMAKE_GENERATOR_LOCAL}" \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}" \
"-DCPACK_BINARY_DEB=0" \
"-DCPACK_BINARY_RPM=1" \
"-DCPACK_BINARY_STGZ=0" \
"-DCPACK_BINARY_TGZ=0" \
"-DCPACK_BINARY_TZ=0"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
else
cmake .
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
fi
make package -j"${JOBS}"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "make package error"
return ${RESULT}
fi
return 0
}
build_rpm_clean()
{
set -e
rm -rf build_rpm*
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# build test
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_tst()
{
echo "build tst start"
# build tst directory
if [ ! -d "build_tst_${BUILD_TYPE}" ] ;
then
BUILD_FIRST=1
rm -rf build_tst_${BUILD_TYPE}
mkdir build_tst_${BUILD_TYPE}
else
BUILD_FIRST=0
fi
cd build_tst_${BUILD_TYPE}
# build tst
if [ ${BUILD_FIRST} -eq 1 ] ;
then
cmake ../tst \
"${CMAKE_GENERATOR_LOCAL}" \
-DOPCUASTACK_INSTALL_PREFIX="${STACK_PREFIX}" \
-DTEST_SERVER_URI=${TEST_SERVER_URI} \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
else
cmake .
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "cmake error"
return ${RESULT}
fi
fi
make -j"${JOBS}"
RESULT=$?
if [ ${RESULT} -ne 0 ] ;
then
echo "make error"
return ${RESULT}
fi
return 0
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# cleanup
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
build_tst_clean()
{
set -e
rm -rf build_tst*
}
clean()
{
build_info_clean
build_local_clean
build_deb_clean
build_rpm_clean
build_tst_clean
return 0
}
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
#
# main
#
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
if [ $# -le 1 ] ;
then
usage
exit 1
fi
INSTALL_PREFIX="${HOME}/.ASNeG"
STACK_PREFIX="/"
JOBS=1
BUILD_TYPE="Debug"
TEST_SERVER_URI=""
while [ $# -gt 0 ];
do
key="$1"
case $key in
-t|--target)
TARGET="$2"
shift # past argument
shift # past value
;;
-i|--install-prefix)
INSTALL_PREFIX="$2"
shift # past argument
shift # past value
;;
-s|--stack-prefix)
STACK_PREFIX="$2"
shift # past argument
shift # past value
;;
-j|--jobs)
JOBS="$2"
shift # past argument
shift # past value
;;
-B|--build-type)
BUILD_TYPE="$2"
shift # past argument
shift # past value
;;
--test-with-server)
TEST_SERVER_URI="$2"
shift # past flag
shift # past value
;;
*) # unknown option
shift # past argument
;;
esac
done
case ${INSTALL_PREFIX} in
/*) ;;
*) INSTALL_PREFIX=${PWD}/${INSTALL_PREFIX} ;;
esac
if [ "${TARGET}" = "info" ] ;
then
build_info
exit $?
elif [ "${TARGET}" = "clean" ] ;
then
clean
exit $?
elif [ "${TARGET}" = "local" ] ;
then
build_local
exit $?
elif [ "${TARGET}" = "deb" ] ;
then
build_deb
exit $?
elif [ "${TARGET}" = "rpm" ] ;
then
build_rpm
exit $?
elif [ "${TARGET}" = "tst" ] ;
then
build_tst
exit $?
else
usage
exit 1
fi
if [ $# -le 1 ] ;
then
usage
exit 1
fi