]> source.dussan.org Git - archiva.git/blob
2d7026bb1f185ee379d5a498793e4fff483fd58e
[archiva.git] /
1 package org.apache.maven.archiva.consumers;
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.maven.archiva.common.consumers.GenericArtifactConsumer;
23 import org.apache.maven.archiva.common.utils.BaseFile;
24 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
25 import org.apache.maven.archiva.configuration.Configuration;
26 import org.apache.maven.archiva.indexer.RepositoryArtifactIndex;
27 import org.apache.maven.archiva.indexer.RepositoryArtifactIndexFactory;
28 import org.apache.maven.archiva.indexer.RepositoryIndexException;
29 import org.apache.maven.archiva.indexer.record.RepositoryIndexRecordFactory;
30 import org.apache.maven.artifact.Artifact;
31 import org.apache.maven.artifact.repository.ArtifactRepository;
32
33 import java.io.File;
34
35 /**
36  * IndexArtifactConsumer 
37  *
38  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
39  * @version $Id$
40  *
41  * @plexus.component role="org.apache.maven.archiva.common.consumers.Consumer"
42  *     role-hint="index-artifact"
43  *     instantiation-strategy="per-lookup"
44  */
45 public class IndexArtifactConsumer
46     extends GenericArtifactConsumer
47 {
48     /**
49      * @plexus.requirement
50      */
51     private RepositoryArtifactIndexFactory indexFactory;
52     
53     /**
54      * @plexus.requirement role-hint="standard"
55      */
56     private RepositoryIndexRecordFactory recordFactory;
57
58     /**
59      * Configuration store.
60      *
61      * @plexus.requirement
62      */
63     private ArchivaConfiguration archivaConfiguration;
64
65     private RepositoryArtifactIndex index;
66
67     public boolean init( ArtifactRepository repository )
68     {
69         Configuration configuration = archivaConfiguration.getConfiguration();
70
71         File indexPath = new File( configuration.getIndexPath() );
72
73         index = indexFactory.createStandardIndex( indexPath );
74
75         return super.init( repository );
76     }
77
78     public void processArtifact( Artifact artifact, BaseFile file )
79     {
80         try
81         {
82             index.indexArtifact( artifact, recordFactory );
83         }
84         catch ( RepositoryIndexException e )
85         {
86             getLogger().warn( "Unable to index artifact " + artifact, e );
87         }
88     }
89
90     public void processFileProblem( BaseFile path, String message )
91     {
92
93     }
94     
95     public String getName()
96     {
97         return "Index Artifact Consumer";
98     }
99 }