1 package org.apache.maven.repository.manager.web.action;
4 * Copyright 2005-2006 The Apache Software Foundation.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 import com.opensymphony.xwork.Action;
20 import org.apache.maven.artifact.repository.ArtifactRepository;
21 import org.apache.maven.artifact.repository.ArtifactRepositoryFactory;
22 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
23 import org.apache.maven.repository.indexing.ArtifactRepositoryIndex;
24 import org.apache.maven.repository.indexing.RepositoryIndexException;
25 import org.apache.maven.repository.indexing.RepositoryIndexSearchException;
26 import org.apache.maven.repository.indexing.RepositoryIndexingFactory;
27 import org.apache.maven.repository.indexing.DefaultRepositoryIndexSearcher;
28 import org.apache.maven.repository.indexing.query.SinglePhraseQuery;
29 import org.codehaus.plexus.scheduler.Scheduler;
30 import org.codehaus.plexus.scheduler.configuration.SchedulerConfiguration;
33 import java.net.MalformedURLException;
34 import java.util.List;
39 * @author <a href="mailto:brett@apache.org">Brett Porter</a>
40 * @plexus.component role="com.opensymphony.xwork.Action" role-hint="org.apache.maven.repository.manager.web.action.PackageSearchAction"
42 public class PackageSearchAction
45 private String packageName;
52 private Scheduler scheduler;
57 private RepositoryIndexingFactory factory;
62 private ArtifactRepositoryFactory repositoryFactory;
65 * @plexus.requirement role-hint="legacy"
67 private ArtifactRepositoryLayout layout;
69 private List artifacts;
71 public String execute()
72 throws MalformedURLException, RepositoryIndexException, RepositoryIndexSearchException
76 if ( packageName != null && packageName.length() != 0 )
78 searchTerm = packageName;
81 else if ( md5 != null && md5.length() != 0 )
91 // TODO: better config
92 String indexPath = "c:/home/brett/repository/.index";
94 // TODO: reduce the amount of lookup?
95 ArtifactRepository repository = repositoryFactory.createArtifactRepository( "repository", new File(
96 indexPath ).toURL().toString(), layout, null, null );
98 ArtifactRepositoryIndex index = factory.createArtifactRepositoryIndex( indexPath, repository );
100 DefaultRepositoryIndexSearcher searcher = factory.createDefaultRepositoryIndexSearcher( index );
102 artifacts = searcher.search( new SinglePhraseQuery( key, searchTerm ) );
107 public void setPackageName( String packageName )
109 this.packageName = packageName;
112 public void setMd5( String md5 )
117 public List getArtifacts()