]> source.dussan.org Git - archiva.git/blob
c71de5ca22b722dd177d7555861e38f39681a26c
[archiva.git] /
1 package org.apache.maven.archiva.consumers.core.repository;
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.Collections;
24 import java.util.Date;
25 import java.util.List;
26
27 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
28 import org.apache.maven.archiva.configuration.ConfigurationNames;
29 import org.apache.maven.archiva.configuration.FileTypes;
30 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
31 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
32 import org.apache.maven.archiva.consumers.ConsumerException;
33 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
34 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
35 import org.apache.maven.archiva.repository.RepositoryContentFactory;
36 import org.apache.maven.archiva.repository.RepositoryException;
37 import org.apache.maven.archiva.repository.RepositoryNotFoundException;
38 import org.apache.maven.archiva.repository.events.RepositoryListener;
39 import org.apache.maven.archiva.repository.metadata.MetadataTools;
40 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
41 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
42 import org.codehaus.plexus.registry.Registry;
43 import org.codehaus.plexus.registry.RegistryListener;
44
45 /**
46  * Consumer for removing old snapshots in the repository based on the criteria
47  * specified by the user.
48  *
49  * 
50  * @plexus.component 
51  *      role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer"
52  *      role-hint="repository-purge"
53  *      instantiation-strategy="per-lookup"
54  */
55 public class RepositoryPurgeConsumer
56     extends AbstractMonitoredConsumer
57     implements KnownRepositoryContentConsumer, RegistryListener, Initializable
58 {
59     /**
60      * @plexus.configuration default-value="repository-purge"
61      */
62     private String id;
63
64     /**
65      * @plexus.configuration default-value="Purge repository of old snapshots"
66      */
67     private String description;
68
69     /**
70      * @plexus.requirement
71      */
72     private ArchivaConfiguration configuration;
73
74     /**
75      * @plexus.requirement
76      */
77     private RepositoryContentFactory repositoryFactory;
78
79     /**
80      * @plexus.requirement
81      */
82     private MetadataTools metadataTools;
83
84     /**
85      * @plexus.requirement
86      */
87     private FileTypes filetypes;
88
89     private List<String> includes = new ArrayList<String>();
90
91     private RepositoryPurge repoPurge;
92
93     private RepositoryPurge cleanUp;
94
95     private boolean deleteReleasedSnapshots;
96
97     /** @plexus.requirement role="org.apache.maven.archiva.repository.events.RepositoryListener" */
98     private List<RepositoryListener> listeners = Collections.emptyList();
99     
100     public String getId()
101     {
102         return this.id;
103     }
104
105     public String getDescription()
106     {
107         return this.description;
108     }
109
110     public boolean isPermanent()
111     {
112         return false;
113     }
114
115     public List<String> getExcludes()
116     {
117         return getDefaultArtifactExclusions();
118     }
119
120     public List<String> getIncludes()
121     {
122         return this.includes;
123     }
124
125     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
126         throws ConsumerException
127     {
128         try
129         {
130             ManagedRepositoryContent repositoryContent = repositoryFactory.getManagedRepositoryContent( repository
131                 .getId() );
132
133             if ( repository.getDaysOlder() != 0 )
134             {
135                 repoPurge = new DaysOldRepositoryPurge( repositoryContent, repository.getDaysOlder(), 
136                                                         repository.getRetentionCount(), listeners );
137             }
138             else
139             {
140                 repoPurge = new RetentionCountRepositoryPurge( repositoryContent, repository.getRetentionCount(), 
141                                                                listeners );
142             }
143             
144             cleanUp =
145                 new CleanupReleasedSnapshotsRepositoryPurge( repositoryContent, metadataTools, configuration,
146                                                              repositoryFactory, listeners );
147
148             deleteReleasedSnapshots = repository.isDeleteReleasedSnapshots();
149         }
150         catch ( RepositoryNotFoundException e )
151         {
152             throw new ConsumerException( "Can't run repository purge: " + e.getMessage(), e );
153         }
154         catch ( RepositoryException e )
155         {
156             throw new ConsumerException( "Can't run repository purge: " + e.getMessage(), e );
157         }
158     }
159
160     public void processFile( String path )
161         throws ConsumerException
162     {
163         try
164         {
165             if ( deleteReleasedSnapshots )
166             {
167                 cleanUp.process( path );
168             }
169
170             repoPurge.process( path );
171         }
172         catch ( RepositoryPurgeException rpe )
173         {
174             throw new ConsumerException( rpe.getMessage(), rpe );
175         }
176     }
177
178     public void completeScan()
179     {
180         /* do nothing */
181     }
182
183     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
184     {
185         if ( ConfigurationNames.isRepositoryScanning( propertyName ) )
186         {
187             initIncludes();
188         }
189     }
190
191     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
192     {
193         /* do nothing */
194     }
195
196     private void initIncludes()
197     {
198         includes.clear();
199
200         includes.addAll( filetypes.getFileTypePatterns( FileTypes.ARTIFACTS ) );
201     }
202
203     public void initialize()
204         throws InitializationException
205     {
206         configuration.addChangeListener( this );
207
208         initIncludes();
209     }
210
211     public boolean isProcessUnmodified()
212     {
213         // we need to check all files for deletion, especially if not modified
214         return true;
215     }
216 }