]> source.dussan.org Git - archiva.git/blob
a739c9b967ac66aab10c230d038a61d48f624465
[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.maven.archiva.repository.ArchivaArtifact;
23
24 import java.util.HashMap;
25 import java.util.Map;
26
27 /**
28  * LegacyBidirectionalRepositoryLayout - the layout mechanism for use by Maven 1.x repositories.
29  *
30  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
31  * @version $Id$
32  * 
33  * @plexus.component role="org.apache.maven.archiva.repository.content.BidirectionalRepositoryLayout"
34  *                   role-hint="legacy"
35  */
36 public class LegacyBidirectionalRepositoryLayout implements BidirectionalRepositoryLayout
37 {
38     private static final String PATH_SEPARATOR = "/";
39
40     private ArtifactExtensionMapping extensionMapper = new LegacyArtifactExtensionMapping();
41
42     private Map typeToDirectoryMap;
43
44     public LegacyBidirectionalRepositoryLayout()
45     {
46         typeToDirectoryMap = new HashMap();
47         typeToDirectoryMap.put( "ejb-client", "ejb" );
48         typeToDirectoryMap.put( "distribution-tgz", "distribution" );
49         typeToDirectoryMap.put( "distribution-zip", "distribution" );
50     }
51
52     public String getId()
53     {
54         return "legacy";
55     }
56
57     public String pathOf( ArchivaArtifact artifact )
58     {
59         StringBuffer path = new StringBuffer();
60
61         path.append( artifact.getGroupId() ).append( PATH_SEPARATOR );
62         path.append( getDirectory( artifact ) ).append( PATH_SEPARATOR );
63         path.append( artifact.getArtifactId() ).append( '-' ).append( artifact.getVersion() );
64
65         if ( artifact.hasClassifier() )
66         {
67             path.append( '-' ).append( artifact.getClassifier() );
68         }
69
70         path.append( '.' ).append( extensionMapper.getExtension( artifact ) );
71
72         return path.toString();
73     }
74
75     private String getDirectory( ArchivaArtifact artifact )
76     {
77         // Special Cases involving classifiers and type.
78         if ( "jar".equals( artifact.getType() ) && "sources".equals( artifact.getClassifier() ) )
79         {
80             return "javadoc.jars";
81         }
82
83         // Special Cases involving only type.
84         String dirname = (String) typeToDirectoryMap.get( artifact.getType() );
85
86         if ( dirname != null )
87         {
88             return dirname + "s";
89         }
90
91         // Default process.
92         return artifact.getType() + "s";
93     }
94
95     public ArchivaArtifact toArtifact( String path )
96     {
97         // TODO Auto-generated method stub
98         return null;
99     }
100
101 }