]> source.dussan.org Git - archiva.git/blob
800ec7c597648781d9aca95e4ebd95c0b00a2425
[archiva.git] /
1 package org.apache.archiva.plugins.npanday;
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
24 import java.util.HashMap;
25 import java.util.Map;
26
27 /**
28  * @plexus.component role="org.apache.archiva.metadata.repository.storage.maven2.ArtifactMappingProvider" role-hint="npanday"
29  */
30 public class NPandayArtifactMappingProvider
31     implements ArtifactMappingProvider
32 {
33     private final Map<String, String> classifierAndExtensionToTypeMap;
34
35     private final Map<String, String> typeToExtensionMap;
36
37     public NPandayArtifactMappingProvider()
38     {
39         classifierAndExtensionToTypeMap = new HashMap<String, String>();
40
41         // TODO: this could be one of many - we need to look up the artifact metadata from the POM instead
42         //       should do this anyway so that plugins don't compete for providing an extension
43         classifierAndExtensionToTypeMap.put( "dll", "library" );
44
45         classifierAndExtensionToTypeMap.put( "netmodule", "module" );
46         classifierAndExtensionToTypeMap.put( "exe", "winexe" );
47         classifierAndExtensionToTypeMap.put( "tests:jar", "test-jar" );
48
49         typeToExtensionMap = new HashMap<String, String>();
50         typeToExtensionMap.put( "library", "dll" );
51         typeToExtensionMap.put( "asp", "dll" );
52         typeToExtensionMap.put( "gac", "dll" );
53         typeToExtensionMap.put( "gac_generic", "dll" );
54         typeToExtensionMap.put( "gac_msil", "dll" );
55         typeToExtensionMap.put( "gac_32", "dll" );
56         typeToExtensionMap.put( "netplugin", "dll" );
57         typeToExtensionMap.put( "visual-studio-addin", "dll" );
58         typeToExtensionMap.put( "module", "netmodule" );
59         typeToExtensionMap.put( "exe.config", "exe.config" );
60         typeToExtensionMap.put( "winexe", "exe" );
61         typeToExtensionMap.put( "nar", "nar" );
62     }
63
64     public String mapClassifierAndExtensionToType( String classifier, String ext )
65     {
66         // we don't need classifier
67         return classifierAndExtensionToTypeMap.get( ext );
68     }
69
70     public String mapTypeToExtension( String type )
71     {
72         return typeToExtensionMap.get( type );
73     }
74 }