. */ #namespace Doctrine\ORM\Internal; /** * A CommitOrderNode is a temporary wrapper around ClassMetadata instances * that is used to sort the order of commits in a UnitOfWork. * * @since 2.0 * @author Roman Borschel */ class Doctrine_ORM_Internal_CommitOrderNode { const NOT_VISITED = 1; const IN_PROGRESS = 2; const VISITED = 3; private $_traversalState; private $_predecessor; private $_status; private $_calculator; private $_relatedNodes = array(); /* The "time" when this node was first discovered during traversal */ private $_discoveryTime; /* The "time" when this node was finished during traversal */ private $_finishingTime; /* The wrapped object */ private $_wrappedObj; /** * Constructor. * Creates a new node. * * @param mixed $wrappedObj The object to wrap. * @param Doctrine\ORM\Internal\CommitOrderCalculator $calc The calculator. */ public function __construct($wrappedObj, Doctrine_ORM_Internal_CommitOrderCalculator $calc) { $this->_wrappedObj = $wrappedObj; $this->_calculator = $calc; } /** * Gets the wrapped object. * * @return mixed */ public function getClass() { return $this->_wrappedObj; } public function setPredecessor($node) { $this->_predecessor = $node; } public function getPredecessor() { return $this->_predecessor; } public function markNotVisited() { $this->_traversalState = self::NOT_VISITED; } public function markInProgress() { $this->_traversalState = self::IN_PROGRESS; } public function markVisited() { $this->_traversalState = self::VISITED; } public function isNotVisited() { return $this->_traversalState == self::NOT_VISITED; } public function isInProgress() { return $this->_traversalState == self::IN_PROGRESS; } public function visit() { $this->markInProgress(); $this->setDiscoveryTime($this->_calculator->getNextTime()); foreach ($this->getRelatedNodes() as $node) { if ($node->isNotVisited()) { $node->setPredecessor($this); $node->visit(); } if ($node->isInProgress()) { // back edge => cycle //TODO: anything to do here? } } $this->markVisited(); $this->_calculator->prependNode($this); $this->setFinishingTime($this->_calculator->getNextTime()); } public function setDiscoveryTime($time) { $this->_discoveryTime = $time; } public function setFinishingTime($time) { $this->_finishingTime = $time; } public function getDiscoveryTime() { return $this->_discoveryTime; } public function getFinishingTime() { return $this->_finishingTime; } public function getRelatedNodes() { return $this->_relatedNodes; } /** * Adds a directed dependency (an edge on the graph). "$this -before-> $other". * * @param Doctrine\ORM\Internal\CommitOrderNode $node */ public function before(Doctrine_ORM_Internal_CommitOrderNode $node) { $this->_relatedNodes[] = $node; } }