2011-11-22 20:36:57 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class CelerityResourceGraph extends AbstractDirectedGraph {
|
|
|
|
|
|
|
|
private $resourceGraph = array();
|
|
|
|
private $graphSet = false;
|
|
|
|
|
|
|
|
protected function loadEdges(array $nodes) {
|
|
|
|
if (!$this->graphSet) {
|
|
|
|
throw new Exception(
|
|
|
|
"Call setResourceGraph before loading the graph!"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$graph = $this->getResourceGraph();
|
|
|
|
$edges = array();
|
|
|
|
foreach ($nodes as $node) {
|
|
|
|
$edges[$node] = idx($graph, $node, array());
|
|
|
|
}
|
|
|
|
return $edges;
|
|
|
|
}
|
|
|
|
|
|
|
|
final public function setResourceGraph(array $graph) {
|
|
|
|
$this->resourceGraph = $graph;
|
|
|
|
$this->graphSet = true;
|
2012-04-03 03:35:09 +02:00
|
|
|
return $this;
|
2011-11-22 20:36:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private function getResourceGraph() {
|
|
|
|
return $this->resourceGraph;
|
|
|
|
}
|
|
|
|
}
|