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