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