#pragma once #include #include #include #include namespace DB { class ReadBuffer; class WriteBuffer; /** Implementation of Disk intended only for testing purposes. * All filesystem objects are stored in memory and lost on server restart. * * NOTE Work in progress. Currently the interface is not viable enough to support MergeTree or even StripeLog tables. * Please delete this interface if it will not be finished after 2020-06-18. */ class DiskMemory : public IDisk { public: DiskMemory(const String & name_) : name(name_), disk_path("memory://" + name_ + '/') { } const String & getName() const override { return name; } const String & getPath() const override { return disk_path; } ReservationPtr reserve(UInt64 bytes) override; UInt64 getTotalSpace() const override; UInt64 getAvailableSpace() const override; UInt64 getUnreservedSpace() const override; bool exists(const String & path) const override; bool isFile(const String & path) const override; bool isDirectory(const String & path) const override; size_t getFileSize(const String & path) const override; void createDirectory(const String & path) override; void createDirectories(const String & path) override; void clearDirectory(const String & path) override; void moveDirectory(const String & from_path, const String & to_path) override; DiskDirectoryIteratorPtr iterateDirectory(const String & path) override; void moveFile(const String & from_path, const String & to_path) override; void replaceFile(const String & from_path, const String & to_path) override; void copyFile(const String & from_path, const String & to_path) override; std::unique_ptr readFile( const String & path, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE) const override; std::unique_ptr writeFile( const String & path, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, WriteMode mode = WriteMode::Rewrite) override; void remove(const String & path) override; void removeRecursive(const String & path) override; private: void createDirectoriesImpl(const String & path); void replaceFileImpl(const String & from_path, const String & to_path); private: enum class FileType { File, Directory }; struct FileData { FileType type; String data; explicit FileData(FileType type_) : type(type_) { } }; using Files = std::unordered_map; /// file path -> file data const String name; const String disk_path; Files files; mutable std::mutex mutex; }; }