]> source.dussan.org Git - archiva.git/blob
6ce703f9cf7d864bd13854135b5e0796f34ec7c4
[archiva.git] /
1 package org.apache.maven.archiva.scheduled.executors;
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.ManagedRepositoryConfiguration;
26 import org.apache.maven.archiva.database.ArchivaDAO;
27 import org.apache.maven.archiva.database.constraints.MostRecentRepositoryScanStatistics;
28 import org.apache.maven.archiva.model.RepositoryContentStatistics;
29 import org.apache.maven.archiva.repository.RepositoryException;
30 import org.apache.maven.archiva.repository.scanner.RepositoryScanStatistics;
31 import org.apache.maven.archiva.repository.scanner.RepositoryScanner;
32 import org.apache.maven.archiva.scheduled.tasks.RepositoryTask;
33 import org.codehaus.plexus.logging.AbstractLogEnabled;
34 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
35 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
36 import org.codehaus.plexus.taskqueue.Task;
37 import org.codehaus.plexus.taskqueue.execution.TaskExecutionException;
38 import org.codehaus.plexus.taskqueue.execution.TaskExecutor;
39
40 import java.util.List;
41
42 /**
43  * ArchivaRepositoryScanningTaskExecutor 
44  *
45  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
46  * @version $Id$
47  * 
48  * @plexus.component
49  *   role="org.codehaus.plexus.taskqueue.execution.TaskExecutor"
50  *   role-hint="repository-scanning"
51  */
52 public class ArchivaRepositoryScanningTaskExecutor
53     extends AbstractLogEnabled
54     implements TaskExecutor, Initializable
55 {
56     /**
57      * @plexus.requirement role-hint="jdo"
58      */
59     private ArchivaDAO dao;
60     
61     /**
62      * @plexus.requirement
63      */
64     private ArchivaConfiguration archivaConfiguration;
65
66     /**
67      * The repository scanner component.
68      * 
69      * @plexus.requirement
70      */
71     private RepositoryScanner repoScanner;
72
73     public void initialize()
74         throws InitializationException
75     {
76         getLogger().info( "Initialized " + this.getClass().getName() );
77     }
78
79     public void executeTask( Task task )
80         throws TaskExecutionException
81     {
82         RepositoryTask repoTask = (RepositoryTask) task;
83         
84         if ( StringUtils.isBlank( repoTask.getRepositoryId() ) )
85         {
86             throw new TaskExecutionException("Unable to execute RepositoryTask with blank repository Id.");
87         }
88
89         getLogger().info( "Executing task from queue with job name: " + repoTask.getName() );
90         
91         try
92         {
93             ManagedRepositoryConfiguration arepo = archivaConfiguration.getConfiguration().findManagedRepositoryById( repoTask.getRepositoryId() );
94
95             long sinceWhen = RepositoryScanner.FRESH_SCAN;
96
97             List<RepositoryContentStatistics> results = dao.query( new MostRecentRepositoryScanStatistics( arepo.getId() ) );
98
99             if ( CollectionUtils.isNotEmpty( results ) )
100             {
101                 RepositoryContentStatistics lastStats = results.get( 0 );
102                 sinceWhen = lastStats.getWhenGathered().getTime() + lastStats.getDuration();
103             }
104
105             RepositoryScanStatistics stats = repoScanner.scan( arepo, sinceWhen );
106
107             getLogger().info( "Finished repository task: " + stats.toDump( arepo ) );
108             
109             // I hate jpox and modello
110             RepositoryContentStatistics dbstats = new RepositoryContentStatistics();
111             dbstats.setDuration( stats.getDuration() );
112             dbstats.setNewFileCount( stats.getNewFileCount() );
113             dbstats.setRepositoryId( stats.getRepositoryId() );
114             dbstats.setTotalFileCount( stats.getTotalFileCount() );
115             dbstats.setWhenGathered( stats.getWhenGathered() );
116             
117             dao.save( dbstats );
118         }
119         catch ( RepositoryException e )
120         {
121             throw new TaskExecutionException( "Repository error when executing repository job.", e );
122         }
123     }
124 }