source: josm/trunk/build.xml @ 7043

Last change on this file since 7043 was 7043, checked in by bastiK, 10 years ago

see #9691 - added command line option to enable debug level trace
added map paint performance output for trace level debug

File size: 22.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!-- ** build.xml - main ant file for JOSM
3**
4** To build run
5**    ant clean
6**    ant dist
7** This will create 'josm-custom.jar'  in directory 'dist'. See also
8**   https://josm.openstreetmap.de/wiki/CreateBuild
9**
10-->
11<project xmlns:as="antlib:org.codehaus.mojo.animal_sniffer" name="josm" default="dist" basedir="." xmlns:jacoco="antlib:org.jacoco.ant">
12    <property name="test.dir" location="test"/>
13    <property name="src.dir" location="src"/>
14    <property name="build.dir" location="build"/>
15    <property name="javacc.home" location="tools"/>
16    <property name="mapcss.dir" location="${src.dir}/org/openstreetmap/josm/gui/mappaint/mapcss"/>
17    <!-- build parameter: compression level (ant -Dclevel=N)
18             N ranges from 0 (no compression) to 9 (maximum compression)
19             default: 9 -->
20    <condition property="clevel" value="${clevel}" else="9">
21        <isset property="clevel"/>
22    </condition>
23    <!-- Java classpath addition (all jar files to compile tests with this) -->
24    <path id="classpath">
25        <fileset dir="lib">
26            <include name="**/*.jar"/>
27        </fileset>
28    </path>
29
30    <!--
31      ** Used by Eclipse ant builder for updating
32      ** the REVISION file used by JOSM
33    -->
34    <target name="create-revision-eclipse">
35        <property name="revision.dir" value="bin"/>
36        <antcall target="create-revision"/>
37    </target>
38    <!--
39      ** Initializes the REVISION.XML file from SVN information
40    -->
41    <target name="init-svn-revision-xml">
42        <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" resultproperty="svn.info.result">
43            <env key="LANG" value="C"/>
44            <arg value="info"/>
45            <arg value="--xml"/>
46            <arg value="."/>
47        </exec>
48        <condition property="svn.info.success">
49            <equals arg1="${svn.info.result}" arg2="0" />
50        </condition>
51    </target>
52    <!--
53      ** Initializes the REVISION.XML file from git information
54    -->
55    <target name="init-git-revision-xml" unless="svn.info.success">
56        <exec append="false" output="REVISION.XML" executable="git" failifexecutionfails="false">
57            <arg value="log"/>
58            <arg value="-1"/>
59            <arg value="--grep=git-svn-id"/>
60            <!--
61            %B:  raw body (unwrapped subject and body)
62            %n:  new line
63            %ai: author date, ISO 8601 format
64            -->
65            <arg value="--pretty=format:%B%n%ai"/>
66            <arg value="HEAD"/>
67        </exec>
68        <replaceregexp file="REVISION.XML" flags="s"
69                       match=".*git-svn-id: [^@]*@([0-9]+).*(\d{4}-\d{2}-\d{2}.\d{2}\:\d{2}\:\d{2}\s*[+-]\d{2}:?\d{2})\s*$"
70                       replace="&lt;info&gt;&lt;entry&gt;&lt;commit revision=&quot;\1&quot;&gt;&lt;date&gt;\2&lt;/date&gt;&lt;/commit&gt;&lt;/entry&gt;&lt;/info&gt;"/>
71    </target>
72    <!--
73      ** Creates the REVISION file to be included in the distribution
74    -->
75    <target name="create-revision" depends="init-svn-revision-xml, init-git-revision-xml">
76        <property name="revision.dir" value="${build.dir}"/>
77        <xmlproperty file="REVISION.XML" prefix="version" keepRoot="false" collapseAttributes="true"/>
78        <delete file="REVISION.XML"/>
79        <tstamp>
80            <format property="build.tstamp" pattern="yyyy-MM-dd HH:mm:ss"/>
81        </tstamp>
82        <property name="version.entry.commit.revision" value="UNKNOWN"/>
83        <property name="version.entry.commit.date" value="UNKNOWN"/>
84        <mkdir dir="${revision.dir}"/>
85        <!-- add Build-Name: ... when making special builds, e.g. DEBIAN -->
86        <echo file="${revision.dir}/REVISION">
87# automatically generated by JOSM build.xml - do not edit
88Revision: ${version.entry.commit.revision}
89Is-Local-Build: true
90Build-Date: ${build.tstamp}
91</echo>
92    </target>
93    <!--
94      ** Check internal XML files against their XSD
95    -->
96    <target name="check-schemas">
97        <schemavalidate file="data/defaultpresets.xml" >
98            <schema namespace="http://josm.openstreetmap.de/tagging-preset-1.0" file="data/tagging-preset.xsd" />
99        </schemavalidate>
100        <schemavalidate file="styles/standard/elemstyles.xml" >
101            <schema namespace="http://josm.openstreetmap.de/mappaint-style-1.0" file="data/mappaint-style.xsd" />
102        </schemavalidate>
103    </target>
104    <!--
105      ** Main target that builds JOSM and checks XML against schemas
106    -->
107    <target name="dist" depends="compile,create-revision,check-schemas">
108        <echo>Revision ${version.entry.commit.revision}</echo>
109        <copy file="CONTRIBUTION" todir="build"/>
110        <copy file="README" todir="build"/>
111        <copy file="LICENSE" todir="build"/>
112        <!-- create josm-custom.jar -->
113        <delete file="dist/josm-custom.jar"/>
114        <jar destfile="dist/josm-custom.jar" basedir="build" level="${clevel}">
115            <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
116            <manifest>
117                <attribute name="Main-class" value="JOSM"/>
118                <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
119                <attribute name="Main-Date" value="${version.entry.commit.date}"/>
120                <attribute name="Permissions" value="all-permissions"/>
121                <attribute name="Codebase" value="josm.openstreetmap.de"/>
122                <attribute name="Application-Name" value="JOSM - Java OpenStreetMap Editor"/>
123            </manifest>
124            <zipfileset dir="images" prefix="images"/>
125            <zipfileset dir="data" prefix="data"/>
126            <zipfileset dir="styles" prefix="styles"/>
127            <zipfileset dir="src/org/openstreetmap/gui/jmapviewer/images" prefix="org/openstreetmap/gui/jmapviewer/images"/>
128            <!-- All jar files necessary to run only JOSM (no tests) -->
129            <!-- <zipfileset src="lib/metadata-extractor-2.3.1-nosun.jar"/>  -->
130            <!-- <zipfileset src="lib/signpost-core-1.2.1.1.jar"/> -->
131        </jar>
132    </target>
133    <!-- Mac OS X target -->
134    <target name="mac">
135        <!-- Using https://bitbucket.org/infinitekind/appbundler to create mac application bundle -->
136        <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask" classpath="tools/appbundler-1.0ea.jar"/>
137        <!-- create MacOS X application bundle -->
138        <bundleapp outputdirectory="${bundle.outdir}" name="JOSM" displayname="JOSM" executablename="JOSM" identifier="org.openstreetmap.josm"
139                   mainclassname="org.openstreetmap.josm.gui.MainApplication"
140                   copyright="JOSM, and all its integral parts, are released under the GNU General Public License v2 or later"
141                   applicationCategory="public.app-category.utilities"
142                   shortversion="${version.entry.commit.revision} SVN"
143                   version="${version.entry.commit.revision} SVN"
144                   icon="macosx/JOSM.app/Contents/Resources/JOSM.icns"
145                   highResolutionCapable="true">
146
147            <arch name="x86_64"/>
148            <arch name="i386"/>
149
150            <classpath file="${bundle.jar}"/>
151
152            <option value="-Xmx512m"/>
153
154            <option value="-Xdock:icon=Contents/Resources/JOSM.icns"/>
155            <option value="-Xdock:name=JOSM"/>
156
157            <!-- OSX specific options, optional -->
158            <option value="-Dapple.laf.useScreenMenuBar=true"/>
159            <option value="-Dcom.apple.macos.use-file-dialog-packages=true"/>
160            <option value="-Dcom.apple.macos.useScreenMenuBar=true"/>
161            <option value="-Dcom.apple.mrj.application.apple.menu.about.name=JOSM"/>
162            <option value="-Dcom.apple.smallTabs=true"/>
163        </bundleapp>
164       
165        <!-- appbundler lacks the possibility of defining our own keys or using a template, so update the .plist manually -->
166        <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpath="tools/xmltask.jar"/>
167       
168        <xmltask source="${bundle.outdir}/JOSM.app/Contents/Info.plist" dest="${bundle.outdir}/JOSM.app/Contents/Info.plist" indent="false">
169            <insert position="before" path="/plist/dict/key[1]"><![CDATA[<key>CFBundleAllowMixedLocalizations</key>
170<string>true</string>
171]]></insert>
172        </xmltask>
173       
174        <!-- create ZIP file with MacOS X application bundle -->
175        <zip destfile="${bundle.outdir}/josm-custom-macosx.zip" update="true">
176            <zipfileset dir="." includes="CONTRIBUTION README LICENSE"/>
177            <zipfileset dir="${bundle.outdir}" includes="JOSM.app/**/*" filemode="755" />
178        </zip>
179    </target>
180    <target name="distmac" depends="dist">
181        <antcall target="mac">
182            <param name="bundle.outdir" value="dist"/>
183            <param name="bundle.jar" value="dist/josm-custom.jar"/>
184        </antcall>
185    </target>
186    <target name="javacc" depends="init" unless="javacc.notRequired">
187        <mkdir dir="${mapcss.dir}/parsergen"/>
188        <exec append="false" executable="java" failifexecutionfails="true">
189            <arg value="-cp"/>
190            <arg value="${javacc.home}/javacc.jar"/>
191            <arg value="javacc"/>
192            <arg value="-DEBUG_PARSER=false"/>
193            <arg value="-DEBUG_TOKEN_MANAGER=false"/>
194            <arg value="-JDK_VERSION=1.7"/>
195            <arg value="-GRAMMAR_ENCODING=UTF-8"/>
196            <arg value="-OUTPUT_DIRECTORY=${mapcss.dir}/parsergen"/>
197            <arg value="${mapcss.dir}/MapCSSParser.jj"/>
198        </exec>
199    </target>
200    <target name="compile" depends="init,javacc">
201        <!-- COTS -->
202        <javac srcdir="src" includes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**" nowarn="on"
203                destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="iso-8859-1">
204            <!-- get rid of "internal proprietary API" warning -->
205                <compilerarg value="-XDignore.symbol.file"/>
206        </javac>
207        <!-- JMapViewer/JOSM -->
208        <javac srcdir="src" excludes="com/**,oauth/**,org/apache/commons/codec/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java" 
209                destdir="build" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
210            <compilerarg value="-Xlint:cast"/>
211            <compilerarg value="-Xlint:deprecation"/>
212            <compilerarg value="-Xlint:dep-ann"/>
213            <compilerarg value="-Xlint:divzero"/>
214            <compilerarg value="-Xlint:empty"/>
215            <compilerarg value="-Xlint:finally"/>
216            <compilerarg value="-Xlint:overrides"/>
217            <!--<compilerarg value="-Xlint:rawtypes"/>-->
218            <compilerarg value="-Xlint:static"/>
219            <compilerarg value="-Xlint:try"/>
220            <compilerarg value="-Xlint:unchecked"/>
221        </javac>
222        <copy todir="build" failonerror="no" includeemptydirs="no">
223            <fileset dir="resources"/>
224        </copy>
225    </target>
226    <target name="init">
227        <uptodate property="javacc.notRequired" targetfile="${mapcss.dir}/parsergen/MapCSSParser.java" >
228            <srcfiles dir="${mapcss.dir}" includes="MapCSSParser.jj"/>
229        </uptodate>
230        <mkdir dir="build"/>
231        <mkdir dir="dist"/>
232    </target>
233    <target name="javadoc">
234        <javadoc destdir="javadoc" 
235                sourcepath="src"
236                encoding="UTF-8"   
237                packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*"
238                windowtitle="JOSM"
239                use="true"
240                private="true"
241                linksource="true"
242                author="false">
243            <link href="http://docs.oracle.com/javase/7/docs/api"/>
244            <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
245            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
246        </javadoc>
247    </target>
248    <target name="clean">
249        <delete dir="build"/>
250        <delete dir="dist"/>
251        <delete dir="${mapcss.dir}/parsergen"/>
252    </target>
253    <path id="test.classpath">
254        <fileset dir="${test.dir}/lib">
255            <include name="**/*.jar"/>
256        </fileset>
257        <fileset dir="lib">
258            <include name="**/*.jar"/>
259        </fileset>
260        <pathelement path="dist/josm-custom.jar"/>
261    </path>
262    <target name="test-init">
263        <mkdir dir="${test.dir}/build"/>
264        <mkdir dir="${test.dir}/report"/>
265    </target>
266    <target name="test-clean">
267        <delete dir="${test.dir}/build"/>
268        <delete dir="${test.dir}/report"/>
269        <delete file="${test.dir}/jacoco.exec" />
270    </target>
271    <target name="test-compile" depends="test-init,dist">
272        <javac srcdir="${test.dir}/unit" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
273                includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
274            <compilerarg value="-Xlint:all"/>
275            <compilerarg value="-Xlint:-serial"/>
276        </javac>
277        <javac srcdir="${test.dir}/functional" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
278                includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
279            <compilerarg value="-Xlint:all"/>
280            <compilerarg value="-Xlint:-serial"/>
281        </javac>
282        <javac srcdir="${test.dir}/performance" classpathref="test.classpath" destdir="${test.dir}/build" target="1.7" source="1.7" debug="on"
283                includeantruntime="false" createMissingPackageInfoClass="off" encoding="UTF-8">
284            <compilerarg value="-Xlint:all"/>
285            <compilerarg value="-Xlint:-serial"/>
286        </javac>
287    </target>
288    <target name="test" depends="test-compile">
289        <taskdef uri="antlib:org.jacoco.ant" resource="org/jacoco/ant/antlib.xml" classpath="tools/jacocoant.jar" />
290        <jacoco:coverage destfile="${test.dir}/jacoco.exec">
291            <junit printsummary="yes" fork="true" forkmode="once">
292                <sysproperty key="josm.home" value="${test.dir}/config/unit-josm.home"/>
293                <sysproperty key="josm.test.data" value="${test.dir}/data"/>
294                <sysproperty key="java.awt.headless" value="true"/>
295                <sysproperty key="suppressPermanentFailure" value="${suppressPermanentFailure}"/>
296                <classpath>
297                    <path refid="test.classpath"/>
298                    <pathelement path="${test.dir}/build"/>
299                    <pathelement path="${test.dir}/config"/>
300                </classpath>
301                <formatter type="plain"/>
302                <formatter type="xml"/>
303                <batchtest fork="yes" todir="${test.dir}/report">
304                    <fileset dir="${test.dir}/unit" includes="**/*.java"/>
305                </batchtest>
306            </junit>
307        </jacoco:coverage>
308    </target>
309    <target name="test-html" depends="test" description="Generate HTML test reports">
310        <!-- May require additional ant dependencies like ant-trax package -->
311        <junitreport todir="${test.dir}/report">
312            <fileset dir="${test.dir}/report">
313                <include name="TEST-*.xml"/>
314            </fileset>
315            <report todir="${test.dir}/report/html"/>
316        </junitreport>
317        <jacoco:report>
318            <executiondata>
319                <file file="${test.dir}/jacoco.exec"/>
320            </executiondata>
321            <structure name="JOSM Test Coverage">
322                <classfiles>
323                    <fileset dir="${build.dir}" includes="org/openstreetmap/"/>
324                </classfiles>
325                <sourcefiles encoding="UTF-8">
326                    <fileset dir="${src.dir}" includes="org/openstreetmap/"/>
327                </sourcefiles>
328            </structure>
329            <html destdir="${test.dir}/report/jacoco"/>
330        </jacoco:report>
331    </target>
332    <target name="dist-optimized" depends="dist">
333        <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard.jar"/>
334        <proguard>
335                -injars dist/josm-custom.jar
336                -outjars dist/josm-custom-optimized.jar
337
338                -libraryjars ${java.home}/lib/rt.jar
339                -libraryjars ${java.home}/lib/jce.jar
340
341                -dontoptimize
342                -dontobfuscate
343
344                # These options probably are not necessary (and make processing a bit slower)
345                -dontskipnonpubliclibraryclasses
346                -dontskipnonpubliclibraryclassmembers
347
348                -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplication {
349                    public static void main(java.lang.String[]);
350                }
351                -keepclasseswithmembers public class org.openstreetmap.josm.gui.MainApplet
352
353                -keep class JOSM
354                -keep class * extends org.openstreetmap.josm.io.FileImporter
355                -keep class * extends org.openstreetmap.josm.io.FileExporter
356                -keep class org.openstreetmap.josm.data.imagery.types.Adapter1
357                -keep class org.openstreetmap.josm.actions.search.SearchCompiler$Never
358
359                -keepclassmembers enum  * {
360                    public static **[] values();
361                    public static ** valueOf(java.lang.String);
362                }
363
364                # Keep unused public methods (can be useful for plugins)
365                -keepclassmembers class * {
366                    public protected *;
367                }
368
369                # Disable annoying [proguard] Note: the configuration keeps the entry point '...', but not the descriptor class '...'. This notes should not be a problem as we don't use obfuscation
370                -dontnote
371        </proguard>
372    </target>
373    <target name="check-plugins" depends="dist-optimized">
374        <echo message="Check of plugins binary compatibility (needs ant 1.8)"/>
375        <local name="dir"/>
376        <local name="plugins"/>
377        <property name="dir" value="plugin-check"/>
378        <typedef uri="antlib:org.codehaus.mojo.animal_sniffer">
379            <classpath path="tools/animal-sniffer-ant-tasks-1.8.jar"/>
380        </typedef>
381        <mkdir dir="${dir}"/>
382        <!-- List of deprecated plugins -->
383        <loadfile property="deprecated-plugins" srcFile="src/org/openstreetmap/josm/plugins/PluginHandler.java">
384            <filterchain>
385                <linecontains>
386                    <contains value="new DeprecatedPlugin("/>
387                </linecontains>
388                <tokenfilter>
389                    <replaceregex pattern=".*new DeprecatedPlugin\(&quot;(.+?)&quot;.*" replace="\1|" flags="gi"/>
390                </tokenfilter>
391                <striplinebreaks/>
392                <tokenfilter>
393                    <replaceregex pattern="\|$" replace="" flags="gi"/>
394                </tokenfilter>
395            </filterchain>
396        </loadfile>
397        <!-- Download list of plugins -->
398        <loadresource property="plugins">
399            <url url="https://josm.openstreetmap.de/plugin"/>
400            <filterchain>
401                <linecontainsregexp negate="true">
402                    <regexp pattern="^\t.*"/>
403                </linecontainsregexp>
404                <linecontainsregexp negate="true">
405                    <regexp pattern="${deprecated-plugins}"/>
406                </linecontainsregexp>
407                <tokenfilter>
408                    <replaceregex pattern="^.*;" replace="" flags="gi"/>
409                </tokenfilter>
410            </filterchain>
411        </loadresource>
412        <!-- Delete files that are not in plugin list (like old plugins) -->
413        <loadresource property="file-list">
414            <propertyresource name="plugins"/>
415            <filterchain>
416                <tokenfilter>
417                    <replaceregex pattern="^.*/(.*)$" replace="\1\|" flags=""/>
418                </tokenfilter>
419                <striplinebreaks/>
420                <tokenfilter>
421                    <replaceregex pattern="\|$" replace="" flags="gi"/>
422                </tokenfilter>   
423            </filterchain>
424        </loadresource>
425        <delete>
426            <restrict>
427                <fileset dir="${dir}"/>
428                <not>
429                    <name regex="${file-list}"/>
430                </not>
431            </restrict>
432        </delete>
433        <!-- Download plugins -->
434        <copy todir="${dir}" flatten="true">
435            <resourcelist>
436                <string value="${plugins}"/>
437            </resourcelist>
438        </copy>
439        <!-- Check plugins -->
440        <as:build-signatures destfile="${dir}/api.sig">
441            <path>
442                <fileset file="dist/josm-custom-optimized.jar"/>
443                <fileset file="${java.home}/lib/rt.jar"/>
444                <fileset file="${java.home}/lib/jce.jar"/>
445            </path>
446        </as:build-signatures>
447        <as:check-signature signature="${dir}/api.sig">
448            <ignore classname="org.jgraph.*"/>
449            <ignore classname="com.touchgraph.*"/>
450            <ignore classname="com.sun.xml.fastinfoset.*"/>
451            <ignore classname="javax.jms.*"/>
452            <ignore classname="org.jvnet.staxex.*"/>
453            <ignore classname="javax.mail.*"/>
454            <ignore classname="com.sun.jdmk.*"/>
455            <ignore classname="org.apache.avalon.framework.logger.Logger"/>
456            <ignore classname="org.apache.log.*"/>
457            <ignore classname="junit.*"/>
458            <path path="${dir}"/>
459        </as:check-signature>
460    </target>
461
462    <target name="findbugs" depends="dist">
463        <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask" classpath="tools/findbugs/findbugs-ant.jar"/>
464        <path id="findbugs-classpath">
465            <fileset dir="tools/findbugs/">
466                <include name="*.jar"/>
467            </fileset>
468        </path>
469        <property name="findbugs-classpath" refid="findbugs-classpath"/>
470        <findbugs output="xml"
471                outputFile="findbugs-josm.xml"
472                classpath="${findbugs-classpath}"
473                pluginList=""
474                excludeFilter="tools/findbugs/josm-filter.xml"
475                effort="max"
476                >
477            <sourcePath path="${basedir}/src" />
478            <class location="${basedir}/dist/josm-custom.jar" />
479        </findbugs>
480    </target>
481    <target name="run" depends="dist">
482        <java jar="dist/josm-custom.jar" fork="true">
483            <arg value="--set=expert=true"/>
484            <arg value="--set=remotecontrol.enabled=true"/>
485            <arg value="--set=debug.edt-checker.enable=false"/>
486            <jvmarg value="-Djosm.home=/tmp/.josm/"/>
487        </java>
488    </target>
489
490</project>
Note: See TracBrowser for help on using the repository browser.