libcryfs/implementations/onblocks/datatreestore/DataTree.h

49 lines
1.2 KiB
C
Raw Normal View History

2015-01-23 04:39:36 +01:00
#pragma once
#ifndef BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATATREE_H_
#define BLOBSTORE_IMPLEMENTATIONS_ONBLOCKS_DATATREE_H_
#include <memory>
#include <messmer/cpp-utils/macros.h>
#include <messmer/cpp-utils/optional_ownership_ptr.h>
2015-01-23 04:39:36 +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 {
class DataTree {
public:
DataTree(datanodestore::DataNodeStore *nodeStore, std::unique_ptr<datanodestore::DataNode> rootNode);
virtual ~DataTree();
std::unique_ptr<datanodestore::DataLeafNode> addDataLeaf();
void removeLastDataLeaf();
const blockstore::Key &key() const;
void flush() const;
2015-01-23 04:39:36 +01:00
private:
datanodestore::DataNodeStore *_nodeStore;
std::unique_ptr<datanodestore::DataNode> _rootNode;
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();
DISALLOW_COPY_AND_ASSIGN(DataTree);
};
}
}
}
#endif