forked from OPCFoundation/UA-ModelCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PublishModel.sh
executable file
·35 lines (29 loc) · 1.33 KB
/
PublishModel.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
#!/bin/bash
#****************************************************************************************************************
#** --
#** This script demonstrates how to use the model compiler to generate source code from a variety
#** of XML files that adhere to the 'Nodeset2.xml' format. Please refer to the UA Specifications Part 6
#** for more information.
#** --
#****************************************************************************************************************
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
export MODELCOMPILER=$DIR/Opc.Ua.ModelCompiler.exe
if [ "$#" -ne 3 ]; then
echo "Usage: SOURCE_FILE_NAME TARGET_FOLDER_NAME OUTPUT_DIR"
exit 3
fi
export SOURCE=$1
export TARGET=$2
export OUTPUT=$3
echo "Building Model for '${TARGET}'"
mkdir -p "${OUTPUT}/${TARGET}"
echo ${MODELCOMPILER} -console -d2 "$(realpath ${SOURCE}.xml)" -cg "$(realpath ${SOURCE}.csv)" -o2 "$(realpath ${OUTPUT}/${TARGET}/)"
mono ${MODELCOMPILER} -console -d2 "$(realpath ${SOURCE}.xml)" -cg "$(realpath ${SOURCE}.csv)" -o2 "$(realpath ${OUTPUT}/${TARGET}/)"
if [ $? -ne 0 ]; then
echo "Failed ${TARGET}"
exit 3
fi
echo Copying Model files to $(realpath ${OUTPUT}/${TARGET})
cp "$(realpath ${SOURCE}.xml)" "${OUTPUT}/${TARGET}/"
cp "$(realpath ${SOURCE}.csv)" "${OUTPUT}/${TARGET}/"
rm -f "${OUTPUT}/${TARGET}/*NodeSet.xml"