2014-12-09 17:45:33 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_BLOBONBLOCKS_H_
|
|
|
|
#define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_BLOBONBLOCKS_H_
|
|
|
|
|
2015-02-17 00:40:34 +01:00
|
|
|
#include "../../interface/Blob.h"
|
2014-12-09 17:56:48 +01:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2014-12-09 17:45:33 +01:00
|
|
|
namespace blobstore {
|
|
|
|
namespace onblocks {
|
2015-02-26 20:19:12 +01:00
|
|
|
namespace datanodestore {
|
|
|
|
class DataLeafNode;
|
|
|
|
}
|
2015-02-25 22:48:39 +01:00
|
|
|
namespace datatreestore {
|
|
|
|
class DataTree;
|
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 BlobOnBlocks: public Blob {
|
2014-12-09 17:45:33 +01:00
|
|
|
public:
|
2015-02-25 22:48:39 +01:00
|
|
|
BlobOnBlocks(std::unique_ptr<datatreestore::DataTree> datatree);
|
2014-12-09 17:45:33 +01:00
|
|
|
virtual ~BlobOnBlocks();
|
2014-12-09 17:56:48 +01:00
|
|
|
|
2015-02-26 17:33:47 +01:00
|
|
|
uint64_t size() const override;
|
|
|
|
void resize(uint64_t numBytes) override;
|
2014-12-09 17:56:48 +01:00
|
|
|
|
2015-02-26 20:19:12 +01:00
|
|
|
void read(void *target, uint64_t offset, uint64_t size) const;
|
|
|
|
void write(const void *source, uint64_t offset, uint64_t size);
|
|
|
|
|
2015-01-28 01:02:32 +01:00
|
|
|
void flush() const override;
|
|
|
|
|
2014-12-09 17:56:48 +01:00
|
|
|
private:
|
2015-02-26 20:19:12 +01:00
|
|
|
//TODO Don't pass DataLeafNode, but pointer to its data region? Does this work with both read/write (const/nonconst)?
|
|
|
|
void traverseLeaves(uint64_t offsetBytes, uint64_t sizeBytes, std::function<void (datanodestore::DataLeafNode*, uint64_t, uint32_t, uint32_t)>) const;
|
|
|
|
|
2015-02-25 22:48:39 +01:00
|
|
|
std::unique_ptr<datatreestore::DataTree> _datatree;
|
2014-12-09 17:45:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|