]> source.dussan.org Git - archiva.git/blob
1dcf17c691a1ab3e87245ef52ddf000ac67f87d6
[archiva.git] /
1 package org.apache.maven.archiva.indexer.functors;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import org.apache.commons.collections.Predicate;
23 import org.apache.maven.archiva.indexer.RepositoryContentIndex;
24 import org.apache.maven.archiva.indexer.RepositoryIndexException;
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27
28 /**
29  * Test the {@link RepositoryContentIndex} object for the existance of an index. 
30  *
31  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
32  * @version $Id$
33  * 
34  * @plexus.component 
35  *      role="org.apache.commons.collections.Predicate" 
36  *      role-hint="index-exists"
37  */
38 public class IndexExistsPredicate
39     implements Predicate
40 {
41     private Logger log = LoggerFactory.getLogger( IndexExistsPredicate.class );
42     
43     public boolean evaluate( Object object )
44     {
45         boolean satisfies = false;
46
47         if ( object instanceof RepositoryContentIndex )
48         {
49             RepositoryContentIndex index = (RepositoryContentIndex) object;
50             try
51             {
52                 satisfies = index.exists();
53             }
54             catch ( RepositoryIndexException e )
55             {
56                 log.info(
57                                   "Repository Content Index [" + index.getId() + "] for repository ["
58                                       + index.getRepository().getId() + "] does not exist yet in ["
59                                       + index.getIndexDirectory().getAbsolutePath() + "]." );
60             }
61         }
62         
63         return satisfies;
64     }
65 }