2008-07-20 20:13:24 +00:00
|
|
|
<?php
|
2015-11-25 04:20:35 +00:00
|
|
|
|
2008-07-27 19:38:56 +00:00
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
2012-05-26 14:37:00 +02:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2009-05-24 10:38:37 +00:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-07-27 19:38:56 +00:00
|
|
|
*/
|
2008-07-20 20:13:24 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\ORM\Internal;
|
2008-07-20 20:13:24 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* CommitOrderCalculator implements topological sorting, which is an ordering
|
|
|
|
* algorithm for directed graphs (DG) and/or directed acyclic graphs (DAG) by
|
|
|
|
* using a depth-first searching (DFS) to traverse the graph built in memory.
|
|
|
|
* This algorithm have a linear running time based on nodes (V) and dependency
|
|
|
|
* between the nodes (E), resulting in a computational complexity of O(V + E).
|
2008-07-20 20:13:24 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* @since 2.0
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2008-07-20 20:13:24 +00:00
|
|
|
*/
|
2009-01-22 19:38:10 +00:00
|
|
|
class CommitOrderCalculator
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
const NOT_VISITED = 0;
|
|
|
|
const IN_PROGRESS = 1;
|
|
|
|
const VISITED = 2;
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2012-12-02 19:44:56 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Matrix of nodes (aka. vertex).
|
|
|
|
* Keys are provided hashes and values are the node definition objects.
|
2012-12-02 19:44:56 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* The node state definition contains the following properties:
|
|
|
|
*
|
|
|
|
* - <b>state</b> (integer)
|
|
|
|
* Whether the node is NOT_VISITED or IN_PROGRESS
|
|
|
|
*
|
|
|
|
* - <b>value</b> (object)
|
|
|
|
* Actual node value
|
|
|
|
*
|
|
|
|
* - <b>dependencyList</b> (array<string>)
|
|
|
|
* Map of node dependencies defined as hashes.
|
|
|
|
*
|
|
|
|
* @var array<stdClass>
|
2012-12-02 19:44:56 +00:00
|
|
|
*/
|
2016-12-08 00:31:12 +01:00
|
|
|
private $nodeList = [];
|
2012-12-02 19:44:56 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Volatile variable holding calculated nodes during sorting process.
|
|
|
|
*
|
2012-12-02 19:44:56 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2016-12-08 00:31:12 +01:00
|
|
|
private $sortedNodeList = [];
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2008-07-20 20:13:24 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Checks for node (vertex) existence in graph.
|
2008-07-20 20:13:24 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* @param string $hash
|
|
|
|
*
|
|
|
|
* @return boolean
|
2008-07-20 20:13:24 +00:00
|
|
|
*/
|
2015-11-25 04:20:35 +00:00
|
|
|
public function hasNode($hash)
|
2009-07-27 09:50:22 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
return isset($this->nodeList[$hash]);
|
2009-07-27 09:50:22 +00:00
|
|
|
}
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2008-07-20 20:13:24 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Adds a new node (vertex) to the graph, assigning its hash and value.
|
2011-12-19 22:56:19 +01:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* @param string $hash
|
|
|
|
* @param object $node
|
2008-07-20 20:13:24 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* @return void
|
2008-07-20 20:13:24 +00:00
|
|
|
*/
|
2015-11-25 04:20:35 +00:00
|
|
|
public function addNode($hash, $node)
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
$vertex = new \stdClass();
|
2011-11-30 09:57:54 -05:00
|
|
|
|
2015-11-25 04:20:35 +00:00
|
|
|
$vertex->hash = $hash;
|
|
|
|
$vertex->state = self::NOT_VISITED;
|
|
|
|
$vertex->value = $node;
|
2016-12-08 00:31:12 +01:00
|
|
|
$vertex->dependencyList = [];
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2015-11-25 04:20:35 +00:00
|
|
|
$this->nodeList[$hash] = $vertex;
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
2010-03-05 16:35:00 +00:00
|
|
|
|
2012-12-02 19:44:56 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Adds a new dependency (edge) to the graph using their hashes.
|
|
|
|
*
|
|
|
|
* @param string $fromHash
|
|
|
|
* @param string $toHash
|
|
|
|
* @param integer $weight
|
2012-12-02 19:44:56 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-11-25 04:20:35 +00:00
|
|
|
public function addDependency($fromHash, $toHash, $weight)
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
$vertex = $this->nodeList[$fromHash];
|
|
|
|
$edge = new \stdClass();
|
2010-03-05 16:35:00 +00:00
|
|
|
|
2015-11-25 04:20:35 +00:00
|
|
|
$edge->from = $fromHash;
|
|
|
|
$edge->to = $toHash;
|
|
|
|
$edge->weight = $weight;
|
2010-03-05 16:35:00 +00:00
|
|
|
|
2015-11-25 04:20:35 +00:00
|
|
|
$vertex->dependencyList[$toHash] = $edge;
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2012-12-02 19:44:56 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Return a valid order list of all current nodes.
|
|
|
|
* The desired topological sorting is the reverse post order of these searches.
|
2012-12-02 19:44:56 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* {@internal Highly performance-sensitive method.}
|
2012-12-02 19:44:56 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* @return array
|
2012-12-02 19:44:56 +00:00
|
|
|
*/
|
2015-11-25 04:20:35 +00:00
|
|
|
public function sort()
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
foreach ($this->nodeList as $vertex) {
|
|
|
|
if ($vertex->state !== self::NOT_VISITED) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->visit($vertex);
|
|
|
|
}
|
|
|
|
|
|
|
|
$sortedList = $this->sortedNodeList;
|
|
|
|
|
2016-12-08 00:31:12 +01:00
|
|
|
$this->nodeList = [];
|
|
|
|
$this->sortedNodeList = [];
|
2015-11-25 04:20:35 +00:00
|
|
|
|
|
|
|
return array_reverse($sortedList);
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
2011-12-19 22:56:19 +01:00
|
|
|
|
2012-12-02 19:44:56 +00:00
|
|
|
/**
|
2015-11-25 04:20:35 +00:00
|
|
|
* Visit a given node definition for reordering.
|
2012-12-02 19:44:56 +00:00
|
|
|
*
|
2015-11-25 04:20:35 +00:00
|
|
|
* {@internal Highly performance-sensitive method.}
|
|
|
|
*
|
|
|
|
* @param \stdClass $vertex
|
2012-12-02 19:44:56 +00:00
|
|
|
*/
|
2015-11-25 04:20:35 +00:00
|
|
|
private function visit($vertex)
|
2008-07-20 20:13:24 +00:00
|
|
|
{
|
2015-11-25 04:20:35 +00:00
|
|
|
$vertex->state = self::IN_PROGRESS;
|
|
|
|
|
|
|
|
foreach ($vertex->dependencyList as $edge) {
|
|
|
|
$adjacentVertex = $this->nodeList[$edge->to];
|
|
|
|
|
|
|
|
switch ($adjacentVertex->state) {
|
|
|
|
case self::VISITED:
|
|
|
|
// Do nothing, since node was already visited
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::IN_PROGRESS:
|
2016-12-08 00:31:12 +01:00
|
|
|
if (isset($adjacentVertex->dependencyList[$vertex->hash]) &&
|
2015-12-01 20:24:16 +00:00
|
|
|
$adjacentVertex->dependencyList[$vertex->hash]->weight < $edge->weight) {
|
2015-11-25 04:20:35 +00:00
|
|
|
$adjacentVertex->state = self::VISITED;
|
|
|
|
|
|
|
|
$this->sortedNodeList[] = $adjacentVertex->value;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case self::NOT_VISITED:
|
|
|
|
$this->visit($adjacentVertex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($vertex->state !== self::VISITED) {
|
|
|
|
$vertex->state = self::VISITED;
|
|
|
|
|
|
|
|
$this->sortedNodeList[] = $vertex->value;
|
|
|
|
}
|
2008-07-20 20:13:24 +00:00
|
|
|
}
|
2015-12-01 20:24:16 +00:00
|
|
|
}
|