]> source.dussan.org Git - archiva.git/blob
a11f357549b29e330d0b5737127d36a75d22e6fa
[archiva.git] /
1 package org.apache.maven.repository.reporting;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.model.Model;
22 import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
23 import org.codehaus.plexus.util.IOUtil;
24 import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
25
26 import java.io.File;
27 import java.io.FileNotFoundException;
28 import java.io.FileReader;
29 import java.io.IOException;
30 import java.io.Reader;
31
32 /**
33  * This class validates well-formedness of pom xml file.
34  *
35  * @plexus.component role="org.apache.maven.repository.reporting.ArtifactReportProcessor" role-hint="invalid-pom"
36  */
37 public class InvalidPomArtifactReportProcessor
38     implements ArtifactReportProcessor
39 {
40     /**
41      * @param model
42      * @param artifact   The pom xml file to be validated, passed as an artifact object.
43      * @param reporter   The artifact reporter object.
44      * @param repository the repository where the artifact is located.
45      */
46     public void processArtifact( Model model, Artifact artifact, ArtifactReporter reporter,
47                                  ArtifactRepository repository )
48     {
49         if ( !"file".equals( repository.getProtocol() ) )
50         {
51             // We can't check other types of URLs yet. Need to use Wagon, with an exists() method.
52             throw new UnsupportedOperationException(
53                 "Can't process repository '" + repository.getUrl() + "'. Only file based repositories are supported" );
54         }
55
56         if ( "pom".equals( artifact.getType().toLowerCase() ) )
57         {
58             File f = new File( repository.getBasedir(), repository.pathOf( artifact ) );
59
60             if ( !f.exists() )
61             {
62                 reporter.addFailure( artifact, "Artifact not found." );
63             }
64             else
65             {
66                 Reader reader = null;
67
68                 MavenXpp3Reader pomReader = new MavenXpp3Reader();
69
70                 try
71                 {
72                     reader = new FileReader( f );
73                     pomReader.read( reader );
74                     reporter.addSuccess( artifact );
75                 }
76                 catch ( XmlPullParserException e )
77                 {
78                     reporter.addFailure( artifact, "The pom xml file is not well-formed. Error while parsing: " +
79                         e.getMessage() );
80                 }
81                 catch ( FileNotFoundException e )
82                 {
83                     reporter.addFailure( artifact, "Error while reading the pom xml file: " + e.getMessage() );
84                 }
85                 catch ( IOException e )
86                 {
87                     reporter.addFailure( artifact, "Error while reading the pom xml file: " + e.getMessage() );
88                 }
89                 finally
90                 {
91                     IOUtil.close( reader );
92                 }
93             }
94         }
95         else
96         {
97             reporter.addWarning( artifact, "The artifact is not a pom xml file." );
98         }
99     }
100
101 }