]> source.dussan.org Git - archiva.git/blob
8760e16a9823154c3d949e248cfe040691fb00ed
[archiva.git] /
1 package org.apache.maven.repository.indexing;
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.document.Document;
20 import org.apache.lucene.queryParser.ParseException;
21 import org.apache.lucene.queryParser.QueryParser;
22 import org.apache.lucene.search.Hits;
23 import org.apache.lucene.search.IndexSearcher;
24 import org.apache.lucene.search.Query;
25 import org.apache.maven.artifact.Artifact;
26 import org.apache.maven.artifact.factory.ArtifactFactory;
27 import org.apache.maven.artifact.repository.ArtifactRepository;
28
29 import java.io.IOException;
30 import java.util.ArrayList;
31 import java.util.List;
32
33
34 /**
35  * This class searches the index for existing artifacts that contains the
36  * specified query string.
37  */
38 public class ArtifactRepositoryIndexSearcher
39     implements RepositoryIndexSearcher
40 {
41     private static final String NAME = "name";
42
43     private static final String GROUPID = "groupId";
44
45     private static final String ARTIFACTID = "artifactId";
46
47     private static final String VERSION = "version";
48
49     private ArtifactRepository repository;
50
51     private ArtifactFactory factory;
52
53     /**
54      * Search the artifact that contains the query string in the specified
55      * search field.
56      *
57      * @param queryString
58      * @param searchField
59      * @return
60      */
61     public List search( RepositoryIndex index, String queryString, String searchField )
62         throws RepositoryIndexSearchException
63     {
64         List artifactList = new ArrayList();
65
66         try
67         {
68             IndexSearcher searcher = new IndexSearcher( index.getIndexPath() );
69             QueryParser parser = new QueryParser( searchField, index.getAnalyzer() );
70             Query qry = parser.parse( queryString );
71             Hits hits = searcher.search( qry );
72
73             for ( int i = 0; i < hits.length(); i++ )
74             {
75                 Document doc = hits.doc( i );
76
77                 String groupId = doc.get( GROUPID );
78                 String artifactId = doc.get( ARTIFACTID );
79                 String version = doc.get( VERSION );
80                 String name = doc.get( NAME );
81                 String packaging = name.substring( name.lastIndexOf( '.' ) + 1 );
82                 Artifact artifact = factory.createBuildArtifact( groupId, artifactId, version, packaging );
83
84                 artifactList.add( artifact );
85             }
86         }
87         catch ( IOException e )
88         {
89             throw new RepositoryIndexSearchException( e.getMessage(), e );
90         }
91         catch ( ParseException e )
92         {
93             throw new RepositoryIndexSearchException( "Error parsing query: " + e.getMessage() );
94         }
95
96         return artifactList;
97     }
98 }