]> source.dussan.org Git - archiva.git/blob
a1b4d78e799bf9cbba9155c656c66233a888b58f
[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.commons.lang.StringUtils;
23 import org.apache.maven.archiva.common.utils.VersionUtil;
24 import org.apache.maven.archiva.model.ArchivaArtifact;
25 import org.apache.maven.archiva.model.ArtifactReference;
26 import org.apache.maven.archiva.model.ProjectReference;
27 import org.apache.maven.archiva.model.VersionedReference;
28 import org.apache.maven.archiva.repository.layout.LayoutException;
29
30 /**
31  * AbstractDefaultRepositoryContent - common methods for working with default (maven 2) layout. 
32  *
33  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
34  * @version $Id$
35  */
36 public abstract class AbstractDefaultRepositoryContent
37 {
38     public static final String MAVEN_METADATA = "maven-metadata.xml";
39
40     protected static final char PATH_SEPARATOR = '/';
41
42     protected static final char GROUP_SEPARATOR = '.';
43
44     protected static final char ARTIFACT_SEPARATOR = '-';
45
46     public ArtifactReference toArtifactReference( String path )
47         throws LayoutException
48     {
49         return DefaultPathParser.toArtifactReference( path );
50     }
51
52     public String toMetadataPath( ProjectReference reference )
53     {
54         StringBuffer path = new StringBuffer();
55     
56         path.append( formatAsDirectory( reference.getGroupId() ) ).append( PATH_SEPARATOR );
57         path.append( reference.getArtifactId() ).append( PATH_SEPARATOR );
58         path.append( MAVEN_METADATA );
59     
60         return path.toString();
61     }
62
63     public String toMetadataPath( VersionedReference reference )
64     {
65         StringBuffer path = new StringBuffer();
66     
67         path.append( formatAsDirectory( reference.getGroupId() ) ).append( PATH_SEPARATOR );
68         path.append( reference.getArtifactId() ).append( PATH_SEPARATOR );
69         if ( reference.getVersion() != null )
70         {
71             // add the version only if it is present
72             path.append( VersionUtil.getBaseVersion( reference.getVersion() ) ).append( PATH_SEPARATOR );
73         }
74         path.append( MAVEN_METADATA );
75     
76         return path.toString();
77     }
78     
79     public String toPath( ArchivaArtifact reference )
80     {
81         if ( reference == null )
82         {
83             throw new IllegalArgumentException( "ArchivaArtifact cannot be null" );
84         }
85
86         String baseVersion = VersionUtil.getBaseVersion( reference.getVersion() );
87         return toPath( reference.getGroupId(), reference.getArtifactId(), baseVersion, reference.getVersion(),
88                        reference.getClassifier(), reference.getType() );
89     }
90
91     public String toPath( ArtifactReference reference )
92     {
93         if ( reference == null )
94         {
95             throw new IllegalArgumentException( "Artifact reference cannot be null" );
96         }
97
98         String baseVersion = VersionUtil.getBaseVersion( reference.getVersion() );
99         return toPath( reference.getGroupId(), reference.getArtifactId(), baseVersion, reference.getVersion(),
100                        reference.getClassifier(), reference.getType() );
101     }
102
103     private String formatAsDirectory( String directory )
104     {
105         return directory.replace( GROUP_SEPARATOR, PATH_SEPARATOR );
106     }
107
108     private String toPath( String groupId, String artifactId, String baseVersion, String version, String classifier,
109                            String type )
110     {
111         StringBuffer path = new StringBuffer();
112
113         path.append( formatAsDirectory( groupId ) ).append( PATH_SEPARATOR );
114         path.append( artifactId ).append( PATH_SEPARATOR );
115
116         if ( baseVersion != null )
117         {
118             path.append( baseVersion ).append( PATH_SEPARATOR );
119             if ( ( version != null ) && ( type != null ) )
120             {
121                 path.append( artifactId ).append( ARTIFACT_SEPARATOR ).append( version );
122
123                 if ( StringUtils.isNotBlank( classifier ) )
124                 {
125                     path.append( ARTIFACT_SEPARATOR ).append( classifier );
126                 }
127
128                 path.append( GROUP_SEPARATOR ).append( ArtifactExtensionMapping.getExtension( type ) );
129             }
130         }
131
132         return path.toString();
133     }
134 }