]> source.dussan.org Git - archiva.git/blob
d20594f08c8c0d00542f8ec82d90a7c67a85b223
[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.reporting.database.ArtifactResultsDatabase;
25 import org.apache.maven.archiva.reporting.group.ReportGroup;
26 import org.apache.maven.artifact.Artifact;
27 import org.apache.maven.artifact.InvalidArtifactRTException;
28 import org.apache.maven.model.Model;
29 import org.apache.maven.project.MavenProject;
30 import org.apache.maven.project.MavenProjectBuilder;
31 import org.apache.maven.project.ProjectBuildingException;
32
33 import java.util.Collections;
34
35 /**
36  * ArtifactHealthConsumer 
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="artifact-health"
43  *     instantiation-strategy="per-lookup"
44  */
45 public class ArtifactHealthConsumer
46     extends GenericArtifactConsumer
47 {
48     /**
49      * @plexus.requirement
50      */
51     private ArtifactResultsDatabase database;
52
53     /**
54      * @plexus.requirement role-hint="health"
55      */
56     private ReportGroup health;
57
58     /**
59      * @plexus.requirement
60      */
61     private MavenProjectBuilder projectBuilder;
62
63     public void processArtifact( Artifact artifact, BaseFile file )
64     {
65         Model model = null;
66         try
67         {
68             Artifact pomArtifact = artifactFactory.createProjectArtifact( artifact.getGroupId(), artifact
69                 .getArtifactId(), artifact.getVersion() );
70             MavenProject project = projectBuilder.buildFromRepository( pomArtifact, Collections.EMPTY_LIST, repository );
71
72             model = project.getModel();
73         }
74         catch ( InvalidArtifactRTException e )
75         {
76             database.addWarning( artifact, "health", "invalid", "Invalid artifact [" + artifact + "] : " + e );
77         }
78         catch ( ProjectBuildingException e )
79         {
80             database.addWarning( artifact, "health", "project-build", "Error reading project model: " + e );
81         }
82         
83         database.remove( artifact );
84         health.processArtifact( artifact, model );
85     }
86
87     public void processFileProblem( BaseFile path, String message )
88     {
89         /* do nothing here (yet) */
90         // TODO: store build failure into database?
91     }
92     
93     public String getName()
94     {
95         return "Artifact Health Consumer";
96     }
97 }