ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
Revision: 1.71
Committed: Thu Dec 30 21:43:34 2004 UTC (19 years, 4 months ago) by peierls
Content type: text/xml
Branch: MAIN
Changes since 1.70: +4 -1 lines
Log Message:
Remove sinjdoc.
j1 targets run off main src, not jsr166x.

File Contents

# User Rev Content
1 tim 1.18 <project name="jsr166" default="usage">
2 tim 1.1
3     <description>
4 tim 1.29 ------------------------------------------------------------------------------
5     Build file for JSR-166
6 tim 1.18
7 tim 1.29 Usage: ant [target]
8    
9     User-specific settings are read from user.properties.
10 tim 1.32 See user.properties.sample for an explanation of some useful settings.
11 tim 1.29 ------------------------------------------------------------------------------
12 tim 1.18 </description>
13 tim 1.11
14 tim 1.29 <target name="usage" description="Advises user to run with -projecthelp">
15     <echo>Run "ant -projecthelp" for full usage information.</echo>
16     </target>
17 tim 1.3
18 tim 1.11
19 tim 1.27 <!-- User-specific settings -->
20 tim 1.23 <property file="user.properties"/>
21 tim 1.27
22 tim 1.1
23     <!-- Compilation options -->
24 tim 1.11 <property name="build.sourcelevel" value="1.5"/>
25 tim 1.1 <property name="build.debug" value="true"/>
26     <property name="build.debuglevel" value="source,lines,vars"/>
27 tim 1.13 <property name="build.deprecation" value="false"/>
28 tim 1.1
29     <!-- Build locations -->
30     <property name="build.dir" location="build"/>
31     <property name="build.classes.dir" location="${build.dir}/classes"/>
32     <property name="build.testcases.dir" location="${build.dir}/testcases"/>
33 tim 1.64 <property name="build.j1.dir" location="${build.dir}/j1"/>
34 jsr166 1.65 <property name="build.loops.dir" location="${build.dir}/loops"/>
35 tim 1.1 <property name="build.lib.dir" location="${build.dir}/lib"/>
36     <property name="build.ant.dir" location="${build.dir}/ant"/>
37 tim 1.9 <property name="build.javadocs.dir" location="${build.dir}/javadocs"/>
38 tim 1.1 <property name="build.reports.dir" location="${build.dir}/reports"/>
39 tim 1.59 <property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/>
40 tim 1.16 <property name="build.doccheck.dir" location="${build.dir}/doccheck"/>
41 tim 1.1 <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
42 tim 1.58 <property name="build.dc-filter.dir" location="${build.dir}/filterdocchk"/>
43 dl 1.70 <property name="build.jsr166x.dir" location="${build.dir}/jsr166x"/>
44     <property name="build.jsr166xlib.dir" location="${build.dir}/jsr166xlib"/>
45     <property name="build.jsr166xjavadocs.dir" location="${build.dir}/jsr166xjavadocs"/>
46 tim 1.1
47     <!-- Source locations -->
48 tim 1.22 <property name="src.dir" location="${basedir}/src/main"/>
49     <property name="test.src.dir" location="${basedir}/src/test"/>
50 tim 1.64 <property name="j1.src.dir" location="${basedir}/src/javaone"/>
51 jsr166 1.65 <property name="loops.src.dir" location="${basedir}/src/loops"/>
52 tim 1.60 <property name="tck.src.dir" location="${test.src.dir}/tck"/>
53 tim 1.62 <property name="jtreg.src.dir" location="${test.src.dir}/jtreg"/>
54 tim 1.1 <property name="ant.src.dir" location="${basedir}/etc/ant"/>
55     <property name="stylesheet.dir" location="${basedir}/etc/xsl"/>
56     <property name="lib.dir" location="${basedir}/lib"/>
57 tim 1.9 <property name="dist.dir" location="${basedir}/dist"/>
58 dl 1.70 <property name="topsrc.dir" location="${basedir}/src"/>
59     <property name="jsr166xsrc.dir" location="${basedir}/src/jsr166x"/>
60 tim 1.9
61     <!-- Distribution locations -->
62     <property name="dist.javadocs.dir" location="${dist.dir}/docs"/>
63 dl 1.70 <property name="dist.jsr166xjavadocs.dir" location="${dist.dir}/jsr166xdocs"/>
64 tim 1.1
65     <!-- Jar locations -->
66     <property name="product.jar" location="${build.lib.dir}/jsr166.jar"/>
67 dl 1.70 <property name="jsr166xproduct.jar" location="${build.jsr166xlib.dir}/jsr166x.jar"/>
68 tim 1.1 <property name="junit.jar" location="${lib.dir}/junit.jar"/>
69 jsr166 1.66 <property name="concurrent.jar" location="${lib.dir}/concurrent.jar"/>
70 jsr166 1.65
71 tim 1.59 <!-- Bootclasspath argument -->
72     <property name="bootclasspath.args" value="-Xbootclasspath/p:${product.jar}"/>
73 tim 1.27
74 tim 1.59 <!-- Test classpath -->
75     <path id="test.classpath">
76     <pathelement location="${build.testcases.dir}"/>
77     <pathelement location="${junit.jar}"/>
78     </path>
79 tim 1.28
80 jsr166 1.65 <!-- ALoops classpath -->
81     <path id="loops.classpath">
82     <pathelement location="${build.loops.dir}"/>
83     </path>
84    
85     <!-- J1 classpath -->
86 tim 1.64 <path id="j1.classpath">
87 peierls 1.71 <pathelement location="${build.classes.dir}"/>
88 tim 1.64 <pathelement location="${build.j1.dir}"/>
89     <pathelement location="${junit.jar}"/>
90 peierls 1.71
91     <!-- Include dl.u.c for BoundedBuffer comparison -->
92 jsr166 1.66 <pathelement location="${concurrent.jar}"/>
93 tim 1.64 </path>
94    
95 tim 1.28
96 tim 1.59 <!-- Main targets -->
97 tim 1.28
98 tim 1.11
99 tim 1.28 <target name="compile"
100 tim 1.60 depends="init, configure-compiler"
101 tim 1.27 description="Compiles main sources to build folder">
102    
103 tim 1.1 <mkdir dir="${build.classes.dir}"/>
104 tim 1.27
105 tim 1.60 <javac srcdir="${src.dir}"
106 tim 1.1 destdir="${build.classes.dir}"
107     debug="${build.debug}"
108     debuglevel="${build.debuglevel}"
109     deprecation="${build.deprecation}"
110     source="${build.sourcelevel}"
111     fork="true">
112    
113 jsr166 1.68 <include name="**/*.java"/>
114     <exclude name="java/lang/**"/>
115 tim 1.58 <compilerarg line="${build.args}"/>
116 tim 1.1
117     </javac>
118 tim 1.27
119 tim 1.1 </target>
120    
121    
122 tim 1.59
123 tim 1.28 <target name="jar"
124 tim 1.59 depends="compile"
125     description="Builds library jar from compiled sources">
126    
127     <mkdir dir="${build.lib.dir}"/>
128    
129     <jar destfile="${product.jar}">
130     <fileset dir="${build.classes.dir}"/>
131     </jar>
132    
133     </target>
134    
135 tim 1.1
136    
137 tim 1.28 <target name="test"
138 tim 1.32 depends="init, configure-tests, report-tests"
139 tim 1.29 description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
140 tim 1.1
141    
142 tim 1.59
143     <target name="docs"
144     description="Builds javadocs with custom tags to build folder">
145    
146     <delete dir="${build.javadocs.dir}"/>
147     <mkdir dir="${build.javadocs.dir}"/>
148    
149     <javadoc destdir="${build.javadocs.dir}"
150     link="http://java.sun.com/j2se/1.4.1/docs/api"
151     overview="${src.dir}/intro.html"
152     source="${build.sourcelevel}">
153    
154     <tag name="revised" description="Last revised:"/>
155     <tag name="spec" description="Specified by:"/>
156    
157     <packageset dir="${src.dir}"/>
158    
159     </javadoc>
160    
161     </target>
162    
163    
164    
165 tim 1.60 <target name="doccheck"
166     depends="filter-doccheck"
167     description="Reports on javadoc style errors">
168    
169     <delete dir="${build.doccheck.dir}"/>
170     <mkdir dir="${build.doccheck.dir}"/>
171    
172     <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
173     docletpath="${lib.dir}/doccheck.jar"
174     destdir="${build.doccheck.dir}">
175     <packageset dir="${build.dc-filter.dir}"/>
176     </javadoc>
177    
178     <echo>DocCheck output is in ${build.doccheck.dir}</echo>
179    
180     </target>
181    
182    
183    
184 tim 1.28 <target name="checkstyle"
185     depends="filter-src"
186 tim 1.18 description="Reports on style errors in Java source (verbose, mostly chaff)">
187 tim 1.27
188 tim 1.15 <taskdef resource="checkstyletask.properties"
189 tim 1.58 classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
190 tim 1.15
191 tim 1.58 <mkdir dir="${build.checkstyle.dir}"/>
192 jsr166 1.65
193 tim 1.58 <checkstyle config="etc/checkstyle/sun_checks.xml"
194     failOnViolation="false">
195 jsr166 1.65 <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
196 tim 1.15 <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
197     </checkstyle>
198 jsr166 1.65
199     <style in="${build.checkstyle.dir}/checkstyle-report.xml"
200     out="${build.checkstyle.dir}/checkstyle-report.html"
201 tim 1.58 style="${stylesheet.dir}/checkstyle-frames.xsl"/>
202 tim 1.27
203 tim 1.15 </target>
204    
205 jsr166 1.65
206 tim 1.8
207 tim 1.28 <target name="dist"
208     depends="init, dist-clean, dist-jar, dist-docs"
209 tim 1.16 description="Puts all distributable products in single hierarchy"/>
210 tim 1.1
211 tim 1.58
212 tim 1.59
213 tim 1.42 <target name="release"
214     depends="dist"
215     description="Puts entire CVS tree, plus distribution productions, in a jar">
216    
217     <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
218    
219     <jar basedir="${basedir}" destfile="${release.jar}">
220 tim 1.58 <!-- <exclude name="build/**"/> -->
221 tim 1.42 <exclude name="${release.jar}"/>
222     <exclude name="user.properties"/>
223     <exclude name="etc/notes/**"/>
224 tim 1.58 <exclude name="src/emulation/**"/>
225 tim 1.44 <exclude name="**/SyntaxTest.java"/>
226 tim 1.58 <exclude name="**/SuperfluousAbstract.java"/>
227 tim 1.42 </jar>
228    
229     </target>
230 tim 1.1
231 tim 1.59
232    
233 tim 1.11 <target name="clean"
234     description="Removes all build products">
235 tim 1.27
236 tim 1.11 <delete dir="${build.dir}"/>
237     <delete dir="${build.classes.dir}"/>
238     <delete dir="${build.lib.dir}"/>
239 tim 1.27
240 tim 1.1 </target>
241    
242    
243 tim 1.59
244 tim 1.11 <target name="dist-clean"
245     description="Removes all build and distribution products">
246 tim 1.27
247 tim 1.11 <delete dir="${dist.dir}"/>
248 tim 1.27
249 tim 1.9 </target>
250 tim 1.10
251    
252 tim 1.59
253 tim 1.28 <target name="dist-docs"
254     description="Builds javadocs without custom tags to dist folder">
255    
256     <delete dir="${dist.javadocs.dir}"/>
257     <mkdir dir="${dist.javadocs.dir}"/>
258    
259     <javadoc destdir="${dist.javadocs.dir}"
260 tim 1.59 link="http://java.sun.com/j2se/1.4.2/docs/api"
261 tim 1.28 overview="${src.dir}/intro.html"
262 tim 1.59 source="${build.sourcelevel}">
263 tim 1.28
264 tim 1.59 <packageset dir="${src.dir}"/>
265 tim 1.14
266 tim 1.28 </javadoc>
267 tim 1.14
268     </target>
269    
270    
271 tim 1.28
272 tim 1.11 <!-- Internal targets -->
273 tim 1.9
274 tim 1.16
275 tim 1.32 <target name="init">
276 tim 1.27
277 tim 1.11 <!-- Version is kept in a separate file -->
278     <loadfile property="version" srcFile="version.properties"/>
279     <echo>Building JSR-166 version ${version}</echo>
280 tim 1.54 <echo>java.home is ${java.home}</echo>
281 tim 1.27
282     </target>
283 jsr166 1.65
284    
285 tim 1.28 <target name="dist-jar"
286     depends="clean, jar">
287 tim 1.27
288 tim 1.11 <copy file="${product.jar}" todir="${dist.dir}"/>
289 tim 1.27
290 tim 1.11 </target>
291    
292    
293 tim 1.28 <target name="compile-ant-filter"
294     depends="init">
295 tim 1.27
296 tim 1.1 <mkdir dir="${build.ant.dir}"/>
297 tim 1.27
298 tim 1.1 <javac srcdir="${ant.src.dir}"
299     destdir="${build.ant.dir}"
300 jsr166 1.65 source="1.4"/>
301 tim 1.27
302 tim 1.1 </target>
303    
304    
305 tim 1.28 <target name="filter-src"
306     depends="compile-ant-filter">
307 tim 1.27
308 tim 1.1 <mkdir dir="${build.filter.src.dir}"/>
309 tim 1.27
310 tim 1.1 <copy todir="${build.filter.src.dir}">
311     <fileset dir="${src.dir}">
312 tim 1.31 <include name="**/*.html"/>
313     </fileset>
314     </copy>
315    
316     <copy todir="${build.filter.src.dir}">
317     <fileset dir="${src.dir}">
318     <exclude name="**/*.html"/>
319 tim 1.59 <!-- Files excluded from dist-docs -->
320     <exclude name="java/util/Random.*"/>
321     <exclude name="sun/misc/Unsafe.*"/>
322 tim 1.1 </fileset>
323 tim 1.59 <!--
324 tim 1.1 <filterchain>
325 tim 1.59 -->
326 tim 1.36
327     <!--
328     # This filter gets rid of angle-bracketed type parameters
329     # so that javadoc can run on the result. The following
330     # heuristic seems to work:
331     #
332     # For all lines not starting with space(s)-asterisk-space(s),
333     # replace <something> with a space, where there may be more
334     # than one right angle bracket at the end, and "something"
335     # must not contain parens or pipes. (This may need some
336     # tweaking.)
337     -->
338    
339 tim 1.59 <!--
340 tim 1.1 <filterreader classname="jsr166.ant.filters.ReplaceFilter"
341     classpath="${build.ant.dir}">
342     <param name="notmatching" value="^\s+\*\s.*$"/>
343 tim 1.36 <param name="pattern" value="&lt;[^|>()]+?>+"/>
344 tim 1.1 <param name="replacement" value=" "/>
345     </filterreader>
346 tim 1.59 -->
347 tim 1.36
348 tim 1.59 <!--
349 tim 1.47 </filterchain>
350 tim 1.59 -->
351 tim 1.47 </copy>
352    
353     </target>
354    
355    
356     <target name="filter-doccheck"
357     depends="filter-src">
358 tim 1.36
359 tim 1.58 <mkdir dir="${build.dc-filter.dir}"/>
360 tim 1.36
361 tim 1.58 <copy todir="${build.dc-filter.dir}">
362 tim 1.47 <fileset dir="${build.filter.src.dir}">
363     <include name="**/*.html"/>
364     </fileset>
365     </copy>
366    
367     <property name="generic.declarations"
368     value="/** Fake type parameter. */ public interface E {} /** Fake type parameter. */ public interface T {} /** Fake type parameter. */ public interface K {} /** Fake type parameter. */ public interface V {}"
369     />
370    
371 tim 1.58 <copy todir="${build.dc-filter.dir}">
372 tim 1.47 <fileset dir="${build.filter.src.dir}">
373     <exclude name="**/*.html"/>
374     </fileset>
375     <filterchain>
376 tim 1.36 <!--
377 tim 1.47 # These two filters try to make the source look like
378 tim 1.36 # something that doccheck can process. The first removes
379     # -source 1.4 assertions and the second adds in a bunch
380     # of single letter public nested marker interfaces so that
381     # the generic type parameters are recognized.
382     -->
383    
384     <filterreader classname="jsr166.ant.filters.ReplaceFilter"
385     classpath="${build.ant.dir}">
386     <param name="matching" value="^\s*assert[\s ].*$"/>
387     <param name="pattern" value="assert"/>
388     <param name="replacement" value="//assert"/>
389     </filterreader>
390    
391     <filterreader classname="jsr166.ant.filters.ReplaceFilter"
392     classpath="${build.ant.dir}">
393 tim 1.47 <param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
394 tim 1.36 <param name="pattern" value="$"/>
395     <param name="replacement" value=" ${generic.declarations}"/>
396     </filterreader>
397    
398 tim 1.1 </filterchain>
399     </copy>
400 tim 1.27
401 tim 1.1 </target>
402    
403    
404 tim 1.28 <target name="compile-tests"
405     depends="jar">
406 tim 1.27
407 tim 1.1 <mkdir dir="${build.testcases.dir}"/>
408 tim 1.37
409 tim 1.60 <javac srcdir="${tck.src.dir}"
410     destdir="${build.testcases.dir}"
411     debug="${build.debug}"
412     debuglevel="${build.debuglevel}"
413     deprecation="${build.deprecation}"
414     source="${build.sourcelevel}"
415     fork="true">
416    
417     <compilerarg value="${bootclasspath.args}"/>
418     <compilerarg line="${build.args}"/>
419 jsr166 1.65
420 tim 1.60 <classpath refid="test.classpath"/>
421    
422     </javac>
423    
424     <javac srcdir="${test.src.dir}"
425 tim 1.1 destdir="${build.testcases.dir}"
426     debug="${build.debug}"
427     debuglevel="${build.debuglevel}"
428     deprecation="${build.deprecation}"
429     source="${build.sourcelevel}"
430     fork="true">
431    
432 tim 1.60 <include name="jsr166/test/**"/>
433 jsr166 1.65
434 tim 1.59 <compilerarg value="${bootclasspath.args}"/>
435 tim 1.57 <compilerarg line="${build.args}"/>
436 jsr166 1.65
437 tim 1.57 <classpath refid="test.classpath"/>
438 tim 1.1
439     </javac>
440 tim 1.27
441 tim 1.62 <!--
442     <javac srcdir="${jtreg.src.dir}"
443     destdir="${build.testcases.dir}"
444     debug="${build.debug}"
445     debuglevel="${build.debuglevel}"
446     deprecation="${build.deprecation}"
447     source="${build.sourcelevel}"
448     fork="true">
449    
450     <compilerarg value="${bootclasspath.args}"/>
451     <compilerarg line="${build.args}"/>
452 jsr166 1.65
453 tim 1.62 <classpath refid="test.classpath"/>
454    
455     </javac>
456     -->
457    
458 tim 1.1 </target>
459 tim 1.11
460 tim 1.1
461 tim 1.28 <target name="run-tests"
462     depends="compile-tests">
463 tim 1.27
464     <!-- May be overridden by user.properties -->
465     <property name="testcase" value="*"/>
466    
467 tim 1.1 <mkdir dir="${build.reports.dir}"/>
468 tim 1.27
469 tim 1.1 <junit printsummary="true"
470     showoutput="true"
471     errorProperty="junit.failed"
472     failureProperty="junit.failed"
473 tim 1.12 dir="${build.reports.dir}"
474     fork="true">
475    
476 tim 1.59 <jvmarg value="${bootclasspath.args}"/>
477 tim 1.64 <jvmarg value="-server"/>
478     <jvmarg value="-showversion"/>
479 jsr166 1.65
480 tim 1.59 <classpath refid="test.classpath"/>
481 tim 1.1
482     <formatter type="xml"/>
483    
484 tim 1.62 <batchtest todir="${build.reports.dir}" unless="no.test.tck">
485 tim 1.60 <fileset dir="${tck.src.dir}">
486     <include name="**/${testcase}Test.java"/>
487     </fileset>
488 tim 1.62 </batchtest>
489 jsr166 1.65
490 tim 1.62 <batchtest todir="${build.reports.dir}" if="do.test.old">
491 tim 1.60 <fileset dir="${test.src.dir}">
492     <include name="jsr166/test/**/${testcase}Test.java"/>
493 tim 1.1 </fileset>
494     </batchtest>
495 tim 1.62
496 jsr166 1.65 <!--
497 tim 1.62 <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
498     <fileset dir="${jtreg.src.dir}">
499     <include name="**/${testcase}Test.java"/>
500     </fileset>
501     </batchtest>
502     -->
503 tim 1.1
504     </junit>
505 tim 1.27
506 tim 1.1 </target>
507    
508    
509 tim 1.28 <target name="report-tests"
510     depends="run-tests">
511    
512 tim 1.54 <!-- Sets junit.report.format to frames if redirection is present,
513 tim 1.1 otherwise sets it to noframes. -->
514     <available property="junit.report.format"
515     value="frames"
516     classname="org.apache.xalan.lib.Redirect"
517     />
518     <property name="junit.report.format" value="noframes"/>
519    
520     <junitreport todir="${build.reports.dir}">
521     <fileset dir="${build.reports.dir}">
522     <include name="TEST-*.xml"/>
523     </fileset>
524     <report styledir="${stylesheet.dir}"
525     format="${junit.report.format}"
526     todir="${build.reports.dir}"
527     />
528     </junitreport>
529    
530     <fail message="Test Cases Failed" if="junit.failed"/>
531 tim 1.28
532 tim 1.18 </target>
533    
534    
535 tim 1.32 <target name="configure-compiler">
536 tim 1.54
537     <property name="unchecked.option" value="-Xlint:unchecked"/>
538    
539     <condition property="warnunchecked.arg" value="${unchecked.option}">
540 tim 1.57 <istrue value="${build.warnunchecked}"/>
541 tim 1.32 </condition>
542    
543 tim 1.37 <property name="warnunchecked.arg" value=""/>
544 tim 1.34
545 tim 1.32
546     <!-- Common options in javac invocations -->
547 tim 1.57 <property name="build.args" value="${warnunchecked.arg}"/>
548 tim 1.33
549     </target>
550    
551    
552 tim 1.37 <target name="configure-tests"
553     depends="configure-compiler">
554 tim 1.28
555     <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
556 tim 1.18 <available property="junit.available"
557 tim 1.28 classname="junit.framework.Protectable"/>
558    
559 tim 1.54 <!-- Xalan -->
560     <available property="xalan.available"
561     classname="org.apache.xalan.Version"/>
562    
563 jsr166 1.65
564 tim 1.59 <!-- Ant 1.6beta and later don't need or want this check -->
565 jsr166 1.65 <!--
566 tim 1.59 <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
567     unless="junit.available"/>
568    
569 tim 1.54 <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
570     unless="xalan.available"/>
571 tim 1.59 -->
572 tim 1.30
573 tim 1.28 </target>
574    
575    
576    
577     <!-- Anthill targets -->
578    
579 tim 1.54 <target name="anthill-build">
580 jsr166 1.65
581 tim 1.55 <!-- Override this in user.properties -->
582     <property name="tiger.home" location="e:/j2sdk1.5.0"/>
583 jsr166 1.65
584 tim 1.54 <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
585     <arg value="-Xmx256000000"/>
586     <!-- classpath of new JVM -->
587     <arg value="-classpath"/> <arg path="${java.class.path}"/>
588     <!-- location of Ant home directory -->
589     <arg value="-Dant.home=${ant.home}"/>
590     <!-- the Ant main class -->
591     <arg value="org.apache.tools.ant.Main"/>
592     <!-- The build file -->
593     <arg value="-buildfile"/> <arg value="build.xml"/>
594     <!-- the target to build on the new Ant instance -->
595     <arg value="-DJAVA_HOME=${tiger.home}"/>
596     <arg value="do-anthill-build"/>
597     </exec>
598     </target>
599 jsr166 1.65
600 tim 1.54 <target name="do-anthill-build"
601 tim 1.28 depends="jar, test, docs, dist-docs"/>
602    
603     <target name="anthill-publish">
604    
605     <copy todir="${deployDir}/docs/private">
606     <fileset dir="${build.javadocs.dir}"/>
607     </copy>
608    
609     <copy todir="${deployDir}/docs/public">
610     <fileset dir="${dist.javadocs.dir}"/>
611     </copy>
612    
613     <copy tofile="${deployDir}/index.html"
614     file="${basedir}/etc/anthill-index.html"/>
615    
616     <copy todir="${deployDir}/notes">
617     <fileset dir="${basedir}/etc/notes"/>
618     </copy>
619    
620 tim 1.43 </target>
621    
622    
623 jsr166 1.65
624     <!-- Various demos and test programs -->
625    
626    
627     <target name="sample" depends="init, configure-compiler"
628     description="Standalone demo program">
629    
630 tim 1.59 <mkdir dir="${build.testcases.dir}"/>
631 jsr166 1.65
632 tim 1.59 <javac srcdir="${test.src.dir}"
633     destdir="${build.testcases.dir}"
634     debug="${build.debug}"
635     debuglevel="${build.debuglevel}"
636     deprecation="${build.deprecation}"
637     source="${build.sourcelevel}"
638     fork="true">
639 jsr166 1.65
640 tim 1.61 <include name="jsr166/test/Sample.java"/>
641 jsr166 1.65
642 tim 1.59 </javac>
643 jsr166 1.65
644 tim 1.64 <copy todir="${build.testcases.dir}">
645     <fileset dir="${test.src.dir}">
646     <include name="**/*.properties"/>
647     </fileset>
648     </copy>
649 jsr166 1.65
650    
651 tim 1.61 <java classname="jsr166.test.Sample" fork="true">
652 jsr166 1.65 <classpath refid="test.classpath"/>
653     <!-- <jvmarg value="-ea"/> -->
654 tim 1.64 <!-- <jvmarg value="-server"/> -->
655     <!-- <arg value="1000"/> -->
656     </java>
657     </target>
658    
659    
660 jsr166 1.65 <target name="loops" depends="init, configure-compiler"
661     description="Benchmark from Doug Lea's AQS paper">
662    
663     <mkdir dir="${build.loops.dir}"/>
664    
665     <javac srcdir="${loops.src.dir}"
666     destdir="${build.loops.dir}"
667     debug="${build.debug}"
668     debuglevel="${build.debuglevel}"
669     deprecation="${build.deprecation}"
670     source="${build.sourcelevel}"
671     fork="true">
672    
673     <compilerarg line="${build.args}"/>
674     <classpath refid="loops.classpath"/>
675    
676     </javac>
677    
678     <java classname="ALoops" fork="true">
679     <classpath refid="loops.classpath"/>
680     </java>
681    
682     </target>
683    
684    
685 peierls 1.71 <target name="compile-j1" depends="init, configure-compiler, compile">
686 jsr166 1.65
687 tim 1.64 <mkdir dir="${build.j1.dir}"/>
688 jsr166 1.65
689 tim 1.64 <javac srcdir="${j1.src.dir}"
690     destdir="${build.j1.dir}"
691     debug="${build.debug}"
692     debuglevel="${build.debuglevel}"
693     deprecation="${build.deprecation}"
694 jsr166 1.66 source="${build.sourcelevel}" >
695    
696     <include name="**/*.java"/>
697     <exclude name="**/dijkstra/**"/>
698 jsr166 1.65
699 tim 1.64 <compilerarg line="${build.args}"/>
700     <classpath refid="j1.classpath"/>
701 jsr166 1.65
702 tim 1.64 </javac>
703 jsr166 1.65
704     </target>
705    
706    
707     <target name="sw" depends="compile-j1"
708     description="Runs the SwingWorker demo">
709    
710     <!--
711     <java classname="jsr166.swing.SwingWorkerDemo" fork="true">
712     <classpath refid="j1.classpath"/>
713     </java>
714     -->
715    
716     <copy todir="${build.j1.dir}" file="${j1.src.dir}/jsr166/swing/SwingWorker.html"/>
717    
718     <exec dir="${build.j1.dir}" executable="appletviewer.exe">
719     <arg value="${build.j1.dir}/SwingWorker.html"/>
720     </exec>
721    
722     </target>
723    
724     <target name="j1" depends="compile-j1"
725     description="Runs a standalone JavaOne program">
726    
727 jsr166 1.68 <java classname="${j1.test}" fork="true">
728 tim 1.64 <classpath refid="j1.classpath"/>
729 jsr166 1.67 <jvmarg value="-client"/>
730 jsr166 1.68
731 jsr166 1.69 <!-- TestPseudoRandom args -->
732     <arg value="2"/>
733     <arg value="25"/>
734     <arg value="100000"/>
735    
736 jsr166 1.68 <!-- WebCrawler args -->
737 jsr166 1.69 <!--
738 jsr166 1.68 <arg value="jsr166.webcrawler.WebCrawler3"/>
739     <arg value="http://www.priorartisans.com"/>
740     <arg value="25"/>
741 jsr166 1.69 -->
742 jsr166 1.68
743 tim 1.43 </java>
744 jsr166 1.65
745     </target>
746    
747    
748     <target name="test-j1" depends="compile-j1"
749     description="Runs testcases from the JavaOne source directories">
750 tim 1.64
751     <junit printsummary="true"
752     showoutput="true"
753     errorProperty="junit.failed"
754     failureProperty="junit.failed"
755     dir="${build.j1.dir}"
756     fork="true">
757    
758 jsr166 1.65 <!-- <jvmarg value="-server"/> -->
759 tim 1.64 <classpath refid="j1.classpath"/>
760     <formatter type="xml"/>
761    
762     <batchtest todir="${build.j1.dir}">
763     <fileset dir="${j1.src.dir}">
764     <include name="**/*Test.java"/>
765     </fileset>
766     </batchtest>
767    
768     </junit>
769    
770     <available property="junit.report.format"
771     value="frames"
772 jsr166 1.65 classname="org.apache.xalan.lib.Redirect"/>
773 tim 1.64 <property name="junit.report.format" value="noframes"/>
774    
775     <junitreport todir="${build.j1.dir}">
776     <fileset dir="${build.j1.dir}">
777     <include name="TEST-*.xml"/>
778     </fileset>
779     <report styledir="${stylesheet.dir}"
780     format="${junit.report.format}"
781     todir="${build.j1.dir}"
782     />
783     </junitreport>
784    
785     <fail message="Test Cases Failed" if="junit.failed"/>
786    
787 tim 1.63 </target>
788    
789 jsr166 1.65
790    
791 tim 1.63 <!-- C++ and JNI definitions and demos -->
792 jsr166 1.65
793 tim 1.63 <target name="configure-cpp">
794    
795     <!-- Define tasks and types -->
796 jsr166 1.65
797 tim 1.63 <path id="cpptasks.path">
798     <pathelement location="${lib.dir}/cpptasks.jar"/>
799     </path>
800     <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
801     <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
802 jsr166 1.65
803 tim 1.63 <!-- Set platform property for JNI includes -->
804 jsr166 1.65
805 tim 1.63 <condition property="platform" value="linux">
806     <os name="Linux"/>
807     </condition>
808     <condition property="platform" value="win32">
809     <os family="windows"/>
810     </condition>
811     <condition property="platform" value="solaris">
812     <os name="SunOS"/>
813     </condition>
814 jsr166 1.65
815 tim 1.63 </target>
816 jsr166 1.65
817    
818 tim 1.63 <target name="cppdemo" depends="configure-cpp">
819 jsr166 1.65
820 tim 1.63 <mkdir dir="${build.dir}"/>
821 jsr166 1.65
822 tim 1.63 <cc multithreaded="true"
823 jsr166 1.65 name="g++"
824 tim 1.63 objdir="${build.dir}"
825     outfile="${build.dir}/CppDemo">
826     <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
827     <libset libs="stdc++"/>
828     </cc>
829 jsr166 1.65
830 tim 1.63 <exec executable="${build.dir}/CppDemo">
831     <arg line="count in word frequency of word in command line count"/>
832     </exec>
833 jsr166 1.65
834 tim 1.63 </target>
835 jsr166 1.65
836    
837 tim 1.63 <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
838 jsr166 1.65
839 tim 1.63 <mkdir dir="${build.testcases.dir}"/>
840 jsr166 1.65
841 tim 1.63 <javac srcdir="${test.src.dir}"
842     destdir="${build.testcases.dir}"
843     debug="${build.debug}"
844     debuglevel="${build.debuglevel}"
845     deprecation="${build.deprecation}"
846     source="${build.sourcelevel}"
847     fork="true">
848     <compilerarg value="${bootclasspath.args}"/>
849     <compilerarg line="${build.args}"/>
850     <classpath refid="test.classpath"/>
851     <include name="JniDemo.java"/>
852     </javac>
853 jsr166 1.65
854 tim 1.63 <javah destdir="${build.testcases.dir}"
855     classpathref="test.classpath">
856     <class name="JniDemo"/>
857     </javah>
858 jsr166 1.65
859 tim 1.63 <cc multithreaded="true"
860 jsr166 1.65 name="g++"
861 tim 1.63 objdir="${build.dir}"
862     outfile="${build.dir}/JniDemo"
863     outtype="shared">
864 jsr166 1.65
865 tim 1.63 <compiler>
866     <defineset>
867     <define name="__int64" value="long long"/>
868     </defineset>
869     <includepath location="${java.home}/../include"/>
870     <includepath location="${java.home}/../include/${platform}"/>
871     <compilerarg value="-mno-cygwin"/>
872     </compiler>
873 jsr166 1.65
874 tim 1.63 <linker>
875     <linkerarg value="--add-stdcall-alias"/>
876     </linker>
877 jsr166 1.65
878 tim 1.63 <includepath location="${build.testcases.dir}"/>
879 jsr166 1.65
880 tim 1.63 <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
881 jsr166 1.65
882 tim 1.63 <libset libs="stdc++"/>
883 jsr166 1.65
884 tim 1.63 </cc>
885 jsr166 1.65
886 tim 1.63 <!-- Necessary if windows, harmless if not -->
887     <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
888 jsr166 1.65
889 tim 1.63 <java classname="JniDemo" fork="true">
890     <!-- Watch out: path separator hardwired to semicolon here! -->
891     <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
892     <classpath refid="test.classpath"/>
893 tim 1.64 <arg line="count in word frequency of word in command line count"/>
894 tim 1.63 </java>
895 jsr166 1.65
896 tim 1.1 </target>
897 tim 1.61
898    
899    
900     <!-- Backward compatibility, work in progress (some files not checked in) -->
901 tim 1.1
902 tim 1.59
903    
904     <property name="pretiger.src.dir" location="${build.dir}/pretiger/src"/>
905     <property name="build.pretiger.dir" location="${build.dir}/pretiger/classes"/>
906     <property name="pretiger.jar" location="${build.lib.dir}/jsr166-pretiger.jar"/>
907     <property name="pretiger.sourcelevel" value="1.4"/>
908 jsr166 1.65
909     <target name="defang"
910 tim 1.59 depends="init"
911     description="Generates pre-Tiger compatible source">
912 jsr166 1.65
913 tim 1.59 <delete dir="${pretiger.src.dir}"/>
914     <mkdir dir="${pretiger.src.dir}"/>
915 jsr166 1.65
916 tim 1.59 <exec executable="perl">
917     <arg file="etc/defang.pl"/>
918     <!-- <arg value="-v"/> -->
919     <arg value="-s"/> <arg file="${src.dir}"/>
920     <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
921     </exec>
922 jsr166 1.65
923 tim 1.59 </target>
924    
925     <target name="compile-pretiger"
926     depends="init, configure-compiler, defang"
927     description="Compiles pre-Tiger sources to build folder">
928    
929     <mkdir dir="${build.pretiger.dir}"/>
930    
931     <javac srcdir="${pretiger.src.dir}"
932     destdir="${build.pretiger.dir}"
933     debug="${build.debug}"
934     debuglevel="${build.debuglevel}"
935     deprecation="${build.deprecation}"
936     source="${pretiger.sourcelevel}"
937     fork="true">
938    
939     <compilerarg line="${build.args}"/>
940     <exclude name="**/Thread.java"/>
941    
942     </javac>
943    
944     </target>
945 jsr166 1.65
946 tim 1.59 <target name="pretiger" depends="compile-pretiger">
947    
948     <mkdir dir="${build.lib.dir}"/>
949 jsr166 1.65
950 tim 1.59 <jar destfile="${pretiger.jar}">
951     <fileset dir="${build.pretiger.dir}">
952     </fileset>
953     </jar>
954 jsr166 1.65
955 tim 1.59 </target>
956 tim 1.1
957 dl 1.70 <!-- jsr166x -->
958    
959    
960     <target name="jsr166xcompile"
961     depends="init, configure-compiler"
962     description="Compiles jsr166x sources">
963    
964     <mkdir dir="${build.jsr166x.dir}"/>
965    
966     <javac srcdir="${jsr166xsrc.dir}"
967     destdir="${build.jsr166x.dir}"
968     debug="${build.debug}"
969     debuglevel="${build.debuglevel}"
970     deprecation="${build.deprecation}"
971     source="${build.sourcelevel}"
972     fork="true">
973    
974     <include name="**/*.java"/>
975     <compilerarg line="${build.args}"/>
976    
977     </javac>
978    
979     </target>
980    
981    
982    
983     <target name="jsr166xjar"
984     depends="jsr166xcompile"
985     description="Builds library jar from compiled sources">
986    
987     <mkdir dir="${build.jsr166xlib.dir}"/>
988    
989     <jar destfile="${jsr166xproduct.jar}">
990     <fileset dir="${build.jsr166x.dir}"/>
991     </jar>
992    
993     </target>
994    
995    
996    
997     <target name="jsr166xdocs"
998     description="Builds javadocs with custom tags to build folder">
999    
1000     <delete dir="${build.jsr166xjavadocs.dir}"/>
1001     <mkdir dir="${build.jsr166xjavadocs.dir}"/>
1002    
1003     <javadoc destdir="${build.jsr166xjavadocs.dir}"
1004     link="http://java.sun.com/j2se/1.5.0/docs/api/"
1005     >
1006     <packageset dir="${topsrc.dir}" defaultexcludes="yes">
1007     <include name="jsr166x"/>
1008     </packageset>
1009    
1010    
1011     </javadoc>
1012    
1013     </target>
1014    
1015    
1016     <target name="jsr166xdist"
1017     depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
1018     description="Puts all distributable products in single hierarchy"/>
1019    
1020    
1021    
1022     <target name="jsr166xclean"
1023     description="Removes all build products">
1024    
1025     <delete dir="${build.jsr166x.dir}"/>
1026     <delete dir="${build.jsr166xlib.dir}"/>
1027    
1028     </target>
1029    
1030    
1031    
1032     <target name="jsr166xdist-clean"
1033     description="Removes all build and distribution products">
1034    
1035     </target>
1036    
1037    
1038    
1039     <target name="jsr166xdist-docs"
1040     description="Builds javadocs without custom tags to dist folder">
1041    
1042     <delete dir="${dist.jsr166xjavadocs.dir}"/>
1043     <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
1044    
1045     <javadoc destdir="${dist.jsr166xjavadocs.dir}"
1046     link="http://java.sun.com/j2se/1.5.0/docs/api/"
1047     source="${build.sourcelevel}">
1048    
1049     <packageset dir="${topsrc.dir}" defaultexcludes="yes">
1050     <include name="jsr166x"/>
1051     </packageset>
1052    
1053     </javadoc>
1054    
1055     </target>
1056    
1057     <target name="jsr166xdist-jar"
1058     depends="jsr166xclean, jsr166xjar">
1059    
1060     <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
1061    
1062     </target>
1063    
1064 tim 1.1 </project>