1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.drivers.bundleManagers;
18
19
20
21
22
23
24 public enum BundleType {
25 NONE("ls", ""),
26 ZIP("unzip", "zip"),
27 TAR("tar -xf", "tar"),
28 TAR_GZ("tar -xzf", "tar.gz"),
29 TAR_BZ2("tar -xjf", "tar.bz2");
30
31 public static BundleType get(String ext) {
32 if (ext != null) {
33 ext = ext.toLowerCase();
34 for (BundleType type : BundleType.values())
35 if (type.getExtension().equals(ext)) return type;
36 }
37
38 return null;
39 }
40
41 private String cmd;
42 private String ext;
43
44 BundleType(String unbundleCommand, String extension) {
45 cmd = unbundleCommand;
46 ext = extension;
47 }
48
49 public String getUnbundleCommand() {
50 return cmd;
51 }
52
53 public String getExtension() {
54 return ext;
55 }
56
57 public String createName(String name) {
58 return name + (ext.equals("") ? "" : "." + ext);
59 }
60 }