-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
build.xml
319 lines (296 loc) · 10.4 KB
/
build.xml
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
<!--****************************************************************************
Copyright (c) 2012, 2020 IBM Corp.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
Contributors:
Ian Craggs - initial API and implementation and/or initial documentation
*******************************************************************************-->
<project name="MQTT C Client" default="full">
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="/opt/public/cbi/build/3rdPartyJars/ant-contrib.jar" />
<pathelement location="/usr/share/java/ant-contrib.jar" />
</classpath>
</taskdef>
<property name="output.folder" value="build/output" />
<loadfile property="version.major" srcFile="version.major"/>
<loadfile property="version.minor" srcFile="version.minor"/>
<loadfile property="version.patch" srcFile="version.patch"/>
<property name="release.version" value="${version.major}.${version.minor}.${version.patch}" />
<property name="libname" value="mqttv3c" />
<property name="libname.ssl" value="mqttv3cs" />
<property name="libname.async" value="mqttv3a" />
<property name="libname.async.ssl" value="mqttv3as" />
<property name="ssl" value="yes" />
<property name="windows.openssl.folder" value="c:\openssl\bin" />
<property name="test.hostname" value="iot.eclipse.org"/>
<property name="test.port" value="1883"/>
<property name="proxy.port" value="18883"/>
<if>
<os family="windows"/>
<then>
<property name="os.family" value="windows" />
</then>
<else>
<if>
<os family="mac"/>
<then>
<property name="os.family" value="mac" />
</then>
<else>
<property name="os.family" value="unix" />
</else>
</if>
</else>
</if>
<echo message="os.family is '${os.family}'" />
<target name="init">
<tstamp>
<format property="buildTimestamp" pattern="yyyyMMddHHmm" />
</tstamp>
<fileset id="sync.source.fileset" dir="src">
<include name="*.c"/>
<exclude name="MQTTAsync.c"/>
<exclude name="MQTTVersion.c"/>
</fileset>
<pathconvert refid="sync.source.fileset" property="sync.source.files" pathsep=" "/>
<fileset id="async.source.fileset" dir="src">
<include name="*.c"/>
<exclude name="MQTTClient.c"/>
<exclude name="MQTTVersion.c"/>
</fileset>
<pathconvert refid="async.source.fileset" property="async.source.files" pathsep=" "/>
</target>
<target name="version" depends="init" description="replace tags with the right levels">
<property name="build.level" value="${DSTAMP}${TSTAMP}" />
<copy file="src/VersionInfo.h.in" tofile="src/VersionInfo.h" overwrite="true"/>
<replace file="src/VersionInfo.h" token="@BUILD_TIMESTAMP@" value="${build.level}" />
<replace file="src/VersionInfo.h" token="@CLIENT_VERSION@" value="${release.version}" />
</target>
<target name="test" >
<!-- display Python version -->
<exec executable="python" failonerror="true">
<arg line="-V"/>
</exec>
<exec executable="python" dir="test" spawn="true">
<arg value="mqttsas2.py" />
<arg value="${test.hostname}" />
<arg value="${test.port}" />
<arg value="${proxy.port}" />
</exec>
<if>
<os family="windows"/>
<then>
<foreach target="runAtest" param="aTest" list="test1,test2,test4,test9"/>
</then>
<else>
<foreach target="runAtest" param="aTest" list="test1,test2,test4,test9"/>
</else>
</if>
<foreach target="runSSLtest" param="aTest" list="test3,test5"/>
</target>
<target name="runAtest">
<if>
<os family="windows"/>
<then>
<exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" >
<arg value="/c" />
<arg value="${aTest}.exe" />
<arg value="--connection" />
<arg value="tcp://${test.hostname}:${test.port}" />
<arg value="--proxy_connection" />
<arg value="tcp://localhost:${proxy.port}" />
<env key="PATH" path="${output.folder}" />
</exec>
</then>
<else>
<exec executable="./${aTest}" failonerror="true" dir="${output.folder}/test" >
<arg value="--connection" />
<arg value="tcp://${test.hostname}:${test.port}" />
<arg value="--proxy_connection" />
<arg value="tcp://localhost:${proxy.port}" />
<env key="LD_LIBRARY_PATH" path="${output.folder}" />
<env key="DYLD_LIBRARY_PATH" path="${output.folder}" />
</exec>
</else>
</if>
</target>
<target name="runSSLtest">
<if>
<os family="windows"/>
<then>
<exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" >
<arg value="/c" />
<arg value="${aTest}.exe" />
<arg value="--hostname" />
<arg value="${test.hostname}" />
<env key="PATH" path="${output.folder};${windows.openssl.folder}" />
</exec>
</then>
<else>
<exec executable="./${aTest}" failonerror="true" dir="${output.folder}/test" >
<arg value="--hostname" />
<arg value="${test.hostname}" />
<env key="LD_LIBRARY_PATH" path="${output.folder}" />
<env key="DYLD_LIBRARY_PATH" path="${output.folder}" />
</exec>
</else>
</if>
</target>
<target name="doc" >
<if>
<available file="/usr/bin/doxygen"/>
<then>
<mkdir dir="${output.folder}/doc"/>
<exec executable="doxygen" dir="src">
<arg value="../doc/DoxyfileV3ClientAPI"/>
</exec>
<exec executable="doxygen" dir="src">
<arg value="../doc/DoxyfileV3AsyncAPI"/>
</exec>
<zip destfile="${output.folder}/MQTTClient_doc.zip">
<zipfileset dir="${output.folder}/doc/MQTTClient" />
</zip>
<zip destfile="${output.folder}/MQTTAsync_doc.zip">
<zipfileset dir="${output.folder}/doc/MQTTAsync" prefix="MQTTAsync/"/>
</zip>
<delete dir="${output.folder}/doc" />
</then>
<else>
<echo message="doxygen is not available" />
</else>
</if>
</target>
<target name="build" >
<if>
<os family="unix"/>
<then>
<delete dir="${output.folder}" />
<!-- display gcc version -->
<exec executable="gcc" failonerror="true">
<arg line="-v"/>
</exec>
<if>
<available file="/usr/bin/make"/>
<then>
<exec executable="make" dir="."/>
</then>
</if>
</then>
</if>
<if>
<os family="windows"/>
<then>
<delete dir="${output.folder}" />
<!-- display gcc version -->
<exec executable="cl" failonerror="true">
</exec>
<exec executable="msbuild" dir=".">
<arg line='"Windows Build\Paho C MQTT APIs.sln"'/>
<arg line="/p:Configuration=Release"/>
</exec>
</then>
</if>
</target>
<target name="package">
<mkdir dir="${output.folder}/include"/>
<copy overwrite="true" todir="${output.folder}/include">
<fileset dir="src" includes="MQTTClient.h,MQTTAsync.h,MQTTClientPersistence.h"/>
</copy>
<copy overwrite="true" todir="${output.folder}">
<fileset dir="." includes="README.md,CONTRIBUTING.md,about.html,notice.html,edl-v10,epl-v20"/>
</copy>
<mkdir dir="${output.folder}/lib"/>
<move overwrite="true" todir="${output.folder}/lib">
<fileset dir="${output.folder}" includes="*paho*"/>
</move>
<mkdir dir="${output.folder}/bin"/>
<move overwrite="true" todir="${output.folder}/bin">
<fileset dir="${output.folder}/samples" includes="*"/>
<fileset dir="${output.folder}" includes="MQTTVersion"/>
</move>
<copy overwrite="true" todir="${output.folder}/samples">
<fileset dir="src/samples" includes="*"/>
</copy>
<delete>
<fileset dir="." includes="eclipse-paho-mqtt-c-windows-${release.version}.zip"/>
<fileset dir="." includes="eclipse-paho-mqtt-c-${os.family}-${release.version}.tar.gz"/>
</delete>
<if>
<os family="windows"/>
<then>
<exec executable="c:\cygwin\bin\zip.exe" failonerror="true" dir="${output.folder}">
<arg value="-r"/>
<arg value="eclipse-paho-mqtt-c-windows-${release.version}.zip"/>
<arg value="about.html"/>
<arg value="notice.html"/>
<arg value="README.md"/>
<arg value="CONTRIBUTING.md"/>
<arg value="epl-v20"/>
<arg value="edl-v10"/>
<arg value="include"/>
<arg value="samples"/>
<arg value="lib"/>
<arg value="bin"/>
</exec>
</then>
<else>
<exec executable="tar" failonerror="true" dir="${output.folder}">
<arg value="czf"/>
<arg value="eclipse-paho-mqtt-c-${os.family}-${release.version}.tar.gz"/>
<arg value="about.html"/>
<arg value="notice.html"/>
<arg value="README.md"/>
<arg value="CONTRIBUTING.md"/>
<arg value="epl-v20"/>
<arg value="edl-v10"/>
<arg value="include"/>
<arg value="samples"/>
<arg value="lib"/>
<arg value="bin"/>
</exec>
</else>
</if>
<if>
<os family="unix"/>
<then>
<exec executable="tar" failonerror="true" dir=".">
<arg value="czf"/>
<arg value="${output.folder}/eclipse-paho-mqtt-c-src-${release.version}.tar.gz"/>
<arg value="about.html"/>
<arg value="notice.html"/>
<arg value="README.md"/>
<arg value="CONTRIBUTING.md"/>
<arg value="epl-v20"/>
<arg value="edl-v10"/>
<arg value="Makefile"/>
<arg value="build.xml"/>
<arg value="src"/>
<arg value="test"/>
<arg value="Windows Build"/>
</exec>
</then>
</if>
</target>
<target name="copy">
<if>
<available file="/shared/technology"/>
<then>
<mkdir dir="/shared/technology/paho/C/${release.version}/${build.level}"/>
<echo message="Copying the build output to /shared" />
<copy overwrite="true" todir="/shared/technology/paho/C/${release.version}/${build.level}">
<fileset dir="${output.folder}">
<include name="*.gz"/>
<include name="*.zip"/>
</fileset>
</copy>
</then>
</if>
</target>
<target name="full" depends="init, version, build, test, doc, package, copy" />
</project>