]> source.dussan.org Git - archiva.git/blob
953827b18e9c3ef735890b5e77c8334de006c9ac
[archiva.git] /
1 package org.apache.maven.archiva.layer;
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.maven.artifact.Artifact;
23 import org.apache.maven.artifact.repository.ArtifactRepository;
24 import org.codehaus.plexus.cache.Cache;
25
26 import java.util.List;
27
28 /**
29  * CachedRepositoryQueryLayer - simple wrapper around another non-cached Repository Query Layer.
30  *
31  * @version $Id$
32  * @plexus.component role="org.apache.maven.archiva.layer.RepositoryQueryLayer" role-hint="cached"
33  */
34 public class CachedRepositoryQueryLayer
35     implements RepositoryQueryLayer
36 {
37     /**
38      * @plexus.requirement
39      */
40     private Cache cache;
41
42     /**
43      * @plexus.requirement
44      */
45     private RepositoryQueryLayer layer;
46
47     public CachedRepositoryQueryLayer( RepositoryQueryLayer layer )
48     {
49         this.layer = layer;
50     }
51
52     public CachedRepositoryQueryLayer( RepositoryQueryLayer layer, Cache cache )
53     {
54         this.cache = cache;
55         this.layer = layer;
56     }
57
58     public boolean containsArtifact( Artifact artifact )
59     {
60         boolean artifactFound = true;
61
62         String artifactPath = layer.getRepository().pathOf( artifact );
63
64         if ( cache.get( artifactPath ) == null )
65         {
66             artifactFound = layer.containsArtifact( artifact );
67             if ( artifactFound )
68             {
69                 cache.put( artifactPath, artifactPath );
70             }
71         }
72
73         return artifactFound;
74     }
75
76     public List getVersions( Artifact artifact )
77         throws RepositoryQueryLayerException
78     {
79         List list = (List) cache.get( artifact.getId() );
80
81         if ( list == null )
82         {
83             list = layer.getVersions( artifact );
84             cache.put( artifact.getId(), list );
85         }
86
87         return list;
88     }
89
90     public ArtifactRepository getRepository()
91     {
92         return layer.getRepository();
93     }
94 }