]> source.dussan.org Git - archiva.git/blob
fe83b6ec37008408cdf5d7209323efe9adc6859a
[archiva.git] /
1 package org.apache.maven.archiva.converter.legacy;
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.configuration.ManagedRepositoryConfiguration;
23 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
24 import org.apache.maven.archiva.consumers.ConsumerException;
25 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
26 import org.apache.maven.archiva.converter.artifact.ArtifactConversionException;
27 import org.apache.maven.archiva.converter.artifact.ArtifactConverter;
28 import org.apache.maven.archiva.model.ArtifactReference;
29 import org.apache.maven.archiva.repository.layout.BidirectionalRepositoryLayout;
30 import org.apache.maven.archiva.repository.layout.LayoutException;
31 import org.apache.maven.artifact.Artifact;
32 import org.apache.maven.artifact.factory.ArtifactFactory;
33 import org.apache.maven.artifact.repository.ArtifactRepository;
34
35 import java.util.ArrayList;
36 import java.util.List;
37
38 /**
39  * LegacyConverterArtifactConsumer - convert artifacts as they are found
40  * into the destination repository. 
41  *
42  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
43  * @version $Id$
44  * 
45  * @plexus.component role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer"
46  *     role-hint="artifact-legacy-to-default-converter"
47  *     instantiation-strategy="per-lookup"
48  */
49 public class LegacyConverterArtifactConsumer
50     extends AbstractMonitoredConsumer
51     implements KnownRepositoryContentConsumer
52 {
53     /**
54      * @plexus.requirement role-hint="legacy-to-default"
55      */
56     private ArtifactConverter artifactConverter;
57
58     /**
59      * @plexus.requirement
60      */
61     private ArtifactFactory artifactFactory;
62
63     /**
64      * @plexus.requirement role-hint="legacy"
65      */
66     private BidirectionalRepositoryLayout bidirectionalLayout;
67
68     private ArtifactRepository destinationRepository;
69
70     private List includes;
71
72     private List excludes;
73
74     public LegacyConverterArtifactConsumer()
75     {
76         includes = new ArrayList();
77         includes.add( "**/*.jar" );
78         includes.add( "**/*.ear" );
79         includes.add( "**/*.war" );
80     }
81
82     public void beginScan( ManagedRepositoryConfiguration repository )
83         throws ConsumerException
84     {
85
86     }
87
88     public void completeScan()
89     {
90
91     }
92
93     public List getExcludes()
94     {
95         return excludes;
96     }
97
98     public List getIncludes()
99     {
100         return includes;
101     }
102
103     public void processFile( String path )
104         throws ConsumerException
105     {
106         try
107         {
108             ArtifactReference reference = bidirectionalLayout.toArtifactReference( path );
109             Artifact artifact = artifactFactory.createArtifact( reference.getGroupId(), reference.getArtifactId(),
110                                                                 reference.getVersion(), reference.getClassifier(),
111                                                                 reference.getType() );
112             artifactConverter.convert( artifact, destinationRepository );
113         }
114         catch ( LayoutException e )
115         {
116             getLogger().warn( "Unable to convert artifact: " + path + " : " + e.getMessage(), e );
117         }
118         catch ( ArtifactConversionException e )
119         {
120             getLogger().warn( "Unable to convert artifact: " + path + " : " + e.getMessage(), e );
121         }
122     }
123
124     public String getDescription()
125     {
126         return "Legacy Artifact to Default Artifact Converter";
127     }
128
129     public String getId()
130     {
131         return "artifact-legacy-to-default-converter";
132     }
133
134     public boolean isPermanent()
135     {
136         return false;
137     }
138
139     public void setExcludes( List excludes )
140     {
141         this.excludes = excludes;
142     }
143
144     public void setIncludes( List includes )
145     {
146         this.includes = includes;
147     }
148
149     public ArtifactRepository getDestinationRepository()
150     {
151         return destinationRepository;
152     }
153
154     public void setDestinationRepository( ArtifactRepository destinationRepository )
155     {
156         this.destinationRepository = destinationRepository;
157     }
158 }