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.74 by dl, Thu Sep 13 11:19:25 2007 UTC vs.
Revision 1.75 by jsr166, Tue Sep 18 12:46:40 2007 UTC

# Line 30 | Line 30
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.j1.dir"         location="${build.dir}/j1"/>
33    <property name="build.loops.dir"      location="${build.dir}/loops"/>
34    <property name="build.lib.dir"        location="${build.dir}/lib"/>
36  <property name="build.ant.dir"        location="${build.dir}/ant"/>
35    <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
36    <property name="build.reports.dir"    location="${build.dir}/reports"/>
39  <property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/>
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.dc-filter.dir"  location="${build.dir}/filterdocchk"/>
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"/>
# Line 51 | Line 45
45    <!-- Source locations -->
46    <property name="src.dir"              location="${basedir}/src/main"/>
47    <property name="test.src.dir"         location="${basedir}/src/test"/>
54  <property name="j1.src.dir"           location="${basedir}/src/javaone"/>
48    <property name="loops.src.dir"        location="${basedir}/src/loops"/>
49    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
50    <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
58  <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
59  <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
51    <property name="lib.dir"              location="${basedir}/lib"/>
52    <property name="dist.dir"             location="${basedir}/dist"/>
53    <property name="topsrc.dir"           location="${basedir}/src"/>
# Line 73 | Line 64
64    <property name="jsr166xproduct.jar"   location="${build.jsr166xlib.dir}/jsr166x.jar"/>
65    <property name="jsr166yproduct.jar"   location="${build.jsr166ylib.dir}/jsr166y.jar"/>
66    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
76  <property name="concurrent.jar"       location="${lib.dir}/concurrent.jar"/>
67  
68    <!-- Bootclasspath argument -->
69    <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
# Line 89 | Line 79
79      <pathelement location="${build.loops.dir}"/>
80    </path>
81  
92  <!-- J1 classpath -->
93  <path id="j1.classpath">
94    <pathelement location="${build.classes.dir}"/>
95    <pathelement location="${build.j1.dir}"/>
96    <pathelement location="${junit.jar}"/>
97
98    <!-- Include dl.u.c for BoundedBuffer comparison -->
99    <pathelement location="${concurrent.jar}"/>
100  </path>
101
82  
83    <!-- Main targets -->
84  
# Line 172 | Line 152
152  
153  
154  
175  <target name="doccheck"
176          depends="filter-doccheck"
177          description="Reports on javadoc style errors">
178
179    <delete dir="${build.doccheck.dir}"/>
180    <mkdir dir="${build.doccheck.dir}"/>
181
182    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
183         docletpath="${lib.dir}/doccheck.jar"
184            destdir="${build.doccheck.dir}">
185      <packageset dir="${build.dc-filter.dir}"/>
186    </javadoc>
187
188    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
189
190  </target>
191
192
193
194  <target name="checkstyle"
195          depends="filter-src"
196          description="Reports on style errors in Java source (verbose, mostly chaff)">
197
198    <taskdef resource="checkstyletask.properties"
199            classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
200
201    <mkdir dir="${build.checkstyle.dir}"/>
202
203    <checkstyle config="etc/checkstyle/sun_checks.xml"
204       failOnViolation="false">
205      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
206      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
207    </checkstyle>
208
209    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
210          out="${build.checkstyle.dir}/checkstyle-report.html"
211        style="${stylesheet.dir}/checkstyle-frames.xsl"/>
212
213  </target>
214
215
216
155    <target name="dist"
156            depends="init, dist-clean, dist-jar, dist-docs"
157            description="Puts all distributable products in single hierarchy"/>
# Line 319 | Line 257
257    </target>
258  
259  
322  <target name="compile-ant-filter"
323          depends="init">
324
325    <mkdir dir="${build.ant.dir}"/>
326
327    <javac srcdir="${ant.src.dir}"
328          destdir="${build.ant.dir}"
329           source="1.4"/>
330
331  </target>
332
333
334  <target name="filter-src"
335          depends="compile-ant-filter">
336
337    <mkdir dir="${build.filter.src.dir}"/>
338
339    <copy todir="${build.filter.src.dir}">
340      <fileset dir="${src.dir}">
341        <include name="**/*.html"/>
342      </fileset>
343    </copy>
344
345    <copy todir="${build.filter.src.dir}">
346      <fileset dir="${src.dir}">
347        <exclude name="**/*.html"/>
348        <!-- Files excluded from dist-docs -->
349        <exclude name="java/util/Random.*"/>
350        <exclude name="sun/misc/Unsafe.*"/>
351      </fileset>
352      <!--
353      <filterchain>
354      -->
355
356        <!--
357         # This filter gets rid of angle-bracketed type parameters
358         # so that javadoc can run on the result. The following
359         # heuristic seems to work:
360         #
361         # For all lines not starting with space(s)-asterisk-space(s),
362         #   replace <something> with a space, where there may be more
363         #   than one right angle bracket at the end, and "something"
364         #   must not contain parens or pipes. (This may need some
365         #   tweaking.)
366         -->
367
368        <!--
369        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
370                      classpath="${build.ant.dir}">
371          <param name="notmatching" value="^\s+\*\s.*$"/>
372          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
373          <param name="replacement" value=" "/>
374        </filterreader>
375        -->
376
377      <!--
378      </filterchain>
379      -->
380    </copy>
381
382  </target>
383
384
385  <target name="filter-doccheck"
386          depends="filter-src">
387
388    <mkdir dir="${build.dc-filter.dir}"/>
389
390    <copy todir="${build.dc-filter.dir}">
391      <fileset dir="${build.filter.src.dir}">
392        <include name="**/*.html"/>
393      </fileset>
394    </copy>
395
396    <property name="generic.declarations"
397             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 {}"
398    />
399
400    <copy todir="${build.dc-filter.dir}">
401      <fileset dir="${build.filter.src.dir}">
402        <exclude name="**/*.html"/>
403      </fileset>
404      <filterchain>
405        <!--
406         # These two filters try to make the source look like
407         # something that doccheck can process. The first removes
408         # -source 1.4 assertions and the second adds in a bunch
409         # of single letter public nested marker interfaces so that
410         # the generic type parameters are recognized.
411         -->
412
413        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
414                      classpath="${build.ant.dir}">
415          <param name="matching"    value="^\s*assert[\s ].*$"/>
416          <param name="pattern"     value="assert"/>
417          <param name="replacement" value="//assert"/>
418        </filterreader>
419
420        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
421                      classpath="${build.ant.dir}">
422          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
423          <param name="pattern"     value="$"/>
424          <param name="replacement" value=" ${generic.declarations}"/>
425        </filterreader>
426
427      </filterchain>
428    </copy>
429
430  </target>
431
432
260    <target name="compile-tests"
261            depends="jar">
262  
# Line 550 | Line 377
377        <fileset dir="${build.reports.dir}">
378          <include name="TEST-*.xml"/>
379        </fileset>
380 <      <report styledir="${stylesheet.dir}"
554 <                format="${junit.report.format}"
555 <                 todir="${build.reports.dir}"
380 >      <report format="${junit.report.format}" todir="${build.reports.dir}"
381        />
382      </junitreport>
383  
# Line 602 | Line 427
427    </target>
428  
429  
605
606  <!-- Anthill targets -->
607
608  <target name="anthill-build">
609
610    <!-- Override this in user.properties -->
611    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
612
613    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
614      <arg value="-Xmx256000000"/>
615      <!-- classpath of new JVM -->
616      <arg value="-classpath"/> <arg path="${java.class.path}"/>
617      <!-- location of Ant home directory -->
618      <arg value="-Dant.home=${ant.home}"/>
619      <!-- the Ant main class -->
620      <arg value="org.apache.tools.ant.Main"/>
621      <!-- The build file -->
622      <arg value="-buildfile"/>  <arg value="build.xml"/>
623      <!-- the target to build on the new Ant instance -->
624      <arg value="-DJAVA_HOME=${tiger.home}"/>
625      <arg value="do-anthill-build"/>
626    </exec>
627  </target>
628
629  <target name="do-anthill-build"
630          depends="jar, test, docs, dist-docs"/>
631
632  <target name="anthill-publish">
633
634    <copy todir="${deployDir}/docs/private">
635      <fileset dir="${build.javadocs.dir}"/>
636    </copy>
637
638    <copy todir="${deployDir}/docs/public">
639      <fileset dir="${dist.javadocs.dir}"/>
640    </copy>
641
642    <copy tofile="${deployDir}/index.html"
643          file="${basedir}/etc/anthill-index.html"/>
644
645    <copy todir="${deployDir}/notes">
646      <fileset dir="${basedir}/etc/notes"/>
647    </copy>
648
649  </target>
650
651
652
430    <!-- Various demos and test programs -->
431  
432  
656  <target name="sample" depends="init, configure-compiler"
657          description="Standalone demo program">
658
659    <mkdir dir="${build.testcases.dir}"/>
660
661    <javac srcdir="${test.src.dir}"
662          destdir="${build.testcases.dir}"
663            debug="${build.debug}"
664       debuglevel="${build.debuglevel}"
665      deprecation="${build.deprecation}"
666           source="${build.sourcelevel}"
667             fork="true">
668
669      <include name="jsr166/test/Sample.java"/>
670
671    </javac>
672
673    <copy todir="${build.testcases.dir}">
674      <fileset dir="${test.src.dir}">
675        <include name="**/*.properties"/>
676      </fileset>
677    </copy>
678
679
680    <java classname="jsr166.test.Sample" fork="true">
681      <classpath refid="test.classpath"/>
682      <!-- <jvmarg value="-ea"/> -->
683      <!-- <jvmarg value="-server"/> -->
684      <!-- <arg value="1000"/> -->
685    </java>
686  </target>
687
688
433    <target name="loops" depends="init, configure-compiler"
434            description="Benchmark from Doug Lea's AQS paper">
435  
# Line 711 | Line 455
455    </target>
456  
457  
714  <target name="compile-j1" depends="init, configure-compiler, compile">
715
716    <mkdir dir="${build.j1.dir}"/>
717
718    <javac srcdir="${j1.src.dir}"
719          destdir="${build.j1.dir}"
720            debug="${build.debug}"
721       debuglevel="${build.debuglevel}"
722      deprecation="${build.deprecation}"
723           source="${build.sourcelevel}" >
724
725      <include name="**/*.java"/>
726      <exclude name="**/dijkstra/**"/>
727
728      <compilerarg line="${build.args}"/>
729      <classpath refid="j1.classpath"/>
730
731    </javac>
732
733  </target>
734
735
736  <target name="sw" depends="compile-j1"
737          description="Runs the SwingWorker demo">
738
739    <!--
740    <java classname="jsr166.swing.SwingWorkerDemo" fork="true">
741      <classpath refid="j1.classpath"/>
742    </java>
743    -->
744
745    <copy todir="${build.j1.dir}" file="${j1.src.dir}/jsr166/swing/SwingWorker.html"/>
746
747    <exec dir="${build.j1.dir}" executable="appletviewer.exe">
748      <arg value="${build.j1.dir}/SwingWorker.html"/>
749    </exec>
750
751  </target>
752
753  <target name="j1" depends="compile-j1"
754          description="Runs a standalone JavaOne program">
755
756    <java classname="${j1.test}" fork="true">
757      <classpath refid="j1.classpath"/>
758      <jvmarg value="-client"/>
759
760      <!-- TestPseudoRandom args -->
761      <arg value="2"/>
762      <arg value="25"/>
763      <arg value="100000"/>
764
765      <!-- WebCrawler args -->
766      <!--
767      <arg value="jsr166.webcrawler.WebCrawler3"/>
768      <arg value="http://www.priorartisans.com"/>
769      <arg value="25"/>
770      -->
771
772    </java>
773
774  </target>
775
776
777  <target name="test-j1" depends="compile-j1"
778          description="Runs testcases from the JavaOne source directories">
779
780    <junit printsummary="true"
781             showoutput="true"
782          errorProperty="junit.failed"
783        failureProperty="junit.failed"
784                    dir="${build.j1.dir}"
785                   fork="true">
786
787      <!-- <jvmarg value="-server"/> -->
788      <classpath refid="j1.classpath"/>
789      <formatter type="xml"/>
790
791      <batchtest todir="${build.j1.dir}">
792        <fileset dir="${j1.src.dir}">
793          <include name="**/*Test.java"/>
794        </fileset>
795      </batchtest>
796
797    </junit>
798
799    <available property="junit.report.format"
800                  value="frames"
801              classname="org.apache.xalan.lib.Redirect"/>
802    <property name="junit.report.format" value="noframes"/>
803
804    <junitreport todir="${build.j1.dir}">
805      <fileset dir="${build.j1.dir}">
806        <include name="TEST-*.xml"/>
807      </fileset>
808      <report styledir="${stylesheet.dir}"
809                format="${junit.report.format}"
810                 todir="${build.j1.dir}"
811      />
812    </junitreport>
813
814    <fail message="Test Cases Failed" if="junit.failed"/>
815
816  </target>
817
818
819
820  <!-- C++ and JNI definitions and demos -->
821
822  <target name="configure-cpp">
823
824    <!-- Define tasks and types -->
825
826    <path id="cpptasks.path">
827      <pathelement location="${lib.dir}/cpptasks.jar"/>
828    </path>
829    <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
830    <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
831
832    <!-- Set platform property for JNI includes -->
833
834    <condition property="platform" value="linux">
835      <os name="Linux"/>
836    </condition>
837    <condition property="platform" value="win32">
838      <os family="windows"/>
839    </condition>
840    <condition property="platform" value="solaris">
841      <os name="SunOS"/>
842    </condition>
843
844  </target>
845
846
847  <target name="cppdemo" depends="configure-cpp">
848
849    <mkdir dir="${build.dir}"/>
850
851    <cc multithreaded="true"
852                 name="g++"
853               objdir="${build.dir}"
854              outfile="${build.dir}/CppDemo">
855      <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
856      <libset libs="stdc++"/>
857    </cc>
858
859    <exec executable="${build.dir}/CppDemo">
860      <arg line="count in word frequency of word in command line count"/>
861    </exec>
862
863  </target>
864
865
866  <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
867
868    <mkdir dir="${build.testcases.dir}"/>
869
870    <javac srcdir="${test.src.dir}"
871          destdir="${build.testcases.dir}"
872            debug="${build.debug}"
873       debuglevel="${build.debuglevel}"
874      deprecation="${build.deprecation}"
875           source="${build.sourcelevel}"
876             fork="true">
877      <compilerarg value="${bootclasspath.args}"/>
878      <compilerarg line="${build.args}"/>
879      <classpath refid="test.classpath"/>
880      <include name="JniDemo.java"/>
881    </javac>
882
883    <javah destdir="${build.testcases.dir}"
884      classpathref="test.classpath">
885      <class name="JniDemo"/>
886    </javah>
887
888    <cc multithreaded="true"
889                 name="g++"
890               objdir="${build.dir}"
891              outfile="${build.dir}/JniDemo"
892              outtype="shared">
893
894      <compiler>
895        <defineset>
896          <define name="__int64" value="long long"/>
897        </defineset>
898        <includepath location="${java.home}/../include"/>
899        <includepath location="${java.home}/../include/${platform}"/>
900        <compilerarg value="-mno-cygwin"/>
901      </compiler>
902
903      <linker>
904        <linkerarg value="--add-stdcall-alias"/>
905      </linker>
906
907      <includepath location="${build.testcases.dir}"/>
908
909      <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
910
911      <libset libs="stdc++"/>
912
913    </cc>
914
915    <!-- Necessary if windows, harmless if not -->
916    <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
917
918    <java classname="JniDemo" fork="true">
919      <!-- Watch out: path separator hardwired to semicolon here! -->
920      <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
921      <classpath refid="test.classpath"/>
922      <arg line="count in word frequency of word in command line count"/>
923    </java>
924
925  </target>
926
927
928
929  <!-- Backward compatibility, work in progress (some files not checked in) -->
930
931
932
933  <property name="pretiger.src.dir"     location="${build.dir}/pretiger/src"/>
934  <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
935  <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
936  <property name="pretiger.sourcelevel" value="1.4"/>
937
938  <target name="defang"
939       depends="init"
940   description="Generates pre-Tiger compatible source">
941
942    <delete dir="${pretiger.src.dir}"/>
943    <mkdir dir="${pretiger.src.dir}"/>
944
945    <exec executable="perl">
946      <arg file="etc/defang.pl"/>
947      <!-- <arg value="-v"/> -->
948      <arg value="-s"/> <arg file="${src.dir}"/>
949      <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
950    </exec>
951
952  </target>
953
954  <target name="compile-pretiger"
955          depends="init, configure-compiler, defang"
956          description="Compiles pre-Tiger sources to build folder">
957
958    <mkdir dir="${build.pretiger.dir}"/>
959
960    <javac srcdir="${pretiger.src.dir}"
961          destdir="${build.pretiger.dir}"
962            debug="${build.debug}"
963       debuglevel="${build.debuglevel}"
964      deprecation="${build.deprecation}"
965           source="${pretiger.sourcelevel}"
966             fork="true">
967
968      <compilerarg line="${build.args}"/>
969      <exclude name="**/Thread.java"/>
970
971    </javac>
972
973  </target>
974
975  <target name="pretiger" depends="compile-pretiger">
976
977    <mkdir dir="${build.lib.dir}"/>
978
979    <jar destfile="${pretiger.jar}">
980      <fileset dir="${build.pretiger.dir}">
981      </fileset>
982    </jar>
983
984  </target>
985
458    <!-- jsr166x -->
459  
460  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines