-
Notifications
You must be signed in to change notification settings - Fork 3
/
build_thingml.sh
71 lines (49 loc) · 2.64 KB
/
build_thingml.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
#!/bin/bash
# Get the latest version of the thingml compiler (snapshot!!!).
# TODO: We should really use a released version to avoid issues
# Abort and exit if any command fails
set -e
###########################################################
# Download the thingML compiler if any newer version is available
###########################################################
wget -N http://thingml.org/dist/ThingML2CLI.jar
# Generate the MQTT serialization adapter
java -jar ThingML2CLI.jar -t posixmqttjson -s build-tmp/3_CloudAgent/CloudAgentMsgs.thingml
###########################################################
# Compile 4_BLEGateway
###########################################################
# Generate the MQTT serialization adapter
java -jar ThingML2CLI.jar -t posixmqttjson -s build-tmp/4_BLEGateway/BLEGatewayPorts.thingml
# Compile to Posix
java -jar ThingML2CLI.jar -c posix -s build-tmp/4_BLEGateway/BLEGateway.thingml -o thingml-gen/posix/BLEGateway
###########################################################
# Compile 5_GPS
###########################################################
# Generate the MQTT serialization adapter
java -jar ThingML2CLI.jar -t posixmqttjson -s build-tmp/5_GPS/GPSPorts.thingml
# Compile to Posix
java -jar ThingML2CLI.jar -c posix -s build-tmp/5_GPS/GPSDClient.thingml -o thingml-gen/posix/GPSDClient
###########################################################
# Compile 6_Sensor
###########################################################
# Compile to Arduino
java -jar ThingML2CLI.jar -c arduino -s build-tmp/6_Sensor/Sensor.thingml -o thingml-gen/arduino/DummySensor
###########################################################
# Compile 7_SensorBridge
###########################################################
# Generate the MQTT serialization adapter
java -jar ThingML2CLI.jar -t posixmqttjson -s build-tmp/7_SensorBridge/SensorBridgeMsgs.thingml
# Compile to Posix
java -jar ThingML2CLI.jar -c posix -s build-tmp/7_SensorBridge/SensorBridge.thingml -o thingml-gen/posix/SensorBridge
###########################################################
# Compile 8_NetworkAgent
###########################################################
# Compile to Posix
java -jar ThingML2CLI.jar -c posix -s build-tmp/8_NetworkAgent/NetworkAgent.thingml -o thingml-gen/posix/NetworkAgent
###########################################################
# Compile 9_Prometheus
###########################################################
# Compile to Posix
java -jar ThingML2CLI.jar -c posix -s build-tmp/9_Prometheus/Prometheus.thingml -o thingml-gen/posix/Prometheus
cp build-tmp/9_Prometheus/uthash.h thingml-gen/posix/Prometheus
echo "[THINGML: SUCCESS]"