]> source.dussan.org Git - archiva.git/blob
325581c9cf433731ea3976461aa772820f266db0
[archiva.git] /
1 package org.apache.maven.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.commons.collections.CollectionUtils;
23 import org.apache.commons.lang.StringUtils;
24 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
25 import org.apache.maven.archiva.configuration.ConfigurationNames;
26 import org.apache.maven.archiva.configuration.FileTypes;
27 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
28 import org.apache.maven.archiva.consumers.AbstractMonitoredConsumer;
29 import org.apache.maven.archiva.consumers.ConsumerException;
30 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
31 import org.codehaus.plexus.registry.Registry;
32 import org.codehaus.plexus.registry.RegistryListener;
33 import org.springframework.context.annotation.Scope;
34 import org.springframework.stereotype.Service;
35
36 import javax.annotation.PostConstruct;
37 import javax.inject.Inject;
38 import java.io.File;
39 import java.util.ArrayList;
40 import java.util.Date;
41 import java.util.List;
42
43 /**
44  * AutoRemoveConsumer
45  *
46  * @version $Id$
47  * plexus.component role="org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer"
48  * role-hint="auto-remove"
49  * instantiation-strategy="per-lookup"
50  */
51 @Service("knownRepositoryContentConsumer#auto-remove")
52 @Scope("prototype")
53 public class AutoRemoveConsumer
54     extends AbstractMonitoredConsumer
55     implements KnownRepositoryContentConsumer, RegistryListener
56 {
57     /**
58      * plexus.configuration default-value="auto-remove"
59      */
60     private String id = "auto-remove";
61
62     /**
63      * plexus.configuration default-value="Automatically Remove File from Filesystem."
64      */
65     private String description = "Automatically Remove File from Filesystem.";
66
67     /**
68      * plexus.requirement
69      */
70     @Inject
71     private ArchivaConfiguration configuration;
72
73     /**
74      * plexus.requirement
75      */
76     @Inject
77     private FileTypes filetypes;
78
79     private File repositoryDir;
80     
81     private List<String> includes = new ArrayList<String>();
82
83     public String getId()
84     {
85         return this.id;
86     }
87
88     public String getDescription()
89     {
90         return this.description;
91     }
92
93     public boolean isPermanent()
94     {
95         return false;
96     }
97
98     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered )
99         throws ConsumerException
100     {
101         this.repositoryDir = new File( repository.getLocation() );
102     }
103
104     public void beginScan( ManagedRepositoryConfiguration repository, Date whenGathered, boolean executeOnEntireRepo )
105         throws ConsumerException
106     {
107         beginScan( repository, whenGathered );
108     }
109
110     public void completeScan()
111     {
112         /* do nothing */
113     }
114
115     public void completeScan( boolean executeOnEntireRepo )
116     {
117         completeScan();
118     }
119
120     public List<String> getExcludes()
121     {
122         return null;
123     }
124
125     public List<String> getIncludes()
126     {
127         return includes;
128     }
129
130     public void processFile( String path )
131         throws ConsumerException
132     {
133         File file = new File( this.repositoryDir, path );
134         if ( file.exists() )
135         {
136             triggerConsumerInfo( "(Auto) Removing File: " + file.getAbsolutePath() );
137             file.delete();
138         }
139     }
140
141     public void processFile( String path, boolean executeOnEntireRepo )
142         throws ConsumerException
143     {
144         processFile( path );    
145     }
146
147     public void afterConfigurationChange( Registry registry, String propertyName, Object propertyValue )
148     {                
149         if ( ConfigurationNames.isRepositoryScanning( propertyName ) )
150         {
151             initIncludes();
152         }
153     }
154
155     public void beforeConfigurationChange( Registry registry, String propertyName, Object propertyValue )
156     {
157         /* do nothing */
158     }
159
160     private void initIncludes()
161     {
162         includes.clear();
163
164         includes.addAll( filetypes.getFileTypePatterns( FileTypes.AUTO_REMOVE ) );
165     }
166
167     @PostConstruct
168     public void initialize()
169     {
170         configuration.addChangeListener( this );
171
172         initIncludes();
173     }
174 }