Subversion Repositories XServices

Rev

Rev 6 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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