]> source.dussan.org Git - archiva.git/blob
3c28cec2c110040370f87f4eb946d8f57822fc09
[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 java.util.HashMap;
23 import java.util.Map;
24 import java.util.regex.Pattern;
25
26 /**
27  * ArtifactExtensionMapping
28  *
29  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
30  * @version $Id$
31  */
32 public class ArtifactExtensionMapping
33 {
34     public static final String MAVEN_ARCHETYPE = "maven-archetype";
35
36     public static final String MAVEN_PLUGIN = "maven-plugin";
37
38     private static final Map<String, String> typeToExtensionMap;
39
40     private static final Pattern mavenPluginPattern = Pattern.compile( "^(maven-.*-plugin)|(.*-maven-plugin)$" );
41
42     static
43     {
44         typeToExtensionMap = new HashMap<String, String>();
45         typeToExtensionMap.put( "ejb-client", "jar" );
46         typeToExtensionMap.put( "ejb", "jar" );
47         typeToExtensionMap.put( "distribution-tgz", "tar.gz" );
48         typeToExtensionMap.put( "distribution-zip", "zip" );
49         typeToExtensionMap.put( "java-source", "jar" );
50         typeToExtensionMap.put( "javadoc.jar", "jar" );
51         typeToExtensionMap.put( "javadoc", "jar" );
52         typeToExtensionMap.put( "aspect", "jar" );
53         typeToExtensionMap.put( "uberjar", "jar" );
54         typeToExtensionMap.put( MAVEN_PLUGIN, "jar" );
55         typeToExtensionMap.put( MAVEN_ARCHETYPE, "jar" );
56     }
57
58     public static String getExtension( String type )
59     {
60         // Try specialized types first.
61         if ( typeToExtensionMap.containsKey( type ) )
62         {
63             return (String) typeToExtensionMap.get( type );
64         }
65
66         // Return type
67         return type.replace( '-', '.' );
68     }
69
70     /**
71      * Determine if a given artifact Id conforms to the naming scheme for a maven plugin.
72      *
73      * @param artifactId the artifactId to test.
74      * @return true if this artifactId conforms to the naming scheme for a maven plugin.
75      */
76     public static boolean isMavenPlugin( String artifactId )
77     {
78         return mavenPluginPattern.matcher( artifactId ).matches();
79     }
80
81     public static String mapExtensionAndClassifierToType( String classifier, String extension )
82     {
83         if ( "sources".equals( classifier ) )
84         {
85             return "java-source";
86         }
87         else if ( "javadoc".equals( classifier ) )
88         {
89             return "javadoc";
90         }
91         return mapExtensionToType( extension );
92     }
93
94     public static String mapExtensionToType( String extension )
95     {
96         if ( "tar.gz".equals( extension ) )
97         {
98             return "distribution-tgz";
99         }
100         else  if ( "tar.bz2".equals( extension ) )
101         {
102             return "distribution-bzip";
103         }
104         else  if ( "zip".equals( extension ) )
105         {
106             return "distribution-zip";
107         }
108         return extension;
109     }
110 }