2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-10-31 23:08:10 +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.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <atomic>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "rocksdb/env.h"
|
|
|
|
#include "rocksdb/status.h"
|
|
|
|
#include "port/port.h"
|
|
|
|
#include "util/mutexlock.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2014-10-31 23:08:10 +01:00
|
|
|
|
|
|
|
class MemFile;
|
|
|
|
class MockEnv : public EnvWrapper {
|
|
|
|
public:
|
|
|
|
explicit MockEnv(Env* base_env);
|
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
~MockEnv() override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
|
|
|
// Partial implementation of the Env interface.
|
2020-03-12 02:36:43 +01:00
|
|
|
Status RegisterDbPaths(const std::vector<std::string>& /*paths*/) override {
|
|
|
|
return Status::OK();
|
|
|
|
}
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status UnregisterDbPaths(const std::vector<std::string>& /*paths*/) override {
|
|
|
|
return Status::OK();
|
|
|
|
}
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewSequentialFile(const std::string& fname,
|
|
|
|
std::unique_ptr<SequentialFile>* result,
|
|
|
|
const EnvOptions& soptions) override;
|
2017-03-13 17:41:30 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewRandomAccessFile(const std::string& fname,
|
|
|
|
std::unique_ptr<RandomAccessFile>* result,
|
|
|
|
const EnvOptions& soptions) override;
|
2017-03-13 17:41:30 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewRandomRWFile(const std::string& fname,
|
|
|
|
std::unique_ptr<RandomRWFile>* result,
|
|
|
|
const EnvOptions& options) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status ReuseWritableFile(const std::string& fname,
|
|
|
|
const std::string& old_fname,
|
|
|
|
std::unique_ptr<WritableFile>* result,
|
|
|
|
const EnvOptions& options) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewWritableFile(const std::string& fname,
|
|
|
|
std::unique_ptr<WritableFile>* result,
|
|
|
|
const EnvOptions& env_options) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewDirectory(const std::string& name,
|
|
|
|
std::unique_ptr<Directory>* result) override;
|
|
|
|
|
|
|
|
Status FileExists(const std::string& fname) override;
|
|
|
|
|
|
|
|
Status GetChildren(const std::string& dir,
|
|
|
|
std::vector<std::string>* result) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
|
|
|
void DeleteFileInternal(const std::string& fname);
|
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status DeleteFile(const std::string& fname) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status Truncate(const std::string& fname, size_t size) override;
|
2018-04-27 06:08:46 +02:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status CreateDir(const std::string& dirname) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status CreateDirIfMissing(const std::string& dirname) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status DeleteDir(const std::string& dirname) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status GetFileSize(const std::string& fname, uint64_t* file_size) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status GetFileModificationTime(const std::string& fname,
|
|
|
|
uint64_t* time) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status RenameFile(const std::string& src, const std::string& target) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status LinkFile(const std::string& src, const std::string& target) override;
|
2014-11-14 20:38:26 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status NewLogger(const std::string& fname,
|
|
|
|
std::shared_ptr<Logger>* result) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status LockFile(const std::string& fname, FileLock** flock) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status UnlockFile(FileLock* flock) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2020-03-12 02:36:43 +01:00
|
|
|
Status GetTestDirectory(std::string* path) override;
|
2014-10-31 23:08:10 +01:00
|
|
|
|
2015-04-14 01:15:05 +02:00
|
|
|
// Results of these can be affected by FakeSleepForMicroseconds()
|
2020-03-12 02:36:43 +01:00
|
|
|
Status GetCurrentTime(int64_t* unix_time) override;
|
|
|
|
uint64_t NowMicros() override;
|
|
|
|
uint64_t NowNanos() override;
|
2015-04-14 01:15:05 +02:00
|
|
|
|
2014-10-31 23:16:31 +01:00
|
|
|
Status CorruptBuffer(const std::string& fname);
|
|
|
|
|
2015-04-14 01:15:05 +02:00
|
|
|
// Doesn't really sleep, just affects output of GetCurrentTime(), NowMicros()
|
|
|
|
// and NowNanos()
|
|
|
|
void FakeSleepForMicroseconds(int64_t micros);
|
|
|
|
|
2014-10-31 23:08:10 +01:00
|
|
|
private:
|
|
|
|
// Map from filenames to MemFile objects, representing a simple file system.
|
|
|
|
typedef std::map<std::string, MemFile*> FileSystem;
|
|
|
|
port::Mutex mutex_;
|
|
|
|
FileSystem file_map_; // Protected by mutex_.
|
2015-04-14 01:15:05 +02:00
|
|
|
|
|
|
|
std::atomic<int64_t> fake_sleep_micros_;
|
2014-10-31 23:08:10 +01:00
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|