]> source.dussan.org Git - archiva.git/blob
68062079933faeffea6acfa316426cf06519081c
[archiva.git] /
1 package org.apache.maven.archiva.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.lucene.index.Term;
20 import org.apache.lucene.search.TermQuery;
21 import org.apache.maven.archiva.digest.Digester;
22 import org.apache.maven.archiva.digest.DigesterException;
23 import org.apache.maven.archiva.indexer.RepositoryArtifactIndex;
24 import org.apache.maven.archiva.indexer.RepositoryArtifactIndexFactory;
25 import org.apache.maven.archiva.indexer.RepositoryIndexSearchException;
26 import org.apache.maven.archiva.indexer.lucene.LuceneQuery;
27 import org.apache.maven.archiva.indexer.record.StandardArtifactIndexRecord;
28 import org.apache.maven.archiva.indexer.record.StandardIndexRecordFields;
29 import org.apache.maven.artifact.Artifact;
30 import org.apache.maven.artifact.repository.ArtifactRepository;
31 import org.apache.maven.model.Model;
32
33 import java.io.File;
34 import java.util.Iterator;
35 import java.util.List;
36
37 /**
38  * Validates an artifact file for duplicates within the same groupId based from what's available in a repository index.
39  *
40  * @author Edwin Punzalan
41  * @plexus.component role="org.apache.maven.archiva.reporting.ArtifactReportProcessor" role-hint="duplicate"
42  */
43 public class DuplicateArtifactFileReportProcessor
44     implements ArtifactReportProcessor
45 {
46     /**
47      * @plexus.requirement role-hint="md5"
48      */
49     private Digester digester;
50
51     /**
52      * @plexus.requirement
53      */
54     private RepositoryArtifactIndexFactory indexFactory;
55
56     /**
57      * @plexus.configuration
58      */
59     private String indexDirectory;
60
61     public void processArtifact( Artifact artifact, Model model, ReportingDatabase reporter )
62     {
63         ArtifactRepository repository = artifact.getRepository();
64         if ( artifact.getFile() != null )
65         {
66             RepositoryArtifactIndex index = indexFactory.createStandardIndex( new File( indexDirectory ) );
67
68             String checksum = null;
69             try
70             {
71                 checksum = digester.calc( artifact.getFile() );
72             }
73             catch ( DigesterException e )
74             {
75                 reporter.addWarning( artifact, "Unable to generate checksum for " + artifact.getFile() + ": " + e );
76             }
77
78             if ( checksum != null )
79             {
80                 try
81                 {
82                     List results = index.search( new LuceneQuery(
83                         new TermQuery( new Term( StandardIndexRecordFields.MD5, checksum.toLowerCase() ) ) ) );
84
85                     if ( !results.isEmpty() )
86                     {
87                         for ( Iterator i = results.iterator(); i.hasNext(); )
88                         {
89                             StandardArtifactIndexRecord result = (StandardArtifactIndexRecord) i.next();
90
91                             //make sure it is not the same artifact
92                             if ( !result.getFilename().equals( repository.pathOf( artifact ) ) )
93                             {
94                                 //report only duplicates from the same groupId
95                                 String groupId = artifact.getGroupId();
96                                 if ( groupId.equals( result.getGroupId() ) )
97                                 {
98                                     reporter.addFailure( artifact, "Found duplicate for " + artifact.getId() );
99                                 }
100                             }
101                         }
102                     }
103                 }
104                 catch ( RepositoryIndexSearchException e )
105                 {
106                     reporter.addWarning( artifact, "Failed to search in index" + e );
107                 }
108             }
109         }
110         else
111         {
112             reporter.addWarning( artifact, "Artifact file is null" );
113         }
114     }
115 }