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