]> source.dussan.org Git - archiva.git/blob
7422b79d3cce5f44adbdeaa15cab8694f15ec706
[archiva.git] /
1 package org.apache.maven.archiva.repository.scanner;
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.io.File;
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.apache.commons.collections.CollectionUtils;
27 import org.apache.maven.archiva.configuration.FileTypes;
28 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
29 import org.apache.maven.archiva.consumers.InvalidRepositoryContentConsumer;
30 import org.apache.maven.archiva.consumers.KnownRepositoryContentConsumer;
31 import org.apache.maven.archiva.consumers.RepositoryContentConsumer;
32 import org.apache.maven.archiva.repository.RepositoryException;
33 import org.codehaus.plexus.util.DirectoryWalker;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37 /**
38  * DefaultRepositoryScanner
39  *
40  * @version $Id$
41  * @plexus.component role="org.apache.maven.archiva.repository.scanner.RepositoryScanner"
42  */
43 public class DefaultRepositoryScanner
44     implements RepositoryScanner
45 {
46     private Logger log = LoggerFactory.getLogger( DefaultRepositoryScanner.class );
47     
48     /**
49      * @plexus.requirement
50      */
51     private FileTypes filetypes;
52
53     /**
54      * @plexus.requirement
55      */
56     private RepositoryContentConsumers consumerUtil;
57     
58     public RepositoryScanStatistics scan( ManagedRepositoryConfiguration repository, long changesSince )
59         throws RepositoryException
60     {
61         List<KnownRepositoryContentConsumer> knownContentConsumers = consumerUtil.getSelectedKnownConsumers();
62         List<InvalidRepositoryContentConsumer> invalidContentConsumers = consumerUtil.getSelectedInvalidConsumers();
63         List<String> ignoredPatterns = filetypes.getFileTypePatterns( FileTypes.IGNORED );
64
65         return scan( repository, knownContentConsumers, invalidContentConsumers, ignoredPatterns, changesSince );
66     }
67
68     public RepositoryScanStatistics scan( ManagedRepositoryConfiguration repository,
69                                           List<KnownRepositoryContentConsumer> knownContentConsumers,
70                                           List<InvalidRepositoryContentConsumer> invalidContentConsumers,
71                                           List<String> ignoredContentPatterns, long changesSince )
72         throws RepositoryException
73     {
74         if ( repository == null )
75         {
76             throw new IllegalArgumentException( "Unable to operate on a null repository." );
77         }
78
79         File repositoryBase = new File( repository.getLocation() );
80
81         if ( !repositoryBase.exists() )
82         {
83             throw new UnsupportedOperationException( "Unable to scan a repository, directory "
84                 + repositoryBase.getAbsolutePath() + " does not exist." );
85         }
86
87         if ( !repositoryBase.isDirectory() )
88         {
89             throw new UnsupportedOperationException( "Unable to scan a repository, path "
90                 + repositoryBase.getAbsolutePath() + " is not a directory." );
91         }
92
93         // Setup Includes / Excludes.
94
95         List<String> allExcludes = new ArrayList<String>();
96         List<String> allIncludes = new ArrayList<String>();
97
98         if ( CollectionUtils.isNotEmpty( ignoredContentPatterns ) )
99         {
100             allExcludes.addAll( ignoredContentPatterns );
101         }
102
103         // Scan All Content. (intentional)
104         allIncludes.add( "**/*" );
105
106         // Setup Directory Walker
107         DirectoryWalker dirWalker = new DirectoryWalker();
108
109         dirWalker.setBaseDir( repositoryBase );
110
111         dirWalker.setIncludes( allIncludes );
112         dirWalker.setExcludes( allExcludes );
113
114         // Setup the Scan Instance
115         RepositoryScannerInstance scannerInstance = new RepositoryScannerInstance( repository, knownContentConsumers,
116                                                                                    invalidContentConsumers, changesSince );
117
118         dirWalker.addDirectoryWalkListener( scannerInstance );
119
120         // Execute scan.
121         dirWalker.scan();
122
123         RepositoryScanStatistics stats = scannerInstance.getStatistics();
124
125         stats.setKnownConsumers( gatherIds( knownContentConsumers ) );
126         stats.setInvalidConsumers( gatherIds( invalidContentConsumers ) );
127         
128         return stats;
129     }
130
131     private List<String> gatherIds( List<? extends RepositoryContentConsumer> consumers )
132     {
133         List<String> ids = new ArrayList<String>();
134         for ( RepositoryContentConsumer consumer : consumers )
135         {
136             ids.add( consumer.getId() );
137         }
138         return ids;
139     }   
140 }