Added support for transparently moving nodes between different trees when using many roots (EXPERIMENTAL!)
This commit is contained in:
parent
5c5be484bf
commit
a1ee3f97e7
@ -258,8 +258,7 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
$count = 0;
|
$count = 0;
|
||||||
$children = $this->getChildren();
|
$children = $this->getChildren();
|
||||||
|
|
||||||
while($children->next())
|
while ($children->next()) {
|
||||||
{
|
|
||||||
$count++;
|
$count++;
|
||||||
}
|
}
|
||||||
return $count;
|
return $count;
|
||||||
@ -283,19 +282,19 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
public function insertAsParentOf(Doctrine_Record $dest)
|
public function insertAsParentOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
// cannot insert a node that has already has a place within the tree
|
// cannot insert a node that has already has a place within the tree
|
||||||
if($this->isValidNode())
|
if ($this->isValidNode())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// cannot insert as parent of root
|
// cannot insert as parent of root
|
||||||
if($dest->getNode()->isRoot())
|
if ($dest->getNode()->isRoot())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$this->shiftRLValues($dest->getNode()->getLeftValue(), 1);
|
$newRoot = $dest->getNode()->getRootValue();
|
||||||
$this->shiftRLValues($dest->getNode()->getRightValue() + 2, 1);
|
$this->shiftRLValues($dest->getNode()->getLeftValue(), 1, $newRoot);
|
||||||
|
$this->shiftRLValues($dest->getNode()->getRightValue() + 2, 1, $newRoot);
|
||||||
|
|
||||||
$newLeft = $dest->getNode()->getLeftValue();
|
$newLeft = $dest->getNode()->getLeftValue();
|
||||||
$newRight = $dest->getNode()->getRightValue() + 2;
|
$newRight = $dest->getNode()->getRightValue() + 2;
|
||||||
$newRoot = $dest->getNode()->getRootValue();
|
|
||||||
|
|
||||||
$this->insertNode($newLeft, $newRight, $newRoot);
|
$this->insertNode($newLeft, $newRight, $newRoot);
|
||||||
|
|
||||||
@ -334,7 +333,7 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
public function insertAsNextSiblingOf(Doctrine_Record $dest)
|
public function insertAsNextSiblingOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
// cannot insert a node that has already has a place within the tree
|
// cannot insert a node that has already has a place within the tree
|
||||||
if($this->isValidNode())
|
if ($this->isValidNode())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$newLeft = $dest->getNode()->getRightValue() + 1;
|
$newLeft = $dest->getNode()->getRightValue() + 1;
|
||||||
@ -358,7 +357,7 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
public function insertAsFirstChildOf(Doctrine_Record $dest)
|
public function insertAsFirstChildOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
// cannot insert a node that has already has a place within the tree
|
// cannot insert a node that has already has a place within the tree
|
||||||
if($this->isValidNode())
|
if ($this->isValidNode())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$newLeft = $dest->getNode()->getLeftValue() + 1;
|
$newLeft = $dest->getNode()->getLeftValue() + 1;
|
||||||
@ -382,7 +381,7 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
public function insertAsLastChildOf(Doctrine_Record $dest)
|
public function insertAsLastChildOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
// cannot insert a node that has already has a place within the tree
|
// cannot insert a node that has already has a place within the tree
|
||||||
if($this->isValidNode())
|
if ($this->isValidNode())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$newLeft = $dest->getNode()->getRightValue();
|
$newLeft = $dest->getNode()->getRightValue();
|
||||||
@ -398,14 +397,102 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Accomplishes moving of nodes between different trees.
|
||||||
|
* Used by the move* methods if the root value of the two nodes are different.
|
||||||
|
*
|
||||||
|
* @param Doctrine_Record $dest
|
||||||
|
* @param unknown_type $newLeftValue
|
||||||
|
* @param unknown_type $moveType
|
||||||
|
*/
|
||||||
|
private function _moveBetweenTrees(Doctrine_Record $dest, $newLeftValue, $moveType)
|
||||||
|
{
|
||||||
|
$conn = $this->record->getTable()->getConnection();
|
||||||
|
|
||||||
|
try {
|
||||||
|
$conn->beginTransaction();
|
||||||
|
|
||||||
|
// Move between trees: Detach from old tree & insert into new tree
|
||||||
|
$newRoot = $dest->getNode()->getRootValue();
|
||||||
|
$oldRoot = $this->getRootValue();
|
||||||
|
$oldLft = $this->getLeftValue();
|
||||||
|
$oldRgt = $this->getRightValue();
|
||||||
|
|
||||||
|
// Prepare target tree for insertion, make room
|
||||||
|
$this->shiftRlValues($newLeftValue, $oldRgt - $oldLft - 1, $newRoot);
|
||||||
|
|
||||||
|
// Set new root id for this node
|
||||||
|
$this->setRootValue($newRoot);
|
||||||
|
$this->record->save();
|
||||||
|
|
||||||
|
// Close gap in old tree
|
||||||
|
$first = $oldRgt + 1;
|
||||||
|
$delta = $oldLft - $oldRgt - 1;
|
||||||
|
$this->shiftRLValues($first, $delta, $oldRoot);
|
||||||
|
|
||||||
|
// Insert this node as a new node
|
||||||
|
$this->setRightValue(0);
|
||||||
|
$this->setLeftValue(0);
|
||||||
|
|
||||||
|
switch ($moveType) {
|
||||||
|
case 'moveAsPrevSiblingOf':
|
||||||
|
$this->insertAsPrevSiblingOf($dest);
|
||||||
|
break;
|
||||||
|
case 'moveAsFirstChildOf':
|
||||||
|
$this->insertAsFirstChildOf($dest);
|
||||||
|
break;
|
||||||
|
case 'moveAsNextSiblingOf':
|
||||||
|
$this->insertAsNextSiblingOf($dest);
|
||||||
|
break;
|
||||||
|
case 'moveAsLastChildOf':
|
||||||
|
$this->insertAsLastChildOf($dest);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Exception("Unknown move operation: $moveType.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$diff = $oldRgt - $oldLft;
|
||||||
|
$this->setRightValue($this->getLeftValue() + ($oldRgt - $oldLft));
|
||||||
|
$this->record->save();
|
||||||
|
|
||||||
|
// Relocate descendants of the node
|
||||||
|
$diff = $this->getLeftValue() - $oldLft;
|
||||||
|
$componentName = $this->record->getTable()->getComponentName();
|
||||||
|
$rootColName = $this->record->getTable()->getTree()->getAttribute('rootColumnName');
|
||||||
|
|
||||||
|
// Update lft/rgt/root for all descendants
|
||||||
|
$q = $this->record->getTable()->createQuery();
|
||||||
|
$q = $q->update($componentName)
|
||||||
|
->set($componentName . '.lft', 'lft + ' . $diff)
|
||||||
|
->set($componentName . '.rgt', 'rgt + ' . $diff)
|
||||||
|
->set($componentName . '.' . $rootColName, $newRoot)
|
||||||
|
->where($componentName . '.lft > ? AND ' . $componentName . '.rgt < ?',
|
||||||
|
array($oldLft, $oldRgt));
|
||||||
|
$q = $this->record->getTable()->getTree()->returnQueryWithRootId($q, $oldRoot);
|
||||||
|
$q->execute();
|
||||||
|
|
||||||
|
$conn->commit();
|
||||||
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
|
$conn->rollback();
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* moves node as prev sibling of dest record
|
* moves node as prev sibling of dest record
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function moveAsPrevSiblingOf(Doctrine_Record $dest)
|
public function moveAsPrevSiblingOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
|
if ($dest->getNode()->getRootValue() != $this->getRootValue()) {
|
||||||
|
// Move between trees
|
||||||
|
$this->_moveBetweenTrees($dest, $dest->getNode()->getLeftValue(), __FUNCTION__);
|
||||||
|
} else {
|
||||||
|
// Move within the tree
|
||||||
$this->updateNode($dest->getNode()->getLeftValue());
|
$this->updateNode($dest->getNode()->getLeftValue());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* moves node as next sibling of dest record
|
* moves node as next sibling of dest record
|
||||||
@ -413,8 +500,14 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
*/
|
*/
|
||||||
public function moveAsNextSiblingOf(Doctrine_Record $dest)
|
public function moveAsNextSiblingOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
|
if ($dest->getNode()->getRootValue() != $this->getRootValue()) {
|
||||||
|
// Move between trees
|
||||||
|
$this->_moveBetweenTrees($dest, $dest->getNode()->getRightValue() + 1, __FUNCTION__);
|
||||||
|
} else {
|
||||||
|
// Move within tree
|
||||||
$this->updateNode($dest->getNode()->getRightValue() + 1);
|
$this->updateNode($dest->getNode()->getRightValue() + 1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* moves node as first child of dest record
|
* moves node as first child of dest record
|
||||||
@ -422,8 +515,14 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
*/
|
*/
|
||||||
public function moveAsFirstChildOf(Doctrine_Record $dest)
|
public function moveAsFirstChildOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
|
if ($dest->getNode()->getRootValue() != $this->getRootValue()) {
|
||||||
|
// Move between trees
|
||||||
|
$this->_moveBetweenTrees($dest, $dest->getNode()->getLeftValue() + 1, __FUNCTION__);
|
||||||
|
} else {
|
||||||
|
// Move within tree
|
||||||
$this->updateNode($dest->getNode()->getLeftValue() + 1);
|
$this->updateNode($dest->getNode()->getLeftValue() + 1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* moves node as last child of dest record
|
* moves node as last child of dest record
|
||||||
@ -431,8 +530,14 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
*/
|
*/
|
||||||
public function moveAsLastChildOf(Doctrine_Record $dest)
|
public function moveAsLastChildOf(Doctrine_Record $dest)
|
||||||
{
|
{
|
||||||
|
if ($dest->getNode()->getRootValue() != $this->getRootValue()) {
|
||||||
|
// Move between trees
|
||||||
|
$this->_moveBetweenTrees($dest, $dest->getNode()->getRightValue(), __FUNCTION__);
|
||||||
|
} else {
|
||||||
|
// Move within tree
|
||||||
$this->updateNode($dest->getNode()->getRightValue());
|
$this->updateNode($dest->getNode()->getRightValue());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* adds node as last child of record
|
* adds node as last child of record
|
||||||
@ -556,10 +661,11 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
{
|
{
|
||||||
$left = $this->getLeftValue();
|
$left = $this->getLeftValue();
|
||||||
$right = $this->getRightValue();
|
$right = $this->getRightValue();
|
||||||
|
$rootId = $this->getRootValue();
|
||||||
|
|
||||||
$treeSize = $right - $left + 1;
|
$treeSize = $right - $left + 1;
|
||||||
|
|
||||||
$this->shiftRLValues($destLeft, $treeSize);
|
$this->shiftRLValues($destLeft, $treeSize, $rootId);
|
||||||
|
|
||||||
if($left >= $destLeft){ // src was shifted too?
|
if($left >= $destLeft){ // src was shifted too?
|
||||||
$left += $treeSize;
|
$left += $treeSize;
|
||||||
@ -567,10 +673,10 @@ class Doctrine_Node_NestedSet extends Doctrine_Node implements Doctrine_Node_Int
|
|||||||
}
|
}
|
||||||
|
|
||||||
// now there's enough room next to target to move the subtree
|
// now there's enough room next to target to move the subtree
|
||||||
$this->shiftRLRange($left, $right, $destLeft - $left);
|
$this->shiftRLRange($left, $right, $destLeft - $left, $rootId);
|
||||||
|
|
||||||
// correct values after source
|
// correct values after source
|
||||||
$this->shiftRLValues($right + 1, -$treeSize);
|
$this->shiftRLValues($right + 1, -$treeSize, $rootId);
|
||||||
|
|
||||||
$this->record->save();
|
$this->record->save();
|
||||||
$this->record->refresh();
|
$this->record->refresh();
|
||||||
|
Loading…
Reference in New Issue
Block a user