| 1 | |
package org.apache.maven.artifact.repository.layout; |
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
import org.apache.maven.artifact.Artifact; |
| 23 | |
import org.apache.maven.artifact.handler.ArtifactHandler; |
| 24 | |
import org.apache.maven.artifact.metadata.ArtifactMetadata; |
| 25 | |
import org.apache.maven.artifact.repository.ArtifactRepository; |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | 0 | public class DefaultRepositoryLayout |
| 31 | |
implements ArtifactRepositoryLayout |
| 32 | |
{ |
| 33 | |
private static final char PATH_SEPARATOR = '/'; |
| 34 | |
|
| 35 | |
private static final char GROUP_SEPARATOR = '.'; |
| 36 | |
|
| 37 | |
private static final char ARTIFACT_SEPARATOR = '-'; |
| 38 | |
|
| 39 | |
public String pathOf( Artifact artifact ) |
| 40 | |
{ |
| 41 | 0 | ArtifactHandler artifactHandler = artifact.getArtifactHandler(); |
| 42 | |
|
| 43 | 0 | StringBuffer path = new StringBuffer(); |
| 44 | |
|
| 45 | 0 | path.append( formatAsDirectory( artifact.getGroupId() ) ).append( PATH_SEPARATOR ); |
| 46 | 0 | path.append( artifact.getArtifactId() ).append( PATH_SEPARATOR ); |
| 47 | 0 | path.append( artifact.getBaseVersion() ).append( PATH_SEPARATOR ); |
| 48 | 0 | path.append( artifact.getArtifactId() ).append( ARTIFACT_SEPARATOR ).append( artifact.getVersion() ); |
| 49 | |
|
| 50 | 0 | if ( artifact.hasClassifier() ) |
| 51 | |
{ |
| 52 | 0 | path.append( ARTIFACT_SEPARATOR ).append( artifact.getClassifier() ); |
| 53 | |
} |
| 54 | |
|
| 55 | 0 | if ( artifactHandler.getExtension() != null && artifactHandler.getExtension().length() > 0 ) |
| 56 | |
{ |
| 57 | 0 | path.append( GROUP_SEPARATOR ).append( artifactHandler.getExtension() ); |
| 58 | |
} |
| 59 | |
|
| 60 | 0 | return path.toString(); |
| 61 | |
} |
| 62 | |
|
| 63 | |
public String pathOfLocalRepositoryMetadata( ArtifactMetadata metadata, ArtifactRepository repository ) |
| 64 | |
{ |
| 65 | 0 | return pathOfRepositoryMetadata( metadata, metadata.getLocalFilename( repository ) ); |
| 66 | |
} |
| 67 | |
|
| 68 | |
private String pathOfRepositoryMetadata( ArtifactMetadata metadata, String filename ) |
| 69 | |
{ |
| 70 | 0 | StringBuffer path = new StringBuffer(); |
| 71 | |
|
| 72 | 0 | path.append( formatAsDirectory( metadata.getGroupId() ) ).append( PATH_SEPARATOR ); |
| 73 | 0 | if ( !metadata.storedInGroupDirectory() ) |
| 74 | |
{ |
| 75 | 0 | path.append( metadata.getArtifactId() ).append( PATH_SEPARATOR ); |
| 76 | |
|
| 77 | 0 | if ( metadata.storedInArtifactVersionDirectory() ) |
| 78 | |
{ |
| 79 | 0 | path.append( metadata.getBaseVersion() ).append( PATH_SEPARATOR ); |
| 80 | |
} |
| 81 | |
} |
| 82 | |
|
| 83 | 0 | path.append( filename ); |
| 84 | |
|
| 85 | 0 | return path.toString(); |
| 86 | |
} |
| 87 | |
|
| 88 | |
public String pathOfRemoteRepositoryMetadata( ArtifactMetadata metadata ) |
| 89 | |
{ |
| 90 | 0 | return pathOfRepositoryMetadata( metadata, metadata.getRemoteFilename() ); |
| 91 | |
} |
| 92 | |
|
| 93 | |
private String formatAsDirectory( String directory ) |
| 94 | |
{ |
| 95 | 0 | return directory.replace( GROUP_SEPARATOR, PATH_SEPARATOR ); |
| 96 | |
} |
| 97 | |
|
| 98 | |
} |