如何在ant目标和其他目标中使用exec退出状态

时间:2013-08-22 14:39:12

标签: ant build ant-contrib

我从其他目标(targetCaller)调用一个目标(targetCalled),如下所示:

<target depends="local.init" 
   description="creating application jar file of the classes dir"
    name="run_check_server_client_jar_gen">

    <antcall target="run_check_server_client_jar_callExec"/>
    <if>
        <isset property="result"/>
        <then>
             <echo>Result: ${result}</echo>
        </then>
        <else>
            <echo>Propert result is not set yet !! </echo>
        </else>
    </if>
</target>

现在我从targetCalled调用一个exec,如下所示:

<target depends="local.init" 
    description="Running check for all classes in 
            client jar should also be present in server jar"
            name="run_check_server_client_jar_callExec">
    <exec executable="/bin/bash" resultproperty="${result}" failonerror="false">
        <arg value="count_client_server_inner_classes.sh"/>
        <arg value="gjf1common_client_classes.jar"/>
        <arg value="gjf1common_classes.jar"/>
    </exec>
    <if>
        <isset property="result"/>
        <then>
            <echo>Inside::Result: ${result}</echo>
        </then>
        <else>
            <echo>Inside::Property result is not set yet !!!! </echo>
        </else>
    </if>
</target>

在我的count_client_server_inner_classes.sh中,我将退出以下状态: 退出“$ result” 它给了我“:需要数字参数”

我希望那个可执行文件应该给我一个字符串,这可能吗?

我想在targetCalled和targetCaller中使用此返回值。 但是当我回应结果属性时......它给了我255。 有谁可以指出我哪里出错了?

1 个答案:

答案 0 :(得分:0)

Ant不是脚本语言。这不是描述构建的好方法 - 但它是一种糟糕的脚本语言。尝试使用伪函数调用在ant中编写脚本,如果/或者像这样,那就太糟糕了。一般来说,远离if / else - 如果您发现需要它们,您可能需要重新评估您的工具选择。不惜一切代价避免antcall - 它会旋转一个新的jvm并制作一些疯狂的意大利面 - 使用取决于控制目标之间的执行流程。

要回答你的一个问题 - 结果属性总是退出代码,在bash的情况下,它总是变为int 0-255。

有趣的部分是在bash脚本中...发布。它返回255,这是一个特殊的代码 - 意味着它超出了范围。我怀疑你让它返回一个字符串?

你可以通过简单地失败来简化整个混乱:

<target name="run-check-server-client-jar-gen" depends="local-init" 
   description="creating application jar file of the classes dir"> 
    <exec executable="/bin/bash" failonerror="true">
        <arg value="count_client_server_inner_classes.sh"/>
        <arg value="gjf1common_client_classes.jar"/>
        <arg value="gjf1common_classes.jar"/>
    </exec>     
</target>

如果你真的必须提供自定义错误状态,你可以将结果属性设置为你在哪里然后你可以:

<target name="run-check-server-client-jar-gen" depends="local-init" 
   description="creating application jar file of the classes dir"> 
    <exec executable="/bin/bash" resultproperty="${return.code}">
        <arg value="count_client_server_inner_classes.sh"/>
        <arg value="gjf1common_client_classes.jar"/>
        <arg value="gjf1common_classes.jar"/>
    </exec>     
    <fail message="crazy shell script madness terminated abnormally.">
        <condition>
            <isfailure code="${return.code}"/>
        </condition>
    </fail>
</target>

我承认我实际上没有运行上面的片段,你可能需要按摩一下,但我很确定它们会去。 另一篇关于风格的编辑说明:目标通常使用-而不是_.来分隔单词,其中属性使用.