2011-05-30 19:21:25 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser;
|
|
|
|
|
2016-07-25 14:04:04 +02:00
|
|
|
use PhpParser\Node\Expr\Include_;
|
2016-07-25 13:53:49 +02:00
|
|
|
use PhpParser\Node\Stmt\Class_;
|
2016-07-25 14:04:04 +02:00
|
|
|
use PhpParser\Node\Stmt\GroupUse;
|
|
|
|
use PhpParser\Node\Stmt\Use_;
|
|
|
|
use PhpParser\Node\Stmt\UseUse;
|
2016-07-25 13:53:49 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
class NodeDumper
|
2011-05-30 19:21:25 +02:00
|
|
|
{
|
2016-03-09 18:57:16 +01:00
|
|
|
private $dumpComments;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a NodeDumper.
|
|
|
|
*
|
|
|
|
* @param array $options Boolean option 'dumpComments' controls whether comments should be
|
|
|
|
* dumped
|
|
|
|
*/
|
|
|
|
public function __construct(array $options = []) {
|
|
|
|
$this->dumpComments = !empty($options['dumpComments']);
|
|
|
|
}
|
|
|
|
|
2011-05-30 19:21:25 +02:00
|
|
|
/**
|
2011-06-01 20:24:47 +02:00
|
|
|
* Dumps a node or array.
|
2011-05-30 19:21:25 +02:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param array|Node $node Node or array to dump
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
2011-05-30 19:21:25 +02:00
|
|
|
* @return string Dumped value
|
|
|
|
*/
|
|
|
|
public function dump($node) {
|
2014-02-06 14:44:16 +01:00
|
|
|
if ($node instanceof Node) {
|
2011-06-01 20:24:47 +02:00
|
|
|
$r = $node->getType() . '(';
|
2015-02-28 18:44:28 +01:00
|
|
|
|
|
|
|
foreach ($node->getSubNodeNames() as $key) {
|
|
|
|
$r .= "\n " . $key . ': ';
|
|
|
|
|
|
|
|
$value = $node->$key;
|
|
|
|
if (null === $value) {
|
|
|
|
$r .= 'null';
|
|
|
|
} elseif (false === $value) {
|
|
|
|
$r .= 'false';
|
|
|
|
} elseif (true === $value) {
|
|
|
|
$r .= 'true';
|
|
|
|
} elseif (is_scalar($value)) {
|
2016-07-25 13:53:49 +02:00
|
|
|
if ('flags' === $key || 'newModifier' === $key) {
|
|
|
|
$r .= $this->dumpFlags($value);
|
2016-07-25 14:04:04 +02:00
|
|
|
} else if ('type' === $key && $node instanceof Include_) {
|
|
|
|
$r .= $this->dumpIncludeType($value);
|
|
|
|
} else if ('type' === $key
|
|
|
|
&& ($node instanceof Use_ || $node instanceof UseUse || $node instanceof GroupUse)) {
|
|
|
|
$r .= $this->dumpUseType($value);
|
2016-07-25 13:53:49 +02:00
|
|
|
} else {
|
|
|
|
$r .= $value;
|
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
} else {
|
|
|
|
$r .= str_replace("\n", "\n ", $this->dump($value));
|
|
|
|
}
|
|
|
|
}
|
2016-03-09 18:57:16 +01:00
|
|
|
|
|
|
|
if ($this->dumpComments && $comments = $node->getAttribute('comments')) {
|
|
|
|
$r .= "\n comments: " . str_replace("\n", "\n ", $this->dump($comments));
|
|
|
|
}
|
2011-06-01 20:24:47 +02:00
|
|
|
} elseif (is_array($node)) {
|
|
|
|
$r = 'array(';
|
2011-05-30 19:21:25 +02:00
|
|
|
|
2015-02-28 18:44:28 +01:00
|
|
|
foreach ($node as $key => $value) {
|
|
|
|
$r .= "\n " . $key . ': ';
|
2011-05-30 19:21:25 +02:00
|
|
|
|
2015-02-28 18:44:28 +01:00
|
|
|
if (null === $value) {
|
|
|
|
$r .= 'null';
|
|
|
|
} elseif (false === $value) {
|
|
|
|
$r .= 'false';
|
|
|
|
} elseif (true === $value) {
|
|
|
|
$r .= 'true';
|
|
|
|
} elseif (is_scalar($value)) {
|
|
|
|
$r .= $value;
|
|
|
|
} else {
|
|
|
|
$r .= str_replace("\n", "\n ", $this->dump($value));
|
|
|
|
}
|
2011-05-30 19:21:25 +02:00
|
|
|
}
|
2016-03-09 18:57:16 +01:00
|
|
|
} elseif ($node instanceof Comment) {
|
|
|
|
return $node->getReformattedText();
|
2015-02-28 18:44:28 +01:00
|
|
|
} else {
|
|
|
|
throw new \InvalidArgumentException('Can only dump nodes and arrays.');
|
2011-05-30 19:21:25 +02:00
|
|
|
}
|
2011-06-01 20:24:47 +02:00
|
|
|
|
2015-02-13 15:20:25 +01:00
|
|
|
return $r . "\n)";
|
2011-05-30 19:21:25 +02:00
|
|
|
}
|
2016-07-25 13:53:49 +02:00
|
|
|
|
|
|
|
protected function dumpFlags($flags) {
|
|
|
|
$strs = [];
|
|
|
|
if ($flags & Class_::MODIFIER_PUBLIC) {
|
|
|
|
$strs[] = 'MODIFIER_PUBLIC';
|
|
|
|
}
|
|
|
|
if ($flags & Class_::MODIFIER_PROTECTED) {
|
|
|
|
$strs[] = 'MODIFIER_PROTECTED';
|
|
|
|
}
|
|
|
|
if ($flags & Class_::MODIFIER_PRIVATE) {
|
|
|
|
$strs[] = 'MODIFIER_PRIVATE';
|
|
|
|
}
|
|
|
|
if ($flags & Class_::MODIFIER_ABSTRACT) {
|
|
|
|
$strs[] = 'MODIFIER_ABSTRACT';
|
|
|
|
}
|
|
|
|
if ($flags & Class_::MODIFIER_STATIC) {
|
|
|
|
$strs[] = 'MODIFIER_STATIC';
|
|
|
|
}
|
|
|
|
if ($flags & Class_::MODIFIER_FINAL) {
|
|
|
|
$strs[] = 'MODIFIER_FINAL';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($strs) {
|
|
|
|
return implode(' | ', $strs) . ' (' . $flags . ')';
|
|
|
|
} else {
|
|
|
|
return $flags;
|
|
|
|
}
|
|
|
|
}
|
2016-07-25 14:04:04 +02:00
|
|
|
|
|
|
|
protected function dumpIncludeType($type) {
|
|
|
|
$map = [
|
|
|
|
Include_::TYPE_INCLUDE => 'TYPE_INCLUDE',
|
|
|
|
Include_::TYPE_INCLUDE_ONCE => 'TYPE_INCLUDE_ONCE',
|
|
|
|
Include_::TYPE_REQUIRE => 'TYPE_REQUIRE',
|
|
|
|
Include_::TYPE_REQUIRE_ONCE => 'TYPE_REQURE_ONCE',
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!isset($map[$type])) {
|
|
|
|
return $type;
|
|
|
|
}
|
|
|
|
return $map[$type] . ' (' . $type . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function dumpUseType($type) {
|
|
|
|
$map = [
|
|
|
|
Use_::TYPE_UNKNOWN => 'TYPE_UNKNOWN',
|
|
|
|
Use_::TYPE_NORMAL => 'TYPE_NORMAL',
|
|
|
|
Use_::TYPE_FUNCTION => 'TYPE_FUNCTION',
|
|
|
|
Use_::TYPE_CONSTANT => 'TYPE_CONSTANT',
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!isset($map[$type])) {
|
|
|
|
return $type;
|
|
|
|
}
|
|
|
|
return $map[$type] . ' (' . $type . ')';
|
|
|
|
}
|
2015-02-13 15:20:25 +01:00
|
|
|
}
|