我正在尝试编写集成<zip>
任务的替换,以便它支持使用<exec>
和7za.exe
的密码。这个想法是有一个插入式的<zip>
任务的替换。
<zip>
支持很多方法来声明包含/排除哪些文件,例如:
-
includes
-
includesfile
-
excludes
-
excludesfile
-
defaultexcludes
- 和嵌套的
<fileset>
声明
是否有一种方法来使用这些fileset
指令内的执行任务的结果?
未记录的属性${toString:filesetid}
包含所有文件,默认分隔符为';'。
要使用pathconvert任务转换分隔符,生成的属性将包含选定分隔符的文件,例如:
<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>
根据答案,我能够提出一个类似于集成<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>