61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
#pragma once
|
|
#ifndef MESSMER_BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATANODESTORE_DATANODESTORE_H_
|
|
#define MESSMER_BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATANODESTORE_DATANODESTORE_H_
|
|
|
|
#include <memory>
|
|
#include "messmer/cpp-utils/macros.h"
|
|
#include "DataNodeView.h"
|
|
#include <messmer/blockstore/utils/Key.h>
|
|
|
|
namespace blockstore{
|
|
class Block;
|
|
class BlockStore;
|
|
}
|
|
|
|
namespace blobstore {
|
|
namespace onblocks {
|
|
namespace datanodestore {
|
|
class DataNode;
|
|
class DataLeafNode;
|
|
class DataInnerNode;
|
|
|
|
class DataNodeStore final {
|
|
public:
|
|
DataNodeStore(cpputils::unique_ref<blockstore::BlockStore> blockstore, uint32_t blocksizeBytes);
|
|
~DataNodeStore();
|
|
|
|
static constexpr uint8_t MAX_DEPTH = 10;
|
|
|
|
DataNodeLayout layout() const;
|
|
|
|
boost::optional<cpputils::unique_ref<DataNode>> load(const blockstore::Key &key);
|
|
|
|
cpputils::unique_ref<DataLeafNode> createNewLeafNode();
|
|
cpputils::unique_ref<DataInnerNode> createNewInnerNode(const DataNode &first_child);
|
|
|
|
cpputils::unique_ref<DataNode> createNewNodeAsCopyFrom(const DataNode &source);
|
|
|
|
cpputils::unique_ref<DataNode> overwriteNodeWith(cpputils::unique_ref<DataNode> target, const DataNode &source);
|
|
|
|
void remove(cpputils::unique_ref<DataNode> node);
|
|
|
|
void removeSubtree(cpputils::unique_ref<DataNode> node);
|
|
|
|
uint64_t numNodes() const;
|
|
//TODO Test overwriteNodeWith(), createNodeAsCopyFrom(), removeSubtree()
|
|
|
|
private:
|
|
cpputils::unique_ref<DataNode> load(cpputils::unique_ref<blockstore::Block> block);
|
|
|
|
cpputils::unique_ref<blockstore::BlockStore> _blockstore;
|
|
const DataNodeLayout _layout;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DataNodeStore);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|