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