build.xml 36.8 KB
Newer Older
D
duke 已提交
1 2
<?xml version="1.0" encoding="UTF-8"?>
<!--
3
 Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
4 5 6 7
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.

 This code is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License version 2 only, as
8
 published by the Free Software Foundation.  Oracle designates this
D
duke 已提交
9
 particular file as subject to the "Classpath" exception as provided
10
 by Oracle in the LICENSE file that accompanied this code.
D
duke 已提交
11 12 13 14 15 16 17 18 19 20 21

 This code is distributed in the hope that it will be useful, but WITHOUT
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 version 2 for more details (a copy is included in the LICENSE file that
 accompanied this code).

 You should have received a copy of the GNU General Public License version
 2 along with this work; if not, write to the Free Software Foundation,
 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.

22 23 24
 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 or visit www.oracle.com if you need additional information or have any
 questions.
D
duke 已提交
25 26 27 28 29 30 31 32 33
-->

<!--
 This is the main build file for the complete langtools workspace.
 It is used both when working on the tools in NetBeans, and when building
 JDK itself, in which case it is invoked from the wrapper Makefile.
 -->

<project name="langtools" default="build" basedir="..">
34

35 36 37 38 39 40 41
    <!-- Force full debuginfo for javac if the debug.classfiles
    property is set.  This must be BEFORE the include of
    build.properties because it sets javac.debuglevel.  -->
    <condition property="javac.debuglevel" value="source,lines,vars">
        <equals arg1="${debug.classfiles}" arg2="true"/>
    </condition>

D
duke 已提交
42 43 44 45 46 47 48 49 50 51
    <!-- The following locations can be used to override default property values. -->

    <!-- Use this location for customizations specific to this instance of this workspace -->
    <property file="build.properties"/>

    <!-- Use this location for customizations common to all OpenJDK langtools workspaces -->
    <property file="${user.home}/.openjdk/${ant.project.name}-build.properties"/>

    <!-- Use this location for customizations common to all OpenJDK workspaces -->
    <property file="${user.home}/.openjdk/build.properties"/>
52 53

    <!-- Convenient shorthands for standard locations within the workspace. -->
D
duke 已提交
54 55 56 57 58
    <property name="build.dir" location="build"/>
    <property name="build.bootstrap.dir" location="${build.dir}/bootstrap"/>
    <property name="build.coverage.dir" location="${build.dir}/coverage"/>
    <property name="build.classes.dir" location="${build.dir}/classes"/>
    <property name="build.gensrc.dir" location="${build.dir}/gensrc"/>
59
    <property name="build.genstubs.dir" location="${build.dir}/genstubs"/>
D
duke 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    <property name="build.javadoc.dir" location="${build.dir}/javadoc"/>
    <property name="build.jtreg.dir" location="${build.dir}/jtreg"/>
    <property name="build.toolclasses.dir" location="${build.dir}/toolclasses"/>
    <property name="dist.dir" location="dist"/>
    <property name="dist.bin.dir" location="${dist.dir}/bin"/>
    <property name="dist.coverage.dir" location="${dist.dir}/coverage"/>
    <property name="dist.findbugs.dir" location="${dist.dir}/findbugs"/>
    <property name="dist.lib.dir" location="${dist.dir}/lib"/>
    <property name="make.dir" location="make"/>
    <property name="make.tools.dir" location="${make.dir}/tools"/>
    <property name="src.dir" location="src"/>
    <property name="src.bin.dir" location="${src.dir}/share/bin"/>
    <property name="src.classes.dir" location="${src.dir}/share/classes"/>
    <property name="test.dir" location="test"/>

    <!-- java.marker is set to a marker file to check for within a Java install dir.
         The best file to check for across Solaris/Linux/Windows/MacOS is one of the
         executables; regrettably, that is OS-specific. -->
    <condition property="java.marker" value="bin/java">
79
        <os family="unix"/>
D
duke 已提交
80 81
    </condition>
    <condition property="java.marker" value="bin/java.exe">
82
        <os family="windows"/>
D
duke 已提交
83
    </condition>
84

D
duke 已提交
85
    <!-- Standard property values, if not overriden by earlier settings. -->
86
    <property file="${make.dir}/build.properties"/>
J
jjg 已提交
87 88

    <!-- launcher.java is used in the launcher scripts provided to run
89 90 91 92 93 94
        the tools' jar files.  If it has not already been set, then
        default it to use ${target.java.home}, if available, otherwise
        quietly default to simply use "java". -->
    <condition property="launcher.java"
        value="${target.java.home}/bin/java" else="java">
        <isset property="target.java.home"/>
J
jjg 已提交
95 96
    </condition>

97 98 99 100
    <!-- Logic for handling access import jdk classes, if available.
        import.jdk should be unset, or set to jdk home (to use rt.jar)
        or to jdk repo (to use src/share/classes).
        Based on the value, if any, set up default values for javac's sourcepath,
J
jjg 已提交
101
        classpath and bootclasspath. Note: the default values are overridden
102 103 104 105 106 107 108 109
        in the build-bootstrap-classes macro. -->

    <available property="import.jdk.src.dir" value="${import.jdk}/src/share/classes"
        filepath="${import.jdk}/src/share/classes" file="java/nio/file/Path.java"/>
    <available property="import.jdk.jar" value="${import.jdk}/jre/lib/rt.jar"
        ignoresystemclasses="true"
        classpath="${import.jdk}/jre/lib/rt.jar" classname="java.nio.file.Path"/>

110
    <!-- Set the default value of the sourcepath used for javac. -->
111 112 113 114
    <condition property="javac.sourcepath" value="${build.genstubs.dir}" else="">
        <isset property="import.jdk.src.dir"/>
    </condition>

115
    <!-- Set the default value of the classpath used for javac. -->
116 117
    <property name="javac.classpath" value=""/>

118 119 120 121 122
    <!-- Set the default bootclasspath option used for javac. 
	Note that different variants of the option are used, meaning we can't just 
	define the value for the option.
	Note the explicit use of the standard property ${path.separator} in the following.
	This is because Ant is not clever enough to handle direct use of : or ; -->
123
    <condition property="javac.bootclasspath.opt"
124
            value="-Xbootclasspath:${build.classes.dir}${path.separator}${import.jdk.jar}"
125 126 127 128 129 130 131 132 133 134 135 136 137 138
            else="-Xbootclasspath/p:${build.classes.dir}">
        <isset property="import.jdk.jar"/>
    </condition>

    <condition property="exclude.files" value="" else="${require.import.jdk.files}">
        <isset property="import.jdk"/>
    </condition>

    <!-- for debugging -->
    <target name="check-import.jdk">
        <echo message="import.jdk: ${import.jdk}"/>
        <echo message="import.jdk.jar: ${import.jdk.jar}"/>
        <echo message="import.jdk.src.dir: ${import.jdk.src.dir}"/>
    </target>
139 140 141 142 143 144 145 146 147 148 149 150 151
    
    <target name="vizant" depends="-def-vizant">
	<mkdir dir="${build.dir}"/>
	<echo message="Generating ${build.dir}/build.dot"/>
        <vizant antfile="${make.dir}/build.xml" outfile="${build.dir}/build.dot"/>
	<echo message="Generating ${build.dir}/build.png"/>
        <exec executable="${dot}" >
            <arg value="-Tpng"/>
            <arg value="-o"/>
            <arg file="${build.dir}/build.png"/>
            <arg file="${build.dir}/build.dot"/>
        </exec> 
    </target>
152

D
duke 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165
    <!-- Standard target to build deliverables for JDK build. -->

    <target name="build" depends="build-bootstrap-tools,build-all-classes">
        <copy todir="${dist.dir}/bootstrap">
            <fileset dir="${build.bootstrap.dir}" includes="bin/,lib/"/>
        </copy>
        <chmod dir="${dist.dir}/bootstrap/bin" perm="ugo+rx">
            <include name="*"/>
        </chmod>
        <mkdir dir="${dist.lib.dir}"/>
        <jar file="${dist.lib.dir}/classes.jar" basedir="${build.classes.dir}"/>
        <zip file="${dist.lib.dir}/src.zip" basedir="${src.classes.dir}"/>
    </target>
166

167 168 169
    <target name="build-bootstrap-tools"
        depends="build-bootstrap-javac,build-bootstrap-javadoc,build-bootstrap-doclets,build-bootstrap-javah"
    />
170

171 172 173
    <target name="build-all-tools"
        depends="build-javac,build-javadoc,build-doclets,build-javah,build-javap,build-apt"
    />
174

175
    <target name="build-all-classes" depends="build-bootstrap-javac,-create-import-jdk-stubs">
176 177
        <build-classes includes="${javac.includes} ${javadoc.includes} ${doclets.includes} ${javah.includes} ${javap.includes} ${apt.includes}"/>
    </target>
178

D
duke 已提交
179 180 181 182 183 184 185 186 187
    <!-- clean -->

    <target name="clean" description="Delete all generated files">
        <delete dir="${build.dir}"/>
        <delete dir="${dist.dir}"/>
    </target>

    <!-- Additional targets for running tools on the build -->

188 189 190 191
    <target name="jtreg" depends="build-all-tools,-def-jtreg">
        <jtreg-tool name="all" tests="${jtreg.tests}"/>
    </target>

D
duke 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
    <target name="findbugs" depends="-def-findbugs,build-all-tools">
        <property name="findbugs.reportLevel" value="medium"/>
        <mkdir dir="${dist.findbugs.dir}"/>
        <findbugs
            home="${findbugs.home}"
            projectName="JDK langtools ${full.version}"
            output="xml"
            outputFile="${dist.findbugs.dir}/findbugs.xml"
            reportLevel="${findbugs.reportLevel}"
            failOnError="false"
            errorProperty="findbugs.all.errors"
            warningsProperty="findbugs.all.warnings"
            jvmargs="-Xmx512M">
            <class location="${build.classes.dir}"/>
            <sourcePath>
                <pathelement location="${src.classes.dir}"/>
            </sourcePath>
        </findbugs>
        <exec executable="sh">
            <arg value="${findbugs.home}/bin/convertXmlToText"/>
            <arg value="-longBugCodes"/>
            <arg value="-html:${findbugs.home}/src/xsl/fancy.xsl"/>
            <arg value="${dist.findbugs.dir}/findbugs.xml"/>
            <redirector output="${dist.findbugs.dir}/findbugs.html"/>
216
        </exec>
D
duke 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
    </target>

    <target name="coverage" depends="-def-cobertura,build-all-classes,instrument-classes,jtreg,coverage-report"/>

    <target name="instrument-classes" depends="-def-cobertura">
        <!-- only define the following property when we want coverage info -->
        <path id="coverage.classpath">
            <pathelement location="${build.coverage.dir}/classes"/>
            <path refid="cobertura.classpath"/>
        </path>
        <property name="coverage.options" value="-Dnet.sourceforge.cobertura.datafile=${build.coverage.dir}/cobertura.ser"/>
        <property name="coverage.classpath" refid="coverage.classpath"/>
        <mkdir dir="${build.coverage.dir}/classes"/>
        <delete file="${build.coverage.dir}/cobertura.ser"/>
        <cobertura-instrument todir="${build.coverage.dir}/classes"
            datafile="${build.coverage.dir}/cobertura.ser">
233
            <fileset dir="${build.classes.dir}"
D
duke 已提交
234 235
               includes="**/*.class" excludes="**/resources/*.class"/>
        </cobertura-instrument>
236
    </target>
D
duke 已提交
237 238 239

    <target name="coverage-report" depends="-def-cobertura">
        <mkdir dir="${dist.coverage.dir}"/>
240
        <cobertura-report
D
duke 已提交
241 242 243
            srcdir="${src.classes.dir}"
            destdir="${dist.coverage.dir}"
            datafile="${build.coverage.dir}/cobertura.ser"/>
244 245 246
        <cobertura-report
            format="xml"
            srcdir="${src.classes.dir}"
D
duke 已提交
247 248 249
            destdir="${dist.coverage.dir}"
            datafile="${build.coverage.dir}/cobertura.ser"/>
    </target>
250

D
duke 已提交
251 252
    <!-- javac targets -->

253 254 255 256 257
    <target name="build-bootstrap-javac"
            depends="-def-build-bootstrap-classes,-def-build-bootstrap-jar,-def-build-bootstrap-tool">
        <build-bootstrap-classes includes="${javac.includes}"/>
        <build-bootstrap-jar     name="javac" includes="${javac.includes}"/>
        <build-bootstrap-tool    name="javac"/>
D
duke 已提交
258
    </target>
259

260
    <target name="build-classes-javac" depends="build-bootstrap-javac,-create-import-jdk-stubs">
261
        <build-classes includes="${javac.includes}"/>
D
duke 已提交
262
    </target>
263

264 265 266
    <target name="build-javac" depends="build-classes-javac">
        <build-jar  name="javac" includes="${javac.includes}"/>
        <build-tool name="javac"/>
D
duke 已提交
267
    </target>
268

D
duke 已提交
269 270 271
    <target name="javadoc-javac" depends="build-javac,-def-javadoc-tool">
        <javadoc-tool name="javac" includes="${javac.includes}" options="${javadoc.jls3.option}"/>
    </target>
272

273
    <target name="jtreg-javac" depends="build-javac,build-javap,-def-jtreg">
274
        <jtreg-tool name="javac" tests="${javac.tests}"/>
D
duke 已提交
275
    </target>
276

D
duke 已提交
277 278 279
    <target name="findbugs-javac" depends="build-javac,-def-findbugs">
        <findbugs-tool name="javac"/>
    </target>
280

D
duke 已提交
281
    <target name="javac" depends="build-javac,jtreg-javac,findbugs-javac"/>
282

D
duke 已提交
283 284 285
    <!-- javadoc targets -->

    <target name="build-bootstrap-javadoc" depends="build-bootstrap-javac">
286 287 288 289
        <build-bootstrap-classes includes="${javadoc.includes}"/>
        <build-bootstrap-jar     name="javadoc" includes="${javadoc.includes}"
                                 jarclasspath="javac.jar doclets.jar"/>
        <build-bootstrap-tool    name="javadoc"/>
D
duke 已提交
290
    </target>
291

D
duke 已提交
292
    <target name="build-classes-javadoc" depends="build-classes-javac">
293
        <build-classes includes="${javadoc.includes}"/>
D
duke 已提交
294
    </target>
295

296 297
    <target name="build-javadoc" depends="build-javac,build-classes-javadoc">
        <build-jar  name="javadoc" includes="${javadoc.includes}"
D
duke 已提交
298
                    jarclasspath="javac.jar doclets.jar"/>
299
        <build-tool name="javadoc"/>
D
duke 已提交
300
    </target>
301

D
duke 已提交
302 303 304
    <target name="javadoc-javadoc" depends="build-javadoc,-def-javadoc-tool">
        <javadoc-tool name="javadoc" includes="${javadoc.includes}"/>
    </target>
305

D
duke 已提交
306
    <target name="jtreg-javadoc" depends="build-javadoc,-def-jtreg">
307
        <jtreg-tool name="javadoc" tests="${javadoc.tests}"/>
D
duke 已提交
308
    </target>
309

D
duke 已提交
310 311 312
    <target name="findbugs-javadoc" depends="build-javadoc,-def-findbugs">
        <findbugs-tool name="javadoc"/>
    </target>
313

D
duke 已提交
314
    <target name="javadoc" depends="build-javadoc,jtreg-javadoc,findbugs-javadoc"/>
315

D
duke 已提交
316 317 318
    <!-- doclets targets -->

    <target name="build-bootstrap-doclets" depends="build-bootstrap-javadoc,-def-build-bootstrap-jar">
319 320 321 322
        <build-bootstrap-classes includes="${doclets.includes}"/>
        <build-bootstrap-jar     name="doclets" includes="${doclets.includes}"
                                 jarmainclass="com.sun.tools.javadoc.Main"
                                 jarclasspath="javadoc.jar"/>
D
duke 已提交
323
    </target>
324

D
duke 已提交
325
    <target name="build-classes-doclets" depends="build-classes-javadoc">
326
        <build-classes includes="${doclets.includes}"/>
D
duke 已提交
327
    </target>
328

329
    <target name="build-doclets" depends="build-javadoc,build-classes-doclets">
D
duke 已提交
330
        <!-- just jar, no bin for doclets -->
331
        <build-jar name="doclets" includes="${doclets.includes}" jarclasspath="javadoc.jar"/>
D
duke 已提交
332 333 334
    </target>

    <!-- (no javadoc for doclets) -->
335

D
duke 已提交
336
    <target name="jtreg-doclets" depends="build-doclets,-def-jtreg">
337
        <jtreg-tool name="doclets" tests="${doclets.tests}"/>
D
duke 已提交
338
    </target>
339

D
duke 已提交
340 341 342
    <target name="findbugs-doclets" depends="build-doclets,-def-findbugs">
        <findbugs-tool name="doclets"/>
    </target>
343

D
duke 已提交
344
    <target name="doclets" depends="build-doclets,jtreg-doclets,findbugs-doclets"/>
345

D
duke 已提交
346 347 348
    <!-- javah targets -->

    <target name="build-bootstrap-javah" depends="build-bootstrap-javadoc">
349 350 351 352
        <build-bootstrap-classes includes="${javah.includes}"/>
        <build-bootstrap-jar     name="javah" includes="${javah.includes}"
                                 jarclasspath="javadoc.jar doclets.jar javac.jar"/>
        <build-bootstrap-tool    name="javah"/>
D
duke 已提交
353
    </target>
354

355 356 357
    <target name="build-javah" depends="build-javac,build-classes-javah">
        <build-jar  name="javah" includes="${javah.includes}" jarclasspath="javac.jar"/>
        <build-tool name="javah"/>
D
duke 已提交
358
    </target>
359

D
duke 已提交
360
    <target name="build-classes-javah" depends="build-classes-javadoc">
361
        <build-classes includes="${javah.includes}"/>
D
duke 已提交
362
    </target>
363

D
duke 已提交
364 365 366
    <!-- (no javadoc for javah) -->

    <target name="jtreg-javah" depends="build-javah,-def-jtreg">
367
        <jtreg-tool name="javah" tests="${javah.tests}"/>
D
duke 已提交
368
    </target>
369

D
duke 已提交
370 371 372
    <target name="findbugs-javah" depends="build-javah,-def-findbugs">
        <findbugs-tool name="javah"/>
    </target>
373

D
duke 已提交
374
    <target name="javah" depends="build-javah,jtreg-javah,findbugs-javah"/>
375

D
duke 已提交
376 377
    <!-- javap targets -->

378 379 380 381 382 383
    <target name="build-bootstrap-javap"
            depends="-def-build-bootstrap-classes,-def-build-bootstrap-jar,-def-build-bootstrap-tool">
        <build-bootstrap-classes includes="${javap.includes}"/>
        <build-bootstrap-jar     name="javap" includes="${javap.includes}"
                                 jarmainclass="sun.tools.javap.Main"/>
        <build-bootstrap-tool    name="javap"/>
D
duke 已提交
384
    </target>
385

386
    <target name="build-classes-javap" depends="build-classes-javac">
387
        <build-classes includes="${javap.includes}"/>
D
duke 已提交
388
    </target>
389

390 391
    <target name="build-javap" depends="build-javac,build-classes-javap">
        <build-jar  name="javap" includes="${javap.includes}"
J
jjg 已提交
392
                    jarmainclass="com.sun.tools.javap.Main"
393
                    jarclasspath="javac.jar"/>
394
        <build-tool name="javap"/>
D
duke 已提交
395
    </target>
396

D
duke 已提交
397 398 399
    <!-- (no javadoc for javap) -->

    <target name="jtreg-javap" depends="build-javap,-def-jtreg">
400
        <jtreg-tool name="javap" tests="${javap.tests}"/>
D
duke 已提交
401
    </target>
402

D
duke 已提交
403 404 405
    <target name="findbugs-javap" depends="build-javap,-def-findbugs">
        <findbugs-tool name="javap"/>
    </target>
406

D
duke 已提交
407
    <target name="javap" depends="build-javap,jtreg-javap,findbugs-javap"/>
408

D
duke 已提交
409
    <!-- apt targets -->
410

D
duke 已提交
411
    <target name="build-bootstrap-apt" depends="build-bootstrap-javac">
412 413 414 415
        <build-bootstrap-classes includes="${apt.includes}"/>
        <build-bootstrap-jar     name="apt" includes="${apt.includes}"
                                 jarclasspath="javac.jar"/>
        <build-bootstrap-tool    name="apt"/>
D
duke 已提交
416
    </target>
417

418 419 420
    <target name="build-apt" depends="build-javac,build-classes-apt">
        <build-jar  name="apt" includes="${apt.includes}" jarclasspath="javac.jar"/>
        <build-tool name="apt"/>
D
duke 已提交
421
    </target>
422

D
duke 已提交
423
    <target name="build-classes-apt" depends="build-classes-javac">
424
        <build-classes includes="${apt.includes}"/>
D
duke 已提交
425
    </target>
426

D
duke 已提交
427 428 429
    <target name="javadoc-apt" depends="build-apt,-def-javadoc-tool">
        <javadoc-tool name="apt" includes="${apt.includes}"/>
    </target>
430 431


D
duke 已提交
432
    <target name="jtreg-apt" depends="build-apt,-def-jtreg">
433
        <jtreg-tool name="apt" tests="${apt.tests}"/>
D
duke 已提交
434
    </target>
435

D
duke 已提交
436 437 438
    <target name="findbugs-apt" depends="build-apt,-def-findbugs">
        <findbugs-tool name="apt"/>
    </target>
439

D
duke 已提交
440 441
    <target name="apt" depends="build-apt,jtreg-apt,findbugs-apt"/>

442 443 444 445 446 447 448 449 450 451 452
    <!-- Create import JDK stubs -->

    <target name="-create-import-jdk-stubs" depends="-def-genstubs" if="import.jdk.src.dir">
        <mkdir dir="${build.genstubs.dir}"/>
        <genstubs
            srcdir="${import.jdk.src.dir}" destdir="${build.genstubs.dir}"
            includes="${import.jdk.stub.files}"
            fork="true" classpath="${build.toolclasses.dir}:${build.bootstrap.dir}/classes:${ant.home}/lib/ant.jar"
        />
    </target>

D
duke 已提交
453
    <!-- Check targets -->
454

D
duke 已提交
455 456 457
    <target name="-check-boot.java.home" depends="-def-check">
        <check name="bootstrap java" property="boot.java.home" marker="${java.marker}"/>
    </target>
458

D
duke 已提交
459 460 461
    <target name="-check-target.java.home" depends="-def-check">
        <check name="target java" property="target.java.home" marker="${java.marker}"/>
    </target>
462

D
duke 已提交
463 464 465
    <target name="-check-cobertura.home" depends="-def-check">
        <check name="cobertura" property="cobertura.home" marker="cobertura.jar"/>
    </target>
466

D
duke 已提交
467 468 469
    <target name="-check-findbugs.home" depends="-def-check">
        <check name="findbugs" property="findbugs.home" marker="lib/findbugs.jar"/>
    </target>
470

D
duke 已提交
471 472 473
    <target name="-check-jtreg.home" depends="-def-check">
        <check name="jtreg" property="jtreg.home" marker="lib/jtreg.jar"/>
    </target>
474

475 476 477 478 479
    <target name="-check-vizant" depends="-def-check">
        <check name="vizant" property="vizant.jar"/>
        <check name="dot" property="dot"/>
    </target>

D
duke 已提交
480 481
    <!-- Ant macro and preset defs -->

482
    <target name="-def-build-tool">
D
duke 已提交
483 484 485
        <macrodef name="build-tool">
            <attribute name="name"/>
            <attribute name="bin.dir" default="${dist.bin.dir}"/>
J
jjg 已提交
486
            <attribute name="java" default="${launcher.java}"/>
D
duke 已提交
487 488 489 490
            <sequential>
                <mkdir dir="@{bin.dir}"/>
                <copy file="${src.bin.dir}/launcher.sh-template" tofile="@{bin.dir}/@{name}">
                    <filterset begintoken="#" endtoken="#">
491 492
                        <filter token="PROGRAM" value="@{name}"/>
                        <filter token="TARGET_JAVA" value="@{java}"/>
D
duke 已提交
493 494 495 496 497 498 499
                    </filterset>
                </copy>
                <chmod file="@{bin.dir}/@{name}" perm="ugo+rx"/>
            </sequential>
        </macrodef>
    </target>

500
    <target name="-def-build-jar">
D
duke 已提交
501 502 503 504 505 506 507 508 509 510 511 512
        <macrodef name="build-jar">
            <attribute name="name"/>
            <attribute name="includes"/>
            <attribute name="classes.dir" default="${build.classes.dir}"/>
            <attribute name="lib.dir" default="${dist.lib.dir}"/>
            <attribute name="jarmainclass" default="com.sun.tools.@{name}.Main"/>
            <attribute name="jarclasspath" default=""/>
            <sequential>
                <mkdir dir="@{lib.dir}"/>
                <jar destfile="@{lib.dir}/@{name}.jar"
                     basedir="@{classes.dir}"
                     includes="@{includes}">
513
                    <manifest>
D
duke 已提交
514 515 516 517 518 519 520 521 522 523 524
                        <attribute name="Main-Class" value="@{jarmainclass}"/>
                        <attribute name="Class-Path" value="@{jarclasspath}"/>
                    </manifest>
                </jar>
            </sequential>
        </macrodef>
    </target>

    <target name="-def-build-classes" depends="-def-pcompile">
        <macrodef name="build-classes">
            <attribute name="includes"/>
525
            <attribute name="excludes" default="${exclude.files} **/package-info.java"/>
D
duke 已提交
526 527
            <attribute name="classes.dir" default="${build.classes.dir}"/>
            <attribute name="gensrc.dir" default="${build.gensrc.dir}"/>
528 529 530 531
            <attribute name="javac.bootclasspath" default="${build.bootstrap.dir}/classes"/>
            <attribute name="bootclasspath.opt" default="${javac.bootclasspath.opt}"/>
            <attribute name="classpath" default="${javac.classpath}"/>
            <attribute name="sourcepath" default="${javac.sourcepath}"/>
532 533 534
            <attribute name="java.home" default="${boot.java.home}"/>
            <attribute name="source" default="${javac.source}"/>
            <attribute name="target" default="${javac.target}"/>
D
duke 已提交
535 536 537
            <attribute name="release" default="${release}"/>
            <attribute name="full.version" default="${full.version}"/>
            <sequential>
538 539 540 541
                <echo level="verbose" message="build-classes: excludes=@{excludes}"/>
                <echo level="verbose" message="build-classes: bootclasspath.opt=@{bootclasspath.opt}"/>
                <echo level="verbose" message="build-classes: classpath=@{classpath}"/>
                <echo level="verbose" message="build-classes: sourcepath=@{sourcepath}"/>
D
duke 已提交
542 543 544 545 546 547
                <mkdir dir="@{gensrc.dir}"/>
                <mkdir dir="@{classes.dir}"/>
                <pcompile srcdir="${src.classes.dir}"
                          destdir="@{gensrc.dir}"
                          includes="@{includes}"/>
                <copy todir="@{gensrc.dir}">
548
                    <fileset dir="${src.classes.dir}" includes="@{includes}"/>
D
duke 已提交
549 550 551 552 553 554 555 556 557 558 559
                    <globmapper from="*.properties-template" to="*.properties"/>
                    <filterset begintoken="$(" endtoken=")">
                        <filter token="JDK_VERSION" value="${jdk.version}"/>
                        <filter token="RELEASE" value="@{release}"/>
                        <filter token="FULL_VERSION" value="@{full.version}"/>
                    </filterset>
                </copy>
                <pcompile srcdir="@{gensrc.dir}"
                          destdir="@{gensrc.dir}"
                          includes="**/*.properties"/>
                <javac fork="true"
560 561
                       executable="@{java.home}/bin/javac"
                       srcdir="${src.classes.dir}:@{gensrc.dir}"
D
duke 已提交
562 563 564
                       destdir="@{classes.dir}"
                       includes="@{includes}"
                       excludes="@{excludes}"
565 566
                       sourcepath="@{sourcepath}"
                       classpath="@{classpath}"
D
duke 已提交
567
                       includeAntRuntime="no"
568 569
                       source="@{source}"
                       target="@{target}"
570
                       debug="${javac.debug}"
D
duke 已提交
571
                       debuglevel="${javac.debuglevel}">
572 573 574 575
                    <compilerarg value="-implicit:none"/>
                    <compilerarg value="-Xprefer:source"/>
                    <compilerarg value="-J-Xbootclasspath/p:@{javac.bootclasspath}"/>
                    <compilerarg line="@{bootclasspath.opt}"/>
D
duke 已提交
576 577 578 579
                    <compilerarg line="${javac.no.jdk.warnings}"/>
                    <compilerarg line="${javac.version.opt}"/>
                    <compilerarg line="${javac.lint.opts}"/>
                </javac>
J
jjg 已提交
580 581
                <copy todir="@{classes.dir}" includeemptydirs="false">
                    <fileset dir="${src.classes.dir}" includes="@{includes}" excludes="@{excludes}">
D
duke 已提交
582 583 584 585 586 587 588 589 590
                        <exclude name="**/*.java"/>
                        <exclude name="**/*.properties"/>
                        <exclude name="**/*-template"/>
                        <exclude name="**/package.html"/>
                    </fileset>
                </copy>
            </sequential>
        </macrodef>
    </target>
591

D
duke 已提交
592 593 594 595
    <target name="-def-build-bootstrap-tool" depends="-check-boot.java.home,-def-build-tool">
        <presetdef name="build-bootstrap-tool">
            <build-tool
                bin.dir="${build.bootstrap.dir}/bin"
596
                java="${boot.java}"/>
D
duke 已提交
597 598
        </presetdef>
    </target>
599

D
duke 已提交
600 601 602
    <target name="-def-build-bootstrap-jar" depends="-def-build-jar">
        <presetdef name="build-bootstrap-jar">
            <build-jar
603 604 605 606 607 608 609 610 611 612
                classes.dir="${build.bootstrap.dir}/classes"
                lib.dir="${build.bootstrap.dir}/lib"/>
        </presetdef>
    </target>

    <target name="-def-build-bootstrap-classes" depends="-def-build-classes">
        <presetdef name="build-bootstrap-classes">
            <build-classes
                source="${boot.javac.source}"
                target="${boot.javac.target}"
D
duke 已提交
613 614
                gensrc.dir="${build.bootstrap.dir}/gensrc"
                classes.dir="${build.bootstrap.dir}/classes"
615 616 617
                javac.bootclasspath=""
                bootclasspath.opt="-Xbootclasspath/p:${build.bootstrap.dir}/classes"
                sourcepath=""
D
duke 已提交
618
                release="${bootstrap.release}"
619 620
                full.version="${bootstrap.full.version}"
                excludes="${require.import.jdk.files} **/package-info.java"/>
D
duke 已提交
621 622
        </presetdef>
    </target>
623

D
duke 已提交
624 625
    <target name="-def-pcompile">
        <mkdir dir="${build.toolclasses.dir}"/>
626
        <javac fork="true"
627 628
               source="${boot.javac.source}"
               target="${boot.javac.target}"
629 630
               executable="${boot.java.home}/bin/javac"
               srcdir="${make.tools.dir}/CompileProperties"
D
duke 已提交
631 632 633
               destdir="${build.toolclasses.dir}/"
               classpath="${ant.home}/lib/ant.jar"/>
        <taskdef name="pcompile"
634
                 classname="CompilePropertiesTask"
D
duke 已提交
635 636
                 classpath="${build.toolclasses.dir}/"/>
    </target>
637

638 639 640 641 642 643 644 645 646 647 648 649 650 651
    <target name="-def-genstubs" depends="build-bootstrap-javac">
        <mkdir dir="${build.toolclasses.dir}"/>
        <javac fork="true"
               source="${boot.javac.source}"
               target="${boot.javac.target}"
               executable="${boot.java.home}/bin/javac"
               srcdir="${make.tools.dir}/GenStubs"
               destdir="${build.toolclasses.dir}/"
               classpath="${build.bootstrap.dir}/classes:${ant.home}/lib/ant.jar"/>
        <taskdef name="genstubs"
                 classname="GenStubs$$Ant"
                 classpath="${build.toolclasses.dir}/"/>
    </target>

D
duke 已提交
652 653 654 655 656 657 658 659 660 661 662
    <target name="-def-javadoc-tool" depends="-check-target.java.home">
        <macrodef name="javadoc-tool">
            <attribute name="name"/>
            <attribute name="includes"/>
            <attribute name="options" default=""/>
            <attribute name="source" default="1.5"/> <!-- FIXME -->
            <sequential>
                <property name="javadoc.options" value=""/> <!-- default, can be overridden per user or per project -->
                <!-- Note: even with this default value, includes
         from src.classes.dir get javadoc'd; see packageset below -->
                <property name="javadoc.packagenames" value="none"/> <!-- default, can be overridden per user or per project -->
663
                <javadoc
D
duke 已提交
664
                    executable="${target.java.home}/bin/javadoc"
665
                    destdir="${build.javadoc.dir}/@{name}"
D
duke 已提交
666
                    source="@{source}"
667 668
                    windowtitle="UNOFFICIAL"
                    failonerror="true"
D
duke 已提交
669
                    use="true"
670
                    author="false"
D
duke 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
                    version="false"
                    packagenames="${javadoc.packagenames}" >
                    <header><![CDATA[<strong>Unofficial Javadoc</strong> generated from developer sources for preview purposes only]]></header>
                    <arg line="@{options}"/>
                    <bootclasspath>
                        <path location="${build.classes.dir}"/>
                        <path location="${target.java.home}/jre/lib/rt.jar"/>
                    </bootclasspath>
                    <sourcepath>
                        <pathelement location="${src.classes.dir}"/>
                    </sourcepath>
                    <!-- XXX just <fileset> (restricted further to **/*.java) and no <packageset> -->
                    <!-- means that {@link some.package} will not work, which is no good. -->
                    <!-- (It correctly skips excluded single classes, but not if packageset is also included, -->
                    <!-- which also causes duplicates in the class index for included files.) -->
                    <packageset dir="${src.classes.dir}" includes="@{includes}">
                        <or>
                            <filename name="java/"/>
                            <filename name="javax/"/>
                            <filename name="com/sun/javadoc/"/>
                            <filename name="com/sun/mirror/"/>
                            <filename name="com/sun/source/"/>
                        </or>
                    </packageset>
                </javadoc>
            </sequential>
        </macrodef>
    </target>
699 700

    <target name="-def-jtreg" unless="jtreg.defined" depends="-check-jtreg.home,-check-target.java.home">
D
duke 已提交
701 702 703 704 705 706 707 708 709 710
        <taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant">
            <classpath>
                <pathelement location="${jtreg.home}/lib/jtreg.jar"/>
                <pathelement location="${jtreg.home}/lib/javatest.jar"/>
            </classpath>
        </taskdef>
        <macrodef name="jtreg-tool">
            <attribute name="name"/>
            <attribute name="tests"/>
            <attribute name="jdk" default="${target.java.home}"/>
711
            <attribute name="samevm" default="true"/>
D
duke 已提交
712 713 714 715 716 717 718
            <attribute name="verbose" default="summary"/>
            <attribute name="options" default=""/>
            <attribute name="keywords" default="-keywords:!ignore"/>
            <attribute name="jpda.jvmargs" default=""/>
            <sequential>
                <property name="coverage.options" value=""/>    <!-- default -->
                <property name="coverage.classpath" value=""/>    <!-- default -->
719
                <jtreg
D
duke 已提交
720
                    dir="${test.dir}"
721
                    workDir="${build.jtreg.dir}/@{name}/work"
D
duke 已提交
722 723 724 725 726 727 728 729 730 731
                    reportDir="${build.jtreg.dir}/@{name}/report"
                    jdk="@{jdk}"
                    samevm="@{samevm}" verbose="@{verbose}"
                    failonerror="false" resultproperty="jtreg.@{name}.result"
                    javacoptions="-g"
                    vmoptions="${coverage.options} -Xbootclasspath/p:${coverage.classpath}:${build.classes.dir} @{jpda.jvmargs}">
                    <arg line="@{keywords}"/>
                    <arg line="@{options}"/>
                    <arg line="@{tests}"/>
                </jtreg>
732
                <!-- the next two properties are for convenience, when only
D
duke 已提交
733 734
                     a single instance of jtreg will be invoked. -->
                <condition property="jtreg.passed">
735
                    <equals arg1="${jtreg.@{name}.result}" arg2="0"/>
D
duke 已提交
736 737 738 739 740 741 742 743 744 745 746 747 748 749
                </condition>
                <property name="jtreg.report" value="${build.jtreg.dir}/@{name}/report"/>
            </sequential>
        </macrodef>
        <property name="jtreg.defined" value="true"/>
    </target>

    <target name="-def-cobertura" depends="-check-cobertura.home">
        <path id="cobertura.classpath">
            <fileset dir="${cobertura.home}">
                <include name="cobertura.jar"/>
                <include name="lib/**/*.jar"/>
            </fileset>
        </path>
750
        <taskdef classpathref="cobertura.classpath" resource="tasks.properties"/>
D
duke 已提交
751
    </target>
752

D
duke 已提交
753 754 755 756 757 758 759 760 761 762 763 764
    <target name="-def-findbugs" unless="findbugs.defined" depends="-check-findbugs.home">
        <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask">
            <classpath>
                <pathelement location="${findbugs.home}/lib/findbugs.jar"/>
            </classpath>
        </taskdef>
        <macrodef name="findbugs-tool">
            <attribute name="name"/>
            <attribute name="output" default="emacs"/>
            <attribute name="outputFile" default=""/>
            <attribute name="reportLevel" default="high"/>
            <sequential>
765
                <findbugs
D
duke 已提交
766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
                    home="${findbugs.home}"
                    output="@{output}"
                    outputFile="@{outputFile}"
                    reportLevel="@{reportLevel}"
                    failOnError="false"
                    errorProperty="findbugs.@{name}.errors"
                    warningsProperty="findbugs.@{name}.warnings"
                    jvmargs="-Xmx512M" >
                    <class location="${dist.dir}/lib/@{name}.jar"/>
                    <auxClasspath>
                        <pathelement location="${build.classes.dir}"/>
                    </auxClasspath>
                    <sourcePath>
                        <pathelement location="${src.classes.dir}"/>
                    </sourcePath>
                </findbugs>
            </sequential>
        </macrodef>
        <property name="findbugs.defined" value="true"/>
    </target>
786 787 788 789 790
    
    <target name="-def-vizant" unless="vizant.defined" depends="-check-vizant">
	<taskdef name="vizant" classname="net.sourceforge.vizant.Vizant" classpath="${vizant.jar}"/>
        <property name="vizant.defined" value="true"/>
    </target>
791

D
duke 已提交
792 793 794 795
    <target name="-def-check">
        <macrodef name="check">
            <attribute name="name"/>
            <attribute name="property"/>
796
            <attribute name="marker" default=""/>
D
duke 已提交
797 798 799 800 801 802 803 804 805 806
            <sequential>
                <fail message="Cannot locate @{name}: please set @{property} to its location">
                    <condition>
                        <not>
                            <isset property="@{property}"/>
                        </not>
                    </condition>
                </fail>
                <fail message="@{name} is not installed in ${@{property}}">
                    <condition>
807 808 809 810 811 812 813 814
			<and>
			    <not>
				<equals arg1="@{marker}" arg2=""/>
			    </not>
                            <not>
                                <available file="${@{property}}/@{marker}"/>
                            </not>
			</and>
D
duke 已提交
815 816 817 818 819 820 821
                    </condition>
                </fail>
            </sequential>
        </macrodef>
    </target>

    <!-- standard JDK target -->
822
    <target name="sanity"
823
        description="display settings of configuration values">
D
duke 已提交
824 825 826 827 828 829 830 831 832 833 834 835 836 837
        <echo level="info">ant.home = ${ant.home}</echo>
        <echo level="info">boot.java.home = ${boot.java.home}</echo>
        <echo level="info">target.java.home = ${target.java.home}</echo>
        <echo level="info">jtreg.home = ${jtreg.home}</echo>
        <echo level="info">findbugs.home = ${findbugs.home}</echo>
    </target>

    <!-- useful debugging targets -->
    <target name="diagnostics">
        <diagnostics/>
    </target>

    <target name="post-sanity" depends="-def-jtreg,sanity,build"
        description="perform basic validation after a standard build">
838
        <jtreg
D
duke 已提交
839
            dir="make/test"
840
            workDir="${build.jtreg.dir}/post-sanity/work"
D
duke 已提交
841 842 843 844 845
            reportDir="${build.jtreg.dir}/post-sanity/report"
            jdk="${target.java.home}"
            verbose="summary"
            failonerror="false" resultproperty="jtreg.post-sanity.result">
        </jtreg>
846

D
duke 已提交
847 848 849
    </target>
</project>