2011-03-19 06:37:00 +08: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 <stdint.h>
|
2019-05-03 02:01:00 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
#include "db/dbformat.h"
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/cache.h"
|
|
|
|
#include "leveldb/table.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
#include "port/port.h"
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
class Env;
|
|
|
|
|
|
|
|
class TableCache {
|
|
|
|
public:
|
2018-03-17 01:06:35 +08:00
|
|
|
TableCache(const std::string& dbname, const Options& options, int entries);
|
2011-03-19 06:37:00 +08:00
|
|
|
~TableCache();
|
|
|
|
|
2011-03-29 04:43:44 +08:00
|
|
|
// Return an iterator for the specified file number (the corresponding
|
|
|
|
// file length must be exactly "file_size" bytes). If "tableptr" is
|
2018-04-11 07:18:06 +08:00
|
|
|
// non-null, also sets "*tableptr" to point to the Table object
|
|
|
|
// underlying the returned iterator, or to nullptr if no Table object
|
|
|
|
// underlies 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
|
2011-03-29 04:43:44 +08:00
|
|
|
// returned iterator is live.
|
2019-05-03 02:01:00 +08:00
|
|
|
Iterator* NewIterator(const ReadOptions& options, uint64_t file_number,
|
|
|
|
uint64_t file_size, Table** tableptr = nullptr);
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2012-04-17 23:36:46 +08:00
|
|
|
// If a seek to internal key "k" in specified file finds an entry,
|
|
|
|
// call (*handle_result)(arg, found_key, found_value).
|
2019-05-03 02:01:00 +08:00
|
|
|
Status Get(const ReadOptions& options, uint64_t file_number,
|
|
|
|
uint64_t file_size, const Slice& k, void* arg,
|
2012-04-17 23:36:46 +08:00
|
|
|
void (*handle_result)(void*, const Slice&, const Slice&));
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
// Evict any entry for the specified file number
|
|
|
|
void Evict(uint64_t file_number);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Env* const env_;
|
|
|
|
const std::string dbname_;
|
2018-03-17 01:06:35 +08:00
|
|
|
const Options& options_;
|
2011-03-19 06:37:00 +08:00
|
|
|
Cache* cache_;
|
2012-04-17 23:36:46 +08:00
|
|
|
|
|
|
|
Status FindTable(uint64_t file_number, uint64_t file_size, Cache::Handle**);
|
2011-03-19 06:37:00 +08:00
|
|
|
};
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
#endif // STORAGE_LEVELDB_DB_TABLE_CACHE_H_
|