]> source.dussan.org Git - archiva.git/blob
aef12a553b93394e1bbe6fc2caef4ea75f5dd28b
[archiva.git] /
1 package org.apache.archiva.consumers.core;
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.configuration.ArchivaConfiguration;
23 import org.apache.archiva.configuration.FileTypes;
24 import org.apache.archiva.consumers.AbstractMonitoredConsumer;
25 import org.apache.archiva.consumers.ConsumerException;
26 import org.apache.archiva.consumers.KnownRepositoryContentConsumer;
27 import org.apache.archiva.model.ArtifactReference;
28 import org.apache.archiva.model.ProjectReference;
29 import org.apache.archiva.model.VersionedReference;
30 import org.apache.archiva.repository.ContentNotFoundException;
31 import org.apache.archiva.repository.LayoutException;
32 import org.apache.archiva.repository.ManagedRepository;
33 import org.apache.archiva.repository.ManagedRepositoryContent;
34 import org.apache.archiva.repository.RepositoryException;
35 import org.apache.archiva.repository.RepositoryNotFoundException;
36 import org.apache.archiva.repository.RepositoryRegistry;
37 import org.apache.archiva.repository.metadata.MetadataTools;
38 import org.apache.archiva.repository.metadata.RepositoryMetadataException;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41 import org.springframework.context.annotation.Scope;
42 import org.springframework.stereotype.Service;
43
44 import javax.annotation.PostConstruct;
45 import javax.inject.Inject;
46 import java.io.IOException;
47 import java.nio.file.Files;
48 import java.nio.file.Path;
49 import java.nio.file.Paths;
50 import java.util.ArrayList;
51 import java.util.Date;
52 import java.util.List;
53
54 /**
55  * MetadataUpdaterConsumer will create and update the metadata present within the repository.
56  */
57 @Service( "knownRepositoryContentConsumer#metadata-updater" )
58 @Scope( "prototype" )
59 public class MetadataUpdaterConsumer
60     extends AbstractMonitoredConsumer
61     implements KnownRepositoryContentConsumer
62     // it's prototype bean so we assume configuration won't change during a run
63     //, RegistryListener
64 {
65     private Logger log = LoggerFactory.getLogger( MetadataUpdaterConsumer.class );
66
67     /**
68      * default-value="metadata-updater"
69      */
70     private String id = "metadata-updater";
71
72     private String description = "Update / Create maven-metadata.xml files";
73
74     @Inject
75     private RepositoryRegistry repositoryRegistry;
76
77     @Inject
78     private MetadataTools metadataTools;
79
80     @Inject
81     private ArchivaConfiguration configuration;
82
83     @Inject
84     private FileTypes filetypes;
85
86     private static final String TYPE_METADATA_BAD_INTERNAL_REF = "metadata-bad-internal-ref";
87
88     private static final String TYPE_METADATA_WRITE_FAILURE = "metadata-write-failure";
89
90     private static final String TYPE_METADATA_IO = "metadata-io-warning";
91
92     private ManagedRepositoryContent repository;
93
94     private Path repositoryDir;
95
96     private List<String> includes = new ArrayList<>( 0 );
97
98     private long scanStartTimestamp = 0;
99
100     @Override
101     public String getDescription( )
102     {
103         return description;
104     }
105
106     @Override
107     public String getId( )
108     {
109         return id;
110     }
111
112     public void setIncludes( List<String> includes )
113     {
114         this.includes = includes;
115     }
116
117     @Override
118     public void beginScan( ManagedRepository repoConfig, Date whenGathered )
119         throws ConsumerException
120     {
121         try
122         {
123             ManagedRepository repo = repositoryRegistry.getManagedRepository( repoConfig.getId( ) );
124             if (repo==null) {
125                 throw new RepositoryNotFoundException( "Repository not found: "+repoConfig.getId() );
126             }
127             this.repository = repo.getContent();
128             if (this.repository==null) {
129                 throw new RepositoryNotFoundException( "Repository content not found: "+repoConfig.getId() );
130             }
131             this.repositoryDir = Paths.get( repository.getRepoRoot( ) );
132             this.scanStartTimestamp = System.currentTimeMillis( );
133         }
134         catch ( RepositoryException e )
135         {
136             throw new ConsumerException( e.getMessage( ), e );
137         }
138     }
139
140     @Override
141     public void beginScan( ManagedRepository repository, Date whenGathered, boolean executeOnEntireRepo )
142         throws ConsumerException
143     {
144         beginScan( repository, whenGathered );
145     }
146
147     @Override
148     public void completeScan( )
149     {
150         /* do nothing here */
151     }
152
153     @Override
154     public void completeScan( boolean executeOnEntireRepo )
155     {
156         completeScan( );
157     }
158
159     @Override
160     public List<String> getExcludes( )
161     {
162         return getDefaultArtifactExclusions( );
163     }
164
165     @Override
166     public List<String> getIncludes( )
167     {
168         return this.includes;
169     }
170
171     @Override
172     public void processFile( String path )
173         throws ConsumerException
174     {
175         // Ignore paths like .index etc
176         if ( !path.startsWith( "." ) )
177         {
178             try
179             {
180                 ArtifactReference artifact = repository.toArtifactReference( path );
181                 updateVersionMetadata( artifact, path );
182                 updateProjectMetadata( artifact, path );
183             }
184             catch ( LayoutException e )
185             {
186                 log.info( "Not processing path that is not an artifact: {} ({})", path, e.getMessage( ) );
187             }
188         }
189     }
190
191     @Override
192     public void processFile( String path, boolean executeOnEntireRepo )
193         throws Exception
194     {
195         processFile( path );
196     }
197
198     private void updateProjectMetadata( ArtifactReference artifact, String path )
199     {
200         ProjectReference projectRef = new ProjectReference( );
201         projectRef.setGroupId( artifact.getGroupId( ) );
202         projectRef.setArtifactId( artifact.getArtifactId( ) );
203
204         try
205         {
206             String metadataPath = this.metadataTools.toPath( projectRef );
207
208             Path projectMetadata = this.repositoryDir.resolve( metadataPath );
209
210             if ( Files.exists(projectMetadata) && ( Files.getLastModifiedTime( projectMetadata).toMillis() >= this.scanStartTimestamp ) )
211             {
212                 // This metadata is up to date. skip it.
213                 log.debug( "Skipping uptodate metadata: {}", this.metadataTools.toPath( projectRef ) );
214                 return;
215             }
216
217             metadataTools.updateMetadata( this.repository, projectRef );
218             log.debug( "Updated metadata: {}", this.metadataTools.toPath( projectRef ) );
219         }
220         catch ( LayoutException e )
221         {
222             log.warn( "Unable to convert path [{}] to an internal project reference: ", path, e );
223             triggerConsumerWarning( TYPE_METADATA_BAD_INTERNAL_REF,
224                 "Unable to convert path [" + path + "] to an internal project reference: "
225                     + e.getMessage( ) );
226         }
227         catch ( RepositoryMetadataException e )
228         {
229             log.error( "Unable to write project metadat for artifact [{}]:", path, e );
230             triggerConsumerError( TYPE_METADATA_WRITE_FAILURE,
231                 "Unable to write project metadata for artifact [" + path + "]: " + e.getMessage( ) );
232         }
233         catch ( IOException e )
234         {
235             log.warn( "Project metadata not written due to IO warning: ", e );
236             triggerConsumerWarning( TYPE_METADATA_IO,
237                 "Project metadata not written due to IO warning: " + e.getMessage( ) );
238         }
239         catch ( ContentNotFoundException e )
240         {
241             log.warn( "Project metadata not written because no versions were found to update: ", e );
242             triggerConsumerWarning( TYPE_METADATA_IO,
243                 "Project metadata not written because no versions were found to update: "
244                     + e.getMessage( ) );
245         }
246     }
247
248     private void updateVersionMetadata( ArtifactReference artifact, String path )
249     {
250         VersionedReference versionRef = new VersionedReference( );
251         versionRef.setGroupId( artifact.getGroupId( ) );
252         versionRef.setArtifactId( artifact.getArtifactId( ) );
253         versionRef.setVersion( artifact.getVersion( ) );
254
255         try
256         {
257             String metadataPath = this.metadataTools.toPath( versionRef );
258
259             Path projectMetadata = this.repositoryDir.resolve( metadataPath );
260
261             if ( Files.exists(projectMetadata) && ( Files.getLastModifiedTime( projectMetadata ).toMillis() >= this.scanStartTimestamp ) )
262             {
263                 // This metadata is up to date. skip it.
264                 log.debug( "Skipping uptodate metadata: {}", this.metadataTools.toPath( versionRef ) );
265                 return;
266             }
267
268             metadataTools.updateMetadata( this.repository, versionRef );
269             log.debug( "Updated metadata: {}", this.metadataTools.toPath( versionRef ) );
270         }
271         catch ( LayoutException e )
272         {
273             log.warn( "Unable to convert path [{}] to an internal version reference: ", path, e );
274             triggerConsumerWarning( TYPE_METADATA_BAD_INTERNAL_REF,
275                 "Unable to convert path [" + path + "] to an internal version reference: "
276                     + e.getMessage( ) );
277         }
278         catch ( RepositoryMetadataException e )
279         {
280             log.error( "Unable to write version metadata for artifact [{}]: ", path, e );
281             triggerConsumerError( TYPE_METADATA_WRITE_FAILURE,
282                 "Unable to write version metadata for artifact [" + path + "]: " + e.getMessage( ) );
283         }
284         catch ( IOException e )
285         {
286             log.warn( "Version metadata not written due to IO warning: ", e );
287             triggerConsumerWarning( TYPE_METADATA_IO,
288                 "Version metadata not written due to IO warning: " + e.getMessage( ) );
289         }
290         catch ( ContentNotFoundException e )
291         {
292             log.warn( "Version metadata not written because no versions were found to update: ", e );
293             triggerConsumerWarning( TYPE_METADATA_IO,
294                 "Version metadata not written because no versions were found to update: "
295                     + e.getMessage( ) );
296         }
297     }
298
299     /*
300     @Override
301     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
302     {
303         if ( ConfigurationNames.isRepositoryScanning( propertyName ) )
304         {
305             initIncludes();
306         }
307     }
308
309     @Override
310     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
311     {
312         // do nothing here
313     }
314     */
315
316     private void initIncludes( )
317     {
318         includes = new ArrayList<>( filetypes.getFileTypePatterns( FileTypes.ARTIFACTS ) );
319     }
320
321     @PostConstruct
322     public void initialize( )
323     {
324         //configuration.addChangeListener( this );
325
326         initIncludes( );
327     }
328 }