2014-12-09 17:45:33 +01:00
|
|
|
#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
|
|
|
|
2014-12-09 17:45:33 +01:00
|
|
|
namespace blobstore {
|
|
|
|
namespace onblocks {
|
2015-02-25 22:48:39 +01:00
|
|
|
namespace datatreestore {
|
|
|
|
class DataTreeStore;
|
2014-12-13 19:17:08 +01:00
|
|
|
}
|
2014-12-09 17:45:33 +01:00
|
|
|
|
2014-12-09 17:56:48 +01:00
|
|
|
class BlobStoreOnBlocks: public BlobStore {
|
2014-12-09 17:45:33 +01:00
|
|
|
public:
|
2015-03-05 22:21:59 +01:00
|
|
|
BlobStoreOnBlocks(std::unique_ptr<blockstore::BlockStore> blockStore, uint32_t blocksizeBytes);
|
2014-12-09 17:45:33 +01:00
|
|
|
virtual ~BlobStoreOnBlocks();
|
2014-12-09 17:56:48 +01:00
|
|
|
|
2014-12-13 19:17:08 +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
|
|
|
|
2015-03-06 02:21:20 +01:00
|
|
|
void remove(std::unique_ptr<Blob> blob) override;
|
|
|
|
|
2014-12-09 17:56:48 +01:00
|
|
|
private:
|
2015-02-25 22:48:39 +01:00
|
|
|
std::unique_ptr<datatreestore::DataTreeStore> _dataTreeStore;
|
2014-12-09 17:45:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|