]> source.dussan.org Git - archiva.git/blob
16177da46580cc59ae9eb0adea94c63274e3c28d
[archiva.git] /
1 package org.apache.maven.archiva.repository.content;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider;
23 import org.apache.archiva.metadata.repository.storage.maven2.DefaultArtifactMappingProvider;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28 /**
29  * ArtifactExtensionMapping
30  *
31  * @version $Id$
32  */
33 public class ArtifactExtensionMapping
34 {
35     public static final String MAVEN_ARCHETYPE = "maven-archetype";
36
37     public static final String MAVEN_PLUGIN = "maven-plugin";
38         
39         public static final String MAVEN_ONE_PLUGIN = "maven-one-plugin";
40
41     private static final Map<String, String> typeToExtensionMap;
42
43     // TODO: won't support extensions - need to refactor away this class
44     private static final ArtifactMappingProvider mapping = new DefaultArtifactMappingProvider();
45
46     static
47     {
48         typeToExtensionMap = new HashMap<String, String>();
49         typeToExtensionMap.put( "ejb-client", "jar" );
50         typeToExtensionMap.put( "ejb", "jar" );
51         typeToExtensionMap.put( "java-source", "jar" );
52         typeToExtensionMap.put( "javadoc", "jar" );
53         typeToExtensionMap.put( "test-jar", "jar" );
54         typeToExtensionMap.put( MAVEN_PLUGIN, "jar" );
55
56         typeToExtensionMap.put( MAVEN_ARCHETYPE, "jar" );
57
58         // TODO: move to maven 1 plugin
59         typeToExtensionMap.put( MAVEN_ONE_PLUGIN, "jar" );
60         typeToExtensionMap.put( "javadoc.jar", "jar" );
61         typeToExtensionMap.put( "uberjar", "jar" );
62         typeToExtensionMap.put( "distribution-tgz", "tar.gz" );
63         typeToExtensionMap.put( "distribution-zip", "zip" );
64         typeToExtensionMap.put( "aspect", "jar" );
65     }
66
67     public static String getExtension( String type )
68     {
69         // Try specialized types first.
70         if ( typeToExtensionMap.containsKey( type ) )
71         {
72             return typeToExtensionMap.get( type );
73         }
74
75         // Return type
76         return type;
77     }
78
79     public static String mapExtensionAndClassifierToType( String classifier, String extension )
80     {
81         return mapExtensionAndClassifierToType( classifier, extension, extension );
82     }
83
84     public static String mapExtensionAndClassifierToType( String classifier, String extension,
85                                                            String defaultExtension )
86     {
87         String value = mapping.mapClassifierAndExtensionToType( classifier, extension );
88         if ( value == null )
89         {
90             value = mapToMaven1Type( extension );
91         }
92         return value != null ? value : defaultExtension;
93     }
94
95     public static String mapExtensionToType( String extension )
96     {
97         String value = mapToMaven1Type( extension );
98
99         return value != null ? value : extension;
100     }
101
102     private static String mapToMaven1Type( String extension )
103     {
104         // TODO: Maven 1 plugin
105         String value = null;
106         if ( "tar.gz".equals( extension ) )
107         {
108             value = "distribution-tgz";
109         }
110         else  if ( "tar.bz2".equals( extension ) )
111         {
112             value = "distribution-bzip";
113         }
114         else  if ( "zip".equals( extension ) )
115         {
116             value = "distribution-zip";
117         }
118         return value;
119     }
120 }