#pragma once #ifndef BLOCKSTORE_IMPLEMENTATIONS_ONDISK_ONDISKBLOCKSTORE_H_ #define BLOCKSTORE_IMPLEMENTATIONS_ONDISK_ONDISKBLOCKSTORE_H_ #include #include #include "messmer/cpp-utils/macros.h" #include namespace blockstore { namespace ondisk { class OnDiskBlockStore: public BlockStoreWithRandomKeys { public: OnDiskBlockStore(const boost::filesystem::path &rootdir); std::unique_ptr create(const Key &key, size_t size) override; std::unique_ptr load(const Key &key) override; void remove(std::unique_ptr block) override; uint64_t numBlocks() const override; private: const boost::filesystem::path _rootdir; DISALLOW_COPY_AND_ASSIGN(OnDiskBlockStore); }; } } #endif