b60c14f6ee
Summary: We don't want two threads to clash if they concurrently call DisableFileDeletions() and EnableFileDeletions(). I'm adding a counter that will enable file deletions only after all DisableFileDeletions() calls have been negated with EnableFileDeletions(). However, we also don't want to break the old behavior, so I added a parameter force to EnableFileDeletions(). If force is true, we will still enable file deletions after every call to EnableFileDeletions(), which is what is happening now. Test Plan: make check Reviewers: dhruba, haobo, sanketh Reviewed By: dhruba CC: leveldb Differential Revision: https://reviews.facebook.net/D14781
162 lines
4.4 KiB
C++
162 lines
4.4 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
#include "rocksdb/db.h"
|
|
|
|
namespace rocksdb {
|
|
|
|
// This class contains APIs to stack rocksdb wrappers.Eg. Stack TTL over base d
|
|
class StackableDB : public DB {
|
|
public:
|
|
// StackableDB is the owner of db now!
|
|
explicit StackableDB(DB* db) : db_(db) {}
|
|
|
|
~StackableDB() {
|
|
delete db_;
|
|
}
|
|
|
|
virtual DB* GetBaseDB() {
|
|
return db_;
|
|
}
|
|
|
|
virtual Status Put(const WriteOptions& options,
|
|
const Slice& key,
|
|
const Slice& val) override {
|
|
return db_->Put(options, key, val);
|
|
}
|
|
|
|
virtual Status Get(const ReadOptions& options,
|
|
const Slice& key,
|
|
std::string* value) override {
|
|
return db_->Get(options, key, value);
|
|
}
|
|
|
|
virtual std::vector<Status> MultiGet(const ReadOptions& options,
|
|
const std::vector<Slice>& keys,
|
|
std::vector<std::string>* values)
|
|
override {
|
|
return db_->MultiGet(options, keys, values);
|
|
}
|
|
|
|
virtual bool KeyMayExist(const ReadOptions& options,
|
|
const Slice& key,
|
|
std::string* value,
|
|
bool* value_found = nullptr) override {
|
|
return db_->KeyMayExist(options, key, value, value_found);
|
|
}
|
|
|
|
virtual Status Delete(const WriteOptions& wopts, const Slice& key) override {
|
|
return db_->Delete(wopts, key);
|
|
}
|
|
|
|
virtual Status Merge(const WriteOptions& options,
|
|
const Slice& key,
|
|
const Slice& value) override {
|
|
return db_->Merge(options, key, value);
|
|
}
|
|
|
|
|
|
virtual Status Write(const WriteOptions& opts, WriteBatch* updates)
|
|
override {
|
|
return db_->Write(opts, updates);
|
|
}
|
|
|
|
virtual Iterator* NewIterator(const ReadOptions& opts) override {
|
|
return db_->NewIterator(opts);
|
|
}
|
|
|
|
virtual const Snapshot* GetSnapshot() override {
|
|
return db_->GetSnapshot();
|
|
}
|
|
|
|
virtual void ReleaseSnapshot(const Snapshot* snapshot) override {
|
|
return db_->ReleaseSnapshot(snapshot);
|
|
}
|
|
|
|
virtual bool GetProperty(const Slice& property, std::string* value)
|
|
override {
|
|
return db_->GetProperty(property, value);
|
|
}
|
|
|
|
virtual void GetApproximateSizes(const Range* r, int n, uint64_t* sizes)
|
|
override {
|
|
return db_->GetApproximateSizes(r, n, sizes);
|
|
}
|
|
|
|
virtual void CompactRange(const Slice* begin, const Slice* end,
|
|
bool reduce_level = false,
|
|
int target_level = -1) override {
|
|
return db_->CompactRange(begin, end, reduce_level, target_level);
|
|
}
|
|
|
|
virtual int NumberLevels() override {
|
|
return db_->NumberLevels();
|
|
}
|
|
|
|
virtual int MaxMemCompactionLevel() override {
|
|
return db_->MaxMemCompactionLevel();
|
|
}
|
|
|
|
virtual int Level0StopWriteTrigger() override {
|
|
return db_->Level0StopWriteTrigger();
|
|
}
|
|
|
|
virtual const std::string& GetName() const override {
|
|
return db_->GetName();
|
|
}
|
|
|
|
virtual Env* GetEnv() const override {
|
|
return db_->GetEnv();
|
|
}
|
|
|
|
virtual const Options& GetOptions() const override {
|
|
return db_->GetOptions();
|
|
}
|
|
|
|
virtual Status Flush(const FlushOptions& fopts) override {
|
|
return db_->Flush(fopts);
|
|
}
|
|
|
|
virtual Status DisableFileDeletions() override {
|
|
return db_->DisableFileDeletions();
|
|
}
|
|
|
|
virtual Status EnableFileDeletions(bool force) override {
|
|
return db_->EnableFileDeletions(force);
|
|
}
|
|
|
|
virtual Status GetLiveFiles(std::vector<std::string>& vec, uint64_t* mfs,
|
|
bool flush_memtable = true) override {
|
|
return db_->GetLiveFiles(vec, mfs, flush_memtable);
|
|
}
|
|
|
|
virtual SequenceNumber GetLatestSequenceNumber() const override {
|
|
return db_->GetLatestSequenceNumber();
|
|
}
|
|
|
|
virtual Status GetSortedWalFiles(VectorLogPtr& files) override {
|
|
return db_->GetSortedWalFiles(files);
|
|
}
|
|
|
|
virtual Status DeleteFile(std::string name) override {
|
|
return db_->DeleteFile(name);
|
|
}
|
|
|
|
virtual Status GetDbIdentity(std::string& identity) {
|
|
return db_->GetDbIdentity(identity);
|
|
}
|
|
|
|
virtual Status GetUpdatesSince(SequenceNumber seq_number,
|
|
unique_ptr<TransactionLogIterator>* iter)
|
|
override {
|
|
return db_->GetUpdatesSince(seq_number, iter);
|
|
}
|
|
|
|
protected:
|
|
DB* db_;
|
|
};
|
|
|
|
} // namespace rocksdb
|