Subversion Repositories XServices

Rev

Rev 10 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 brianR 1
/*
2
 *   Copyright 2010 Brian Rosenberger (Brutex Network)
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with the License.
6
 *   You may obtain a copy of the License at
7
 *
8
 *       http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 *   Unless required by applicable law or agreed to in writing, software
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
15
 */
16
package net.brutex.xservices.types;
17
 
18
import java.io.File;
19
import javax.xml.bind.annotation.XmlElement;
20
import javax.xml.bind.annotation.XmlEnum;
21
import javax.xml.bind.annotation.XmlType;
22
import org.apache.tools.ant.Project;
23
import org.apache.tools.ant.types.FileSet;
24
import org.apache.tools.ant.types.Resource;
25
import org.apache.tools.ant.types.TarFileSet;
26
import org.apache.tools.ant.types.ZipFileSet;
27
 
28
/**
10 brianR 29
 * Set of files from various sources.
6 brianR 30
 *
31
 * @author Brian Rosenberger, bru@brutex.de
32
 */
10 brianR 33
@XmlType(name = "FileSetType", namespace = "http://ws.xservices.brutex.net",
23 brianR 34
propOrder = {"type", "source", "filter", "excludes", "casesensitive"})
6 brianR 35
public class FileSetResource {
36
 
10 brianR 37
    /**
38
     * Type of FileSet
39
     */
40
    @XmlElement(name = "FileSetType", required = true, nillable = false, defaultValue = "FILES")
6 brianR 41
    public FileSetType type = FileSetType.FILES;
10 brianR 42
    /**
43
     * File set source.
44
     *
45
     * Depends on the file set type. This is either an archive file or a
46
     * directory.
47
     */
48
    @XmlElement(name = "source", required = true, nillable = false)
6 brianR 49
    public String source = "";
10 brianR 50
    /**
51
     * Pattern of files to include.
52
     *
53
     */
23 brianR 54
    @XmlElement(name = PatternSetType.XML_NAME, required = true, nillable = true)
55
    public PatternSetType filter;
56
 
10 brianR 57
    /**
58
     * Pattern of files to exclude.
59
     */
60
    @XmlElement(name = "excludes", required = false, nillable = true, defaultValue = "")
61
    public String excludes = "";
62
    /**
63
     * Case sensitivity for include/ exclude patterns.
64
     */
65
    @XmlElement(name = "casesensitive", required = true, nillable = false, defaultValue = "true")
6 brianR 66
    public boolean casesensitive = true;
67
 
10 brianR 68
    /**
69
     * Get Ant FileSet for this file set.
70
     *
71
     * @param p     Ant project
72
     * @return      Ant FileSet for this file set.
73
     */
6 brianR 74
    public FileSet getAntFileSet(Project p) {
75
        FileSet set = null;
10 brianR 76
        switch (type) {
6 brianR 77
            case ZIP:
78
                ZipFileSet zset = new ZipFileSet();
79
                zset.setSrc(new File(source));
80
                zset.setEncoding(System.getProperty("file.encoding"));
81
                set = zset;
82
                break;
83
            case TAR:
84
                TarFileSet tset = new TarFileSet();
85
                tset.setSrc(new File(source));
86
                set = tset;
87
                break;
88
            case GZTAR:
89
                Resource res = new FileResource(FileResource.Type.GZIP, source).getAntResource(p);
90
                TarFileSet gzset = new TarFileSet();
91
                gzset.setSrcResource(res);
92
                set = gzset;
93
                break;
94
            default: //FILES
95
                set = new FileSet();
96
                set.setDir(new File(source));
97
        }
98
        set.setProject(p);
23 brianR 99
        //set.setIncludes(includes);
6 brianR 100
        set.setExcludes(excludes);
101
        set.setCaseSensitive(casesensitive);
102
 
103
        return set;
104
    }
105
 
10 brianR 106
    /**
107
     * File set types.
108
     */
6 brianR 109
    @XmlEnum
10 brianR 110
    public enum FileSetType {
111
 
112
        /**
113
         * Set of files (this is based on a directory, so provide a path only
114
         * as file set source).
115
         */
116
        FILES,
117
        /**
118
         * Set of files inside a ZIP archive.
119
         */
120
        ZIP,
121
        /**
122
         * Set of files inside a TAR archive (without compression).
123
         */
124
        TAR,
125
        /**
126
         * Set of files inside a gzip compressed TAR archive.
127
         */
128
        GZTAR
6 brianR 129
    }
130
}