2014-12-09 17:45:33 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef BLOBSTORE_INTERFACE_BLOB_H_
|
|
|
|
#define BLOBSTORE_INTERFACE_BLOB_H_
|
|
|
|
|
|
|
|
#include <cstring>
|
2015-02-26 17:33:47 +01:00
|
|
|
#include <cstdint>
|
2014-12-09 17:45:33 +01:00
|
|
|
|
2015-02-27 00:18:26 +01:00
|
|
|
namespace blockstore {
|
|
|
|
class Key;
|
|
|
|
}
|
|
|
|
|
2014-12-09 17:45:33 +01:00
|
|
|
namespace blobstore {
|
|
|
|
|
|
|
|
class Blob {
|
|
|
|
public:
|
|
|
|
virtual ~Blob() {}
|
|
|
|
|
2015-02-27 00:18:26 +01:00
|
|
|
//TODO Use own Key class for blobstore
|
|
|
|
virtual blockstore::Key key() const = 0;
|
|
|
|
|
2015-02-26 17:33:47 +01:00
|
|
|
virtual uint64_t size() const = 0;
|
|
|
|
virtual void resize(uint64_t numBytes) = 0;
|
2015-01-28 01:02:32 +01:00
|
|
|
|
2015-02-27 00:21:17 +01:00
|
|
|
virtual void read(void *target, uint64_t offset, uint64_t size) const = 0;
|
|
|
|
virtual void write(const void *source, uint64_t offset, uint64_t size) = 0;
|
2014-12-09 17:45:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|