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