Ant :DataType

来源:http://www.cnblogs.com/f1194361820/archive/2016/04/20/5412898.html
-Advertisement-
Play Games

DataType patternset fileset selector filelist path regexp patternset fileset selector filelist path regexp Ant datatype Ant中,除了Property可以做為Task執行時使用的值 ...


 

Ant datatype

Ant中,除了Property可以做為Task執行時使用的值以外,Ant也提供了很多的數據類型。

 

 

 

下麵就對這些數據類型做簡要的介紹:

 

 

PatternSet

    PatternSet用於定義一個pattern集合,同時可以指定一個id屬性,以供在其它地方引用它。Patterset可以定義在project下,也可以定義在target下。

 

使用patternset時,有兩種方式:

·使用includes,includesfile,excludes,excludesfile屬性

Attribute

Description

includes

指定要包括的文件名的pattern

includesfile

一個包括的文件的名稱

excludes

指定要排除的文件名的pattern

excludesfile

一個要排除的文件名

多個pattern之間用以逗號或者空格作為分隔符。

 

·使用include,exclude|includesfile,excludesfile子元素

 

Include或者exclude元素有下列屬性:

Attribute

Description

Required

name

the pattern to in/exclude.

Yes

if

Only use this pattern if the named property is set.

No

unless

Only use this pattern if the named property is not set.

No

 

<?xml version="1.0" encoding="UTF-8" ?>

<project default="main">

 

    <!--define a ptattern set with includes attribute-->

    <patternset id="java_files_pattern" includes="**/*.java,**/*.class">

    </patternset>

 

   

    <!--define a ptattern set with include subelement-->

    <patternset id="java_files_pattern2">

       <include name="**/*.java"/>

       <include name="**/*.class"/>

    </patternset>

 

    <target name="main">

       <echo>java_files_pattern:</echo>

       <echo>${toString:java_files_pattern}</echo>

 

       <echo>java_files_pattern2</echo>

        <echo>${toString:java_files_pattern2}</echo>

    </target>

</project>

上面的代碼段中使用了${toString:refid},Ant中有些數據類型(例如PatternSet)是支持toString方法的,使用${toString:refid}可以執行refid對應的toString方法。

測試結果如下:

main:

     [echo] java_files_pattern:

     [echo] patternSet{ includes: [**/*.java, **/*.class] excludes: [] }

     [echo] java_files_pattern2

     [echo] patternSet{ includes: [**/*.java, **/*.class] excludes: [] }

 

BUILD SUCCESSFUL

 

在實際的應用中,顯式地使用PatternSet本身用的並不多見。因為FileSet隱式的包括了PatternSet,所以常見的用法都是在FileSet。另外所有隱含FileSet的數據類型,同樣也等於隱含了PatternSet。

 

FileSet

    大多數構建過程中,都會操作文件集合,包括編譯、複製、刪除、打包等操作。這類構建流程中,非常重要,因此Ant提供了一種FileSet的Datatype。

    文件集是以一個單獨的目錄做為根目錄的文件集合。預設情況下,由根目錄指定的文件集合包含了整個目錄樹下的所有的文件,其中包括了所有子目錄中的所有文件。

 

Attribute

Description

Required

dir

根目錄

必須指定

兩者之一

file

指定單一文件

defaultexcludes

參考patternset

No

includes

參考patternset

No

includesfile

參考patternset

No

excludes

參考patternset

No

excludesfile

參考patternset

No

casesensitive

是否大小寫敏感。預設是true

No

followsymlinks

Shall symbolic links be followed? Defaults to true. See the note below.

No

erroronmissingdir

Specify what happens if the base directory does not exist.

If true a build error will happen, if false, the fileset will be ignored/empty.

 Defaults to true.

 Since Apache Ant 1.7.1 (default is true for backward compatibility reasons.)

No

 

在使用FileSet時,要麼是只有一個文件,指定file屬性即可。要麼是多個文件,指定一個dir即可。

另外,可以在<fileset />中內嵌<patternset /> 和<slector />

 

下麵是官方給出的例子:

使用<patternset />的子元素:

<fileset dir="${server.src}" casesensitive="yes">

  <include name="**/*.java"/>

  <exclude name="**/*Test*"/>

</fileset>

 

使用內嵌<patternset/>:
<fileset dir="${server.src}" casesensitive="yes">
  <patternset id="non.test.sources">
    <include name="**/*.java"/>
    <exclude name="**/*Test*"/>
  </patternset>
</fileset>

 

使用selector:
<fileset dir="${server.src}" casesensitive="yes">
  <filename name="**/*.java"/>
  <not>
    <filename name="**/*Test*"/>
  </not>
</fileset>

 

 

Selector

Patterset 是根據文件名進行匹配的,有時你想要刪除過期的文件或者向遠程站點上傳發生變化的文件。你想用什麼辦法刪除文件而保留目錄呢?selector可以對細化對文件的選擇。

   

 

從上圖也是可以看出selector分為兩類:常用的選擇器、選擇器容器。

選擇器容器中,可以有多個選擇器。

 

常用選擇器:

  • <contains> - Select files that contain a particular text string
  • <date> - Select files that have been modified either before or after a particular date and time
  • <depend> - Select files that have been modified more recently than equivalent files elsewhere
  • <depth> - Select files that appear so many directories down in a directory tree
  • <different> - Select files that are different from those elsewhere
  • <filename> - Select files whose name matches a particular pattern. Equivalent to the include and exclude elements of a patternset.
  • <present> - Select files that either do or do not exist in some other location
  • <containsregexp> - Select files that match a regular expression
  • <size> - Select files that are larger or smaller than a particular number of bytes.
  • <type> - Select files that are either regular files or directories.
  • <modified> - Select files if the return value of the configured algorithm is different from that stored in a cache.
  • <signedselector> - Select files if they are signed, and optionally if they have a signature of a certain name.
  • <scriptselector> - Use a BSF or JSR 223 scripting language to create your own selector
  • <readable> - Select files if they are readable.
  • <writable> - Select files if they are writable.

 

 

常用選擇器容器:

  • <and>
  • <contains>
  • <custom>
  • <date>
  • <depend>
  • <depth>
  • <filename>
  • <majority>
  • <none>
  • <not>
  • <or>
  • <present>
  • <selector>
  • <size>

 

 

有關selector的使用,可以參考官方文檔:

http://ant.apache.org/manual/Types/selectors.html

 

 

FileList

    FileList 是一個List,是一個有序集合。如果需要使用有序文件集合時,可以使用這個。

Attribute

Description

Required

dir

根目錄

Yes

files

文件列表,使用空格或者逗號分隔

如果沒有內嵌<file />,

就必須指定這個屬性。

 

 

<filelist 
    id="docfiles" 
    dir="${doc.src}"
    files="foo.xml
           bar.xml"/> 
 
<filelist 
    id="docfiles" 
    dir="${doc.src}">
    <file name="foo.xml"/>
    <file name="bar.xml"/>
</filelist>

 

 

Path

Path用於指定路徑,例如環境變數中的PATH、ClassPath。在定義path時,使用:或者;進行分隔。(備註:寫build.xml時,可以使用:或者;。由Ant自動的根據操作系統轉為相應的分隔符。)

<classpath> 與<path />的方法是一樣的。<path />下可以有<pathelement />以及其它的資源集合(例如:fileset,filelist,dirset,path等)

 

<pathelement> 使用說明

 

Pathelement可以指定兩種屬性:

    ·location 用於指定一個文件或者目錄。可以是相對路徑,也可以是絕對路徑。如果是相對路徑,則是相對於project的basedir。

    ·path 由,或者;分隔的多個location。

<classpath>
      <pathelement path="${classpath}"/>
      <pathelement location="lib/helper.jar"/>
    </classpath>

 

 

<classpath>
      <pathelement path="${classpath}"/>
      <fileset dir="lib">
        <include name="**/*.jar"/>
      </fileset>
      <pathelement location="classes"/>
      <dirset dir="${build.dir}">
        <include name="apps/**/classes"/>
        <exclude name="apps/**/*Test*"/>
      </dirset>
      <filelist refid="third-party_jars"/>
    </classpath>

 

 

每個path,classpath也有2個屬性:id,refid。

id用於被其它地方使用refid引用。

<project ... >
  <path id="project.class.path">
    <pathelement location="lib/"/>
    <pathelement path="${java.class.path}/"/>
    <pathelement path="${additional.path}"/>
  </path>
 
  <target ... >
    <rmic ...>
      <classpath refid="project.class.path"/>
    </rmic>
  </target>
 
  <target ... >
    <javac ...>
      <classpath refid="project.class.path"/>
    </javac>
  </target>
</project>

 

 

 

 

 

Regexp

Regexp代表一個正則表達式,可以指定id屬性,供其它地方(task或者selector等)使用。

Attribute

Description

Required

pattern

regular expression pattern

Yes


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • FFMPEG版本:2.6.2,編譯環境:ubuntu 14.4。 不同版本的FFMPEG參數可能不同,可在FFMPEG目錄下使用以下命令查看 --help print this message --list-decoders show all available decoders --list-en ...
  • 讀書筆記之:C++ Primer (第4版)及習題(ch01-ch11) [++++] 第2章 數據和基本類型 1. 整型 2. 習題:左值和右值 3. C++關鍵字/保留字和操作符替代值 4. 聲明,定義, 初始化和賦值是不同的概念。 聲明是說明一個變數的存在,不會為變數進行記憶體空間的分配。 定義 ...
  • Java語言中一切皆對象. 創建一個對象的類型 class ATypeName { /* Class body goes here */} 類(即對象類型)中有兩種類型的元素 欄位(數據成員):任何類型的對象,可以通過引用與其進行通信,也可以是基本類型中的一種. 方法(成員函數):由名稱,參數,返回 ...
  • Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. F ...
  • 一、事務併發會遇到的幾個問題: 1)臟讀 :兩個事務同時操作同一數據,A事務對該數據進行了修改還沒提交的時候,B事務訪問了該條事務,並且使用了該數據,此時A事務回滾,那麼B事務讀到的就是臟數據。 比如事務1,修改了某個數據 事務2,剛好訪問了事務1修改後的數據 此時事務1,回滾了操作 事務2,讀到還 ...
  • 對於集合框架,是非常重要的知識,是程式員必須要知道的知識點。 但是我們為什麼要引入集合框架呢? 我們之前用過數組存儲數據,但是採用數組存儲存在了很多的缺陷。而現在我們引用了集合框架,可以完全彌補了數組的缺陷。它靈活,使用,提高軟體的開發效率。並且不同的集合適用於不同的場合。 集合框架的好處: 1.容 ...
  • 本教程自從發佈以來,已經被下載了2000多萬次,創造了國內視頻教程的記錄。該教程是尚學堂老師上課時真實錄製而成, 充分展現了講師的風采,高超的技術、幽默的授課風格、深入淺出的分析。 本教程從最基本的數據類型開始講解,直到多線程等技術要點,很多要點都做了記憶體分析,真正做到了深入淺出,讓學習者 更容易入 ...
  • 最近在研究pathon的命令行解析工具,argparse,它是Python標準庫中推薦使用的編寫命令行程式的工具。 以前老是做UI程式,今天試了下命令行程式,感覺相當好,不用再花大把時間去研究界面問題,尤其是vc++中尤其繁瑣。 現在用python來實現命令行,核心計算模塊可以用c自己寫擴展庫,效果 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...