blob: 1cfdc9e8434a8eb70e72351b576866c2fa8d341f [file] [log] [blame]
#pragma once
#include <sys/types.h>
#include <unordered_map>
#include "Store.hpp"
namespace c10d {
class FileStore : public Store {
public:
explicit FileStore(const std::string& path);
virtual ~FileStore();
void set(const std::string& key, const std::vector<uint8_t>& value) override;
std::vector<uint8_t> get(const std::string& key) override;
int64_t add(const std::string& key, int64_t value) override;
bool check(const std::vector<std::string>& keys) override;
void wait(
const std::vector<std::string>& keys,
const std::chrono::milliseconds& timeout = kDefaultTimeout) override;
protected:
std::string path_;
off_t pos_;
std::unordered_map<std::string, std::vector<uint8_t>> cache_;
};
} // namespace c10d