2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
|
|
|
#include "db/table_cache.h"
|
|
|
|
|
|
|
|
#include "db/filename.h"
|
2012-05-30 08:18:16 +02:00
|
|
|
#include "db/db_statistics.h"
|
2011-03-30 20:35:40 +02:00
|
|
|
#include "leveldb/env.h"
|
|
|
|
#include "leveldb/table.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "util/coding.h"
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
struct TableAndFile {
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<RandomAccessFile> file;
|
|
|
|
unique_ptr<Table> table;
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2012-05-30 08:18:16 +02:00
|
|
|
static class DBStatistics* dbstatistics;
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
static void DeleteEntry(const Slice& key, void* value) {
|
|
|
|
TableAndFile* tf = reinterpret_cast<TableAndFile*>(value);
|
2013-01-20 11:07:13 +01:00
|
|
|
if (dbstatistics) {
|
|
|
|
dbstatistics->incNumFileCloses();
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
delete tf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void UnrefEntry(void* arg1, void* arg2) {
|
|
|
|
Cache* cache = reinterpret_cast<Cache*>(arg1);
|
|
|
|
Cache::Handle* h = reinterpret_cast<Cache::Handle*>(arg2);
|
|
|
|
cache->Release(h);
|
|
|
|
}
|
|
|
|
|
|
|
|
TableCache::TableCache(const std::string& dbname,
|
|
|
|
const Options* options,
|
|
|
|
int entries)
|
|
|
|
: env_(options->env),
|
|
|
|
dbname_(dbname),
|
|
|
|
options_(options),
|
2012-11-01 01:02:24 +01:00
|
|
|
cache_(NewLRUCache(entries, options->table_cache_numshardbits)) {
|
2012-05-30 08:18:16 +02:00
|
|
|
dbstatistics = (DBStatistics*)options->statistics;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TableCache::~TableCache() {
|
|
|
|
}
|
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
Status TableCache::FindTable(uint64_t file_number, uint64_t file_size,
|
2012-09-27 10:05:38 +02:00
|
|
|
Cache::Handle** handle, bool* tableIO) {
|
2012-04-17 17:36:46 +02:00
|
|
|
Status s;
|
2011-03-18 23:37:00 +01:00
|
|
|
char buf[sizeof(file_number)];
|
|
|
|
EncodeFixed64(buf, file_number);
|
|
|
|
Slice key(buf, sizeof(buf));
|
2012-05-30 08:18:16 +02:00
|
|
|
DBStatistics* stats = (DBStatistics*) options_->statistics;
|
2012-04-17 17:36:46 +02:00
|
|
|
*handle = cache_->Lookup(key);
|
|
|
|
if (*handle == NULL) {
|
2012-09-27 10:05:38 +02:00
|
|
|
if (tableIO != NULL) {
|
|
|
|
*tableIO = true; // we had to do IO from storage
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
std::string fname = TableFileName(dbname_, file_number);
|
2013-01-20 11:07:13 +01:00
|
|
|
unique_ptr<RandomAccessFile> file;
|
|
|
|
unique_ptr<Table> table;
|
2012-04-17 17:36:46 +02:00
|
|
|
s = env_->NewRandomAccessFile(fname, &file);
|
2012-05-30 08:18:16 +02:00
|
|
|
stats ? stats->incNumFileOpens() : (void)0;
|
2011-03-18 23:37:00 +01:00
|
|
|
if (s.ok()) {
|
2013-01-20 11:07:13 +01:00
|
|
|
s = Table::Open(*options_, std::move(file), file_size, &table);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!s.ok()) {
|
|
|
|
assert(table == NULL);
|
2012-05-30 08:18:16 +02:00
|
|
|
stats ? stats->incNumFileErrors() : (void)0;
|
2011-03-18 23:37:00 +01:00
|
|
|
// We do not cache error results so that if the error is transient,
|
|
|
|
// or somebody repairs the file, we recover automatically.
|
2012-04-17 17:36:46 +02:00
|
|
|
} else {
|
|
|
|
TableAndFile* tf = new TableAndFile;
|
2013-01-20 11:07:13 +01:00
|
|
|
tf->file = std::move(file);
|
|
|
|
tf->table = std::move(table);
|
2012-04-17 17:36:46 +02:00
|
|
|
*handle = cache_->Insert(key, tf, 1, &DeleteEntry);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2012-04-17 17:36:46 +02:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
Iterator* TableCache::NewIterator(const ReadOptions& options,
|
|
|
|
uint64_t file_number,
|
|
|
|
uint64_t file_size,
|
|
|
|
Table** tableptr) {
|
|
|
|
if (tableptr != NULL) {
|
|
|
|
*tableptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
Cache::Handle* handle = NULL;
|
|
|
|
Status s = FindTable(file_number, file_size, &handle);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return NewErrorIterator(s);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
Table* table =
|
|
|
|
reinterpret_cast<TableAndFile*>(cache_->Value(handle))->table.get();
|
2011-03-18 23:37:00 +01:00
|
|
|
Iterator* result = table->NewIterator(options);
|
2013-01-20 11:07:13 +01:00
|
|
|
result->RegisterCleanup(&UnrefEntry, cache_.get(), handle);
|
2011-03-18 23:37:00 +01:00
|
|
|
if (tableptr != NULL) {
|
|
|
|
*tableptr = table;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
Status TableCache::Get(const ReadOptions& options,
|
|
|
|
uint64_t file_number,
|
|
|
|
uint64_t file_size,
|
|
|
|
const Slice& k,
|
|
|
|
void* arg,
|
2012-09-27 10:05:38 +02:00
|
|
|
void (*saver)(void*, const Slice&, const Slice&, bool),
|
|
|
|
bool* tableIO) {
|
2012-04-17 17:36:46 +02:00
|
|
|
Cache::Handle* handle = NULL;
|
2012-09-27 10:05:38 +02:00
|
|
|
Status s = FindTable(file_number, file_size, &handle, tableIO);
|
2012-04-17 17:36:46 +02:00
|
|
|
if (s.ok()) {
|
2013-01-20 11:07:13 +01:00
|
|
|
Table* t =
|
|
|
|
reinterpret_cast<TableAndFile*>(cache_->Value(handle))->table.get();
|
2012-04-17 17:36:46 +02:00
|
|
|
s = t->InternalGet(options, k, arg, saver);
|
|
|
|
cache_->Release(handle);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
void TableCache::Evict(uint64_t file_number) {
|
|
|
|
char buf[sizeof(file_number)];
|
|
|
|
EncodeFixed64(buf, file_number);
|
|
|
|
cache_->Erase(Slice(buf, sizeof(buf)));
|
|
|
|
}
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace leveldb
|