是否有一种通用的方法来访问ANT任务的结果文件集?

时间:2015-09-03 13:07:23

标签: ant fileset

我正在尝试替换集成的<zip>任务,以便使用<exec>7za.exe支持密码。我们的想法是直接替换<zip>任务。

困难在于,<zip>支持如此多的方式来声明要包含/排除的文件,例如:

  • includes
  • includesfile
  • excludes
  • excludesfile
  • defaultexcludes
  • 和嵌套的<fileset>声明

有没有办法在exec任务中使用这些fileset指令的结果?

2 个答案:

答案 0 :(得分:0)

未记录的属性${toString:filesetid}包含所有文件,默认分隔符为&#39 ;;&#39;。
要转换分隔符使用pathconvert task,结果属性将包含文件选择分离器,fe :

<fileset dir="C:/diff1" includes="**/*.html" id="diff">
 <different targetdir="C:/diff2"
   ignoreFileTimes="true"/>
</fileset>

<!-- one file one line -->
<pathconvert refid="diff" pathsep="${line.separator}" property="htmldiff"/>

<!-- blank as separator -->
<pathconvert refid="diff" pathsep=" " property="htmldiff"/>  

<echo file="C:/diff1/htmldiff.txt">${htmldiff}</echo>

用于带有arg行的exec,空白作为分隔符似乎是合适的。

答案 1 :(得分:0)

基于answer我能够提出一个类似于集成<zip>任务的解决方案。使用<pathconvert>和单引号可以解决问题:

<macrodef name="sevenzip" description="Command line interface for 7zip">
    <attribute name="level"  default="5"/> <!-- will be ignored for now, just to make it compatible with normal ZIP task -->
    <attribute name="basedir"/>
    <attribute name="excludes" default=""/>
    <attribute name="includes" default="**/**"/>
    <attribute name="destfile"/>
    <attribute name="password" default=""/>

    <sequential>
        <description>7-Zip integration</description>
        <local name="passArg" />
        <if>
            <equals arg1="@{password}" arg2=""/>
            <then>
                <property name="passArg" value="" />
            </then>
            <else>
                <!-- p<SECRET> = set password of archive -->
                <property name="passArg" value='"-p@{password}"' />
            </else>
        </if>

        <fileset id="mask" dir="@{basedir}">
            <include name="@{includes}" />
            <exclude name="@{excludes}" />
        </fileset>

        <local name="mask" />
        <pathconvert property="mask" refid="mask" pathsep="' '" />
        <!-- the single quotes help to wrap file names containing spaces -->

        <exec executable="${7zip.cmd}" failonerror="true">
            <!-- command -->
            <arg value="a"/>                <!-- a : add files to archive -->
            <!-- arg value="u"/ -->             <!-- u : update files to archive -->

            <!-- switches -->
            <arg value="-bd"/>              <!-- -bd : disable percentage indicator -->
            <arg value="-tzip"/>            <!-- -t<type> : set type of archive -->             

            <arg value="${passArg}"/>       

            <arg value="--"/>               <!-- : Stop switches parsing -->

            <!-- archive file -->
            <arg value="@{destfile}"/>

            <!-- file names / wildcards -->
            <arg line="'${mask}'"/>
            <!-- 
                the single quotes are the outter wrapper for the single quotes
                from pathconvert, the line attribute add the result to the arguments
                but NOT as a single escaped string
            -->

        </exec>
    </sequential>
</macrodef>