]> source.dussan.org Git - archiva.git/blob
0e1bceb02e2eb8893fa17c79cace84ada808e119
[archiva.git] /
1 package org.apache.maven.archiva.model;
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.artifact.InvalidArtifactRTException;
23 import org.apache.maven.artifact.repository.ArtifactRepository;
24 import org.codehaus.plexus.util.StringUtils;
25
26 import java.util.Map;
27
28 /**
29  * ArchivaArtifact 
30  *
31  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
32  * @version $Id$
33  * 
34  * @plexus.component role="org.apache.maven.archiva.model.ArchivaArtifact"
35  */
36 public class ArchivaArtifact
37     implements RepositoryContent
38 {
39     private Map attached;
40
41     private String classifier;
42
43     private RepositoryContentKey key;
44
45     private String type;
46
47     public ArchivaArtifact( ArtifactRepository repository, String groupId, String artifactId, String version, String classifier, String type )
48     {
49         this.key = new RepositoryContentKey( repository, groupId, artifactId, version );
50
51         this.classifier = classifier;
52
53         this.type = type;
54
55         validateIdentity();
56     }
57
58     public void addAttached( ArchivaArtifact attachedArtifact )
59     {
60         attached.put( attachedArtifact.getClassifier(), attachedArtifact );
61         // Naughty, Attached shouldn't have it's own attached artifacts!
62         attachedArtifact.clearAttached();
63     }
64
65     public void clearAttached()
66     {
67         attached.clear();
68     }
69
70     public Map getAttached()
71     {
72         return attached;
73     }
74
75     public String getClassifier()
76     {
77         return classifier;
78     }
79
80     public RepositoryContentKey getRepositoryContentKey()
81     {
82         return key;
83     }
84
85     public String getType()
86     {
87         return type;
88     }
89
90     public boolean hasClassifier()
91     {
92         return StringUtils.isNotEmpty( classifier );
93     }
94
95     public void setAttached( Map attached )
96     {
97         this.attached = attached;
98     }
99
100     public void setRepositoryContentKey( RepositoryContentKey key )
101     {
102         this.key = key;
103     }
104
105     public String toString()
106     {
107         StringBuffer sb = new StringBuffer();
108         if ( key.getGroupId() != null )
109         {
110             sb.append( key.getGroupId() );
111             sb.append( ":" );
112         }
113         appendArtifactTypeClassifierString( sb );
114         sb.append( ":" );
115         if ( key.getVersion() != null )
116         {
117             sb.append( key.getVersion() );
118         }
119
120         return sb.toString();
121     }
122
123     private void appendArtifactTypeClassifierString( StringBuffer sb )
124     {
125         sb.append( key.getArtifactId() );
126         sb.append( ":" );
127         sb.append( getType() );
128         if ( hasClassifier() )
129         {
130             sb.append( ":" );
131             sb.append( getClassifier() );
132         }
133     }
134
135     private boolean empty( String value )
136     {
137         return value == null || value.trim().length() < 1;
138     }
139
140     private void validateIdentity()
141     {
142         if ( empty( key.getGroupId() ) )
143         {
144             throw new InvalidArtifactRTException( key.getGroupId(), key.getArtifactId(), key.getVersion(), type,
145                                                   "The groupId cannot be empty." );
146         }
147
148         if ( key.getArtifactId() == null )
149         {
150             throw new InvalidArtifactRTException( key.getGroupId(), key.getArtifactId(), key.getVersion(), type,
151                                                   "The artifactId cannot be empty." );
152         }
153
154         if ( type == null )
155         {
156             throw new InvalidArtifactRTException( key.getGroupId(), key.getArtifactId(), key.getVersion(), type,
157                                                   "The type cannot be empty." );
158         }
159
160         if ( key.getVersion() == null )
161         {
162             throw new InvalidArtifactRTException( key.getGroupId(), key.getArtifactId(), key.getVersion(), type,
163                                                   "The version cannot be empty." );
164         }
165     }
166 }