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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
<?xml version="1.0"?>
<!--
File: build.xml
Copyright (C) 2006, 2012 mkgmap contributors
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 or
version 3 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Create date: 26 Nov 2006
-->
<project name="mkgmap" default="dist" basedir="."
xmlns:ivy="antlib:org.apache.ivy.ant">
<property name="project.name" value="${ant.project.name}"/>
<!-- Init -->
<property name="top" value="."/>
<!-- Instead of modifying external.properties, you can create a file called
local.properties instead. Anything defined in the local.properties file will
override properties defined later
-->
<!--suppress AntResolveInspection,AntMissingPropertiesFileInspection -->
<property file="${top}/local.properties"/>
<property name="deblib" location="/usr/share/java"/>
<property name="build" value="build"/>
<property name="dist" value="dist"/>
<property name="build.classes" value="${build}/classes"/>
<property name="build.test" value="${build}/test"/>
<property name="src" value="src"/>
<property name="test" value="test"/>
<property name="tools" value="tools"/>
<property name="doc" value="doc"/>
<property name="javadoc" value="${doc}/api"/>
<property name="resources" value="resources"/>
<property name="project.jar" value="${dist}/${project.name}.jar"/>
<!-- A place to keep a local copy of the test input data. The test files
are large and so are not kept in svn. If you don't set this then they
will be downloaded.
You can set it in the external.properties file too.
-->
<property name="test.input.cache" value="/opt/data/testinput"/>
<!-- the project's version number -->
<tstamp>
<format property="build.timestamp" pattern="yyyy-MM-dd'T'HH:mm:ssZ" />
</tstamp>
<!-- ivy dependency support -->
<property name="ivy.version" value="2.4.0"/>
<property name="ivy.lib.dir" value="${basedir}/lib" />
<property name="ivy.jar.dir" value="${ivy.lib.dir}/build" />
<property name="ivy.retrieve.pattern" value="${ivy.lib.dir}/[conf]/[artifact]-[revision].[ext]" />
<property name="ivy.distrib.dir" value="ivy-distrib" />
<!-- For class paths -->
<path id="compile.classpath">
<fileset dir="${deblib}/" /> <!-- fastutil.jar -->
</path>
<path id="test.classpath">
<fileset dir="${ivy.lib.dir}/test" />
</path>
<path id="optional.classpath">
<fileset dir="${ivy.lib.dir}/optional" />
</path>
<path id="main">
<pathelement location="${build.classes}" />
<path refid="compile.classpath" />
<path refid="optional.classpath" />
</path>
<path id="test">
<pathelement location="test/resources"/>
<pathelement location="build/test"/>
<path refid="test.classpath" />
<pathelement location="${build.classes}" />
<pathelement location="test"/>
</path>
<!-- ******************** TARGETS ******************** -->
<!-- targets for downloading and registering ivy -->
<target name="ivy-availability" description="Checks if the ivy library is available">
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy-${ivy.version}.jar" />
<available property="ivy.available" file="${ivy.jar.file}" />
</target>
<target name="download-ivy" unless="ivy.available" description="Downloads the ivy library from public repositories.">
<delete dir="${ivy.jar.dir}"/>
<mkdir dir="${ivy.jar.dir}" />
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.version}/ivy-${ivy.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
<target name="init-ivy" depends="ivy-availability, download-ivy" description="Registers ivy with ant and initializes it." unless="ivy.initialized">
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar" />
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant"
classpathref="ivy.lib.path" />
<ivy:configure />
<ivy:info />
<property name="ivy.initialized" value="true"/>
</target>
<!-- targets for fetching dependencies via ivy -->
<target name="resolve-compile" depends="init-ivy" description="Downloads compile dependencies using ivy.">
<ivy:retrieve conf="compile" log="download-only" />
</target>
<target name="resolve-test" depends="init-ivy" description="Downloads test program dependencies using ivy.">
<ivy:retrieve conf="test" log="download-only"/>
</target>
<target name="resolve-macker" depends="init-ivy" description="Downloads macker program dependencies using ivy.">
<ivy:retrieve conf="macker" log="download-only"/>
</target>
<target name="resolve-optional" depends="init-ivy" description="Downloads optional program dependencies using ivy.">
<ivy:retrieve conf="optional" log="download-only"/>
</target>
<target name="resolve" depends="resolve-compile, resolve-test, resolve-macker, resolve-optional"
description="Downloads all program dependencies using ivy." />
<!-- targets for publishing the project (locally) via ivy -->
<target name="publish" depends="dist">
<copy file="${project.jar}"
tofile="${ivy.distrib.dir}/jars/${project.name}-${project.version}.jar"/>
<ivy:deliver pubrevision="${project.version}"/>
<ivy:publish resolver="local" pubrevision="${project.version}" overwrite="true"/>
</target>
<!-- Prepare - make all the directories -->
<target name="prepare">
<mkdir dir="${build.classes}" />
<mkdir dir="${ivy.lib.dir}/optional"/>
<property environment="env"/>
<condition property="have.svn">
<and>
<available file="${top}/.svn"/>
<or>
<available file="svnversion" filepath="${env.PATH}"/>
<available file="svnversion.exe" filepath="${env.PATH}"/>
<available file="svnversion.exe" filepath="${env.Path}"/>
</or>
</and>
</condition>
<condition property="have.git">
<available file="${top}/.git"/>
</condition>
</target>
<target name="svn-version" if="have.svn">
<exec executable="svnversion" dir="${top}" logError="false"
outputproperty="svn.version.tmp" resultproperty="svnversion.result"
failifexecutionfails="false">
<arg value="-n" /><arg value="-c" />
<redirector><outputfilterchain><tokenfilter>
<replaceregex pattern="^([0-9]*:)?" replace="" />
<replaceregex pattern="^exported$" replace="" />
</tokenfilter></outputfilterchain></redirector>
</exec>
<condition property="svn.version.build" value="${svn.version.tmp}" else="none">
<and>
<isset property="svn.version.tmp" />
<equals arg1="${svnversion.result}" arg2="0" />
<not><equals arg1="${svn.version.tmp}" arg2="" /></not>
</and>
</condition>
<property name="project.version" value="${svn.version.build}" />
</target>
<target name="git-version" if="have.git">
<exec executable="git" dir="${top}" logError="false"
outputproperty="git.version.tmp" resultproperty="gitdescribe.result"
failifexecutionfails="false">
<arg value="describe" /><arg value="--dirty" /><arg value="--tags" /><arg value="--always" />
</exec>
<condition property="git.version.build" value="${git.version.tmp}">
<and>
<isset property="git.version.tmp" />
<equals arg1="${gitdescribe.result}" arg2="0" />
<not><equals arg1="${git.version.tmp}" arg2="" /></not>
</and>
</condition>
<property name="project.version" value="${git.version.build}" />
</target>
<target name="check-version" depends="svn-version, git-version">
<property file="${build.classes}/mkgmap-version.properties"/>
<condition property="have.version">
<or>
<and>
<isset property="have.svn"/>
<equals arg1="${svn.version.build}" arg2="${svn.version}"/>
</and>
<and>
<not><isset property="have.svn"/></not>
<available file="${build}/classes/mkgmap-version.properties"/>
</and>
</or>
</condition>
</target>
<target name="version-file" unless="have.version">
<property name="project.version" value="${build.timestamp}" />
<property name="svn.version.build" value="none"/>
<propertyfile file="${build.classes}/mkgmap-version.properties">
<entry key="svn.version" value="${svn.version.build}" />
<entry key="build.timestamp" value="${build.timestamp}" />
</propertyfile>
</target>
<!-- Compile the product itself (no tests). -->
<target name="compile" depends="prepare"
description="main compilation">
<javac srcdir="${src}" destdir="${build.classes}" encoding="utf-8" debug="true" includeantruntime="false">
<include name="**/*.java" />
<classpath refid="main"/>
<compilerarg value="-Xlint:all"/>
<compilerarg value="-Xlint:-serial"/>
<compilerarg value="-Xlint:-path"/>
<exclude name="**/optional/*.java"/>
</javac>
</target>
<!-- Build into the build direcotory. All resource files are copied in. -->
<target name="build" depends="compile" description="Build everything into the build direcotory">
<copy todir="${build.classes}">
<fileset dir="${resources}">
<include name="*.csv"/>
<include name="*.properties"/>
<include name="*known-hgt.bin"/>
<include name="*sea-check.txt"/>
<include name="*.xml"/>
<include name="**/*.trans"/>
<include name="styles/**"/>
<include name="help/**"/>
<include name="installer/**"/>
<include name="sort/**"/>
<exclude name="**/.*"/>
</fileset>
<fileset dir="src">
<include name="**/*.properties"/>
</fileset>
</copy>
</target>
<!-- Compile the test classes -->
<target name="build-test" depends="build, resolve-test">
<mkdir dir="${build.test}" />
<javac srcdir="${test}" destdir="${build.test}" encoding="utf-8" debug="true" includeantruntime="false">
<include name="**/*.java" />
<classpath refid="test"/>
<compilerarg value="-Xlint:all"/>
<compilerarg value="-Xlint:-serial"/>
<compilerarg value="-Xlint:-path"/>
</javac>
</target>
<target name="test" depends="build-test, obtain-test-input-files" description="Run the junit tests">
<mkdir dir="tmp/report"/>
<junit printsummary="yes" failureproperty="junit.failure" forkmode="once">
<classpath refid="test"/>
<formatter type="xml"/>
<assertions>
<enable/>
</assertions>
<batchtest fork="yes" todir="tmp/report">
<fileset dir="test">
<include name="**/*Test.java"/>
<!-- These are standalone tests, not unit tests. -->
<exclude name="main/**"/>
</fileset>
</batchtest>
</junit>
<junitreport todir="tmp">
<fileset dir="tmp/report"/>
<report todir="test-reports"/>
</junitreport>
<fail if="junit.failure" message="Test failed. See test-reports/index.html"/>
</target>
<target name="obtain-test-input-files" description="download the input files for the functional tests">
<!-- Local cache, if it doesn't exist then it is not a problem the files
will be downloaded in the next step -->
<copy todir="test/resources/in" failonerror="false">
<fileset dir="${test.input.cache}" includes="**"/>
</copy>
<mkdir dir="test/resources/in/osm"/>
<mkdir dir="test/resources/in/mp"/>
<mkdir dir="test/resources/in/img"/>
<get src="https://www.mkgmap.org.uk/testinput/osm/lon1.osm.gz"
dest="test/resources/in/osm/lon1.osm.gz" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/osm/uk-test-1.osm.gz"
dest="test/resources/in/osm/uk-test-1.osm.gz" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/osm/uk-test-2.osm.gz"
dest="test/resources/in/osm/uk-test-2.osm.gz" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/osm/is-in-samples.osm"
dest="test/resources/in/osm/is-in-samples.osm" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/mp/test1.mp"
dest="test/resources/in/mp/test1.mp" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/img/63240001.img"
dest="test/resources/in/img/63240001.img" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/img/63240002.img"
dest="test/resources/in/img/63240002.img" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/img/63240003.img"
dest="test/resources/in/img/63240003.img" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/N00W090.hgt.zip"
dest="test/resources/in/hgt/N00W090.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/N00W091.hgt.zip"
dest="test/resources/in/hgt/N00W091.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/S01W090.hgt.zip"
dest="test/resources/in/hgt/S01W090.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/S01W091.hgt.zip"
dest="test/resources/in/hgt/S01W091.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/S02W090.hgt.zip"
dest="test/resources/in/hgt/S02W090.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
<get src="https://www.mkgmap.org.uk/testinput/hgt/S02W091.hgt.zip"
dest="test/resources/in/hgt/S02W091.hgt.zip" usetimestamp="true"
ignoreerrors="true"/>
</target>
<target name="dist" depends="build, check-version, version-file"
description="Make the distribution area">
<mkdir dir="${dist}"/>
<mkdir dir="${dist}/lib"/>
<copy todir="${dist}/lib" flatten="true">
<path refid="compile.classpath" />
</copy>
<manifestclasspath property="manifest_cp" jarfile="${project.jar}">
<classpath>
<fileset dir="${dist}/lib">
<include name="**/*.jar" />
</fileset>
</classpath>
</manifestclasspath>
<!-- Make the jar -->
<jar basedir="${build.classes}" jarfile="${project.jar}">
<manifest>
<attribute name="Main-Class" value="uk.me.parabola.mkgmap.main.Main" />
<attribute name="Class-Path" value="${manifest_cp}" />
<attribute name="Implementation-Version" value="${project.version}" />
</manifest>
<include name="**/*.class"/>
<exclude name="**/buildoptions/**"/>
<include name="*.csv"/>
<include name="known-hgt.bin"/>
<include name="*sea-check.txt"/>
<include name="*.xml"/>
<include name="*.properties"/>
<include name="**/*.trans"/>
<include name="styles/**"/>
<include name="sort/**"/>
<include name="help/**"/>
<include name="installer/**"/>
</jar>
<copy todir="${dist}/doc" >
<fileset dir="doc">
<include name="README"/>
<include name="mkgmap.1"/>
</fileset>
</copy>
<!-- misc to be copied to the top level -->
<copy todir="${dist}" flatten="true">
<fileset dir="${basedir}">
<include name="README"/>
<include name="LICENCE*"/>
</fileset>
</copy>
<mkdir dir="${dist}/examples"/>
<copy todir="${dist}/examples">
<fileset dir="resources">
<include name="roadNameConfig.txt"/>
<include name="sample.cfg"/>
<include name="RoundaboutFlareRules.config"/>
<include name="known-hgt.txt"/>
<include name="installer/**"/>
<include name="styles/default/**"/>
<include name="styles/noname/**"/>
<include name="chars/ascii/row02.trans"/>
<include name="typ-files/**"/>
</fileset>
</copy>
</target>
<target name="javadoc" description="Create the javadoc">
<mkdir dir="doc"/>
<javadoc destdir="${javadoc}">
<fileset dir="${src}" includes="**/*.java"/>
<classpath refid="main"/>
</javadoc>
</target>
<!-- Compile the tools -->
<target name="compile-tools" depends="prepare" description="tool compilation">
<javac srcdir="${tools}" destdir="${build.classes}" encoding="utf-8" debug="true" includeantruntime="false">
<include name="**/*.java" />
<classpath refid="main"/>
<compilerarg value="-Xlint:all"/>
<compilerarg value="-Xlint:-serial"/>
<compilerarg value="-Xlint:-path"/>
</javac>
</target>
<!-- Generate help file options from doc file options.txt -->
<target name="gen-options-file" depends="compile-tools">
<exec executable="java" dir="${build.classes}" failonerror="true" failifexecutionfails="true" input="doc/options.txt">
<arg value="buildoptions.OptionsBuilder" />
<arg value="../../resources/help/en/options" />
</exec>
</target>
<target name="macker" depends="build, resolve-macker">
<taskdef name="macker"
classname="net.innig.macker.ant.MackerAntTask"
classpathref="macker.classpath"/>
<property name="macker.report.xml" value="macker.out.xml"/>
<property name="macker.report.html" value="macker.out.html"/>
<macker xmlReportFile="${macker.report.xml}" failOnError="false">
<rules dir="." includes="macker.xml"/>
<classes dir="${build.classes}">
<include name="**/*.class"/>
</classes>
</macker>
<taskdef name="macker-report"
classname="net.innig.macker.ant.MackerReportAntTask"
classpathref="macker.classpath"/>
<macker-report xmlReportfile="${macker.report.xml}" outputFile="${macker.report.html}" />
</target>
<target name="clean-ivy" description="Clean the ivy installation.">
<delete dir="${ivy.jar.dir}"/>
</target>
<!-- Clean everything -->
<target name="clean" description="Remove built files">
<delete dir="${build}" />
<delete dir="tmp"/>
</target>
<!-- Clobber all generated and built files -->
<target name="clobber" depends="clean" description="Remove all built files">
<delete dir="${dist}" />
<delete dir="${ivy.lib.dir}"/>
<delete dir="${javadoc}"/>
<delete dir="${ivy.distrib.dir}"/>
</target>
<target name="clean-cache" depends="init-ivy" description="Clean the ivy cache.">
<ivy:cleancache />
</target>
<target name="rebuild" depends="clean, build" description="Clean existing class files and build from scratch"/>
</project>
|