mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-30 07:55:51 +00:00
Map sync testing framework.
This commit is contained in:
@@ -110,3 +110,77 @@ bool SHAMap::addKnownNode(const SHAMapNode& node, const std::vector<unsigned cha
|
||||
// WRITEME
|
||||
return true;
|
||||
}
|
||||
|
||||
bool SHAMap::deepCompare(SHAMap& other)
|
||||
{ // Intended for debug/test only
|
||||
std::stack<SHAMapInnerNode::pointer> stack;
|
||||
SHAMapInnerNode::pointer node=root;
|
||||
|
||||
while(node)
|
||||
{
|
||||
SHAMapInnerNode::pointer node=stack.top();
|
||||
stack.pop();
|
||||
|
||||
SHAMapInnerNode::pointer otherNode;
|
||||
if(node->isRoot()) otherNode=other.root;
|
||||
else otherNode=other.getInner(*node, node->getNodeHash(), false);
|
||||
|
||||
if(!otherNode)
|
||||
{
|
||||
std::cerr << "unable to fetch node" << std::endl;
|
||||
return false;
|
||||
}
|
||||
else if(otherNode->getNodeHash()!=node->getNodeHash())
|
||||
{
|
||||
std::cerr << "node hash mismatch" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
std::cerr << "Comparing inner nodes " << node->getString() << std::endl;
|
||||
#endif
|
||||
|
||||
for(int i=0; i<32; i++)
|
||||
{
|
||||
if(node->isEmptyBranch(i))
|
||||
{
|
||||
if(!otherNode->isEmptyBranch(i))
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
if(node->isChildLeaf())
|
||||
{ //
|
||||
SHAMapLeafNode::pointer leaf=getLeaf(node->getChildNodeID(i), node->getChildHash(i), false);
|
||||
if(!leaf)
|
||||
{
|
||||
std::cerr << "unable to fetch leaf" << std::endl;
|
||||
return false;
|
||||
}
|
||||
SHAMapLeafNode::pointer otherLeaf=other.getLeaf(*leaf, leaf->getNodeHash(), false);
|
||||
if(!otherLeaf)
|
||||
{
|
||||
std::cerr << "unable to fetch other leaf" << std::endl;
|
||||
return false;
|
||||
}
|
||||
if(leaf->getNodeHash()!=otherLeaf->getNodeHash())
|
||||
{
|
||||
std::cerr << "leaf hash mismatch" << std::endl;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{ // do we have this inner node?
|
||||
SHAMapInnerNode::pointer next=getInner(node->getChildNodeID(i), node->getChildHash(i), false);
|
||||
if(!next)
|
||||
{
|
||||
std::cerr << "unable to fetch inner node" << std::endl;
|
||||
return false;
|
||||
}
|
||||
stack.push(next);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user