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.
|
|
|
|
//
|
|
|
|
// Thread-safe (provides internal synchronization)
|
|
|
|
|
|
|
|
#ifndef STORAGE_LEVELDB_DB_TABLE_CACHE_H_
|
|
|
|
#define STORAGE_LEVELDB_DB_TABLE_CACHE_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "db/dbformat.h"
|
2013-03-15 01:00:04 +01:00
|
|
|
#include "leveldb/env.h"
|
2011-03-30 20:35:40 +02:00
|
|
|
#include "leveldb/cache.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "port/port.h"
|
2013-04-23 00:20:20 +02:00
|
|
|
#include "table/table.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
class Env;
|
|
|
|
|
|
|
|
class TableCache {
|
|
|
|
public:
|
2013-03-15 01:00:04 +01:00
|
|
|
TableCache(const std::string& dbname, const Options* options,
|
2013-06-08 00:35:17 +02:00
|
|
|
const EnvOptions& storage_options, int entries);
|
2011-03-18 23:37:00 +01:00
|
|
|
~TableCache();
|
|
|
|
|
2011-03-28 22:43:44 +02:00
|
|
|
// Return an iterator for the specified file number (the corresponding
|
|
|
|
// file length must be exactly "file_size" bytes). If "tableptr" is
|
2013-03-01 03:04:58 +01:00
|
|
|
// non-nullptr, also sets "*tableptr" to point to the Table object
|
|
|
|
// underlying the returned iterator, or nullptr if no Table object underlies
|
2011-03-28 22:43:44 +02:00
|
|
|
// the returned iterator. The returned "*tableptr" object is owned by
|
|
|
|
// the cache and should not be deleted, and is valid for as long as the
|
|
|
|
// returned iterator is live.
|
2011-03-18 23:37:00 +01:00
|
|
|
Iterator* NewIterator(const ReadOptions& options,
|
2013-03-15 01:00:04 +01:00
|
|
|
const EnvOptions& toptions,
|
2011-03-18 23:37:00 +01:00
|
|
|
uint64_t file_number,
|
2011-03-28 22:43:44 +02:00
|
|
|
uint64_t file_size,
|
2013-05-18 00:53:01 +02:00
|
|
|
Table** tableptr = nullptr,
|
|
|
|
bool for_compaction = false);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2012-04-17 17:36:46 +02:00
|
|
|
// If a seek to internal key "k" in specified file finds an entry,
|
2013-03-21 23:59:47 +01:00
|
|
|
// call (*handle_result)(arg, found_key, found_value) repeatedly until
|
|
|
|
// it returns false.
|
2012-04-17 17:36:46 +02:00
|
|
|
Status Get(const ReadOptions& options,
|
|
|
|
uint64_t file_number,
|
|
|
|
uint64_t file_size,
|
|
|
|
const Slice& k,
|
|
|
|
void* arg,
|
2013-03-21 23:59:47 +01:00
|
|
|
bool (*handle_result)(void*, const Slice&, const Slice&, bool),
|
2013-07-13 01:56:52 +02:00
|
|
|
bool* table_io,
|
2013-07-06 03:49:18 +02:00
|
|
|
void (*mark_key_may_exist)(void*) = nullptr,
|
2013-07-13 01:56:52 +02:00
|
|
|
const bool no_io = false);
|
2012-04-17 17:36:46 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Evict any entry for the specified file number
|
|
|
|
void Evict(uint64_t file_number);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Env* const env_;
|
|
|
|
const std::string dbname_;
|
|
|
|
const Options* options_;
|
2013-06-08 00:35:17 +02:00
|
|
|
const EnvOptions& storage_options_;
|
2013-01-20 11:07:13 +01:00
|
|
|
std::shared_ptr<Cache> cache_;
|
2012-04-17 17:36:46 +02:00
|
|
|
|
2013-07-13 01:56:52 +02:00
|
|
|
Status FindTable(const EnvOptions& toptions, uint64_t file_number,
|
|
|
|
uint64_t file_size, Cache::Handle**, bool* table_io=nullptr,
|
|
|
|
const bool no_io = false);
|
2011-03-18 23:37:00 +01:00
|
|
|
};
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace leveldb
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
#endif // STORAGE_LEVELDB_DB_TABLE_CACHE_H_
|