php-parser/lib/PHPParser/NodeTraverser.php

90 lines
2.7 KiB
PHP
Raw Normal View History

2011-07-12 17:58:59 +02:00
<?php
class PHPParser_NodeTraverser
{
2011-08-09 09:27:47 +02:00
/**
* @var PHPParser_NodeVisitorInterface[] Visitors
*/
protected $visitors;
2011-07-12 17:58:59 +02:00
/**
* Constructs a node traverser.
*/
public function __construct() {
2011-08-09 09:27:47 +02:00
$this->visitors = array();
2011-07-12 17:58:59 +02:00
}
/**
2011-08-09 09:27:47 +02:00
* Adds a visitor.
2011-07-12 17:58:59 +02:00
*
2011-08-09 09:27:47 +02:00
* @param PHPParser_NodeVisitorInterface $visitor Visitor to add
2011-07-12 17:58:59 +02:00
*/
2011-08-09 09:27:47 +02:00
public function addVisitor(PHPParser_NodeVisitorInterface $visitor) {
$this->visitors[] = $visitor;
2011-07-12 17:58:59 +02:00
}
/**
* Traverses a node or an array using the registered visitors.
*
* @param array|PHPParser_NodeAbstract $node Node or array
2011-07-12 17:58:59 +02:00
*/
2011-08-09 09:27:47 +02:00
public function traverse(&$node) {
if (!is_array($node) && !$node instanceof PHPParser_NodeAbstract) {
throw new InvalidArgumentException('Can only traverse nodes and arrays');
}
2011-08-09 09:27:47 +02:00
foreach ($this->visitors as $visitor) {
$visitor->beforeTraverse($node);
}
$this->_traverse($node, $this->visitors);
2011-08-09 09:27:47 +02:00
foreach ($this->visitors as $visitor) {
$visitor->afterTraverse($node);
}
}
protected function _traverse(&$node, array $visitors) {
$doNodes = array();
foreach ($node as $subNodeKey => &$subNode) {
if (is_array($subNode)) {
$this->_traverse($subNode, $visitors);
} elseif ($subNode instanceof PHPParser_NodeAbstract) {
foreach ($visitors as $visitor) {
$visitor->enterNode($subNode);
}
$this->_traverse($subNode, $visitors);
foreach ($visitors as $i => $visitor) {
$return = $visitor->leaveNode($subNode);
if (false === $return) {
$doNodes[] = array($subNodeKey, array());
break;
} elseif (is_array($return)) {
// traverse replacement nodes using all visitors apart from the one that
// did the change
$subNodeVisitors = $visitors;
unset($subNodeVisitors[$i]);
$this->_traverse($return, $subNodeVisitors);
$doNodes[] = array($subNodeKey, $return);
break;
}
}
2011-07-12 17:58:59 +02:00
}
}
if (!empty($doNodes)) {
if (!is_array($node)) {
throw new Exception('Nodes can only be merged if the parent is an array');
}
2011-07-12 17:58:59 +02:00
while (list($key, $replace) = array_pop($doNodes)) {
array_splice($node, $key, 1, $replace);
2011-07-12 17:58:59 +02:00
}
}
}
}