37 lines
753 B
C++
37 lines
753 B
C++
#pragma once
|
|
#ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATANODESTORE_DATALEAFNODE_H_
|
|
#define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATANODESTORE_DATALEAFNODE_H_
|
|
|
|
#include "DataNode.h"
|
|
|
|
namespace blobstore {
|
|
namespace onblocks {
|
|
namespace datanodestore {
|
|
class DataInnerNode;
|
|
|
|
class DataLeafNode: public DataNode {
|
|
public:
|
|
static std::unique_ptr<DataLeafNode> InitializeNewNode(std::unique_ptr<blockstore::Block> block);
|
|
|
|
DataLeafNode(DataNodeView block);
|
|
virtual ~DataLeafNode();
|
|
|
|
static constexpr uint32_t MAX_STORED_BYTES = DataNodeView::DATASIZE_BYTES;
|
|
|
|
void *data();
|
|
const void *data() const;
|
|
|
|
uint32_t numBytes() const;
|
|
|
|
void resize(uint32_t size);
|
|
|
|
private:
|
|
void fillDataWithZeroesFromTo(off_t begin, off_t end);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|