ANT脚本中的条件任务执行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ANT脚本中的条件任务执行相关的知识,希望对你有一定的参考价值。
我的要求非常简单,我有一个ANT任务,它在内部处理异常而不抛出任何异常,而是向控制台抛出自定义消息[这些不是例外]。下面显示了一个示例,测试“具有指定名称的工作空间不存在”。
我的要求是,如果除了“Build Successful”之外还有任何此类消息,我应该确保我的ANT脚本失败,以便它不会更进一步。但我无法这样做,因为我不知道如何读取写入控制台的自定义消息。
我尝试探索“记录”任务,但我没有成功,因为这个日志只写入控制台而不是文件(不知道为什么)。但即使它被写入文件,理想情况下我应该读取每行文件以找出存在或不存在的特定文本。
有没有一种简单的方法可以尝试从控制台读取之前执行过的东西?
<target name="build">
<record name="test.txt" action="start" append="true" loglevel="verbose" />
<echo>Welcome to Apache Ant! Building the project in Cordys Middleware</echo>
<property environment="env"/>
<property name="bop.install.dir" value="${env.CORDYS_HOME}"/>
<exec executable="${bop.install.dir}/components/cws/scripts/linux/CWSPackage.sh" failonerror="true" resultproperty="output">
<env key="CLASSPATH" value="/opt/Cordys/Oracle_Jar/ojdbc6.jar"/>
<arg value="${ORG_NAME}"/>
<arg value="${WORKSPACE_NAME}"/>
<arg value="${PROJECT_NAME}"/>
</exec>
<echo>Finishing the build</echo>
<record name="test.txt" action="stop"/>
<echo>${output}</echo>
<fail>Something wrong here.</fail> <!-- I want to throw this error conditionally -->
</target>
答案
您正在寻找的是exec
任务的outputproperty
属性。
你可以这样做:
<exec executable="${my.executable}" outputproperty="exec.output">
<arg value="${my.arg}" />
</exec>
<fail message="Invalid output from exec task">
<condition>
<contains string="${exec.output}" substring="The workspace with the specified string does not exist." />
</condition>
</fail>
多个条件(允许布尔值的任何复杂程度):
<fail message="Invalid output from exec task">
<condition>
<and>
<not>
<contains string="${exec.output}" substring="SUCCESS" />
</not>
<or>
<contains string="${exec.output}" substring="ERROR" />
<contains string="${exec.output}" substring="FAILED" />
<or>
</and>
</condition>
</fail>
正则表达式:
<fail message="Invalid output from exec task">
<condition>
<matches string="${exec.output}" pattern="The .* does not exist." />
</condition>
</fail>
另一答案
<!-- * This is an ANT script to build the project in development environment.
Steps involved in this are
* Building the project
* Publishing the project
* Creating the package for the project
-->
<!--
Sample command to execute this
ant build -DORG_NAME=businessservices3 -DWORKSPACE_NAME=ConfigurationManagement -DPROJECT_NAME='ConfigurationManagement'
-->
<project name="Building Project" default="build">
<property file="${PROJECT}" />
<target name="build">
<echo>Welcome to Apache Ant! Building the project in Cordys Middleware</echo>
<property environment="env"/>
<property name="bop.install.dir" value="${env.CORDYS_HOME}"/>
<exec executable="${bop.install.dir}/components/cws/scripts/linux/CWSPackage.sh" outputproperty="exec.output">
<env key="CLASSPATH" value="/opt/Cordys/Oracle_Jar/ojdbc6.jar"/>
<arg value="${ORG_NAME}"/>
<arg value="${WORKSPACE_NAME}"/>
<arg value="${PROJECT_NAME}"/>
</exec>
<fail message="Build not successful for the project ${PROJECT_NAME}">
<condition>
<not>
<contains string="${exec.output}" substring="Operation completed successful" />
</not>
</condition>
</fail>
</target>
</project>
经过如此多的跟踪和错误方法后,这对我有用。谢谢奥斯汀。虽然这是ANT正在工作,但我会接受你的回答,因为这是你告诉的修改版本:)
以上是关于ANT脚本中的条件任务执行的主要内容,如果未能解决你的问题,请参考以下文章
使用 ant 执行使用位于 2 个不同 Oracle 模式中的表的 SQL