-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
355 lines (318 loc) · 14 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
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="athena-project-build" default="deploy">
<property file="${user.home}/wpilib/wpilib.properties"/>
<property file="build.properties"/>
<property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
<property file="${user.home}/wpilib/java/${version}/ant/ni_image.properties"/>
<!-- Load Tasks -->
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="${wpilib.ant.dir}/ant-contrib.jar"/>
</classpath>
</taskdef>
<taskdef resource="net/jtools/classloadertask/antlib.xml" classpath="${classloadertask.jar}"/>
<classloader loader="system" classpath="${jsch.jar}"/>
<target name="clean" description="Clean up all build and distribution artifacts.">
<delete dir="${build.dir}"/>
<delete dir="${dist.dir}"/>
</target>
<!-- Targets -->
<target name="get-target-ip">
<property name="ant.enable.asserts" value="true"/>
<assert name="team-number" exists="true" message="Team number not set. Go to Window->Preferences->WPILib Preferences to set it."/>
<property name="target" value="roboRIO-${team-number}-FRC.local" />
<echo>Trying Target: ${target}</echo>
<if>
<isreachable host="${target}" timeout="5"/>
<then>
<echo>roboRIO found via mDNS</echo>
</then>
<else>
<var name="target" unset="true"/>
<echo> roboRIO not found via mDNS, falling back to DNS</echo>
<property name="target" value="roboRIO-${team-number}-FRC.lan"/>
<if>
<isreachable host="${target}" timeout="5"/>
<then>
<echo>roboRIO found via DNS</echo>
</then>
<else>
<var name="target" unset="true"/>
<echo> roboRIO not found via DNS, falling back to static USB</echo>
<property name="target" value="172.22.11.2"/>
<if>
<isreachable host="${target}" timeout="5"/>
<then>
<echo>roboRIO found via static USB</echo>
</then>
<else>
<var name="target" unset="true"/>
<math result="ip.upper" operand1="${team-number}" operation="/" operand2="100" datatype="int"/>
<math result="ip.lower" operand1="${team-number}" operation="%" operand2="100" datatype="int"/>
<property name="target" value="10.${ip.upper}.${ip.lower}.2"/>
<echo>roboRIO not found via USB, falling back to static address of ${target}</echo>
<assert name="roboRIOFound" message="roboRIO not found, please check that the roboRIO is connected, imaged and that the team number is set properly in Eclipse">
<bool>
<isreachable host="${target}" timeout="5"/>
</bool>
</assert>
<echo>roboRIO found via Ethernet static</echo>
</else>
</if>
</else>
</if>
</else>
</if>
</target>
<target name="compile" description="Compile the source code.">
<mkdir dir="${build.dir}"/>
<path id="classpath.path">
<!--fileset dir="${userLibs.dir}" includes="*.jar"/-->
<fileset file="lib/gson/gson.jar"/>
<fileset file="lib/ctrlib/CTRLib.jar"/>
<fileset file="lib/wpilib/WPILib.jar"/>
<fileset file="lib/wpilib/NetworkTables.jar"/>
<fileset file="lib/wpilib/opencv.jar"/>
<fileset file="lib/wpilib/cscore.jar"/>
<fileset dir="${userLibs}" erroronmissingdir="false"/>
</path>
<pathconvert property="classpathProp" refid="classpath.path"/>
<echo>[athena-compile] Compiling ${src.dir} with classpath=${classpathProp} to ${build.dir}</echo>
<javac srcdir="${src.dir}"
destdir="${build.dir}"
includeAntRuntime="no"
includeJavaRuntime="no"
classpathref="classpath.path"
target="${ant.java.version}"
source="${ant.java.version}"
compiler="javac${ant.java.version}"
debug="true">
</javac>
</target>
<target name="jar" depends="compile">
<echo>[athena-jar] Making jar ${dist.jar}.</echo>
<mkdir dir="${dist.dir}" />
<mkdir dir="${build.jars}" />
<echo>[athena-jar] Copying jars to ${build.jars}.</echo>
<copy todir="${build.jars}" flatten="true">
<path refid="classpath.path"/>
</copy>
<jar destfile="${dist.jar}" update="false">
<manifest>
<attribute name="Main-Class" value="edu.wpi.first.wpilibj.RobotBase"/>
<attribute name="Robot-Class" value="${robot.class}"/>
<attribute name="Class-Path" value="."/>
</manifest>
<fileset dir="${build.dir}" includes="**/*.class"/>
<zipgroupfileset dir="${build.jars}"/>
</jar>
</target>
<!-- We're running a clean here to get around a known ant issue where it does not detected changed constant variables.
To get around this, we're recompiling the entire project, which is not an issue for most teams. If this is an issue
for you, you can remove the clean here, just be sure to do a full rebuild after you've changed any constants.
Reference: http://stackoverflow.com/questions/6430001/ant-doesnt-recompile-constants -->
<target name="deploy" depends="clean,jar,get-target-ip,dependencies" description="Deploy the jar and start the program running.">
<deploy-libs libs.name="WPI_Native_Libraries" libs.basedir="${wpilib.native.lib}" libs.deployDir="${libDeploy.dir}">
<libs.local>
<fileset id="wpiNativeLibs.local" dir="${wpilib.native.lib}">
<include name="libHALAthena.so"/>
<include name="libntcore.so"/>
<include name="libwpiutil.so"/>
<include name="libopencv*.so.3.1"/>
<include name="libcscore.so"/>
<include name="libopencv_java310.so"/>
<include name="libwpilibJavaJNI.so"/>
</fileset>
</libs.local>
</deploy-libs>
<deploy-libs libs.name="User_Libraries" libs.basedir="${userLibs.dir}" libs.deployDir="${libDeploy.dir}">
<libs.local>
<fileset dir="${userLibs.dir}">
<include name="**/*.so"/>
</fileset>
</libs.local>
</deploy-libs>
<echo>[athena-deploy] Copying code over.</echo>
<scp file="${dist.jar}" todir="${username}@${target}:${deploy.dir}" password="${password}" trust="true"/>
<sshexec host="${target}"
username="${adminUsername}"
password="${password}"
trust="true"
command="ldconfig" />
<!-- Suppress the exit status so that if no netconsole was running then
it doesn't show up red on the output. -->
<sshexec host="${target}"
username="admin"
password="${password}"
trust="true"
failonerror="false"
command="killall -q netconsole-host || :"/>
<deploy-libs libs.name="netconsole-host" libs.basedir="${wpilib.ant.dir}" libs.deployDir="/usr/local/frc/bin">
<libs.local>
<fileset id="netconsole.local" dir="${wpilib.ant.dir}">
<include name="netconsole-host"/>
</fileset>
</libs.local>
</deploy-libs>
<scp file="${wpilib.ant.dir}/robotCommand" todir="${username}@${target}:${command.dir}" password="${password}" trust="true"/>
<echo>[athena-deploy] Starting program.</echo>
<sshexec host="${target}"
username="${username}"
password="${password}"
trust="true"
failonerror="false"
command="${deploy.kill.command};"/>
<sshexec host="${target}"
username="${username}"
password="${password}"
trust="true"
command="sync" />
</target>
<target name="debug-deploy" depends="jar,get-target-ip,dependencies" description="Deploy the jar and start the program running.">
<deploy-libs libs.name="WPI_Native_Libraries" libs.basedir="${wpilib.native.lib}">
<libs.local>
<fileset id="wpiNativeLibs.local" dir="${wpilib.native.lib}">
<include name="**/*.so"/>
</fileset>
</libs.local>
</deploy-libs>
<deploy-libs libs.name="User_Libraries" libs.basedir="${userLibs.dir}">
<libs.local>
<fileset dir="${userLibs.dir}">
<include name="**/*.so"/>
</fileset>
</libs.local>
</deploy-libs>
<echo>[athena-deploy] Copying code over.</echo>
<scp file="${dist.jar}" todir="${username}@${target}:${deploy.dir}" password="${password}" trust="true"/>
<!-- The remoteDebugCommand file is used by /usr/local/frc/bin/frcRunRobot.sh on the roboRIO -->
<scp file="${wpilib.ant.dir}/robotDebugCommand" todir="${username}@${target}:${command.dir}" password="${password}" trust="true"/>
<!-- The frcdebug file is used as a flag for /usr/local/frc/bin/frcRunRobot.sh to run the robot program in debug mode -->
<scp file="${wpilib.ant.dir}/frcdebug" todir="${username}@${target}:${debug.flag.dir}" password="${password}" trust="true"/>
<sshexec host="${target}"
username="${username}"
password="${password}"
trust="true"
command="${debug.flag.command}"/>
<echo>[athena-deploy] Starting Debug program.</echo>
<sshexec host="${target}"
username="${username}"
password="${password}"
trust="true"
failonerror="false"
command="${deploy.kill.command}"/>
</target>
<!-- Simulate -->
<target name="jar-for-simulation" depends="compile">
<echo>[jar-for-simulation] Building jar.</echo>
<jar destfile="${simulation.dist.jar}">
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Robot-Class" value="${robot.class}"/>
<attribute name="Main-Class" value="edu.wpi.first.wpilibj.RobotBase"/>
</manifest>
<fileset dir="${build.dir}" />
<zipgroupfileset dir="${wpilib.sim.lib}">
<include name="**/*.jar" />
</zipgroupfileset>
</jar>
</target>
<target name="simulate" depends="jar-for-simulation">
<sequential>
<echo>[simulate] You may now run Gazebo and your DriverStation</echo>
<echo>[simulate] Running Code.</echo>
<java jar="${simulation.dist.jar}" fork="true">
<jvmarg value="-Djava.library.path=${wpilib.sim.lib}" />
</java>
</sequential>
</target>
<target name="debug-simulate" depends="jar-for-simulation">
<sequential>
<echo>[simulate] You may now run Gazebo and your DriverStation</echo>
<echo>[simulate] Running Code In Debug Mode.</echo>
<java jar="${simulation.dist.jar}" fork="true">
<jvmarg value="-Xdebug" />
<jvmarg value="-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8348" />
<jvmarg value="-Djava.library.path=${wpilib.sim.lib}" />
</java>
</sequential>
</target>
<target name="dependencies" depends="get-target-ip">
<property name="ant.enable.asserts" value="true"/>
<post to="http://${target}/nisysapi/server" logfile="sysProps.xml" verbose="false" encoding="UTF-16LE" append="false">
<prop name="Function" value="GetPropertiesOfItem"/>
<prop name="Plugins" value="nisyscfg"/>
<prop name="Items" value="system"/>
</post>
<loadfile srcFile="sysProps.xml" encoding="UTF-16LE" property="roboRIOSysValues"/>
<propertyregex property="roboRIOImage" input="${roboRIOSysValues}" regexp="FRC_roboRIO_[0-9]+_v([0-9]+)" select="\1" defaultValue="ImageRegExFail"/>
<propertyregex property="roboRIOImageYear" input="${roboRIOSysValues}" regexp="FRC_roboRIO_([0-9]+)_v" select="\1" defaultValue="ImageRegExFail"/>
<assert message="Image of roboRIO does not match plugin. ${line.separator}Allowed image year: ${roboRIOAllowedYear} version: ${roboRIOAllowedImages}. ${line.separator}Actual image year: ${roboRIOImageYear} version ${roboRIOImage}. ${line.separator}RoboRIO needs to be re-imaged or plugins updated.">
<bool>
<and>
<contains string="${roboRIOAllowedImages}" substring="${roboRIOImage}"/>
<contains string="${roboRIOAllowedYear}" substring="${roboRIOImageYear}"/>
</and>
</bool>
</assert>
<echo>roboRIO image version validated</echo>
<echo>Checking for JRE. If this fails install the JRE using these instructions: https://wpilib.screenstepslive.com/s/4485/m/13503/l/288822-installing-java-8-on-the-roborio-using-the-frc-roborio-java-installer-java-only</echo>
<sshexec host="${target}"
username="${username}"
password="${password}"
trust="true"
failonerror="true"
command="test -d ${roboRIOJRE.dir}"/>
</target>
<!-- libs.name should not contain spaces as it is used to name a file -->
<macrodef name="deploy-libs">
<attribute name="libs.name"/>
<attribute name="libs.basedir"/>
<attribute name="libs.deployDir"/>
<element name="libs.local"/>
<sequential>
<local name="libs.local.notEmpty"/>
<local name="libs.local.checksum"/>
<local name="libs.deployed.checksum"/>
<local name="libs.local.modified.property"/>
<delete file="@{libs.basedir}/@{libs.name}.properties"/>
<scp file="${adminUsername}@${target}:@{libs.deployDir}/@{libs.name}.properties"
todir="@{libs.basedir}"
password="${adminPassword}"
trust="true"
failonerror="false"/>
<restrict id="libs.local.modified">
<libs.local/>
<modified update="true"
seldirs="true"
cache="propertyfile"
algorithm="digest"
comparator="equal">
<param name="cache.cachefile" value="@{libs.basedir}/@{libs.name}.properties"/>
<param name="algorithm.algorithm" value="MD5"/>
</modified>
</restrict>
<pathconvert refid="libs.local.modified" property="libs.local.modified.property" pathsep="," setonempty="false">
<globmapper from="@{libs.basedir}/*" to="*" handledirsep="true" />
</pathconvert>
<if>
<isset property="libs.local.modified.property"/>
<then>
<echo message="Deploying libraries ${line.separator} ${libs.local.modified.property}"/>
<scp todir="${adminUsername}@${target}:@{libs.deployDir}"
password="${adminPassword}"
trust="true">
<fileset dir="@{libs.basedir}" includes="${libs.local.modified.property}"/>
<fileset file="@{libs.basedir}/@{libs.name}.properties"/>
</scp>
<sshexec host="${target}"
username="${adminUsername}"
password="${adminPassword}"
trust="true"
command="chmod -R +x @{libs.deployDir}"
/>
</then>
</if>
</sequential>
</macrodef>
</project>