如何检查属性在 Ant 中是否有值



我有一个用于构建的 Ant XML 文件。

我有 3 个属性。如果这些属性不包含任何值,我想中断构建。如果值为空,我也想破坏构建。

如何在蚂蚁中执行此操作?

我使用蚂蚁而不是蚂蚁。

您可以使用<fail>任务使用条件:

<fail message="Property &quot;foo&quot; needs to be set to a value">
    <condition>
        <or>
            <equals arg1="${foo}" arg2=""/>
            <not>
                <isset property="foo"/>
            </not>
       </or>
   </condition>

这相当于说if (not set ${foo} or ${foo} = "")是伪代码。您必须从内到外阅读 XML 条件。

如果您只关心变量是否设置,而不关心它是否具有实际值,则可以在<fail>任务上使用 <unless> 子句。

<fail message="Property &quot;foo&quot; needs to be set"
    unless="foo"/>

但是,如果设置了属性但没有值,则此操作不会失败。


有一个技巧可以使这更简单

 <!-- Won't change the value of `${foo}` if it's already defined -->
 <property name="foo" value=""/>
 <fail message="Property &quot;foo&quot; has no value">
     <condition>
             <equals arg1="${foo}" arg2=""/>
     </condition>
</fail>

请记住,我无法重置属性!如果${foo}已经有值,则上面的<property>任务不会执行任何操作。这样,我可以消除<isset>条件。这可能很好,因为您有三个属性:

<property name="foo" value=""/>
<property name="bar" value=""/>
<property name="fubar" value=""/>
<fail message="You broke the build, you dufus">
    <condition>
        <or>
            <equals arg1="${foo}" arg2=""/>
            <equals arg1="${bar}" arg2=""/>
            <equals arg1="${fubar}" arg2=""/>
       </or>
    </condition>
</fail>

在其他答案的基础上,这是我的首选形式,作为宏:

<!-- Macro to require a property is not blank -->
<macrodef name="prop-require">
    <attribute name="prop"/>
    <sequential>
        <fail message="Property &quot;@{prop}&quot; must be set">
            <condition>
                <not>
                    <isset property="@{prop}"/>
                </not>
           </condition>
        </fail>
        <fail message="Property &quot;@{prop}&quot; must not be empty">
            <condition>
                <equals arg1="${@{prop}}" arg2=""/>
           </condition>
        </fail>
    </sequential>
</macrodef>

用作:

<target name="deploy.war" description="Do the war deployment ;)">
    <prop-require prop="target.vm" />
    <prop-require prop="target.vip" />
    <!-- ... -->

简洁起见,您可以使用<or>将两个失败元素折叠为一个,但我更喜欢我的错误消息来对待我,就像我无法自己思考一样;)

你可以尝试使用条件...或创建目标,除非

使用 Ant 插件 Flaka,您可以使用如下模式:

 <property name="foo" value="bar"/>
...
   <fl:unless test="has.property.foo">
    ...
   </fl:unless>
...
   <fl:when test="has.property.foo">
    ...
   </fl:when>

具体检查空隙度:

 <fl:when test=" empty '${foo}' ">
  <fail message="Houston we have a problem!!"/>
 </fl:when>

一个完整的例子,也使用一些带有"eq"的等号检查(相反的是"neq"(:

<project xmlns:fl="antlib:it.haefelinger.flaka">
  <!-- some if/then/else construct -->
  <fl:choose>
    <!-- if -->
    <when test=" '${buildtype}' eq 'prod' ">
      <!-- then -->
      <echo>..starting ProductionBuild</echo>
    </when>
    <when test=" '${buildtype}' eq 'test' ">
      <!-- then -->
      <echo>..starting TestBuild</echo>
    </when>
    <!-- else -->
    <otherwise>
      <fl:unless test="has.property.dummybuild">
        <fail message="No valid buildtype !, found => '${buildtype}'"/>
      </fl:unless>
      <echo>.. is DummyBuild</echo>
    </otherwise>
  </fl:choose>
</project>

输出与 ant -f build.xml -Dbuildtype=prod

ant -f build.xml -Dbuildtype=prod -Ddummybuild=any

[echo] ..starting ProductionBuild

输出有拼写错误 => ant - build.xml -dbuildtype=testt

BUILD FAILED
/home/rosebud/workspace/AntTest/build.xml:21: No valid buildtype !, found => 'testt'

输出与 ant -f build.xml -Ddummybuild=任何

[echo] .. is DummyBuild

我使用的是旧版本的 Ant,所以 isset 不可用。相反,我使用以下表示法和等于中的双 $。

  <target name="xxx">
        <echo message="${contextRoot}" />
        <if>
            <!-- check if the contextRoot property is defined. -->
            <equals arg1="${contextRoot}" arg2="$${contextRoot}" />
            <then>
                <!-- it isn't set, set a default -->
                <property name="contextRoot" value="/WebAppCtx" />
            </then>
        </if>
        <echo message="${contextRoot}" />
    </target>

试试这个。

<condition property="isPropertySet" value="true" else="false">
    <and>
        <isset property="my_property"/>
        <length string="${my_property}" trim="true" when="greater" length="0"/>
    </and>
</condition>
<fail unless="isPropertySet" message="The property my_property is not set."/>

从 Ant 1.9.1 开始,unless if可以在所有使用特殊命名空间的任务和嵌套元素。

为了使用此功能,您需要添加以下命名空间声明

xmlns:if="ant:if"
xmlns:unless="ant:unless"

ifunless 命名空间支持以下条件:

  • true - 如果属性的值计算结果为 true,则为 true
  • blank - 如果属性的值为 null 或空,则为 true
  • set - 如果设置了指定的属性,则为 true

样本:

<project name="tryit"
 xmlns:if="ant:if"
 xmlns:unless="ant:unless">
 <exec executable="java">
   <arg line="-X" if:true="${showextendedparams}"/>
   <arg line="-version" unless:true="${showextendedparams}"/>
 </exec>
 <condition property="onmac">
   <os family="mac"/>
 </condition>
 <echo if:set="onmac">running on MacOS</echo>
 <echo unless:set="onmac">not running on MacOS</echo>
</project>

来自蚂蚁手册"如果和除非">

相关内容

  • 没有找到相关文章

最新更新