libcryfs/implementations/onblocks/BlobStoreOnBlocks.h

32 lines
762 B
C
Raw Normal View History

#pragma once
#ifndef BLOBSTORE_IMPLEMENTATIONS_BLOCKED_BLOBSTOREONBLOCKS_H_
#define BLOBSTORE_IMPLEMENTATIONS_BLOCKED_BLOBSTOREONBLOCKS_H_
2015-02-17 00:40:34 +01:00
#include "../../interface/BlobStore.h"
#include "messmer/blockstore/interface/BlockStore.h"
2014-12-09 17:56:48 +01:00
namespace blobstore {
namespace onblocks {
namespace datatreestore {
class DataTreeStore;
}
2014-12-09 17:56:48 +01:00
class BlobStoreOnBlocks: public BlobStore {
public:
BlobStoreOnBlocks(std::unique_ptr<blockstore::BlockStore> blockStore, uint32_t blocksizeBytes);
virtual ~BlobStoreOnBlocks();
2014-12-09 17:56:48 +01:00
std::unique_ptr<Blob> create() override;
std::unique_ptr<Blob> load(const blockstore::Key &key) override;
2014-12-09 17:56:48 +01:00
void remove(std::unique_ptr<Blob> blob) override;
2014-12-09 17:56:48 +01:00
private:
std::unique_ptr<datatreestore::DataTreeStore> _dataTreeStore;
};
}
}
#endif