]> source.dussan.org Git - archiva.git/blob
a38ad47c0fb2a9b2f416e93384848c6a49a6b504
[archiva.git] /
1 package org.apache.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 org.apache.archiva.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.beans.ManagedRepository;
24 import org.apache.archiva.configuration.FileTypes;
25 import org.apache.archiva.consumers.InvalidRepositoryContentConsumer;
26 import org.apache.archiva.consumers.KnownRepositoryContentConsumer;
27 import org.apache.archiva.consumers.RepositoryContentConsumer;
28 import org.apache.commons.collections.CollectionUtils;
29 import org.codehaus.plexus.util.DirectoryWalker;
30 import org.springframework.stereotype.Service;
31
32 import javax.inject.Inject;
33 import java.io.File;
34 import java.util.ArrayList;
35 import java.util.LinkedHashSet;
36 import java.util.List;
37 import java.util.Set;
38
39 /**
40  * DefaultRepositoryScanner
41  *
42  *
43  */
44 @Service( "repositoryScanner#default" )
45 public class DefaultRepositoryScanner
46     implements RepositoryScanner
47 {
48     @Inject
49     private FileTypes filetypes;
50
51     @Inject
52     private RepositoryContentConsumers consumerUtil;
53
54     private Set<RepositoryScannerInstance> inProgressScans = new LinkedHashSet<RepositoryScannerInstance>();
55
56     @Override
57     public RepositoryScanStatistics scan( ManagedRepository repository, long changesSince )
58         throws RepositoryScannerException
59     {
60         try
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         catch ( RepositoryAdminException e )
69         {
70             throw new RepositoryScannerException( e.getMessage(), e );
71         }
72     }
73
74     @Override
75     public RepositoryScanStatistics scan( ManagedRepository repository,
76                                           List<KnownRepositoryContentConsumer> knownContentConsumers,
77                                           List<InvalidRepositoryContentConsumer> invalidContentConsumers,
78                                           List<String> ignoredContentPatterns, long changesSince )
79         throws RepositoryScannerException
80     {
81         if ( repository == null )
82         {
83             throw new IllegalArgumentException( "Unable to operate on a null repository." );
84         }
85
86         File repositoryBase = new File( repository.getLocation() );
87
88         //MRM-1342 Repository statistics report doesn't appear to be working correctly
89         //create the repo if not existing to have an empty stats
90         if ( !repositoryBase.exists() && !repositoryBase.mkdirs() )
91         {
92             throw new UnsupportedOperationException(
93                 "Unable to scan a repository, directory " + repositoryBase.getPath() + " does not exist." );
94         }
95
96         if ( !repositoryBase.isDirectory() )
97         {
98             throw new UnsupportedOperationException(
99                 "Unable to scan a repository, path " + repositoryBase.getPath() + " is not a directory." );
100         }
101
102         // Setup Includes / Excludes.
103
104         List<String> allExcludes = new ArrayList<>();
105         List<String> allIncludes = new ArrayList<>();
106
107         if ( CollectionUtils.isNotEmpty( ignoredContentPatterns ) )
108         {
109             allExcludes.addAll( ignoredContentPatterns );
110         }
111
112         // Scan All Content. (intentional)
113         allIncludes.add( "**/*" );
114
115         // Setup Directory Walker
116         DirectoryWalker dirWalker = new DirectoryWalker();
117
118         dirWalker.setBaseDir( repositoryBase );
119
120         dirWalker.setIncludes( allIncludes );
121         dirWalker.setExcludes( allExcludes );
122
123         // Setup the Scan Instance
124         RepositoryScannerInstance scannerInstance =
125             new RepositoryScannerInstance( repository, knownContentConsumers, invalidContentConsumers, changesSince );
126
127         inProgressScans.add( scannerInstance );
128
129         RepositoryScanStatistics stats;
130         try
131         {
132             dirWalker.addDirectoryWalkListener( scannerInstance );
133
134             // Execute scan.
135             dirWalker.scan();
136
137             stats = scannerInstance.getStatistics();
138
139             stats.setKnownConsumers( gatherIds( knownContentConsumers ) );
140             stats.setInvalidConsumers( gatherIds( invalidContentConsumers ) );
141         }
142         finally
143         {
144             inProgressScans.remove( scannerInstance );
145         }
146
147         return stats;
148     }
149
150     private List<String> gatherIds( List<? extends RepositoryContentConsumer> consumers )
151     {
152         List<String> ids = new ArrayList<>();
153         for ( RepositoryContentConsumer consumer : consumers )
154         {
155             ids.add( consumer.getId() );
156         }
157         return ids;
158     }
159
160     @Override
161     public Set<RepositoryScannerInstance> getInProgressScans()
162     {
163         return inProgressScans;
164     }
165 }