]> source.dussan.org Git - archiva.git/blob
e5eb6a6383d4c2dad4669574764f8428db76de6f
[archiva.git] /
1 package org.apache.maven.repository.discovery;
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.factory.ArtifactFactory;
21 import org.apache.maven.artifact.repository.ArtifactRepository;
22 import org.apache.maven.model.Model;
23 import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
24 import org.apache.maven.repository.ArtifactUtils;
25
26 import java.io.File;
27 import java.io.FileReader;
28 import java.util.ArrayList;
29 import java.util.List;
30
31 /**
32  * Artifact discoverer for the new repository layout (Maven 2.0+).
33  *
34  * @author John Casey
35  * @author Brett Porter
36  * @plexus.component role="org.apache.maven.repository.discovery.ArtifactDiscoverer" role-hint="org.apache.maven.repository.discovery.DefaultArtifactDiscoverer"
37  */
38 public class DefaultArtifactDiscoverer
39     extends AbstractArtifactDiscoverer
40     implements ArtifactDiscoverer
41 {
42     private final static String POM = ".pom";
43
44     /**
45      * @plexus.requirement
46      */
47     private ArtifactFactory artifactFactory;
48
49     public List discoverArtifacts( ArtifactRepository repository, String blacklistedPatterns, boolean includeSnapshots )
50     {
51         if ( !"file".equals( repository.getProtocol() ) )
52         {
53             throw new UnsupportedOperationException( "Only filesystem repositories are supported" );
54         }
55
56         File repositoryBase = new File( repository.getBasedir() );
57
58         List artifacts = new ArrayList();
59
60         String[] artifactPaths = scanForArtifactPaths( repositoryBase, blacklistedPatterns );
61
62         for ( int i = 0; i < artifactPaths.length; i++ )
63         {
64             String path = artifactPaths[i];
65
66             Artifact artifact = ArtifactUtils.buildArtifact( repositoryBase, path, repository, artifactFactory );
67
68             if ( artifact != null )
69             {
70                 if ( includeSnapshots || !artifact.isSnapshot() )
71                 {
72                     artifacts.add( artifact );
73                 }
74             }
75             else
76             {
77                 addKickedOutPath( path );
78             }
79         }
80
81         return artifacts;
82     }
83
84     public List discoverStandalonePoms( ArtifactRepository repository, String blacklistedPatterns,
85                                         boolean convertSnapshots )
86     {
87         List artifacts = new ArrayList();
88
89         File repositoryBase = new File( repository.getBasedir() );
90
91         String[] artifactPaths = scanForArtifactPaths( repositoryBase, blacklistedPatterns );
92
93         for ( int i = 0; i < artifactPaths.length; i++ )
94         {
95             String path = artifactPaths[i];
96
97             if ( path.toLowerCase().endsWith( POM ) )
98             {
99                 Artifact pomArtifact = ArtifactUtils.buildArtifact( path, artifactFactory );
100                 if ( pomArtifact != null )
101                 {
102                     pomArtifact.setFile( new File( repositoryBase, path ) );
103                 }
104
105                 MavenXpp3Reader mavenReader = new MavenXpp3Reader();
106                 String filename = repositoryBase.getAbsolutePath() + "/" + path;
107                 try
108                 {
109                     Model model = mavenReader.read( new FileReader( filename ) );
110                     if ( ( model != null ) && ( "pom".equals( model.getPackaging() ) ) )
111                     {
112                         artifacts.add( model );
113                     }
114                     /*if ( ( pomArtifact != null ) && ( "pom".equals( model.getPackaging() ) ) )
115                     {
116                         if ( convertSnapshots || !pomArtifact.isSnapshot() )
117                         {
118                             artifacts.add( pomArtifact );
119                         }
120                     }
121                     */
122                 }
123                 catch ( Exception e )
124                 {
125                     getLogger().info( "error reading file: " + filename );
126                     e.printStackTrace();
127                 }
128             }
129         }
130
131         return artifacts;
132     }
133 }