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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
/*
* Ceph - scalable distributed file system
*
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
*
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software
* Foundation. See file COPYING.
*
*/
#ifndef CEPH_SHAREDCACHE_H
#define CEPH_SHAREDCACHE_H
#include <map>
#include <list>
#include <memory>
#include <utility>
#include "common/Mutex.h"
#include "common/Cond.h"
template <class K, class V>
class SharedLRU {
typedef ceph::shared_ptr<V> VPtr;
typedef ceph::weak_ptr<V> WeakVPtr;
Mutex lock;
size_t max_size;
Cond cond;
unsigned size;
map<K, typename list<pair<K, VPtr> >::iterator > contents;
list<pair<K, VPtr> > lru;
map<K, WeakVPtr> weak_refs;
void trim_cache(list<VPtr> *to_release) {
while (size > max_size) {
to_release->push_back(lru.back().second);
lru_remove(lru.back().first);
}
}
void lru_remove(K key) {
typename map<K, typename list<pair<K, VPtr> >::iterator>::iterator i =
contents.find(key);
if (i == contents.end())
return;
lru.erase(i->second);
--size;
contents.erase(i);
}
void lru_add(K key, VPtr val, list<VPtr> *to_release) {
typename map<K, typename list<pair<K, VPtr> >::iterator>::iterator i =
contents.find(key);
if (i != contents.end()) {
lru.splice(lru.begin(), lru, i->second);
} else {
++size;
lru.push_front(make_pair(key, val));
contents[key] = lru.begin();
trim_cache(to_release);
}
}
void remove(K key) {
Mutex::Locker l(lock);
weak_refs.erase(key);
cond.Signal();
}
class Cleanup {
public:
SharedLRU<K, V> *cache;
K key;
Cleanup(SharedLRU<K, V> *cache, K key) : cache(cache), key(key) {}
void operator()(V *ptr) {
cache->remove(key);
delete ptr;
}
};
public:
SharedLRU(size_t max_size = 20)
: lock("SharedLRU::lock"), max_size(max_size), size(0) {}
~SharedLRU() {
contents.clear();
lru.clear();
assert(weak_refs.empty());
}
void clear(K key) {
VPtr val; // release any ref we have after we drop the lock
{
Mutex::Locker l(lock);
if (weak_refs.count(key)) {
val = weak_refs[key].lock();
}
lru_remove(key);
}
}
void set_size(size_t new_size) {
list<VPtr> to_release;
{
Mutex::Locker l(lock);
max_size = new_size;
trim_cache(&to_release);
}
}
// Returns K key s.t. key <= k for all currently cached k,v
K cached_key_lower_bound() {
Mutex::Locker l(lock);
return weak_refs.begin()->first;
}
VPtr lower_bound(K key) {
VPtr val;
list<VPtr> to_release;
{
Mutex::Locker l(lock);
bool retry = false;
do {
retry = false;
if (weak_refs.empty())
break;
typename map<K, WeakVPtr>::iterator i = weak_refs.lower_bound(key);
if (i == weak_refs.end())
--i;
val = i->second.lock();
if (val) {
lru_add(i->first, val, &to_release);
} else {
retry = true;
}
if (retry)
cond.Wait(lock);
} while (retry);
}
return val;
}
VPtr lookup(K key) {
VPtr val;
list<VPtr> to_release;
{
Mutex::Locker l(lock);
bool retry = false;
do {
retry = false;
typename map<K, WeakVPtr>::iterator i = weak_refs.find(key);
if (i != weak_refs.end()) {
val = i->second.lock();
if (val) {
lru_add(key, val, &to_release);
} else {
retry = true;
}
}
if (retry)
cond.Wait(lock);
} while (retry);
}
return val;
}
/***
* Inserts a key if not present, or bumps it to the front of the LRU if
* it is, and then gives you a reference to the value. If the key already
* existed, you are responsible for deleting the new value you tried to
* insert.
*
* @param key The key to insert
* @param value The value that goes with the key
* @param existed Set to true if the value was already in the
* map, false otherwise
* @return A reference to the map's value for the given key
*/
VPtr add(K key, V *value, bool *existed = NULL) {
VPtr val(value, Cleanup(this, key));
list<VPtr> to_release;
{
Mutex::Locker l(lock);
typename map<K, WeakVPtr>::iterator actual = weak_refs.lower_bound(key);
if (actual != weak_refs.end() && actual->first == key) {
if (existed)
*existed = true;
return actual->second.lock();
}
if (existed)
*existed = false;
weak_refs.insert(actual, make_pair(key, val));
lru_add(key, val, &to_release);
}
return val;
}
};
#endif
|