]> source.dussan.org Git - archiva.git/blob
6d462c2fbac38e81960bee178bdc7f1a24d29e74
[archiva.git] /
1 package org.apache.maven.archiva.consumers.database;
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.consumers.AbstractMonitoredConsumer;
23 import org.apache.maven.archiva.consumers.ConsumerException;
24 import org.apache.maven.archiva.consumers.DatabaseCleanupConsumer;
25 import org.apache.maven.archiva.model.ArchivaArtifact;
26 import org.apache.maven.archiva.database.ArtifactDAO;
27 import org.apache.maven.archiva.database.ArchivaDatabaseException;
28 import org.apache.maven.archiva.repository.ManagedRepositoryContent;
29 import org.apache.maven.archiva.repository.RepositoryContentFactory;
30 import org.apache.maven.archiva.repository.RepositoryException;
31 import org.apache.maven.archiva.repository.layout.BidirectionalRepositoryLayout;
32 import org.apache.maven.archiva.repository.layout.LayoutException;
33 import org.apache.maven.archiva.repository.layout.BidirectionalRepositoryLayoutFactory;
34
35 import java.util.List;
36 import java.io.File;
37
38 /**
39  * Consumer for cleaning up the database of artifacts that are no longer existing in the repository. 
40  *
41  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
42  *         <a href="mailto:oching@apache.org">Maria Odea Ching</a>
43  * @version $Id$
44  * 
45  * @plexus.component role="org.apache.maven.archiva.consumers.DatabaseCleanupConsumer"
46  *                   role-hint="not-present-remove-db-artifact"
47  *                   instantiation-strategy="per-lookup"
48  */
49 public class DatabaseCleanupRemoveArtifactConsumer
50     extends AbstractMonitoredConsumer
51     implements DatabaseCleanupConsumer
52 {
53     /**
54      * @plexus.configuration default-value="not-present-remove-db-artifact"
55      */
56     private String id;
57
58     /**
59      * @plexus.configuration default-value="Remove artifact from database if not present on filesystem."
60      */
61     private String description;
62
63     /**
64      * @plexus.requirement role-hint="jdo"
65      */
66     private ArtifactDAO artifactDAO;
67
68     /**
69      * @plexus.requirement
70      */
71     private BidirectionalRepositoryLayoutFactory layoutFactory;
72     
73     /**
74      * @plexus.requirement
75      */
76     private RepositoryContentFactory repositoryFactory;
77
78     public void beginScan()
79     {
80         // TODO Auto-generated method stub
81
82     }
83
84     public void completeScan()
85     {
86         // TODO Auto-generated method stub
87     }
88
89     public List<String> getIncludedTypes()
90     {   
91         return null;
92     }
93
94     public void processArchivaArtifact( ArchivaArtifact artifact )
95         throws ConsumerException
96     {   
97         try
98         {
99                 ManagedRepositoryContent repositoryContent = 
100                         repositoryFactory.getManagedRepositoryContent( artifact.getModel().getRepositoryId() );
101          
102                 File file = new File( repositoryContent.getRepoRoot(), toPath( artifact ) );
103                 
104                 if( !file.exists() )
105                 {                            
106                         artifactDAO.deleteArtifact( artifact );
107                 }               
108         }
109         catch ( RepositoryException re )
110         {
111                 throw new ConsumerException( "Can't run database cleanup remove artifact consumer: " + 
112                                 re.getMessage() );
113         }
114         catch ( ArchivaDatabaseException e )
115         {
116             throw new ConsumerException( e.getMessage() );
117         }
118     }           
119
120     public String getDescription()
121     {
122         return description;
123     }
124
125     public String getId()
126     {
127         return id;
128     }
129
130     public boolean isPermanent()
131     {
132         return false;
133     }
134
135     public void setArtifactDAO( ArtifactDAO artifactDAO)
136     {
137         this.artifactDAO = artifactDAO;
138     }
139
140     public void setBidirectionalRepositoryLayoutFactory( BidirectionalRepositoryLayoutFactory layoutFactory )
141     {
142         this.layoutFactory = layoutFactory;
143     }
144     
145     public void setRepositoryFactory( RepositoryContentFactory repositoryFactory )
146     {
147         this.repositoryFactory = repositoryFactory;
148     }
149
150     private String toPath( ArchivaArtifact artifact )
151     {
152         try
153         {
154             BidirectionalRepositoryLayout layout = layoutFactory.getLayout( artifact );
155
156             return layout.toPath( artifact );
157         }
158         catch ( LayoutException e )
159         {
160             getLogger().warn( "Unable to calculate path for artifact: " + artifact );
161             return null;
162         }
163     }
164     
165 }