mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
fc56da59ce
Matches the function more closely
223 lines
8.3 KiB
PHP
223 lines
8.3 KiB
PHP
<?php
|
|
|
|
abstract class PHPParser_PrettyPrinterAbstract
|
|
{
|
|
protected $precedenceMap = array(
|
|
// [precedence, associativity] where for the latter -1 is %left, 0 is %nonassoc and 1 is %right
|
|
'Expr_BitwiseNot' => array( 1, 1),
|
|
'Expr_PreInc' => array( 1, 1),
|
|
'Expr_PreDec' => array( 1, 1),
|
|
'Expr_PostInc' => array( 1, -1),
|
|
'Expr_PostDec' => array( 1, -1),
|
|
'Expr_UnaryPlus' => array( 1, 1),
|
|
'Expr_UnaryMinus' => array( 1, 1),
|
|
'Expr_Cast_Int' => array( 1, 1),
|
|
'Expr_Cast_Double' => array( 1, 1),
|
|
'Expr_Cast_String' => array( 1, 1),
|
|
'Expr_Cast_Array' => array( 1, 1),
|
|
'Expr_Cast_Object' => array( 1, 1),
|
|
'Expr_Cast_Bool' => array( 1, 1),
|
|
'Expr_Cast_Unset' => array( 1, 1),
|
|
'Expr_ErrorSuppress' => array( 1, 1),
|
|
'Expr_Instanceof' => array( 2, 0),
|
|
'Expr_BooleanNot' => array( 3, 1),
|
|
'Expr_Mul' => array( 4, -1),
|
|
'Expr_Div' => array( 4, -1),
|
|
'Expr_Mod' => array( 4, -1),
|
|
'Expr_Plus' => array( 5, -1),
|
|
'Expr_Minus' => array( 5, -1),
|
|
'Expr_Concat' => array( 5, -1),
|
|
'Expr_ShiftLeft' => array( 6, -1),
|
|
'Expr_ShiftRight' => array( 6, -1),
|
|
'Expr_Smaller' => array( 7, 0),
|
|
'Expr_SmallerOrEqual' => array( 7, 0),
|
|
'Expr_Greater' => array( 7, 0),
|
|
'Expr_GreaterOrEqual' => array( 7, 0),
|
|
'Expr_Equal' => array( 8, 0),
|
|
'Expr_NotEqual' => array( 8, 0),
|
|
'Expr_Identical' => array( 8, 0),
|
|
'Expr_NotIdentical' => array( 8, 0),
|
|
'Expr_BitwiseAnd' => array( 9, -1),
|
|
'Expr_BitwiseXor' => array(10, -1),
|
|
'Expr_BitwiseOr' => array(11, -1),
|
|
'Expr_BooleanAnd' => array(12, -1),
|
|
'Expr_BooleanOr' => array(13, -1),
|
|
'Expr_Ternary' => array(14, -1),
|
|
// parser uses %left for assignments, but they really behave as %right
|
|
'Expr_Assign' => array(15, 1),
|
|
'Expr_AssignRef' => array(15, 1),
|
|
'Expr_AssignPlus' => array(15, 1),
|
|
'Expr_AssignMinus' => array(15, 1),
|
|
'Expr_AssignMul' => array(15, 1),
|
|
'Expr_AssignDiv' => array(15, 1),
|
|
'Expr_AssignConcat' => array(15, 1),
|
|
'Expr_AssignMod' => array(15, 1),
|
|
'Expr_AssignBitwiseAnd' => array(15, 1),
|
|
'Expr_AssignBitwiseOr' => array(15, 1),
|
|
'Expr_AssignBitwiseXor' => array(15, 1),
|
|
'Expr_AssignShiftLeft' => array(15, 1),
|
|
'Expr_AssignShiftRight' => array(15, 1),
|
|
'Expr_LogicalAnd' => array(16, -1),
|
|
'Expr_LogicalXor' => array(17, -1),
|
|
'Expr_LogicalOr' => array(18, -1),
|
|
);
|
|
|
|
protected $noIndentToken;
|
|
|
|
public function __construct() {
|
|
$this->noIndentToken = uniqid('_NO_INDENT_');
|
|
}
|
|
|
|
/**
|
|
* Pretty prints an array of nodes (statements).
|
|
*
|
|
* @param PHPParser_Node[] $nodes Array of nodes
|
|
*
|
|
* @return string Pretty printed nodes
|
|
*/
|
|
public function prettyPrint(array $nodes) {
|
|
return str_replace("\n" . $this->noIndentToken, "\n", $this->pStmts($nodes, false));
|
|
}
|
|
|
|
/**
|
|
* Pretty prints an expression.
|
|
*
|
|
* @param PHPParser_Node_Expr $node Expression node
|
|
*
|
|
* @return string Pretty printed node
|
|
*/
|
|
public function prettyPrintExpr(PHPParser_Node_Expr $node) {
|
|
return str_replace("\n" . $this->noIndentToken, "\n", $this->p($node));
|
|
}
|
|
|
|
/**
|
|
* Pretty prints an array of nodes (statements) and indents them optionally.
|
|
*
|
|
* @param PHPParser_Node[] $nodes Array of nodes
|
|
* @param bool $indent Whether to indent the printed nodes
|
|
*
|
|
* @return string Pretty printed statements
|
|
*/
|
|
protected function pStmts(array $nodes, $indent = true) {
|
|
$pNodes = array();
|
|
foreach ($nodes as $node) {
|
|
$pNodes[] = $this->pComments($node->getAttribute('comments', array()))
|
|
. $this->p($node)
|
|
. ($node instanceof PHPParser_Node_Expr ? ';' : '');
|
|
}
|
|
|
|
if ($indent) {
|
|
return ' ' . preg_replace(
|
|
'~\n(?!$|' . $this->noIndentToken . ')~',
|
|
"\n" . ' ',
|
|
implode("\n", $pNodes)
|
|
);
|
|
} else {
|
|
return implode("\n", $pNodes);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Pretty prints a node.
|
|
*
|
|
* @param PHPParser_Node $node Node to be pretty printed
|
|
*
|
|
* @return string Pretty printed node
|
|
*/
|
|
protected function p(PHPParser_Node $node) {
|
|
return $this->{'p' . $node->getType()}($node);
|
|
}
|
|
|
|
protected function pInfixOp($type, PHPParser_Node $leftNode, $operatorString, PHPParser_Node $rightNode) {
|
|
list($precedence, $associativity) = $this->precedenceMap[$type];
|
|
|
|
return $this->pPrec($leftNode, $precedence, $associativity, -1)
|
|
. $operatorString
|
|
. $this->pPrec($rightNode, $precedence, $associativity, 1);
|
|
}
|
|
|
|
protected function pPrefixOp($type, $operatorString, PHPParser_Node $node) {
|
|
list($precedence, $associativity) = $this->precedenceMap[$type];
|
|
return $operatorString . $this->pPrec($node, $precedence, $associativity, 1);
|
|
}
|
|
|
|
protected function pPostfixOp($type, PHPParser_Node $node, $operatorString) {
|
|
list($precedence, $associativity) = $this->precedenceMap[$type];
|
|
return $this->pPrec($node, $precedence, $associativity, -1) . $operatorString;
|
|
}
|
|
|
|
/**
|
|
* Prints an expression node with the least amount of parentheses necessary to preserve the meaning.
|
|
*
|
|
* @param PHPParser_Node $node Node to pretty print
|
|
* @param int $parentPrecedence Precedence of the parent operator
|
|
* @param int $parentAssociativity Associativity of parent operator
|
|
* (-1 is left, 0 is nonassoc, 1 is right)
|
|
* @param int $childPosition Position of the node relative to the operator
|
|
* (-1 is left, 1 is right)
|
|
*
|
|
* @return string The pretty printed node
|
|
*/
|
|
protected function pPrec(PHPParser_Node $node, $parentPrecedence, $parentAssociativity, $childPosition) {
|
|
$type = $node->getType();
|
|
if (isset($this->precedenceMap[$type])) {
|
|
$childPrecedence = $this->precedenceMap[$type][0];
|
|
if ($childPrecedence > $parentPrecedence
|
|
|| ($parentPrecedence == $childPrecedence && $parentAssociativity != $childPosition)
|
|
) {
|
|
return '(' . $this->{'p' . $type}($node) . ')';
|
|
}
|
|
}
|
|
|
|
return $this->{'p' . $type}($node);
|
|
}
|
|
|
|
/**
|
|
* Pretty prints an array of nodes and implodes the printed values.
|
|
*
|
|
* @param PHPParser_Node[] $nodes Array of Nodes to be printed
|
|
* @param string $glue Character to implode with
|
|
*
|
|
* @return string Imploded pretty printed nodes
|
|
*/
|
|
protected function pImplode(array $nodes, $glue = '') {
|
|
$pNodes = array();
|
|
foreach ($nodes as $node) {
|
|
$pNodes[] = $this->p($node);
|
|
}
|
|
|
|
return implode($glue, $pNodes);
|
|
}
|
|
|
|
/**
|
|
* Pretty prints an array of nodes and implodes the printed values with commas.
|
|
*
|
|
* @param PHPParser_Node[] $nodes Array of Nodes to be printed
|
|
*
|
|
* @return string Comma separated pretty printed nodes
|
|
*/
|
|
protected function pCommaSeparated(array $nodes) {
|
|
return $this->pImplode($nodes, ', ');
|
|
}
|
|
|
|
/**
|
|
* Signifies the pretty printer that a string shall not be indented.
|
|
*
|
|
* @param string $string Not to be indented string
|
|
*
|
|
* @return mixed String marked with $this->noIndentToken's.
|
|
*/
|
|
protected function pNoIndent($string) {
|
|
return str_replace("\n", "\n" . $this->noIndentToken, $string);
|
|
}
|
|
|
|
protected function pComments(array $comments) {
|
|
$result = '';
|
|
|
|
foreach ($comments as $comment) {
|
|
$result .= $comment->getReformattedText() . "\n";
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
} |