]> source.dussan.org Git - archiva.git/blob
18a8eb2efa93299c004955a6690e31ef70584df8
[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
25 import java.util.List;
26
27
28 /**
29  * CachedRepositoryQueryLayer 
30  *
31  * @version $Id$
32  */
33 public class CachedRepositoryQueryLayer
34     implements RepositoryQueryLayer
35 {
36     private Cache cache;
37
38     public static final double CACHE_HIT_RATIO = 0.5;
39
40     private RepositoryQueryLayer layer;
41
42     public CachedRepositoryQueryLayer( RepositoryQueryLayer layer )
43     {
44         this.layer = layer;
45
46         cache = new Cache( CACHE_HIT_RATIO );
47     }
48
49     public CachedRepositoryQueryLayer( RepositoryQueryLayer layer, Cache cache )
50     {
51         this.cache = cache;
52         this.layer = layer;
53     }
54
55     public double getCacheHitRate()
56     {
57         return cache.getHitRate();
58     }
59
60     public boolean containsArtifact( Artifact artifact )
61     {
62         boolean artifactFound = true;
63
64         String artifactPath = layer.getRepository().pathOf( artifact );
65
66         if ( cache.get( artifactPath ) == null )
67         {
68             artifactFound = layer.containsArtifact( artifact );
69             if ( artifactFound )
70             {
71                 cache.put( artifactPath, artifactPath );
72             }
73         }
74
75         return artifactFound;
76     }
77
78     public List getVersions( Artifact artifact )
79         throws RepositoryQueryLayerException
80     {
81         List list = (List) cache.get( artifact.getId() );
82
83         if ( list == null )
84         {
85             list = layer.getVersions( artifact );
86             cache.put( artifact.getId(), list );
87         }
88
89         return list;
90     }
91
92     public ArtifactRepository getRepository()
93     {
94         return layer.getRepository();
95     }
96 }