2011-09-12 17:21:10 +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.
|
|
|
|
|
|
|
|
#include "helpers/memenv/memenv.h"
|
|
|
|
|
2020-04-30 03:59:39 +08:00
|
|
|
#include <cstring>
|
2018-03-21 06:22:23 +08:00
|
|
|
#include <limits>
|
2018-03-17 01:06:35 +08:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
#include "leveldb/env.h"
|
|
|
|
#include "leveldb/status.h"
|
|
|
|
#include "port/port.h"
|
2018-03-17 01:06:35 +08:00
|
|
|
#include "port/thread_annotations.h"
|
2011-09-12 17:21:10 +08:00
|
|
|
#include "util/mutexlock.h"
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class FileState {
|
|
|
|
public:
|
|
|
|
// FileStates are reference counted. The initial reference count is zero
|
|
|
|
// and the caller must call Ref() at least once.
|
|
|
|
FileState() : refs_(0), size_(0) {}
|
|
|
|
|
2019-05-04 00:31:18 +08:00
|
|
|
// No copying allowed.
|
|
|
|
FileState(const FileState&) = delete;
|
|
|
|
FileState& operator=(const FileState&) = delete;
|
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
// Increase the reference count.
|
|
|
|
void Ref() {
|
|
|
|
MutexLock lock(&refs_mutex_);
|
|
|
|
++refs_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decrease the reference count. Delete if this is the last reference.
|
|
|
|
void Unref() {
|
|
|
|
bool do_delete = false;
|
|
|
|
|
|
|
|
{
|
|
|
|
MutexLock lock(&refs_mutex_);
|
|
|
|
--refs_;
|
|
|
|
assert(refs_ >= 0);
|
|
|
|
if (refs_ <= 0) {
|
|
|
|
do_delete = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_delete) {
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-12 03:32:50 +08:00
|
|
|
uint64_t Size() const {
|
|
|
|
MutexLock lock(&blocks_mutex_);
|
|
|
|
return size_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Truncate() {
|
|
|
|
MutexLock lock(&blocks_mutex_);
|
|
|
|
for (char*& block : blocks_) {
|
|
|
|
delete[] block;
|
|
|
|
}
|
|
|
|
blocks_.clear();
|
|
|
|
size_ = 0;
|
|
|
|
}
|
2011-09-12 17:21:10 +08:00
|
|
|
|
|
|
|
Status Read(uint64_t offset, size_t n, Slice* result, char* scratch) const {
|
2019-03-12 03:32:50 +08:00
|
|
|
MutexLock lock(&blocks_mutex_);
|
2011-09-12 17:21:10 +08:00
|
|
|
if (offset > size_) {
|
|
|
|
return Status::IOError("Offset greater than file size.");
|
|
|
|
}
|
|
|
|
const uint64_t available = size_ - offset;
|
|
|
|
if (n > available) {
|
2014-09-17 05:19:52 +08:00
|
|
|
n = static_cast<size_t>(available);
|
2011-09-12 17:21:10 +08:00
|
|
|
}
|
|
|
|
if (n == 0) {
|
|
|
|
*result = Slice();
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2018-03-21 06:22:23 +08:00
|
|
|
assert(offset / kBlockSize <= std::numeric_limits<size_t>::max());
|
2014-09-17 05:19:52 +08:00
|
|
|
size_t block = static_cast<size_t>(offset / kBlockSize);
|
2011-09-12 17:21:10 +08:00
|
|
|
size_t block_offset = offset % kBlockSize;
|
|
|
|
size_t bytes_to_copy = n;
|
|
|
|
char* dst = scratch;
|
|
|
|
|
|
|
|
while (bytes_to_copy > 0) {
|
|
|
|
size_t avail = kBlockSize - block_offset;
|
|
|
|
if (avail > bytes_to_copy) {
|
|
|
|
avail = bytes_to_copy;
|
|
|
|
}
|
2020-04-30 06:31:41 +08:00
|
|
|
std::memcpy(dst, blocks_[block] + block_offset, avail);
|
2011-09-12 17:21:10 +08:00
|
|
|
|
|
|
|
bytes_to_copy -= avail;
|
|
|
|
dst += avail;
|
|
|
|
block++;
|
|
|
|
block_offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*result = Slice(scratch, n);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
Status Append(const Slice& data) {
|
|
|
|
const char* src = data.data();
|
|
|
|
size_t src_len = data.size();
|
|
|
|
|
2019-03-12 03:32:50 +08:00
|
|
|
MutexLock lock(&blocks_mutex_);
|
2011-09-12 17:21:10 +08:00
|
|
|
while (src_len > 0) {
|
|
|
|
size_t avail;
|
|
|
|
size_t offset = size_ % kBlockSize;
|
|
|
|
|
|
|
|
if (offset != 0) {
|
|
|
|
// There is some room in the last block.
|
|
|
|
avail = kBlockSize - offset;
|
|
|
|
} else {
|
|
|
|
// No room in the last block; push new one.
|
|
|
|
blocks_.push_back(new char[kBlockSize]);
|
|
|
|
avail = kBlockSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (avail > src_len) {
|
|
|
|
avail = src_len;
|
|
|
|
}
|
2020-04-30 06:31:41 +08:00
|
|
|
std::memcpy(blocks_.back() + offset, src, avail);
|
2011-09-12 17:21:10 +08:00
|
|
|
src_len -= avail;
|
|
|
|
src += avail;
|
|
|
|
size_ += avail;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-05-04 00:31:18 +08:00
|
|
|
enum { kBlockSize = 8 * 1024 };
|
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
// Private since only Unref() should be used to delete it.
|
2019-05-03 02:01:00 +08:00
|
|
|
~FileState() { Truncate(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
|
|
|
port::Mutex refs_mutex_;
|
2018-03-17 01:06:35 +08:00
|
|
|
int refs_ GUARDED_BY(refs_mutex_);
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-03-12 03:32:50 +08:00
|
|
|
mutable port::Mutex blocks_mutex_;
|
|
|
|
std::vector<char*> blocks_ GUARDED_BY(blocks_mutex_);
|
|
|
|
uint64_t size_ GUARDED_BY(blocks_mutex_);
|
2011-09-12 17:21:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class SequentialFileImpl : public SequentialFile {
|
|
|
|
public:
|
|
|
|
explicit SequentialFileImpl(FileState* file) : file_(file), pos_(0) {
|
|
|
|
file_->Ref();
|
|
|
|
}
|
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
~SequentialFileImpl() override { file_->Unref(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
Status Read(size_t n, Slice* result, char* scratch) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
Status s = file_->Read(pos_, n, result, scratch);
|
|
|
|
if (s.ok()) {
|
|
|
|
pos_ += result->size();
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
Status Skip(uint64_t n) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
if (pos_ > file_->Size()) {
|
|
|
|
return Status::IOError("pos_ > file_->Size()");
|
|
|
|
}
|
2014-09-17 05:19:52 +08:00
|
|
|
const uint64_t available = file_->Size() - pos_;
|
2011-09-12 17:21:10 +08:00
|
|
|
if (n > available) {
|
|
|
|
n = available;
|
|
|
|
}
|
|
|
|
pos_ += n;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FileState* file_;
|
2014-09-17 05:19:52 +08:00
|
|
|
uint64_t pos_;
|
2011-09-12 17:21:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class RandomAccessFileImpl : public RandomAccessFile {
|
|
|
|
public:
|
2019-05-03 02:01:00 +08:00
|
|
|
explicit RandomAccessFileImpl(FileState* file) : file_(file) { file_->Ref(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
~RandomAccessFileImpl() override { file_->Unref(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
Status Read(uint64_t offset, size_t n, Slice* result,
|
|
|
|
char* scratch) const override {
|
2011-09-12 17:21:10 +08:00
|
|
|
return file_->Read(offset, n, result, scratch);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FileState* file_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WritableFileImpl : public WritableFile {
|
|
|
|
public:
|
2019-05-03 02:01:00 +08:00
|
|
|
WritableFileImpl(FileState* file) : file_(file) { file_->Ref(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
~WritableFileImpl() override { file_->Unref(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
Status Append(const Slice& data) override { return file_->Append(data); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-10 05:00:07 +08:00
|
|
|
Status Close() override { return Status::OK(); }
|
|
|
|
Status Flush() override { return Status::OK(); }
|
|
|
|
Status Sync() override { return Status::OK(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
FileState* file_;
|
|
|
|
};
|
|
|
|
|
2012-10-13 02:53:12 +08:00
|
|
|
class NoOpLogger : public Logger {
|
|
|
|
public:
|
2020-04-30 06:31:41 +08:00
|
|
|
void Logv(const char* format, std::va_list ap) override {}
|
2012-10-13 02:53:12 +08:00
|
|
|
};
|
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
class InMemoryEnv : public EnvWrapper {
|
|
|
|
public:
|
2019-05-03 02:01:00 +08:00
|
|
|
explicit InMemoryEnv(Env* base_env) : EnvWrapper(base_env) {}
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
~InMemoryEnv() override {
|
|
|
|
for (const auto& kvp : file_map_) {
|
|
|
|
kvp.second->Unref();
|
2011-09-12 17:21:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Partial implementation of the Env interface.
|
2019-05-05 08:40:21 +08:00
|
|
|
Status NewSequentialFile(const std::string& fname,
|
|
|
|
SequentialFile** result) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (file_map_.find(fname) == file_map_.end()) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2011-09-12 17:21:10 +08:00
|
|
|
return Status::IOError(fname, "File not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
*result = new SequentialFileImpl(file_map_[fname]);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status NewRandomAccessFile(const std::string& fname,
|
|
|
|
RandomAccessFile** result) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (file_map_.find(fname) == file_map_.end()) {
|
2018-04-11 07:18:06 +08:00
|
|
|
*result = nullptr;
|
2011-09-12 17:21:10 +08:00
|
|
|
return Status::IOError(fname, "File not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
*result = new RandomAccessFileImpl(file_map_[fname]);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status NewWritableFile(const std::string& fname,
|
|
|
|
WritableFile** result) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
2019-03-12 03:32:50 +08:00
|
|
|
FileSystem::iterator it = file_map_.find(fname);
|
|
|
|
|
|
|
|
FileState* file;
|
|
|
|
if (it == file_map_.end()) {
|
|
|
|
// File is not currently open.
|
|
|
|
file = new FileState();
|
|
|
|
file->Ref();
|
|
|
|
file_map_[fname] = file;
|
|
|
|
} else {
|
|
|
|
file = it->second;
|
|
|
|
file->Truncate();
|
2011-09-12 17:21:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
*result = new WritableFileImpl(file);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status NewAppendableFile(const std::string& fname,
|
|
|
|
WritableFile** result) override {
|
2014-12-12 00:13:18 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
FileState** sptr = &file_map_[fname];
|
|
|
|
FileState* file = *sptr;
|
2018-04-11 07:18:06 +08:00
|
|
|
if (file == nullptr) {
|
2014-12-12 00:13:18 +08:00
|
|
|
file = new FileState();
|
|
|
|
file->Ref();
|
|
|
|
}
|
|
|
|
*result = new WritableFileImpl(file);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
bool FileExists(const std::string& fname) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
return file_map_.find(fname) != file_map_.end();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status GetChildren(const std::string& dir,
|
|
|
|
std::vector<std::string>* result) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
result->clear();
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
for (const auto& kvp : file_map_) {
|
|
|
|
const std::string& filename = kvp.first;
|
2011-09-12 17:21:10 +08:00
|
|
|
|
|
|
|
if (filename.size() >= dir.size() + 1 && filename[dir.size()] == '/' &&
|
|
|
|
Slice(filename).starts_with(Slice(dir))) {
|
|
|
|
result->push_back(filename.substr(dir.size() + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
void RemoveFileInternal(const std::string& fname)
|
2018-03-17 01:06:35 +08:00
|
|
|
EXCLUSIVE_LOCKS_REQUIRED(mutex_) {
|
2011-09-12 17:21:10 +08:00
|
|
|
if (file_map_.find(fname) == file_map_.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
file_map_[fname]->Unref();
|
|
|
|
file_map_.erase(fname);
|
|
|
|
}
|
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
Status RemoveFile(const std::string& fname) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (file_map_.find(fname) == file_map_.end()) {
|
|
|
|
return Status::IOError(fname, "File not found");
|
|
|
|
}
|
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
RemoveFileInternal(fname);
|
2011-09-12 17:21:10 +08:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status CreateDir(const std::string& dirname) override { return Status::OK(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
Status RemoveDir(const std::string& dirname) override { return Status::OK(); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status GetFileSize(const std::string& fname, uint64_t* file_size) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (file_map_.find(fname) == file_map_.end()) {
|
|
|
|
return Status::IOError(fname, "File not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
*file_size = file_map_[fname]->Size();
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status RenameFile(const std::string& src,
|
|
|
|
const std::string& target) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
MutexLock lock(&mutex_);
|
|
|
|
if (file_map_.find(src) == file_map_.end()) {
|
|
|
|
return Status::IOError(src, "File not found");
|
|
|
|
}
|
|
|
|
|
Add Env::Remove{File,Dir} which obsolete Env::Delete{File,Dir}.
The "DeleteFile" method name causes pain for Windows developers, because
<windows.h> #defines a DeleteFile macro to DeleteFileW or DeleteFileA.
Current code uses workarounds, like #undefining DeleteFile everywhere an
Env is declared, implemented, or used.
This CL removes the need for workarounds by renaming Env::DeleteFile to
Env::RemoveFile. For consistency, Env::DeleteDir is also renamed to
Env::RemoveDir. A few internal methods are also renamed for consistency.
Software that supports Windows is expected to migrate any Env
implementations and usage to Remove{File,Dir}, and never use the name
Env::Delete{File,Dir} in its code.
The renaming is done in a backwards-compatible way, at the risk of
making it slightly more difficult to build a new correct Env
implementation. The backwards compatibility is achieved using the
following hacks:
1) Env::Remove{File,Dir} methods are added, with a default
implementation that calls into Env::Delete{File,Dir}. This makes old
Env implementations compatible with code that calls into the updated
API.
2) The Env::Delete{File,Dir} methods are no longer pure virtuals.
Instead, they gain a default implementation that calls into
Env::Remove{File,Dir}. This makes updated Env implementations
compatible with code that calls into the old API.
The cost of this approach is that it's possible to write an Env without
overriding either Rename{File,Dir} or Delete{File,Dir}, without getting
a compiler warning. However, attempting to run the test suite will
immediately fail with an infinite call stack ending in
{Remove,Delete}{File,Dir}, making developers aware of the problem.
PiperOrigin-RevId: 288710907
2020-01-09 01:14:53 +08:00
|
|
|
RemoveFileInternal(target);
|
2011-09-12 17:21:10 +08:00
|
|
|
file_map_[target] = file_map_[src];
|
|
|
|
file_map_.erase(src);
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status LockFile(const std::string& fname, FileLock** lock) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
*lock = new FileLock;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status UnlockFile(FileLock* lock) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
delete lock;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status GetTestDirectory(std::string* path) override {
|
2011-09-12 17:21:10 +08:00
|
|
|
*path = "/test";
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-05-05 08:40:21 +08:00
|
|
|
Status NewLogger(const std::string& fname, Logger** result) override {
|
2012-10-13 02:53:12 +08:00
|
|
|
*result = new NoOpLogger;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
private:
|
|
|
|
// Map from filenames to FileState objects, representing a simple file system.
|
|
|
|
typedef std::map<std::string, FileState*> FileSystem;
|
2019-05-04 00:31:18 +08:00
|
|
|
|
2011-09-12 17:21:10 +08:00
|
|
|
port::Mutex mutex_;
|
2018-03-17 01:06:35 +08:00
|
|
|
FileSystem file_map_ GUARDED_BY(mutex_);
|
2011-09-12 17:21:10 +08:00
|
|
|
};
|
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2019-05-03 02:01:00 +08:00
|
|
|
Env* NewMemEnv(Env* base_env) { return new InMemoryEnv(base_env); }
|
2011-09-12 17:21:10 +08:00
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|