我想从Ant构建文件为目录中的每个文件执行命令。
我正在寻找与平台无关的解决方案。
我该怎么做呢?
当然,我可以用某种脚本语言编写脚本,但这会给项目增加更多的依赖性。
我想从Ant构建文件为目录中的每个文件执行命令。
我正在寻找与平台无关的解决方案。
我该怎么做呢?
当然,我可以用某种脚本语言编写脚本,但这会给项目增加更多的依赖性。
Answers:
<foreach>
与嵌套一起使用<FileSet>
Foreach需要ant-contrib。
更新了最近的ant-contrib示例:
<target name="foo">
<foreach target="bar" param="theFile">
<fileset dir="${server.src}" casesensitive="yes">
<include name="**/*.java"/>
<exclude name="**/*Test*"/>
</fileset>
</foreach>
</target>
<target name="bar">
<echo message="${theFile}"/>
</target>
这将用$ {theFile}调用目标“栏”,生成当前文件。
塔西洛·霍恩(Tassilo Horn)提出了一种无需蚂蚁控制的方法(最初的目标是)
基本上,由于没有<java>扩展(还可以吗?),与<apply>扩展<exec>的方式相同,他建议使用<apply>(当然也可以在命令行中运行Java程序)
这里有一些例子:
<apply executable="java">
<arg value="-cp"/>
<arg pathref="classpath"/>
<arg value="-f"/>
<srcfile/>
<arg line="-o ${output.dir}"/>
<fileset dir="${input.dir}" includes="*.txt"/>
</apply>
这是使用javascript和ant scriptdef任务执行此操作的方法,由于scriptdef是一个核心的ant任务,因此您不需要ant-contrib即可使此代码正常工作。
<scriptdef name="bzip2-files" language="javascript">
<element name="fileset" type="fileset"/>
<![CDATA[
importClass(java.io.File);
filesets = elements.get("fileset");
for (i = 0; i < filesets.size(); ++i) {
fileset = filesets.get(i);
scanner = fileset.getDirectoryScanner(project);
scanner.scan();
files = scanner.getIncludedFiles();
for( j=0; j < files.length; j++) {
var basedir = fileset.getDir(project);
var filename = files[j];
var src = new File(basedir, filename);
var dest= new File(basedir, filename + ".bz2");
bzip2 = self.project.createTask("bzip2");
bzip2.setSrc( src);
bzip2.setDestfile(dest );
bzip2.execute();
}
}
]]>
</scriptdef>
<bzip2-files>
<fileset id="test" dir="upstream/classpath/jars/development">
<include name="**/*.jar" />
</fileset>
</bzip2-files>
project
在上面的示例中引用了一个变量,但没有提供任何先验定义。最好能有代表或澄清的内容。编辑:n / m,发现这project
是访问当前项目的预定义变量。我对此表示怀疑,但不确定。
ant-contrib是邪恶的;编写一个自定义的ant任务。
ant-contrib是邪恶的,因为它试图将ant从声明式样式转换为命令式样式。但是xml是一种废话编程语言。
相比之下,自定义ant任务允许您使用真实的IDE用真实的语言(Java)编写代码,您可以在其中编写单元测试以确保您具有所需的行为,然后在构建脚本中明确声明以下内容:您想要的行为。
仅当您关心编写可维护的ant脚本时,此问题才重要。如果您根本不关心可维护性,请执行任何工作。:)
t
我知道这篇文章真的很老,但是现在经过一段时间和蚂蚁版本,有一种方法可以使用基本的蚂蚁功能,我想我应该分享一下。
这是通过调用嵌套任务的递归宏定义完成的(甚至可以调用其他宏)。唯一的约定是使用固定的变量名称(此处为元素)。
<project name="iteration-test" default="execute" xmlns="antlib:org.apache.tools.ant" xmlns:if="ant:if" xmlns:unless="ant:unless">
<macrodef name="iterate">
<attribute name="list" />
<element name="call" implicit="yes" />
<sequential>
<local name="element" />
<local name="tail" />
<local name="hasMoreElements" />
<!-- unless to not get a error on empty lists -->
<loadresource property="element" unless:blank="@{list}" >
<concat>@{list}</concat>
<filterchain>
<replaceregex pattern="([^;]*).*" replace="\1" />
</filterchain>
</loadresource>
<!-- call the tasks that handle the element -->
<call />
<!-- recursion -->
<condition property="hasMoreElements">
<contains string="@{list}" substring=";" />
</condition>
<loadresource property="tail" if:true="${hasMoreElements}">
<concat>@{list}</concat>
<filterchain>
<replaceregex pattern="[^;]*;(.*)" replace="\1" />
</filterchain>
</loadresource>
<iterate list="${tail}" if:true="${hasMoreElements}">
<call />
</iterate>
</sequential>
</macrodef>
<target name="execute">
<fileset id="artifacts.fs" dir="build/lib">
<include name="*.jar" />
<include name="*.war" />
</fileset>
<pathconvert refid="artifacts.fs" property="artifacts.str" />
<echo message="$${artifacts.str}: ${artifacts.str}" />
<!-- unless is required for empty lists to not call the enclosed tasks -->
<iterate list="${artifacts.str}" unless:blank="${artifacts.str}">
<echo message="I see:" />
<echo message="${element}" />
</iterate>
<!-- local variable is now empty -->
<echo message="${element}" />
</target>
</project>
需要的主要功能包括:
我没有设法使定界符可变,但是这可能不是主要的缺点。
您可以使用ant-contrib任务“ for”在由任何分隔符分隔的文件列表上进行迭代,默认分隔符为“,”。
以下是显示此示例文件:
<project name="modify-files" default="main" basedir=".">
<taskdef resource="net/sf/antcontrib/antlib.xml"/>
<target name="main">
<for list="FileA,FileB,FileC,FileD,FileE" param="file">
<sequential>
<echo>Updating file: @{file}</echo>
<!-- Do something with file here -->
</sequential>
</for>
</target>
</project>