Coverage Report

Created: 2026-04-12 07:21

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/leveldb/util/cache.cc
Line
Count
Source
1
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file. See the AUTHORS file for names of contributors.
4
5
#include "leveldb/cache.h"
6
7
#include <cassert>
8
#include <cstdio>
9
#include <cstdlib>
10
11
#include "port/port.h"
12
#include "port/thread_annotations.h"
13
#include "util/hash.h"
14
#include "util/mutexlock.h"
15
16
namespace leveldb {
17
18
228k
Cache::~Cache() {}
19
20
namespace {
21
22
// LRU cache implementation
23
//
24
// Cache entries have an "in_cache" boolean indicating whether the cache has a
25
// reference on the entry.  The only ways that this can become false without the
26
// entry being passed to its "deleter" are via Erase(), via Insert() when
27
// an element with a duplicate key is inserted, or on destruction of the cache.
28
//
29
// The cache keeps two linked lists of items in the cache.  All items in the
30
// cache are in one list or the other, and never both.  Items still referenced
31
// by clients but erased from the cache are in neither list.  The lists are:
32
// - in-use:  contains the items currently referenced by clients, in no
33
//   particular order.  (This list is used for invariant checking.  If we
34
//   removed the check, elements that would otherwise be on this list could be
35
//   left as disconnected singleton lists.)
36
// - LRU:  contains the items not currently referenced by clients, in LRU order
37
// Elements are moved between these lists by the Ref() and Unref() methods,
38
// when they detect an element in the cache acquiring or losing its only
39
// external reference.
40
41
// An entry is a variable length heap-allocated structure.  Entries
42
// are kept in a circular doubly linked list ordered by access time.
43
struct LRUHandle {
44
  void* value;
45
  void (*deleter)(const Slice&, void* value);
46
  LRUHandle* next_hash;
47
  LRUHandle* next;
48
  LRUHandle* prev;
49
  size_t charge;  // TODO(opt): Only allow uint32_t?
50
  size_t key_length;
51
  bool in_cache;     // Whether entry is in the cache.
52
  uint32_t refs;     // References, including cache reference, if present.
53
  uint32_t hash;     // Hash of key(); used for fast sharding and comparisons
54
  char key_data[1];  // Beginning of key
55
56
1.40M
  Slice key() const {
57
    // next is only equal to this if the LRU handle is the list head of an
58
    // empty list. List heads never have meaningful keys.
59
1.40M
    assert(next != this);
60
61
1.40M
    return Slice(key_data, key_length);
62
1.40M
  }
63
};
64
65
// We provide our own simple hash table since it removes a whole bunch
66
// of porting hacks and is also faster than some of the built-in hash
67
// table implementations in some of the compiler/runtime combinations
68
// we have tested.  E.g., readrandom speeds up by ~5% over the g++
69
// 4.4.3's builtin hashtable.
70
class HandleTable {
71
 public:
72
3.66M
  HandleTable() : length_(0), elems_(0), list_(nullptr) { Resize(); }
73
3.66M
  ~HandleTable() { delete[] list_; }
74
75
1.44M
  LRUHandle* Lookup(const Slice& key, uint32_t hash) {
76
1.44M
    return *FindPointer(key, hash);
77
1.44M
  }
78
79
530k
  LRUHandle* Insert(LRUHandle* h) {
80
530k
    LRUHandle** ptr = FindPointer(h->key(), h->hash);
81
530k
    LRUHandle* old = *ptr;
82
530k
    h->next_hash = (old == nullptr ? nullptr : old->next_hash);
83
530k
    *ptr = h;
84
530k
    if (old == nullptr) {
85
528k
      ++elems_;
86
528k
      if (elems_ > length_) {
87
        // Since each cache entry is fairly large, we aim for a small
88
        // average linked list length (<= 1).
89
17.1k
        Resize();
90
17.1k
      }
91
528k
    }
92
530k
    return old;
93
530k
  }
94
95
64.2k
  LRUHandle* Remove(const Slice& key, uint32_t hash) {
96
64.2k
    LRUHandle** ptr = FindPointer(key, hash);
97
64.2k
    LRUHandle* result = *ptr;
98
64.2k
    if (result != nullptr) {
99
57.8k
      *ptr = result->next_hash;
100
57.8k
      --elems_;
101
57.8k
    }
102
64.2k
    return result;
103
64.2k
  }
104
105
 private:
106
  // The table consists of an array of buckets where each bucket is
107
  // a linked list of cache entries that hash into the bucket.
108
  uint32_t length_;
109
  uint32_t elems_;
110
  LRUHandle** list_;
111
112
  // Return a pointer to slot that points to a cache entry that
113
  // matches key/hash.  If there is no such cache entry, return a
114
  // pointer to the trailing slot in the corresponding linked list.
115
2.04M
  LRUHandle** FindPointer(const Slice& key, uint32_t hash) {
116
2.04M
    LRUHandle** ptr = &list_[hash & (length_ - 1)];
117
2.24M
    while (*ptr != nullptr && ((*ptr)->hash != hash || key != (*ptr)->key())) {
118
203k
      ptr = &(*ptr)->next_hash;
119
203k
    }
120
2.04M
    return ptr;
121
2.04M
  }
122
123
3.67M
  void Resize() {
124
3.67M
    uint32_t new_length = 4;
125
3.69M
    while (new_length < elems_) {
126
19.9k
      new_length *= 2;
127
19.9k
    }
128
3.67M
    LRUHandle** new_list = new LRUHandle*[new_length];
129
3.67M
    memset(new_list, 0, sizeof(new_list[0]) * new_length);
130
3.67M
    uint32_t count = 0;
131
3.75M
    for (uint32_t i = 0; i < length_; i++) {
132
79.8k
      LRUHandle* h = list_[i];
133
176k
      while (h != nullptr) {
134
96.9k
        LRUHandle* next = h->next_hash;
135
96.9k
        uint32_t hash = h->hash;
136
96.9k
        LRUHandle** ptr = &new_list[hash & (new_length - 1)];
137
96.9k
        h->next_hash = *ptr;
138
96.9k
        *ptr = h;
139
96.9k
        h = next;
140
96.9k
        count++;
141
96.9k
      }
142
79.8k
    }
143
3.67M
    assert(elems_ == count);
144
3.67M
    delete[] list_;
145
3.67M
    list_ = new_list;
146
3.67M
    length_ = new_length;
147
3.67M
  }
148
};
149
150
// A single shard of sharded cache.
151
class LRUCache {
152
 public:
153
  LRUCache();
154
  ~LRUCache();
155
156
  // Separate from constructor so caller can easily make an array of LRUCache
157
3.66M
  void SetCapacity(size_t capacity) { capacity_ = capacity; }
158
159
  // Like Cache methods, but with an extra "hash" parameter.
160
  Cache::Handle* Insert(const Slice& key, uint32_t hash, void* value,
161
                        size_t charge,
162
                        void (*deleter)(const Slice& key, void* value));
163
  Cache::Handle* Lookup(const Slice& key, uint32_t hash);
164
  void Release(Cache::Handle* handle);
165
  void Erase(const Slice& key, uint32_t hash);
166
  void Prune();
167
288
  size_t TotalCharge() const {
168
288
    MutexLock l(&mutex_);
169
288
    return usage_;
170
288
  }
171
172
 private:
173
  void LRU_Remove(LRUHandle* e);
174
  void LRU_Append(LRUHandle* list, LRUHandle* e);
175
  void Ref(LRUHandle* e);
176
  void Unref(LRUHandle* e);
177
  bool FinishErase(LRUHandle* e) EXCLUSIVE_LOCKS_REQUIRED(mutex_);
178
179
  // Initialized before use.
180
  size_t capacity_;
181
182
  // mutex_ protects the following state.
183
  mutable port::Mutex mutex_;
184
  size_t usage_ GUARDED_BY(mutex_);
185
186
  // Dummy head of LRU list.
187
  // lru.prev is newest entry, lru.next is oldest entry.
188
  // Entries have refs==1 and in_cache==true.
189
  LRUHandle lru_ GUARDED_BY(mutex_);
190
191
  // Dummy head of in-use list.
192
  // Entries are in use by clients, and have refs >= 2 and in_cache==true.
193
  LRUHandle in_use_ GUARDED_BY(mutex_);
194
195
  HandleTable table_ GUARDED_BY(mutex_);
196
};
197
198
3.66M
LRUCache::LRUCache() : capacity_(0), usage_(0) {
199
  // Make empty circular linked lists.
200
3.66M
  lru_.next = &lru_;
201
3.66M
  lru_.prev = &lru_;
202
3.66M
  in_use_.next = &in_use_;
203
3.66M
  in_use_.prev = &in_use_;
204
3.66M
}
205
206
3.66M
LRUCache::~LRUCache() {
207
3.66M
  assert(in_use_.next == &in_use_);  // Error if caller has an unreleased handle
208
4.13M
  for (LRUHandle* e = lru_.next; e != &lru_;) {
209
471k
    LRUHandle* next = e->next;
210
471k
    assert(e->in_cache);
211
471k
    e->in_cache = false;
212
471k
    assert(e->refs == 1);  // Invariant of lru_ list.
213
471k
    Unref(e);
214
471k
    e = next;
215
471k
  }
216
3.66M
}
217
218
284k
void LRUCache::Ref(LRUHandle* e) {
219
284k
  if (e->refs == 1 && e->in_cache) {  // If on lru_ list, move to in_use_ list.
220
205k
    LRU_Remove(e);
221
205k
    LRU_Append(&in_use_, e);
222
205k
  }
223
284k
  e->refs++;
224
284k
}
225
226
1.34M
void LRUCache::Unref(LRUHandle* e) {
227
1.34M
  assert(e->refs > 0);
228
1.34M
  e->refs--;
229
1.34M
  if (e->refs == 0) {  // Deallocate.
230
530k
    assert(!e->in_cache);
231
530k
    (*e->deleter)(e->key(), e->value);
232
530k
    free(e);
233
814k
  } else if (e->in_cache && e->refs == 1) {
234
    // No longer in use; move to lru_ list.
235
734k
    LRU_Remove(e);
236
734k
    LRU_Append(&lru_, e);
237
734k
  }
238
1.34M
}
239
240
999k
void LRUCache::LRU_Remove(LRUHandle* e) {
241
999k
  e->next->prev = e->prev;
242
999k
  e->prev->next = e->next;
243
999k
}
244
245
1.47M
void LRUCache::LRU_Append(LRUHandle* list, LRUHandle* e) {
246
  // Make "e" newest entry by inserting just before *list
247
1.47M
  e->next = list;
248
1.47M
  e->prev = list->prev;
249
1.47M
  e->prev->next = e;
250
1.47M
  e->next->prev = e;
251
1.47M
}
252
253
1.44M
Cache::Handle* LRUCache::Lookup(const Slice& key, uint32_t hash) {
254
1.44M
  MutexLock l(&mutex_);
255
1.44M
  LRUHandle* e = table_.Lookup(key, hash);
256
1.44M
  if (e != nullptr) {
257
284k
    Ref(e);
258
284k
  }
259
1.44M
  return reinterpret_cast<Cache::Handle*>(e);
260
1.44M
}
261
262
814k
void LRUCache::Release(Cache::Handle* handle) {
263
814k
  MutexLock l(&mutex_);
264
814k
  Unref(reinterpret_cast<LRUHandle*>(handle));
265
814k
}
266
267
Cache::Handle* LRUCache::Insert(const Slice& key, uint32_t hash, void* value,
268
                                size_t charge,
269
                                void (*deleter)(const Slice& key,
270
530k
                                                void* value)) {
271
530k
  MutexLock l(&mutex_);
272
273
530k
  LRUHandle* e =
274
530k
      reinterpret_cast<LRUHandle*>(malloc(sizeof(LRUHandle) - 1 + key.size()));
275
530k
  e->value = value;
276
530k
  e->deleter = deleter;
277
530k
  e->charge = charge;
278
530k
  e->key_length = key.size();
279
530k
  e->hash = hash;
280
530k
  e->in_cache = false;
281
530k
  e->refs = 1;  // for the returned handle.
282
530k
  std::memcpy(e->key_data, key.data(), key.size());
283
284
530k
  if (capacity_ > 0) {
285
530k
    e->refs++;  // for the cache's reference.
286
530k
    e->in_cache = true;
287
530k
    LRU_Append(&in_use_, e);
288
530k
    usage_ += charge;
289
530k
    FinishErase(table_.Insert(e));
290
530k
  } else {  // don't cache. (capacity_==0 is supported and turns off caching.)
291
    // next is read by key() in an assert, so it must be initialized
292
5
    e->next = nullptr;
293
5
  }
294
530k
  while (usage_ > capacity_ && lru_.next != &lru_) {
295
0
    LRUHandle* old = lru_.next;
296
0
    assert(old->refs == 1);
297
0
    bool erased = FinishErase(table_.Remove(old->key(), old->hash));
298
0
    if (!erased) {  // to avoid unused variable when compiled NDEBUG
299
0
      assert(erased);
300
0
    }
301
0
  }
302
303
530k
  return reinterpret_cast<Cache::Handle*>(e);
304
530k
}
305
306
// If e != nullptr, finish removing *e from the cache; it has already been
307
// removed from the hash table.  Return whether e != nullptr.
308
594k
bool LRUCache::FinishErase(LRUHandle* e) {
309
594k
  if (e != nullptr) {
310
59.2k
    assert(e->in_cache);
311
59.2k
    LRU_Remove(e);
312
59.2k
    e->in_cache = false;
313
59.2k
    usage_ -= e->charge;
314
59.2k
    Unref(e);
315
59.2k
  }
316
594k
  return e != nullptr;
317
594k
}
318
319
64.2k
void LRUCache::Erase(const Slice& key, uint32_t hash) {
320
64.2k
  MutexLock l(&mutex_);
321
64.2k
  FinishErase(table_.Remove(key, hash));
322
64.2k
}
323
324
0
void LRUCache::Prune() {
325
0
  MutexLock l(&mutex_);
326
0
  while (lru_.next != &lru_) {
327
0
    LRUHandle* e = lru_.next;
328
0
    assert(e->refs == 1);
329
0
    bool erased = FinishErase(table_.Remove(e->key(), e->hash));
330
0
    if (!erased) {  // to avoid unused variable when compiled NDEBUG
331
0
      assert(erased);
332
0
    }
333
0
  }
334
0
}
335
336
static const int kNumShardBits = 4;
337
static const int kNumShards = 1 << kNumShardBits;
338
339
class ShardedLRUCache : public Cache {
340
 private:
341
  LRUCache shard_[kNumShards];
342
  port::Mutex id_mutex_;
343
  uint64_t last_id_;
344
345
2.04M
  static inline uint32_t HashSlice(const Slice& s) {
346
2.04M
    return Hash(s.data(), s.size(), 0);
347
2.04M
  }
348
349
2.85M
  static uint32_t Shard(uint32_t hash) { return hash >> (32 - kNumShardBits); }
350
351
 public:
352
228k
  explicit ShardedLRUCache(size_t capacity) : last_id_(0) {
353
228k
    const size_t per_shard = (capacity + (kNumShards - 1)) / kNumShards;
354
3.89M
    for (int s = 0; s < kNumShards; s++) {
355
3.66M
      shard_[s].SetCapacity(per_shard);
356
3.66M
    }
357
228k
  }
358
228k
  ~ShardedLRUCache() override {}
359
  Handle* Insert(const Slice& key, void* value, size_t charge,
360
530k
                 void (*deleter)(const Slice& key, void* value)) override {
361
530k
    const uint32_t hash = HashSlice(key);
362
530k
    return shard_[Shard(hash)].Insert(key, hash, value, charge, deleter);
363
530k
  }
364
1.44M
  Handle* Lookup(const Slice& key) override {
365
1.44M
    const uint32_t hash = HashSlice(key);
366
1.44M
    return shard_[Shard(hash)].Lookup(key, hash);
367
1.44M
  }
368
814k
  void Release(Handle* handle) override {
369
814k
    LRUHandle* h = reinterpret_cast<LRUHandle*>(handle);
370
814k
    shard_[Shard(h->hash)].Release(handle);
371
814k
  }
372
64.2k
  void Erase(const Slice& key) override {
373
64.2k
    const uint32_t hash = HashSlice(key);
374
64.2k
    shard_[Shard(hash)].Erase(key, hash);
375
64.2k
  }
376
814k
  void* Value(Handle* handle) override {
377
814k
    return reinterpret_cast<LRUHandle*>(handle)->value;
378
814k
  }
379
530k
  uint64_t NewId() override {
380
530k
    MutexLock l(&id_mutex_);
381
530k
    return ++(last_id_);
382
530k
  }
383
0
  void Prune() override {
384
0
    for (int s = 0; s < kNumShards; s++) {
385
0
      shard_[s].Prune();
386
0
    }
387
0
  }
388
18
  size_t TotalCharge() const override {
389
18
    size_t total = 0;
390
306
    for (int s = 0; s < kNumShards; s++) {
391
288
      total += shard_[s].TotalCharge();
392
288
    }
393
18
    return total;
394
18
  }
395
};
396
397
}  // end anonymous namespace
398
399
228k
Cache* NewLRUCache(size_t capacity) { return new ShardedLRUCache(capacity); }
400
401
}  // namespace leveldb