ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.56 by tim, Mon Sep 1 04:21:55 2003 UTC vs.
Revision 1.80 by dl, Sat Aug 1 23:35:22 2009 UTC

# Line 21 | Line 21
21  
22  
23    <!-- Compilation options -->
24 <  <property name="build.sourcelevel"    value="1.5"/>
25 <  <property name="build.docsourcelevel" value="1.4"/>
24 >  <property name="build.sourcelevel"    value="1.6"/>
25    <property name="build.debug"          value="true"/>
26    <property name="build.debuglevel"     value="source,lines,vars"/>
27    <property name="build.deprecation"    value="false"/>
28  
29    <!-- Build locations -->
30 <  <property name="build.dir"            location="build"/>
31 <  <property name="build.classes.dir"    location="${build.dir}/classes"/>
32 <  <property name="build.emulation.dir"  location="${build.dir}/emulation"/>
33 <  <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
34 <  <property name="build.lib.dir"        location="${build.dir}/lib"/>
35 <  <property name="build.ant.dir"        location="${build.dir}/ant"/>
36 <  <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
37 <  <property name="build.sinjdocs.dir"   location="${build.dir}/sinjdocs"/>
38 <  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
39 <  <property name="build.reports.dir"    location="${build.dir}/reports"/>
40 <  <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
41 <  <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
42 <  <property name="build.filter.doccheck.dir" location="${build.dir}/filterdocchk"/>
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 >  <property name="build.loops.dir"             location="${build.dir}/loops"/>
34 >  <property name="build.lib.dir"               location="${build.dir}/lib"/>
35 >  <property name="build.javadocs.dir"          location="${build.dir}/javadocs"/>
36 >  <property name="build.reports.dir"           location="${build.dir}/reports"/>
37 >  <property name="build.jsr166x.dir"           location="${build.dir}/jsr166x"/>
38 >  <property name="build.jsr166xlib.dir"        location="${build.dir}/jsr166xlib"/>
39 >  <property name="build.jsr166xjavadocs.dir"   location="${build.dir}/jsr166xjavadocs"/>
40 >
41 >  <property name="build.jsr166y.dir"           location="${build.dir}/jsr166y"/>
42 >  <property name="build.jsr166ylib.dir"        location="${build.dir}/jsr166ylib"/>
43 >  <property name="build.jsr166yjavadocs.dir"   location="${build.dir}/jsr166yjavadocs"/>
44 >
45 >  <property name="build.extra166y.dir"         location="${build.dir}/extra166y"/>
46 >  <property name="build.extra166ylib.dir"      location="${build.dir}/extra166ylib"/>
47 >  <property name="build.extra166yjavadocs.dir" location="${build.dir}/extra166yjavadocs"/>
48  
49    <!-- Source locations -->
50    <property name="src.dir"              location="${basedir}/src/main"/>
47  <property name="emulation.src.dir"    location="${basedir}/src/emulation"/>
51    <property name="test.src.dir"         location="${basedir}/src/test"/>
52 <  <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
53 <  <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
52 >  <property name="loops.src.dir"        location="${basedir}/src/loops"/>
53 >  <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
54 >  <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
55    <property name="lib.dir"              location="${basedir}/lib"/>
56    <property name="dist.dir"             location="${basedir}/dist"/>
57 <
57 >  <property name="topsrc.dir"           location="${basedir}/src"/>
58 >  <property name="jsr166xsrc.dir"       location="${basedir}/src/jsr166x"/>
59 >  <property name="jsr166ysrc.dir"       location="${basedir}/src/jsr166y"/>
60 >  <property name="extra166ysrc.dir"     location="${basedir}/src/extra166y"/>
61 >  <property name="jdksrc.dir"           location="/home/dl/1.6.0/j2se/martin/j2se/src/share/classes"/>
62    <!-- Distribution locations -->
63 <  <property name="dist.javadocs.dir"    location="${dist.dir}/docs"/>
63 >  <property name="dist.javadocs.dir"           location="${dist.dir}/docs"/>
64 >  <property name="dist.jsr166xjavadocs.dir"    location="${dist.dir}/jsr166xdocs"/>
65 >  <property name="dist.jsr166yjavadocs.dir"    location="${dist.dir}/jsr166ydocs"/>
66 >  <property name="dist.extra166yjavadocs.dir"  location="${dist.dir}/extra166ydocs"/>
67  
68    <!-- Jar locations -->
69    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
70 +  <property name="jsr166xproduct.jar"   location="${build.jsr166xlib.dir}/jsr166x.jar"/>
71 +  <property name="jsr166yproduct.jar"   location="${build.jsr166ylib.dir}/jsr166y.jar"/>
72 +  <property name="extra166yproduct.jar" location="${build.extra166ylib.dir}/extra166y.jar"/>
73    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
60  <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
61  <property name="sinjdoc.jar"          location="${lib.dir}/sinjdoc.jar"/>
62
74  
75 <  <!-- Files excluded from dist-docs and emulation jar -->
76 <  <patternset id="unsafe.exclusion">
66 <    <exclude name="java/util/Random.*"/>
67 <    <exclude name="sun/misc/Unsafe.*"/>
68 <  </patternset>
69 <
70 <  <!-- Files excludes from emulation jar -->
71 <  <patternset id="atomic.exclusion">
72 <    <exclude name="java/util/concurrent/atomic/AtomicBoolean*"/>
73 <    <exclude name="java/util/concurrent/atomic/AtomicInteger*"/>
74 <    <exclude name="java/util/concurrent/atomic/AtomicLong*"/>
75 <    <exclude name="java/util/concurrent/atomic/AtomicReference*"/>
76 <    <exclude name="java/util/concurrent/locks/LockSupport*"/>
77 <    <exclude name="java/util/concurrent/locks/ReentrantLock*"/>
78 <  </patternset>
75 >  <!-- Bootclasspath argument -->
76 >  <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
77  
78 +  <!-- Test classpath -->
79 +  <path id="test.classpath">
80 +    <pathelement location="${build.testcases.dir}"/>
81 +    <pathelement location="${junit.jar}"/>
82 +  </path>
83 +
84 +  <!-- ALoops classpath -->
85 +  <path id="loops.classpath">
86 +    <pathelement location="${build.loops.dir}"/>
87 +  </path>
88  
89  
90    <!-- Main targets -->
91  
92 +  <target name="dists"
93 +          depends="dist, jsr166xdist, jsr166ydist, extra166ydist"
94 +          description="Builds all public jars and docs"/>
95 +
96    <target name="compile"
97 <          depends="init, configure-compiler, prepare-src"
97 >          depends="init, configure-compiler"
98            description="Compiles main sources to build folder">
99  
88    <property name="prepare.src.dir" value="${src.dir}"/>
89
100      <mkdir dir="${build.classes.dir}"/>
101  
102 < <!--
93 <    <echo>javac ${gjc.args}</echo>
94 <    <echo>bootclasspath=${compile.bootclasspath}</echo>
95 < -->
96 <
97 <    <javac srcdir="${prepare.src.dir}"
102 >    <javac srcdir="${src.dir}"
103            destdir="${build.classes.dir}"
104              debug="${build.debug}"
105         debuglevel="${build.debuglevel}"
# Line 102 | Line 107
107             source="${build.sourcelevel}"
108               fork="true">
109  
110 <      <compilerarg    line="${gjc.args}"/>
110 >      <include name="**/*.java"/>
111 >      <compilerarg value="-XDignore.symbol.file"/>
112 >
113   <!--
114 <      <bootclasspath refid="compile.bootclasspath"/>
114 >      <exclude name="java/lang/**"/>
115 >      <compilerarg line="${build.args}"/>
116 >      <compilerarg line="-Xlint -Xmaxwarns 1000"/>
117   -->
118  
119      </javac>
# Line 112 | Line 121
121    </target>
122  
123  
115  <target name="jar"
116          depends="configure-emulation, init-jar, native-jar, emulation-jar"
117          description="Builds library jar from compiled sources"/>
118
124  
125 <  <target name="test"
126 <          depends="init, configure-tests, report-tests"
127 <          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
123 <
124 <
125 <  <target name="checkstyle"
126 <          depends="filter-src"
127 <          description="Reports on style errors in Java source (verbose, mostly chaff)">
125 >  <target name="jar"
126 >          depends="compile"
127 >          description="Builds library jar from compiled sources">
128  
129 <    <taskdef resource="checkstyletask.properties"
130 <            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
129 >    <mkdir dir="${build.lib.dir}"/>
130  
131 <    <checkstyle>
132 <      <formatter type="plain"/>  <!-- also available: type="xml" -->
133 <      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
135 <    </checkstyle>
131 >    <jar destfile="${product.jar}">
132 >      <fileset dir="${build.classes.dir}"/>
133 >    </jar>
134  
135    </target>
136  
137  
140  <target name="doccheck"
141          depends="filter-doccheck"
142          description="Reports on javadoc style errors">
138  
139 <    <delete dir="${build.doccheck.dir}"/>
140 <    <mkdir dir="${build.doccheck.dir}"/>
141 <
147 <    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
148 <         docletpath="${lib.dir}/doccheck.jar"
149 <            destdir="${build.doccheck.dir}">
150 <      <packageset dir="${build.filter.doccheck.dir}"/>
151 <    </javadoc>
152 <
153 <    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
139 >  <target name="test"
140 >          depends="init, configure-tests, report-tests"
141 >          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
142  
155  </target>
143  
144  
145    <target name="docs"
159          depends="filter-src"
146            description="Builds javadocs with custom tags to build folder">
147  
148      <delete dir="${build.javadocs.dir}"/>
149      <mkdir dir="${build.javadocs.dir}"/>
150  
151      <javadoc destdir="${build.javadocs.dir}"
152 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
152 >                link="http://java.sun.com/javase/6/docs/api/"
153              overview="${src.dir}/intro.html"
154 <              source="${build.docsourcelevel}">
155 <
170 <      <tag name="revised" description="Last revised:"/>
171 <      <tag name="spec"    description="Specified by:"/>
172 <      <tag name="editor"  description="Last edited by:"/>
173 <      <tag name="fixme"   description="FIX ME:"/>
154 >            sourcepath="${src.dir}:${jdksrc.dir}"
155 >    >          
156  
157 <      <packageset dir="${build.filter.src.dir}"/>
157 >      <packageset dir="${src.dir}"/>
158  
159      </javadoc>
160  
161    </target>
162  
163  
182  <target name="sinjdocs"
183          depends="configure-tests"
184          description="Builds javadocs with custom tags to build folder">
185
186    <delete dir="${build.sinjdocs.dir}"/>
187    <mkdir dir="${build.sinjdocs.dir}"/>
188
189    <java classname="net.cscott.sinjdoc.Main" fork="true">
190
191      <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
192
193      <classpath>
194        <pathelement location="${sinjdoc.jar}"/>
195        <pathelement location="${lib.dir}/jutil.jar"/>
196        <pathelement location="${lib.dir}/cup.jar"/>
197        <path refid="test.classpath"/>
198      </classpath>
199
200
201      <arg value="-d"/>          <arg value="${build.sinjdocs.dir}"/>
202      <arg value="-sourcepath"/> <arg value="${src.dir}"/>
203      <arg value="-overview"/>   <arg value="${src.dir}/intro.html"/>
204      <arg value="-source"/>     <arg value="${build.sourcelevel}"/>
205      <!-- <arg value="-verbose"/> -->
206      <!-- <arg value="-link"/>  <arg value="http://java.sun.com/j2se/1.4.1/docs/api"/> -->
207      <arg value="java.lang"/>
208      <arg value="java.util"/>
209      <arg value="java.util.concurrent"/>
210      <arg value="java.util.concurrent.atomic"/>
211      <arg value="java.util.concurrent.locks"/>
212
213      <!--
214      <arg value="-help"/>
215      -->
216
217    </java>
218
219  </target>
220
221
222  <target name="strip"
223          depends="init, configure-compiler"
224          description="Strip generics from java source (not working yet)">
225
226    <mkdir dir="${build.stripped.dir}"/>
227
228    <!--
229     # javac -s doesn't reliably generate compilable code. It generates
230     # bridge methods (marked as "synthetic") that can have identical
231     # signatures to existing methods except for the return value.
232     -->
233    <javac srcdir="${src.dir}"
234          destdir="${build.stripped.dir}"
235            debug="${build.debug}"
236       debuglevel="${build.debuglevel}"
237      deprecation="${build.deprecation}"
238           source="${build.sourcelevel}"
239             fork="true">
240
241      <compilerarg    line="${gjc.args} -s"/>
242 <!--
243      <bootclasspath refid="compile.bootclasspath"/>
244 -->
245
246    </javac>
247
248  </target>
249
164  
165    <target name="dist"
166            depends="init, dist-clean, dist-jar, dist-docs"
167            description="Puts all distributable products in single hierarchy"/>
168  
169 +
170    <target name="release"
171            depends="dist"
172            description="Puts entire CVS tree, plus distribution productions, in a jar">
173  
259 <!--
260    #keep build dir? - dl
261    <delete dir="${build.dir}"/>
262 -->
174      <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
175  
176      <jar basedir="${basedir}" destfile="${release.jar}">
177 +      <!-- <exclude name="build/**"/> -->
178        <exclude name="${release.jar}"/>
179        <exclude name="user.properties"/>
180        <exclude name="etc/notes/**"/>
181 <      <exclude name="lib/gjc/2.1/**"/>
181 >      <exclude name="src/emulation/**"/>
182        <exclude name="**/SyntaxTest.java"/>
183 +      <exclude name="**/SuperfluousAbstract.java"/>
184      </jar>
185  
186    </target>
187  
188 +
189 +
190    <target name="clean"
191            description="Removes all build products">
192  
# Line 282 | Line 197
197    </target>
198  
199  
200 +
201    <target name="dist-clean"
202            description="Removes all build and distribution products">
203  
# Line 290 | Line 206
206    </target>
207  
208  
209 +
210    <target name="dist-docs"
294          depends="filter-src"
211            description="Builds javadocs without custom tags to dist folder">
212  
213      <delete dir="${dist.javadocs.dir}"/>
214      <mkdir dir="${dist.javadocs.dir}"/>
215  
216      <javadoc destdir="${dist.javadocs.dir}"
217 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
217 >            link="http://java.sun.com/javase/6/docs/api/"
218              overview="${src.dir}/intro.html"
303              source="${build.docsourcelevel}">
304
305      <packageset dir="${build.filter.src.dir}"/>
219  
220 +            sourcepath="${src.dir}:${jdksrc.dir}"
221 +     >
222 + <!--
223 +      <packageset dir="${src.dir}" defaultexcludes="yes">
224 +      <include name="java/util/concurrent"/>
225 +      <include name="java/util/concurrent/atomic"/>
226 +      <include name="java/util/concurrent/locks"/>
227 +      </packageset>
228 + -->
229 +      <fileset dir="${topsrc.dir}" defaultexcludes="yes">
230 +      <include name="main/java/util/concurrent/*.java"/>
231 +      <include name="main/java/util/concurrent/atomic/*.java"/>
232 +      <include name="main/java/util/concurrent/locks/*.java"/>
233 +      <include name="main/java/util/*.java"/>
234 + <!--
235 +      <include name="main/java/util/concurrent/*.html"/>
236 +      <include name="main/java/util/concurrent/atomic/*.html"/>
237 +      <include name="main/java/util/concurrent/locks/*.html"/>
238 +      <include name="main/java/util/*.html"/>
239 + -->
240 + <!--      <include name="jsr166x/*.java"/> -->
241 +      </fileset>
242      </javadoc>
243  
244    </target>
# Line 323 | Line 258
258    </target>
259  
260  
261 <  <target name="init-jar">
261 >  <target name="dist-jar"
262 >          depends="clean, jar">
263  
264 <    <mkdir dir="${build.lib.dir}"/>
264 >    <copy file="${product.jar}" todir="${dist.dir}"/>
265  
266    </target>
267  
268  
269 <  <target name="native-jar"
270 <          depends="compile"
335 <          unless="build.emulation.true">
269 >  <target name="compile-tests"
270 >          depends="jar">
271  
272 <    <jar destfile="${product.jar}">
338 <      <fileset dir="${build.classes.dir}"/>
339 <    </jar>
272 >    <mkdir dir="${build.testcases.dir}"/>
273  
274 <  </target>
274 >    <javac srcdir="${tck.src.dir}"
275 >          destdir="${build.testcases.dir}"
276 >            debug="${build.debug}"
277 >       debuglevel="${build.debuglevel}"
278 >      deprecation="${build.deprecation}"
279 >           source="${build.sourcelevel}"
280 >             fork="true">
281  
282 +      <compilerarg value="${bootclasspath.args}"/>
283 +      <compilerarg line="${build.args}"/>
284  
285 <  <target name="compile-emulation"
345 <          depends="init, configure-compiler"
346 <          if="build.emulation.true">
285 >      <classpath refid="test.classpath"/>
286  
287 <    <mkdir dir="${build.emulation.dir}"/>
287 >    </javac>
288  
289 <    <javac srcdir="${emulation.src.dir}"
290 <          destdir="${build.emulation.dir}"
289 >    <javac srcdir="${test.src.dir}"
290 >          destdir="${build.testcases.dir}"
291              debug="${build.debug}"
292         debuglevel="${build.debuglevel}"
293        deprecation="${build.deprecation}"
294             source="${build.sourcelevel}"
295               fork="true">
296  
297 <      <compilerarg    line="${gjc.args}"/>
297 >      <include name="jsr166/test/**"/>
298 >
299 >      <compilerarg value="${bootclasspath.args}"/>
300 >      <compilerarg line="${build.args}"/>
301 >
302 >      <classpath refid="test.classpath"/>
303 >
304 >    </javac>
305 >
306   <!--
307 <      <bootclasspath refid="compile.bootclasspath"/>
308 < -->
307 >    <javac srcdir="${jtreg.src.dir}"
308 >          destdir="${build.testcases.dir}"
309 >            debug="${build.debug}"
310 >       debuglevel="${build.debuglevel}"
311 >      deprecation="${build.deprecation}"
312 >           source="${build.sourcelevel}"
313 >             fork="true">
314 >
315 >      <compilerarg value="${bootclasspath.args}"/>
316 >      <compilerarg line="${build.args}"/>
317 >
318 >      <classpath refid="test.classpath"/>
319  
320      </javac>
321 + -->
322  
323    </target>
324  
325  
326 <  <target name="emulation-jar"
327 <          depends="compile-emulation"
328 <          if="build.emulation.true">
326 >  <target name="run-tests"
327 >          depends="compile-tests">
328 >
329 >    <!-- May be overridden by user.properties -->
330 >    <property name="testcase" value="*"/>
331 >
332 >    <mkdir dir="${build.reports.dir}"/>
333  
334 +    <junit printsummary="true"
335 +             showoutput="true"
336 +          errorProperty="junit.failed"
337 +        failureProperty="junit.failed"
338 +                    dir="${build.reports.dir}"
339 +                   fork="true">
340  
341 <    <jar destfile="${product.jar}" duplicate="add">
342 <      <fileset dir="${build.classes.dir}">
343 <        <patternset refid="atomic.exclusion"/>
376 <        <patternset refid="unsafe.exclusion"/>
377 <      </fileset>
378 <      <fileset dir="${build.emulation.dir}"/>
379 <    </jar>
341 >      <jvmarg value="${bootclasspath.args}"/>
342 >      <jvmarg value="-server"/>
343 >      <jvmarg value="-showversion"/>
344  
345 <  </target>
345 >      <classpath refid="test.classpath"/>
346  
347 +      <formatter type="xml"/>
348  
349 <  <target name="dist-jar"
350 <          depends="clean, jar">
349 >      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
350 >        <fileset dir="${tck.src.dir}">
351 >          <include name="**/${testcase}Test.java"/>
352 >        </fileset>
353 >      </batchtest>
354  
355 <    <copy file="${product.jar}" todir="${dist.dir}"/>
355 >      <batchtest todir="${build.reports.dir}" if="do.test.old">
356 >        <fileset dir="${test.src.dir}">
357 >          <include name="jsr166/test/**/${testcase}Test.java"/>
358 >        </fileset>
359 >      </batchtest>
360  
361 <  </target>
361 > <!--
362 >      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
363 >        <fileset dir="${jtreg.src.dir}">
364 >          <include name="**/${testcase}Test.java"/>
365 >        </fileset>
366 >      </batchtest>
367 > -->
368  
369 +    </junit>
370 +
371 +  </target>
372  
392  <target name="compile-ant-filter"
393          depends="init">
373  
374 <    <mkdir dir="${build.ant.dir}"/>
374 >  <target name="report-tests"
375 >          depends="run-tests">
376  
377 <    <javac srcdir="${ant.src.dir}"
378 <          destdir="${build.ant.dir}"
379 <           source="1.4"
377 >    <!-- Sets junit.report.format to frames if redirection is present,
378 >         otherwise sets it to noframes. -->
379 >    <available property="junit.report.format"
380 >                  value="frames"
381 >              classname="org.apache.xalan.lib.Redirect"
382      />
383 +    <property name="junit.report.format" value="noframes"/>
384 +
385 +    <junitreport todir="${build.reports.dir}">
386 +      <fileset dir="${build.reports.dir}">
387 +        <include name="TEST-*.xml"/>
388 +      </fileset>
389 +      <report format="${junit.report.format}" todir="${build.reports.dir}"
390 +      />
391 +    </junitreport>
392 +
393 +    <fail message="Test Cases Failed" if="junit.failed"/>
394  
395    </target>
396  
397  
398 <  <target name="filter-src"
406 <          depends="compile-ant-filter">
398 >  <target name="configure-compiler">
399  
400 <    <mkdir dir="${build.filter.src.dir}"/>
400 >    <property name="unchecked.option" value="-Xlint:unchecked"/>
401  
402 <    <copy todir="${build.filter.src.dir}">
403 <      <fileset dir="${src.dir}">
404 <        <include name="**/*.html"/>
413 <      </fileset>
414 <    </copy>
402 >    <condition property="warnunchecked.arg" value="${unchecked.option}">
403 >      <istrue value="${build.warnunchecked}"/>
404 >    </condition>
405  
406 <    <copy todir="${build.filter.src.dir}">
417 <      <fileset dir="${src.dir}">
418 <        <exclude name="**/*.html"/>
419 <        <patternset refid="unsafe.exclusion"/>
420 <      </fileset>
421 <      <filterchain>
406 >    <property name="warnunchecked.arg" value=""/>
407  
423        <!--
424         # This filter gets rid of angle-bracketed type parameters
425         # so that javadoc can run on the result. The following
426         # heuristic seems to work:
427         #
428         # For all lines not starting with space(s)-asterisk-space(s),
429         #   replace <something> with a space, where there may be more
430         #   than one right angle bracket at the end, and "something"
431         #   must not contain parens or pipes. (This may need some
432         #   tweaking.)
433         -->
408  
409 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
410 <                      classpath="${build.ant.dir}">
437 <          <param name="notmatching" value="^\s+\*\s.*$"/>
438 <          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
439 <          <param name="replacement" value=" "/>
440 <        </filterreader>
409 >    <!-- Common options in javac invocations -->
410 >    <property name="build.args" value="${warnunchecked.arg}"/>
411  
412 +  </target>
413  
443        <!--
444         # This filter uncomments lines beginning with "//@" so that
445         # javadoc can see imports that are needed to resolve links
446         # but that shouldn't be in the compiled code.
447         -->
414  
415 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
416 <                      classpath="${build.ant.dir}">
417 <          <param name="matching"    value="^//@.*$"/>
418 <          <param name="pattern"     value="^//@"/>
419 <          <param name="replacement" value=""/>
420 <        </filterreader>
421 <      </filterchain>
422 <    </copy>
415 >  <target name="configure-tests"
416 >       depends="configure-compiler">
417 >
418 >    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
419 >    <available property="junit.available"
420 >               classname="junit.framework.Protectable"/>
421 >
422 >    <!-- Xalan -->
423 >    <available property="xalan.available"
424 >               classname="org.apache.xalan.Version"/>
425 >
426 >
427 >    <!-- Ant 1.6beta and later don't need or want this check -->
428 >    <!--
429 >    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
430 >          unless="junit.available"/>
431 >
432 >    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
433 >          unless="xalan.available"/>
434 >    -->
435  
436    </target>
437  
438  
439 +  <!-- Various demos and test programs -->
440  
441  
442 <  <target name="filter-doccheck"
443 <          depends="filter-src">
442 >  <target name="loops" depends="init, configure-compiler"
443 >          description="Benchmark from Doug Lea's AQS paper">
444  
445 <    <mkdir dir="${build.filter.doccheck.dir}"/>
445 >    <mkdir dir="${build.loops.dir}"/>
446  
447 <    <copy todir="${build.filter.doccheck.dir}">
448 <      <fileset dir="${build.filter.src.dir}">
449 <        <include name="**/*.html"/>
450 <      </fileset>
451 <    </copy>
447 >    <javac srcdir="${loops.src.dir}"
448 >          destdir="${build.loops.dir}"
449 >            debug="${build.debug}"
450 >       debuglevel="${build.debuglevel}"
451 >      deprecation="${build.deprecation}"
452 >           source="${build.sourcelevel}"
453 >             fork="true">
454  
455 <    <property name="generic.declarations"
456 <             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 {}"
476 <    />
455 >      <compilerarg line="${build.args}"/>
456 >      <classpath refid="loops.classpath"/>
457  
458 <    <copy todir="${build.filter.doccheck.dir}">
479 <      <fileset dir="${build.filter.src.dir}">
480 <        <exclude name="**/*.html"/>
481 <      </fileset>
482 <      <filterchain>
483 <        <!--
484 <         # These two filters try to make the source look like
485 <         # something that doccheck can process. The first removes
486 <         # -source 1.4 assertions and the second adds in a bunch
487 <         # of single letter public nested marker interfaces so that
488 <         # the generic type parameters are recognized.
489 <         -->
490 <
491 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
492 <                      classpath="${build.ant.dir}">
493 <          <param name="matching"    value="^\s*assert[\s ].*$"/>
494 <          <param name="pattern"     value="assert"/>
495 <          <param name="replacement" value="//assert"/>
496 <        </filterreader>
497 <
498 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
499 <                      classpath="${build.ant.dir}">
500 <          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
501 <          <param name="pattern"     value="$"/>
502 <          <param name="replacement" value=" ${generic.declarations}"/>
503 <        </filterreader>
458 >    </javac>
459  
460 <      </filterchain>
461 <    </copy>
460 >    <java classname="ALoops" fork="true">
461 >      <classpath refid="loops.classpath"/>
462 >    </java>
463  
464    </target>
465  
466  
467 <  <target name="compile-tests"
512 <          depends="jar">
467 >  <!-- jsr166x -->
468  
514    <mkdir dir="${build.testcases.dir}"/>
469  
470 < <!--
471 <    <echo>javac ${gjc.args}</echo>
472 <    <echo>bootclasspath=${test.compile.bootclasspath}</echo>
519 <    <echo>classpath="${test.classpath}"</echo>
520 < -->
470 >  <target name="jsr166xcompile"
471 >          depends="init, configure-compiler"
472 >          description="Compiles jsr166x sources">
473  
474 <    <javac srcdir="${test.src.dir}"
475 <          destdir="${build.testcases.dir}"
474 >    <mkdir dir="${build.jsr166x.dir}"/>
475 >
476 >    <javac srcdir="${jsr166xsrc.dir}"
477 >          destdir="${build.jsr166x.dir}"
478              debug="${build.debug}"
479         debuglevel="${build.debuglevel}"
480        deprecation="${build.deprecation}"
481             source="${build.sourcelevel}"
482               fork="true">
483  
484 <      <compilerarg    line="${gjc.args}"/>
485 < <!--      
532 <      <bootclasspath refid="test.compile.bootclasspath"/>
533 < -->      
534 <      <classpath     refid="test.classpath"/>
535 <      
536 <      <include name="java/**"/>
537 <      <include name="jsr166/**"/>
484 >      <include name="**/*.java"/>
485 >      <compilerarg line="${build.args}"/>
486  
487      </javac>
488  
489    </target>
490  
491  
544  <target name="run-tests"
545          depends="compile-tests">
492  
493 <    <!-- May be overridden by user.properties -->
494 <    <property name="testcase" value="*"/>
493 >  <target name="jsr166xjar"
494 >          depends="jsr166xcompile"
495 >          description="Builds library jar from compiled sources">
496  
497 <    <mkdir dir="${build.reports.dir}"/>
497 >    <mkdir dir="${build.jsr166xlib.dir}"/>
498  
499 <    <junit printsummary="true"
500 <             showoutput="true"
501 <          errorProperty="junit.failed"
555 <        failureProperty="junit.failed"
556 <                    dir="${build.reports.dir}"
557 <                   fork="true">
499 >    <jar destfile="${jsr166xproduct.jar}">
500 >      <fileset dir="${build.jsr166x.dir}"/>
501 >    </jar>
502  
503 <      <jvmarg value="-Xbootclasspath:${test.run.bootclasspath}"/>
503 >  </target>
504  
561      <formatter type="xml"/>
505  
563      <batchtest todir="${build.reports.dir}">
564        <fileset dir="${test.src.dir}">
565          <include name="java/**/${testcase}Test.java"/>
566          <include name="jsr166/**/${testcase}Test.java"/>
567        </fileset>
568      </batchtest>
506  
507 <    </junit>
507 >  <target name="jsr166xdocs"
508 >          description="Builds javadocs with custom tags to build folder">
509 >
510 >    <delete dir="${build.jsr166xjavadocs.dir}"/>
511 >    <mkdir dir="${build.jsr166xjavadocs.dir}"/>
512 >
513 >    <javadoc destdir="${build.jsr166xjavadocs.dir}"
514 >             link="http://java.sun.com/javase/6/docs/api/"
515 >
516 >            sourcepath="${topsrc.dir}:${jdksrc.dir}"
517 >
518 >    >
519 >      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
520 >      <include name="jsr166x"/>
521 >      </packageset>
522 >
523 >
524 >    </javadoc>
525  
526    </target>
527  
528  
529 <  <target name="report-tests"
530 <          depends="run-tests">
529 >  <target name="jsr166xdist"
530 >          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
531 >          description="Puts all distributable products in single hierarchy"/>
532  
578    <!-- Sets junit.report.format to frames if redirection is present,
579         otherwise sets it to noframes. -->
580    <available property="junit.report.format"
581                  value="frames"
582              classname="org.apache.xalan.lib.Redirect"
583    />
584    <property name="junit.report.format" value="noframes"/>
533  
586    <junitreport todir="${build.reports.dir}">
587      <fileset dir="${build.reports.dir}">
588        <include name="TEST-*.xml"/>
589      </fileset>
590      <report styledir="${stylesheet.dir}"
591                format="${junit.report.format}"
592                 todir="${build.reports.dir}"
593      />
594    </junitreport>
534  
535 <    <fail message="Test Cases Failed" if="junit.failed"/>
535 >  <target name="jsr166xclean"
536 >          description="Removes all build products">
537 >
538 >    <delete dir="${build.jsr166x.dir}"/>
539 >    <delete dir="${build.jsr166xlib.dir}"/>
540  
541    </target>
542  
543  
601  <target name="configure-compiler">
544  
545 <    <property name="gjc.version"
546 <             value="2.2"/>
545 >  <target name="jsr166xdist-clean"
546 >          description="Removes all build and distribution products">
547  
548 <    <condition property="novariance.arg" value="-novariance">
607 <      <and>
608 <        <equals arg1="${gjc.version}" arg2="2.0"/>
609 <        <or>
610 <          <not><isset property="gjc.novariance"/></not>
611 <          <istrue value="${gjc.novariance}"/>
612 <        </or>
613 <      </and>
614 <    </condition>
548 >  </target>
549  
616    <property name="novariance.arg"
617             value=""/>
550  
619    <property name="gjc.dir"
620             value="${lib.dir}/gjc"/>
551  
552 <    <property name="javac.jar"
553 <          location="${gjc.dir}/${gjc.version}/javac.jar"/>
552 >  <target name="jsr166xdist-docs"
553 >          description="Builds javadocs without custom tags to dist folder">
554  
555 <    <property name="collect.jar"
556 <          location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/>
555 >    <delete dir="${dist.jsr166xjavadocs.dir}"/>
556 >    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
557  
558 < <!--
559 <    <property name="unchecked.option" value="-warnunchecked"/>
560 < -->
558 >    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
559 >                link="http://java.sun.com/javase/6/docs/api/"
560 >              source="${build.sourcelevel}">
561 >
562 >      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
563 >      <include name="jsr166x"/>
564 >      </packageset>
565  
566 <    <property name="unchecked.option" value="-Xlint:unchecked"/>
566 >    </javadoc>
567  
568 <    <condition property="warnunchecked.arg" value="${unchecked.option}">
635 <      <istrue value="${gjc.warnunchecked}"/>
636 <    </condition>
568 >  </target>
569  
570 <    <property name="warnunchecked.arg" value=""/>
571 <    
640 <    <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
641 <      <istrue value="${build.nothreads}"/>
642 <    </condition>
570 >  <target name="jsr166xdist-jar"
571 >          depends="jsr166xclean, jsr166xjar">
572  
573 +    <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
574  
575 <    <!--
646 <     ! Bootclasspath munging for source compilation.
647 <     -->
575 >  </target>
576  
577 <    <path id="pre.bootclasspath">
650 < <!--
651 <      <pathelement location="${javac.jar}"/>
652 < -->
653 <    </path>
577 >  <!-- jsr166y -->
578  
655    <path id="compile.bootclasspath">
656      <pathelement location="${build.classes.dir}"/>
657 <!--      
658      <pathelement location="${collect.jar}"/>
659 -->
660      <pathelement location="${rt.jar}"/>
661    </path>
579  
580 <    <!-- Flatten paths into platform-appropriate strings -->
581 <    <property name="pre.bootclasspath"     refid="pre.bootclasspath"/>
582 <    <property name="compile.bootclasspath" refid="compile.bootclasspath"/>
580 >  <target name="jsr166ycompile"
581 >          depends="init, configure-compiler"
582 >          description="Compiles jsr166y sources">
583  
584 +    <mkdir dir="${build.jsr166y.dir}"/>
585  
586 <    <!-- Common options in javac invocations -->
587 < <!--
588 <    <property name="gjc.args"
589 <             value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}"
590 <    />
591 < -->
592 <    <property name="gjc.args" value="${warnunchecked.arg} ${novariance.arg}"/>
586 >    <javac srcdir="${jsr166ysrc.dir}"
587 >          destdir="${build.jsr166y.dir}"
588 >            debug="${build.debug}"
589 >       debuglevel="${build.debuglevel}"
590 >      deprecation="${build.deprecation}"
591 >           source="${build.sourcelevel}"
592 >             fork="true">
593 >
594 >      <include name="**/*.java"/>
595 >      <compilerarg line="${build.args}"/>
596 >      <compilerarg value="${bootclasspath.args}"/>
597 >
598 > <!--       <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
599 >
600 >    </javac>
601  
602    </target>
603  
604  
679  <target name="prepare-src"
680          depends="configure-compiler"
681          if="prepare.src.dir">
605  
606 <    <mkdir dir="${prepare.src.dir}"/>
607 <    <copy todir="${prepare.src.dir}">
608 <      <fileset dir="${src.dir}">
609 <        <exclude name="java/lang/**"/>
610 <      </fileset>
611 <    </copy>
606 >  <target name="jsr166yjar"
607 >          depends="jsr166ycompile"
608 >          description="Builds library jar from compiled sources">
609 >
610 >    <mkdir dir="${build.jsr166ylib.dir}"/>
611 >
612 >    <jar destfile="${jsr166yproduct.jar}" index="true">
613 >      <fileset dir="${build.jsr166y.dir}"/>
614 >    </jar>
615  
616    </target>
617  
618  
693  <target name="configure-emulation">
619  
620 <    <condition property="build.emulation.true">
621 <      <istrue value="${build.emulation}"/>
622 <    </condition>
620 >  <target name="jsr166ydocs"
621 >          description="Builds javadocs with custom tags to build folder">
622 >
623 >    <delete dir="${build.jsr166yjavadocs.dir}"/>
624 >    <mkdir dir="${build.jsr166yjavadocs.dir}"/>
625 >
626 >    <javadoc destdir="${build.jsr166yjavadocs.dir}"
627 >                link="http://java.sun.com/javase/6/docs/api/"
628 >            sourcepath="${topsrc.dir}:${jdksrc.dir}"
629 >
630 >    >
631 >      <packageset dir="${topsrc.dir}" defaultexcludes="no">
632 >      <include name="jsr166y"/>
633 >      </packageset>
634 >
635 >
636 >    </javadoc>
637  
638    </target>
639  
640  
641 <  <target name="configure-tests"
642 <       depends="configure-compiler">
641 >  <target name="jsr166ydist"
642 >          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydist-docs"
643 >          description="Puts all distributable products in single hierarchy"/>
644  
705    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
706    <available property="junit.available"
707               classname="junit.framework.Protectable"/>
645  
709    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
710          unless="junit.available"/>
646  
647 <    <!-- Xalan -->
648 <    <available property="xalan.available"
714 <               classname="org.apache.xalan.Version"/>
647 >  <target name="jsr166yclean"
648 >          description="Removes all build products">
649  
650 <    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
651 <          unless="xalan.available"/>
650 >    <delete dir="${build.jsr166y.dir}"/>
651 >    <delete dir="${build.jsr166ylib.dir}"/>
652  
653 +  </target>
654  
720    <!--
721     ! Bootclasspath munging for testing, so JUnit can test our local
722     ! modifications to java.*.
723     -->
655  
725    <path id="test.classpath">
726      <pathelement location="${product.jar}"/>
727      <pathelement location="${rt.jar}"/>
728      <pathelement location="${build.testcases.dir}"/>
729      <pathelement location="${junit.jar}"/>
730    </path>
656  
657 <    <path id="test.compile.bootclasspath">
658 <      <pathelement location="${javac.jar}"/>
659 <      <pathelement location="${collect.jar}"/>
660 <      <pathelement location="${rt.jar}"/>
661 <    </path>
657 >  <target name="jsr166ydist-clean"
658 >          description="Removes all build and distribution products">
659 >
660 >  </target>
661 >
662 >  <target name="jsr166ydist-docs"
663 >          description="Builds javadocs without custom tags to dist folder">
664 >
665 >    <delete dir="${dist.jsr166yjavadocs.dir}"/>
666 >    <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
667 >
668 >    <javadoc destdir="${dist.jsr166yjavadocs.dir}"
669 >                link="http://java.sun.com/javase/6/docs/api/"
670 >              source="${build.sourcelevel}"
671 >            sourcepath="${topsrc.dir}:${jdksrc.dir}"
672 >            >          
673 >      <fileset dir="${topsrc.dir}" defaultexcludes="yes">
674 >      <include name="jsr166y/*.java"/>
675 >            </fileset>
676 >    </javadoc>
677 >
678 >  </target>
679  
680 <    <path id="test.run.bootclasspath">
681 < <!--    
740 <      <pathelement location="${javac.jar}"/>
741 < -->      
742 <      <path refid="test.classpath"/>
743 <    </path>
680 >  <target name="jsr166ydist-jar"
681 >          depends="jsr166yclean, jsr166yjar">
682  
683 <    <!-- Flatten test classpaths into platform-appropriate strings -->
746 <    <property name="test.classpath"             refid="test.classpath"/>
747 <    <property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/>
748 <    <property name="test.run.bootclasspath"     refid="test.run.bootclasspath"/>
683 >    <copy file="${jsr166yproduct.jar}" todir="${dist.dir}"/>
684  
685    </target>
686  
687 +  <!-- extra166y -->
688  
689  
690 <  <!-- Anthill targets -->
690 >  <target name="extra166ycompile"
691 >          depends="init, configure-compiler, jsr166ycompile"
692 >          description="Compiles extra166y sources">
693 >
694 >    <mkdir dir="${build.extra166y.dir}"/>
695 >
696 >    <javac srcdir="${extra166ysrc.dir}"
697 >          destdir="${build.extra166y.dir}"
698 >            debug="${build.debug}"
699 >            classpath="${jsr166yproduct.jar}"
700 >       debuglevel="${build.debuglevel}"
701 >      deprecation="${build.deprecation}"
702 >           source="${build.sourcelevel}"
703 >             fork="true">
704 >
705 >      <include name="**/*.java"/>
706 >      <compilerarg line="${build.args}"/>
707 >      <compilerarg value="${bootclasspath.args}"/>
708 >
709 > <!--       <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
710 >
711 >    </javac>
712  
756  <target name="anthill-build">
757  
758    <!-- Override this in user.properties -->
759    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
760    
761    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
762      <arg value="-Xmx256000000"/>
763      <!-- classpath of new JVM -->
764      <arg value="-classpath"/> <arg path="${java.class.path}"/>
765      <!-- location of Ant home directory -->
766      <arg value="-Dant.home=${ant.home}"/>
767      <!-- the Ant main class -->
768      <arg value="org.apache.tools.ant.Main"/>
769      <!-- The build file -->
770      <arg value="-buildfile"/>  <arg value="build.xml"/>
771      <!-- the target to build on the new Ant instance -->
772      <arg value="-DJAVA_HOME=${tiger.home}"/>
773      <arg value="do-anthill-build"/>
774    </exec>
713    </target>
776  
777  <target name="do-anthill-build"
778          depends="jar, test, docs, dist-docs"/>
714  
780  <target name="anthill-publish">
715  
782    <copy todir="${deployDir}/docs/private">
783      <fileset dir="${build.javadocs.dir}"/>
784    </copy>
716  
717 <    <copy todir="${deployDir}/docs/public">
718 <      <fileset dir="${dist.javadocs.dir}"/>
719 <    </copy>
717 >  <target name="extra166yjar"
718 >          depends="extra166ycompile"
719 >          description="Builds library jar from compiled sources">
720  
721 <    <copy tofile="${deployDir}/index.html"
791 <          file="${basedir}/etc/anthill-index.html"/>
721 >    <mkdir dir="${build.extra166ylib.dir}"/>
722  
723 <    <copy todir="${deployDir}/notes">
724 <      <fileset dir="${basedir}/etc/notes"/>
725 <    </copy>
723 >    <jar destfile="${extra166yproduct.jar}" index="true">
724 >      <fileset dir="${build.extra166y.dir}"/>
725 >    </jar>
726  
727    </target>
728  
729  
800  <target name="ng" depends="test">
801    <java classname="SuperfluousAbstract" fork="true">
730  
731 <      <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
731 >  <target name="extra166ydocs"
732 >          description="Builds javadocs with custom tags to build folder">
733 >
734 >    <delete dir="${build.extra166yjavadocs.dir}"/>
735 >    <mkdir dir="${build.extra166yjavadocs.dir}"/>
736 >
737 >    <javadoc destdir="${build.extra166yjavadocs.dir}"
738 >                link="http://java.sun.com/javase/6/docs/api/"
739 >            sourcepath="${topsrc.dir}:${jdksrc.dir}"
740 >
741 >    >
742 >      <packageset dir="${topsrc.dir}" defaultexcludes="no">
743 >      <include name="extra166y"/>
744 >      </packageset>
745 >
746 >
747 >    </javadoc>
748  
805    </java>
749    </target>
750  
751  
752 +  <target name="extra166ydist"
753 +          depends="extra166ydist-clean, extra166ydist-jar, extra166ydist-docs"
754 +          description="Puts all distributable products in single hierarchy"/>
755 +
756 +
757 +
758 +  <target name="extra166yclean"
759 +          description="Removes all build products">
760 +
761 +    <delete dir="${build.extra166y.dir}"/>
762 +    <delete dir="${build.extra166ylib.dir}"/>
763 +
764 +  </target>
765 +
766 +
767 +
768 +  <target name="extra166ydist-clean"
769 +          description="Removes all build and distribution products">
770 +
771 +  </target>
772 +
773 +  <target name="extra166ydist-docs"
774 +          description="Builds javadocs without custom tags to dist folder">
775 +
776 +    <delete dir="${dist.extra166yjavadocs.dir}"/>
777 +    <mkdir dir="${dist.extra166yjavadocs.dir}"/>
778 +
779 +    <javadoc destdir="${dist.extra166yjavadocs.dir}"
780 +                link="http://java.sun.com/javase/6/docs/api/"
781 +              source="${build.sourcelevel}"
782 +            sourcepath="${topsrc.dir}:${jdksrc.dir}"
783 +            >
784 +      <fileset dir="${topsrc.dir}" defaultexcludes="yes">
785 +      <include name="extra166y/*.java"/>
786 +            </fileset>
787 +    </javadoc>
788 +
789 +  </target>
790 +
791 +  <target name="extra166ydist-jar"
792 +          depends="extra166yclean, extra166yjar">
793 +
794 +    <copy file="${extra166yproduct.jar}" todir="${dist.dir}"/>
795 +
796 +  </target>
797 +
798   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines