Add missing methods to EnvWrapper, and more wrappers in Env.h (#5131)

Summary:
- Some newer methods of Env weren't wrapped in EnvWrapper. Fixed.
 - Added more wrapper classes similar to WritableFileWrapper: SequentialFileWrapper, RandomAccessFileWrapper, RandomRWFileWrapper, DirectoryWrapper, LoggerWrapper.
 - Moved the code around a bit, removed some unused friendships, added some comments.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5131

Differential Revision: D14738932

Pulled By: al13n321

fbshipit-source-id: 99a9b1af28f2c629e7b7501389fa920b5ce30218
main
Mike Kolupaev 6 years ago committed by Facebook Github Bot
parent c06c4c01c5
commit 306b9adfd8
  1. 179
      include/rocksdb/env.h

@ -484,6 +484,8 @@ class Env {
return Status::NotSupported();
}
// If you're adding methods here, remember to add them to EnvWrapper too.
protected:
// The pointer to an internal structure that will update the
// status of each thread.
@ -546,6 +548,9 @@ class SequentialFile {
Slice* /*result*/, char* /*scratch*/) {
return Status::NotSupported();
}
// If you're adding methods here, remember to add them to
// SequentialFileWrapper too.
};
// A file abstraction for randomly reading the contents of a file.
@ -610,6 +615,9 @@ class RandomAccessFile {
virtual Status InvalidateCache(size_t /*offset*/, size_t /*length*/) {
return Status::NotSupported("InvalidateCache not supported.");
}
// If you're adding methods here, remember to add them to
// RandomAccessFileWrapper too.
};
// A file abstraction for sequential writing. The implementation
@ -768,6 +776,9 @@ class WritableFile {
return Status::OK();
}
// If you're adding methods here, remember to add them to
// WritableFileWrapper too.
protected:
size_t preallocation_block_size() { return preallocation_block_size_; }
@ -779,9 +790,6 @@ class WritableFile {
void operator=(const WritableFile&);
protected:
friend class WritableFileWrapper;
friend class WritableFileMirror;
Env::IOPriority io_priority_;
Env::WriteLifeTimeHint write_hint_;
};
@ -818,6 +826,9 @@ class RandomRWFile {
virtual Status Close() = 0;
// If you're adding methods here, remember to add them to
// RandomRWFileWrapper too.
// No copying allowed
RandomRWFile(const RandomRWFile&) = delete;
RandomRWFile& operator=(const RandomRWFile&) = delete;
@ -856,6 +867,9 @@ class Directory {
virtual size_t GetUniqueId(char* /*id*/, size_t /*max_size*/) const {
return 0;
}
// If you're adding methods here, remember to add them to
// DirectoryWrapper too.
};
enum InfoLogLevel : unsigned char {
@ -909,6 +923,8 @@ class Logger {
log_level_ = log_level;
}
// If you're adding methods here, remember to add them to LoggerWrapper too.
protected:
virtual Status CloseImpl();
bool closed_;
@ -989,6 +1005,29 @@ extern Status WriteStringToFile(Env* env, const Slice& data,
extern Status ReadFileToString(Env* env, const std::string& fname,
std::string* data);
// Below are helpers for wrapping most of the classes in this file.
// They forward all calls to another instance of the class.
// Useful when wrapping the default implementations.
// Typical usage is to inherit your wrapper from *Wrapper, e.g.:
//
// class MySequentialFileWrapper : public rocksdb::SequentialFileWrapper {
// public:
// MySequentialFileWrapper(rocksdb::SequentialFile* target):
// rocksdb::SequentialFileWrapper(target) {}
// Status Read(size_t n, Slice* result, char* scratch) override {
// cout << "Doing a read of size " << n << "!" << endl;
// return rocksdb::SequentialFileWrapper::Read(n, result, scratch);
// }
// // All other methods are forwarded to target_ automatically.
// };
//
// This is often more convenient than inheriting the class directly because
// (a) Don't have to override and forward all methods - the Wrapper will
// forward everything you're not explicitly overriding.
// (b) Don't need to update the wrapper when more methods are added to the
// rocksdb class. Unless you actually want to override the behavior.
// (And unless rocksdb people forgot to update the *Wrapper class.)
// An implementation of Env that forwards all calls to another Env.
// May be useful to clients who wish to override just part of the
// functionality of another Env.
@ -1032,6 +1071,11 @@ class EnvWrapper : public Env {
const EnvOptions& options) override {
return target_->NewRandomRWFile(fname, result, options);
}
Status NewMemoryMappedFileBuffer(
const std::string& fname,
std::unique_ptr<MemoryMappedFileBuffer>* result) override {
return target_->NewMemoryMappedFileBuffer(fname, result);
}
Status NewDirectory(const std::string& name,
std::unique_ptr<Directory>* result) override {
return target_->NewDirectory(name, result);
@ -1050,6 +1094,9 @@ class EnvWrapper : public Env {
Status DeleteFile(const std::string& f) override {
return target_->DeleteFile(f);
}
Status Truncate(const std::string& fname, size_t size) override {
return target_->Truncate(fname, size);
}
Status CreateDir(const std::string& d) override {
return target_->CreateDir(d);
}
@ -1116,6 +1163,7 @@ class EnvWrapper : public Env {
}
uint64_t NowMicros() override { return target_->NowMicros(); }
uint64_t NowNanos() override { return target_->NowNanos(); }
uint64_t NowCPUNanos() override { return target_->NowCPUNanos(); }
void SleepForMicroseconds(int micros) override {
target_->SleepForMicroseconds(micros);
@ -1196,16 +1244,66 @@ class EnvWrapper : public Env {
const ImmutableDBOptions& db_options) const override {
return target_->OptimizeForCompactionTableRead(env_options, db_options);
}
Status GetFreeSpace(const std::string& path, uint64_t* diskfree) override {
return target_->GetFreeSpace(path, diskfree);
}
private:
Env* target_;
};
// An implementation of WritableFile that forwards all calls to another
// WritableFile. May be useful to clients who wish to override just part of the
// functionality of another WritableFile.
// It's declared as friend of WritableFile to allow forwarding calls to
// protected virtual methods.
class SequentialFileWrapper : public SequentialFile {
public:
explicit SequentialFileWrapper(SequentialFile* target) : target_(target) {}
Status Read(size_t n, Slice* result, char* scratch) override {
return target_->Read(n, result, scratch);
}
Status Skip(uint64_t n) override { return target_->Skip(n); }
bool use_direct_io() const override { return target_->use_direct_io(); }
size_t GetRequiredBufferAlignment() const override {
return target_->GetRequiredBufferAlignment();
}
Status InvalidateCache(size_t offset, size_t length) override {
return target_->InvalidateCache(offset, length);
}
Status PositionedRead(uint64_t offset, size_t n, Slice* result,
char* scratch) override {
return target_->PositionedRead(offset, n, result, scratch);
}
private:
SequentialFile* target_;
};
class RandomAccessFileWrapper : public RandomAccessFile {
public:
explicit RandomAccessFileWrapper(RandomAccessFile* target)
: target_(target) {}
Status Read(uint64_t offset, size_t n, Slice* result,
char* scratch) const override {
return target_->Read(offset, n, result, scratch);
}
Status Prefetch(uint64_t offset, size_t n) override {
return target_->Prefetch(offset, n);
}
size_t GetUniqueId(char* id, size_t max_size) const override {
return target_->GetUniqueId(id, max_size);
};
void Hint(AccessPattern pattern) override { target_->Hint(pattern); }
bool use_direct_io() const override { return target_->use_direct_io(); }
size_t GetRequiredBufferAlignment() const override {
return target_->GetRequiredBufferAlignment();
}
Status InvalidateCache(size_t offset, size_t length) override {
return target_->InvalidateCache(offset, length);
}
private:
RandomAccessFile* target_;
};
class WritableFileWrapper : public WritableFile {
public:
explicit WritableFileWrapper(WritableFile* t) : target_(t) {}
@ -1276,6 +1374,71 @@ class WritableFileWrapper : public WritableFile {
WritableFile* target_;
};
class RandomRWFileWrapper : public RandomRWFile {
public:
explicit RandomRWFileWrapper(RandomRWFile* target) : target_(target) {}
bool use_direct_io() const override { return target_->use_direct_io(); }
size_t GetRequiredBufferAlignment() const override {
return target_->GetRequiredBufferAlignment();
}
Status Write(uint64_t offset, const Slice& data) override {
return target_->Write(offset, data);
}
Status Read(uint64_t offset, size_t n, Slice* result,
char* scratch) const override {
return target_->Read(offset, n, result, scratch);
}
Status Flush() override { return target_->Flush(); }
Status Sync() override { return target_->Sync(); }
Status Fsync() override { return target_->Fsync(); }
Status Close() override { return target_->Close(); }
private:
RandomRWFile* target_;
};
class DirectoryWrapper : public Directory {
public:
explicit DirectoryWrapper(Directory* target) : target_(target) {}
Status Fsync() override { return target_->Fsync(); }
size_t GetUniqueId(char* id, size_t max_size) const override {
return target_->GetUniqueId(id, max_size);
}
private:
Directory* target_;
};
class LoggerWrapper : public Logger {
public:
explicit LoggerWrapper(Logger* target) : target_(target) {}
Status Close() override { return target_->Close(); }
void LogHeader(const char* format, va_list ap) override {
return target_->LogHeader(format, ap);
}
void Logv(const char* format, va_list ap) override {
return target_->Logv(format, ap);
}
void Logv(const InfoLogLevel log_level, const char* format,
va_list ap) override {
return target_->Logv(log_level, format, ap);
}
size_t GetLogFileSize() const override { return target_->GetLogFileSize(); }
void Flush() override { return target_->Flush(); }
InfoLogLevel GetInfoLogLevel() const override {
return target_->GetInfoLogLevel();
}
void SetInfoLogLevel(const InfoLogLevel log_level) override {
return target_->SetInfoLogLevel(log_level);
}
private:
Logger* target_;
};
// Returns a new environment that stores its data in memory and delegates
// all non-file-storage tasks to base_env. The caller must delete the result
// when it is no longer needed.

Loading…
Cancel
Save