View Javadoc

1   /*
2    * Copyright 2007-2008 the original author or authors.
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  
17  package org.gwe.drivers.bundleManagers;
18  
19  
20  /**
21   * @author Marco Ruiz
22   * @since Aug 12, 2007
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  }