blob: 9c02b286dba49ed91b31a564f7bcfd146c7516cf (
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
|
package cgeo.geocaching;
import cgeo.geocaching.cgData.StorageLocation;
import cgeo.geocaching.utils.LeastRecentlyUsedCache;
/**
* 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 removeAll() {
cachesCache.clear();
}
/**
* @param geocode
* Geocode of the cache to remove from the cache
*/
public void removeCacheFromCache(final String geocode) {
if (geocode != null && cachesCache.containsKey(geocode)) {
cachesCache.remove(geocode);
}
}
/**
* @param cache
* Cache to "store" in the cache
*/
public void putCacheInCache(final cgCache cache) {
if (cache == null || cache.getGeocode() == null) {
return;
}
if (cachesCache.containsKey(cache.getGeocode())) {
cachesCache.remove(cache.getGeocode());
}
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 (geocode != null && cachesCache.containsKey(geocode)) {
return cachesCache.get(geocode);
}
return null;
}
}
|