2015-01-23 04:39:36 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATATREE_H_
|
|
|
|
#define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATATREE_H_
|
|
|
|
|
|
|
|
#include <memory>
|
2015-02-21 01:58:23 +01:00
|
|
|
#include <messmer/cpp-utils/macros.h>
|
|
|
|
#include <messmer/cpp-utils/optional_ownership_ptr.h>
|
2015-02-26 20:19:12 +01:00
|
|
|
#include "../datanodestore/DataNodeView.h"
|
2015-01-23 04:39:36 +01:00
|
|
|
|
2015-01-27 00:54:25 +01:00
|
|
|
namespace blockstore {
|
|
|
|
class Key;
|
|
|
|
}
|
2015-01-23 04:39:36 +01:00
|
|
|
namespace blobstore {
|
|
|
|
namespace onblocks {
|
|
|
|
namespace datanodestore {
|
|
|
|
class DataNodeStore;
|
|
|
|
class DataInnerNode;
|
|
|
|
class DataLeafNode;
|
|
|
|
class DataNode;
|
|
|
|
}
|
|
|
|
namespace datatreestore {
|
|
|
|
|
2015-02-26 20:19:12 +01:00
|
|
|
//TODO It is strange that DataLeafNode is still part in the public interface of DataTree. This should be separated somehow.
|
2015-01-23 04:39:36 +01:00
|
|
|
class DataTree {
|
|
|
|
public:
|
|
|
|
DataTree(datanodestore::DataNodeStore *nodeStore, std::unique_ptr<datanodestore::DataNode> rootNode);
|
|
|
|
virtual ~DataTree();
|
|
|
|
|
2015-03-04 02:55:26 +01:00
|
|
|
//TODO Might be that we don't need addDataLeaf()/removeDataLeaf() to be public anymore
|
2015-01-23 18:32:26 +01:00
|
|
|
std::unique_ptr<datanodestore::DataLeafNode> addDataLeaf();
|
2015-02-21 01:58:23 +01:00
|
|
|
void removeLastDataLeaf();
|
2015-01-27 00:54:25 +01:00
|
|
|
|
|
|
|
const blockstore::Key &key() const;
|
2015-02-26 20:19:12 +01:00
|
|
|
uint32_t maxBytesPerLeaf() const;
|
2015-01-28 01:02:32 +01:00
|
|
|
|
2015-03-04 02:04:51 +01:00
|
|
|
//TODO Remove flush() and instead call it implicitly on traverseLeaves()/resizeNumBytes()
|
2015-01-28 01:02:32 +01:00
|
|
|
void flush() const;
|
2015-02-24 22:44:10 +01:00
|
|
|
|
2015-02-25 01:31:16 +01:00
|
|
|
void traverseLeaves(uint32_t beginIndex, uint32_t endIndex, std::function<void (datanodestore::DataLeafNode*, uint32_t)> func);
|
2015-02-25 23:08:16 +01:00
|
|
|
uint64_t numStoredBytes() const;
|
2015-02-26 17:33:47 +01:00
|
|
|
void resizeNumBytes(uint64_t newNumBytes);
|
|
|
|
|
2015-01-23 04:39:36 +01:00
|
|
|
private:
|
|
|
|
datanodestore::DataNodeStore *_nodeStore;
|
2015-01-24 00:54:27 +01:00
|
|
|
std::unique_ptr<datanodestore::DataNode> _rootNode;
|
2015-01-23 04:39:36 +01:00
|
|
|
|
2015-02-24 22:44:10 +01:00
|
|
|
std::unique_ptr<datanodestore::DataNode> releaseRootNode();
|
|
|
|
friend class DataTreeStore;
|
|
|
|
|
2015-01-23 04:39:36 +01:00
|
|
|
std::unique_ptr<datanodestore::DataLeafNode> addDataLeafAt(datanodestore::DataInnerNode *insertPos);
|
2015-02-17 00:40:34 +01:00
|
|
|
cpputils::optional_ownership_ptr<datanodestore::DataNode> createChainOfInnerNodes(unsigned int num, datanodestore::DataLeafNode *leaf);
|
2015-01-23 04:39:36 +01:00
|
|
|
std::unique_ptr<datanodestore::DataLeafNode> addDataLeafToFullTree();
|
|
|
|
|
2015-02-22 19:30:42 +01:00
|
|
|
void deleteLastChildSubtree(datanodestore::DataInnerNode *node);
|
|
|
|
void ifRootHasOnlyOneChildReplaceRootWithItsChild();
|
|
|
|
|
2015-02-25 01:31:16 +01:00
|
|
|
void traverseLeaves(datanodestore::DataNode *root, uint32_t leafOffset, uint32_t beginIndex, uint32_t endIndex, std::function<void (datanodestore::DataLeafNode*, uint32_t)> func);
|
2015-02-25 23:08:16 +01:00
|
|
|
uint32_t leavesPerFullChild(const datanodestore::DataInnerNode &root) const;
|
|
|
|
uint64_t numStoredBytes(const datanodestore::DataNode &root) const;
|
2015-02-26 17:33:47 +01:00
|
|
|
cpputils::optional_ownership_ptr<datanodestore::DataLeafNode> LastLeaf(datanodestore::DataNode *root);
|
|
|
|
std::unique_ptr<datanodestore::DataLeafNode> LastLeaf(std::unique_ptr<datanodestore::DataNode> root);
|
2015-02-25 01:31:16 +01:00
|
|
|
|
2015-01-23 04:39:36 +01:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(DataTree);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|