Ant macrodef编译任务

时间:2011-01-26 17:51:42

标签: java compiler-construction ant macrodef

我正在构建一个通常被调用的编译器(和语言):

java -jar nc.jar \
    -p some/referenced/package.nc \ 
    -p framework.nc \ 
    source1.ns source2.ns sourceN.ns \ 
    -o output/package.nc

我想在我的ANT构建文件中包含一个任务,该文件调用编译器来编译标准库和所有测试用例,但是将每个单独的编译器调用指定为<java>任务是痛苦的:

<target name="framework" depends="compiler" description="Build the n framework">
    <!-- More compile steps -->
    <java jar="nc.jar" fork="true">
        <arg value="-p"/>
        <arg path="../nframework/build/n.core.nc"/>
        <arg path="../nframework/n/debug/DebugPrint.ns"/>
        <arg path="../nframework/n/debug/Trace.ns"/>
        <arg value="-o"/>
        <arg path="../nframework/build/n.debug.nc"/>
    </java>
    <!-- More compile steps -->
</target>

我想创建某种类型的ANT任务,可以将其简化为:

<target name="framework" depends="compiler" description="Build the n framework">
    <!-- More compile steps -->
    <nc output="../nframework/build/n.debug.nc">
        <link-package path="../nframework/build/n.core.nc"/>
        <src>
            <fileset dir="../nframework/n/debug" includes="**/*.ns"/>
        </src>
    </nc>
    <!-- More compile steps -->
</target>

为此,我尝试了macrodef:

<macrodef name="nc">
    <attribute name="output"/>
    <element name="link-package"/>
    <element name="src"/>
    <sequential>
        <java jar="nc.jar" fork="true">
            <arg value="-p"/>
            <!-- This doesn't do what I want -->
            <link-package/>
            <!-- Neither does this -->
            <src/>
            <arg value="-o"/>
            <arg path="@{output}"/>
        </java>
    </sequential>
</macrodef>

我在上面尝试了几种变体,但每种都出错了,例如:     /home/jwarner/code/nlang/nc/build.xml:55:java不支持嵌套的“fileset”元素。

有没有办法在不扩展ANT的情况下做到这一点?或者,将蚂蚁任务添加到编译器中会相当容易吗?我对最终<nc>任务的语法并不十分挑剔。

1 个答案:

答案 0 :(得分:1)

过去我遇到过类似的问题,即开箱即用的Ant任务并没有完全按照我的要求去做。我发现编写自己的Ant任务非常容易。

文档简洁明了,但很好地解释了您需要做什么。

http://ant.apache.org/manual/develop.html#writingowntask