phing用户手册之core task译文

本文并没有翻译core task中的所有内容,而是选择了常用task进行翻译。查看原文请猛击这里

AvailableTask
测试某资源或文件是否存在,并设置某属性为相应的值
例子
  1. <available file=“/tmp/test.txt” property=“test_txt_exists” value=“Yes”/>
  2. <available file=“/home/foo” type=“dir” property=“properties.yetanother” />
  3. <available file=“/home/foo/bar” property=“foo.bar” value=“Well, yes” />

这里,AvailableTask首先检查/tmp目录下是否存在名为test.txt的文件或目录。

然后检查/home目录下是否有目录foo,接下来检查/home/foo目录下是否存在名为bar的文件或目录
如果/tmp/test.txt存在,test_txt_exists属性将被设为Yes,如果/home/foo存在并且为目录,则properties.yetanother被设为true(默认)。
如果/home/foo/bar存在,foo.bar将被设为“Well,yes”。
ChmodTask
设置文件或目录的权限。
例子
  1. <chmod file=“test.txt” mode=“0755” />
  2. <chmod file=“/home/test” mode=“0775” />
  3. <chmod file=“/home/test/mine.txt” mode=“0500” verbose=“true” />

更多信息可参见php手册中的chmod([http://php.net/chmod])

支持的嵌套标签
<fileset>
ChownTask
改变文件或目录的所有者
例子
  1. <chown file=“my-file.txt” user=“foo” />
  2. <chown file=“my-file.txt” user=“username.groupname” />
  3. <chown file=“/home/test/my-directory” user=“bar” />
  4. <chown file=“/home/test/my-file.txt” user=“foo” verbose=“true” failonerror=“false” />

支持的嵌套标签

<fileset>
ConditionTask
条件为真时设置某属性值–相当于Available和UpToDate的整合。
注意
如果条件为真,属性值默认被设为true;条件为假,属性值不会被设置。你可以通过设置value属性来替代默认值。
condition是嵌套元素,你必须指定一个条件(且只能为一个)。

例子

  1. <condition property=“isMacOrWindows”>
  2. <or>
  3. <os family=“mac”/>
  4. <os family=“windows”/>
  5. </or>
  6. </condition>
CopyTask
拷贝文件或目录
注意
只有当源文件比目标文件新或目标 文件不存在时,文件才会被拷贝。
可以明确指定进行文件覆盖。
例子
一方面,CopyTask直持逐个文件的拷贝:
<copy file="somefile.txt" tofile="/tmp/anotherfile.bak" overwrite="true"/>

除此之外,CopyTask还支持Fileset,你可以很方便的加入或排除文件。或多信息可参考FileSet–特别要注意它的defaultexcludes属性。CopyTask还支持Mappers和Filters,所以你几乎可以完成任何对文件内容和文件名的处理。

  1. <copy todir=“/tmp/backup” >
  2. <fileset dir=“.”>
  3. <include name=“**/*.txt” />
  4. <include name=“**/*.doc” />
  5. <include name=“**/*.swx” />
  6. </fileset>
  7. <filelist dir=“.” files=“test.html”/>
  8. </copy>
  9. <copy todir=“build” >
  10. <fileset defaultexcludes=“false” expandsymboliclinks=“true” dir=“.”>
  11. <include name=“**/*.php” />
  12. </fileset>
  13. </copy>

支持的嵌套标签

<fileset>
<filelist>
<filterchain>
<mapper>
DeleteTask
删除文件或目录
例子
  1. < Delete a specific file >
  2. <delete file=“/tmp/foo.bar” />
  3. < Delete a directory >
  4. <delete dir=“/tmp/darl” includeemptydirs=“true” verbose=“true” failonerror=“true” />
  5. < Delete using a fileset >
  6. <delete>
  7. <fileset dir=“/tmp”>
  8. <include name=“*.bar” />
  9. </fileset>
  10. </delete>

支持的嵌套标签

<fileset>
EchoTask
向标准输出和日志中输出消息
注意
可以指定日志级别
可以直接向文件输出消息,在这种情况下将会默认使用用append选项替代overwrite,日志级别选项将失效。
除此之外,echotask还可以输出fileset元素中指定的文件的内容。
  1. <echo msg=“Phing rocks!” />
  2. <echo message=“Binarycloud, too.” />
  3. <echo>And don’t forget Propel.</echo>
  4. <echo file=“test.txt” append=“false”>This is a test message</echo>

支持的嵌套标签

<fileset>
ExecTask
执行shell命令
注意
使用这个task,你可以很快为Phing增加一条新的命令。
如果你经常使用某命令,建议你为它写一个task。
例子
  1. < List the contents of “/home. >
  2. <exec command=“ls -l” dir=“/home” />
  3. < Start the make process in “/usr/src/php-4.0. >
  4. <exec command=“make” dir=“/usr/src/php-4.0” />
  5. < List the contents of “/tmpout to a file. >
  6. <exec command=“ls -l /tmp > foo.out” escape=“false” />

支持的嵌套标签

<arg>
IfTask
根据条件的真假执行相应的任务
属性
这个task没有任何属性,待测试的条件通过一组嵌套元素指定。可用的元素参见(第五章 Conditons一节
和<condition>一样,只能使用一个条件,你可以使用<and>或<or>将它们连接起来。
你可以使用三种不同的子元素:<elseif>, <then>和<else>。它们是可选项,而非必须的。在一个iftask中<then>和<else>只能出现一次。它们可以包含Phing task。
例子
  1. <if>
  2. <equals arg1=“${foo}” arg2=“bar” />
  3. <then>
  4. <echo message=“The value of property foo is bar” />
  5. </then>
  6. <else>
  7. <echo message=“The value of property foo is not bar” />
  8. </else>
  9. </if>
  10. <if>
  11. <equals arg1=“${foo}” arg2=“bar” />
  12. <then>
  13. <echo message=“The value of property foo is ‘bar'” />
  14. </then>
  15. <elseif>
  16. <equals arg1=“${foo}” arg2=“foo” />
  17. <then>
  18. <echo message=“The value of property foo is ‘foo'” />
  19. </then>
  20. </elseif>
  21. <else>
  22. <echo message=“The value of property foo is not ‘foo’ or ‘bar'” />
  23. </else>
  24. </if>

MkdirTask

创建目录,包含任何必要的目录(类似shell的mkdir -p)
注意
如果目录存在,则不作任何事情
例子
  1. < Create a temp directory >
  2. <mkdir dir=“/tmp/foo” />
  3. < Using mkdir with a property >
  4. <mkdir dir=“${dirs.install}/tmp” />

MoveTask

将文件或目录移到新的位置
注意
默认情况下,目标文件如果存在,它将被覆盖。如果overwrite被置为false,只能在源文比目标文件新,或者目标文件不存在时,源文件才会被移动。
如果移动成功,源文件或目录将被删除。
例子
  1. < The following will move the filesomefile.txtto “/tmpand
  2. change its filename toanotherfile.bak. It will overwrite
  3. an existing file. >
  4. <move file=“somefile.txt” tofile=“/tmp/anotherfile.bak” overwrite=“true”/>
  5. < This will move the “/tmpdirectory to “/home/default/tmp“,
  6. preserving the directory name. So the final name is
  7. “/home/default/tmp/tmp. Empty directories are also copied >
  8. <move file=“/tmp” todir=“/home/default/tmp” includeemptydirs=“true” />

PhingCallTask

调用同一phing项目中的target
注意
<phingcall>可以包含<property>标签,用于定义新的属性。
只有在<phingcall>之外没有定义时,这些新的属性值才会生效。
例子
在下面的例子中,我们定义了property1和foo,它们仅能在被调用的target中访问到。
  1. <target name=“foo”>
  2. <phingcall target=“bar”>
  3. <property name=“property1” value=“aaaaa” />
  4. <property name=“foo” value=“baz” />
  5. </phingcall>
  6. </target>
  7. <target name=“bar” depends=“init”>
  8. <echo message=“prop is ${property1} ${foo}” />
  9. </target>

 

PropertyTask
用于用户自定义属性值
例子
  1. <property name=“strings.test” value=“Harr harr, more power!” />
  2. <echo message=“${strings.test}” />
  3. <property name=“foo.bar” value=“Yet another property…” />
  4. <echo message=“${foo.bar}” />
  5. <property file=“build.properties” />
TouchTask
TouchTask很像Unix的touch命令:设置文件的modtime。
注意
默认修改为当前时间
例子
  1. <touch file=“README.txt” millis=“102134111” />
  2. <touch file=“COPYING.lib” datetime=“10/10/1999 09:31 AM” />
    原文:https://blog.csdn.net/qmhball/article/details/9118387