]> source.dussan.org Git - archiva.git/blob
f8fe3ff702952ffd9496b88de43218543391ac6f
[archiva.git] /
1 package org.apache.maven.archiva.repository.scanner.functors;
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.Closure;
23 import org.apache.maven.archiva.common.utils.BaseFile;
24 import org.apache.maven.archiva.consumers.RepositoryContentConsumer;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 /**
29  * ConsumerProcessFileClosure 
30  *
31  * @version $Id$
32  */
33 public class ConsumerProcessFileClosure
34     implements Closure
35 {
36     private Logger log = LoggerFactory.getLogger( ConsumerProcessFileClosure.class );
37     
38     private BaseFile basefile;
39
40     public void execute( Object input )
41     {
42         if ( input instanceof RepositoryContentConsumer )
43         {
44             RepositoryContentConsumer consumer = (RepositoryContentConsumer) input;
45
46             try
47             {
48                 log.debug( "Sending to consumer: " + consumer.getId() );
49
50                 consumer.processFile( basefile.getRelativePath() );
51             }
52             catch ( Exception e )
53             {
54                 /* Intentionally Catch all exceptions.
55                  * So that the discoverer processing can continue.
56                  */
57                 log.error( "Consumer [" + consumer.getId() + "] had an error when processing file ["
58                     + basefile.getAbsolutePath() + "]: " + e.getMessage(), e );
59             }
60         }
61     }
62
63     public BaseFile getBasefile()
64     {
65         return basefile;
66     }
67
68     public void setBasefile( BaseFile basefile )
69     {
70         this.basefile = basefile;
71     }
72
73     public Logger getLogger()
74     {
75         return log;
76     }
77
78     public void setLogger( Logger logger )
79     {
80         this.log = logger;
81     }
82 }