blob: 75fcfde7a1f77856629b1225103e12c446e89255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
package cgeo.geocaching;
import cgeo.geocaching.cgData.StorageLocation;
import cgeo.geocaching.utils.LeastRecentlyUsedCache;
import org.apache.commons.lang3.StringUtils;
/**
* Cache for Caches. Every cache is stored in memory while c:geo is active to
* speed up the app and to minimize network request - which are slow.
*
* @author blafoo
*/
public class CacheCache {
private static final int MAX_CACHED_CACHES = 1000;
final private LeastRecentlyUsedCache<String, cgCache> cachesCache;
private static CacheCache instance = null;
private CacheCache() {
cachesCache = new LeastRecentlyUsedCache<String, cgCache>(MAX_CACHED_CACHES);
}
public static CacheCache getInstance() {
if (instance == null) {
instance = new CacheCache();
}
return instance;
}
public void removeAllFromCache() {
cachesCache.clear();
}
/**
* @param geocode
* Geocode of the cache to remove from the cache
*/
public void removeCacheFromCache(final String geocode) {
if (StringUtils.isBlank(geocode)) {
throw new IllegalArgumentException("geocode must not be empty");
}
cachesCache.remove(geocode);
}
/**
* "Store" a cache in the CacheCache. If the cache is already in the CacheCache the cache gets replaced.
*
* @param cache
* Cache
*
*/
public void putCacheInCache(final cgCache cache) {
if (cache == null) {
throw new IllegalArgumentException("cache must not be null");
}
if (StringUtils.isBlank(cache.getGeocode())) {
throw new IllegalArgumentException("geocode must not be empty");
}
cache.addStorageLocation(StorageLocation.CACHE);
cachesCache.put(cache.getGeocode(), cache);
}
/**
* @param geocode
* Geocode of the cache to retrieve from the cache
* @return cache if found, null else
*/
public cgCache getCacheFromCache(final String geocode) {
if (StringUtils.isBlank(geocode)) {
throw new IllegalArgumentException("geocode must not be empty");
}
return cachesCache.get(geocode);
}
@Override
public String toString() {
String result = "";
for (String geocode : cachesCache.keySet()) {
result += geocode + " ";
}
return result;
}
}
|