2014-04-20 00:08:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This parser is based on a skeleton written by Moriyoshi Koizumi, which in
|
|
|
|
* turn is based on work by Masato Bito.
|
|
|
|
*/
|
|
|
|
abstract class ParserAbstract
|
|
|
|
{
|
2014-04-20 13:16:54 +02:00
|
|
|
const SYMBOL_NONE = -1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following members will be filled with generated parsing data:
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @var int Size of $tokenToSymbol map */
|
|
|
|
protected $tokenToSymbolMapSize;
|
|
|
|
/** @var int Size of $action table */
|
|
|
|
protected $actionTableSize;
|
|
|
|
/** @var int Size of $goto table */
|
|
|
|
protected $gotoTableSize;
|
|
|
|
|
|
|
|
/** @var int Symbol number signifying an invalid token */
|
|
|
|
protected $invalidSymbol;
|
|
|
|
/** @var int Action number signifying default action */
|
|
|
|
protected $defaultAction;
|
|
|
|
/** @var int Rule number signifying that an unexpected token was encountered */
|
|
|
|
protected $unexpectedTokenRule;
|
|
|
|
|
|
|
|
protected $YY2TBLSTATE;
|
|
|
|
protected $YYNLSTATES;
|
|
|
|
|
|
|
|
/** @var array Map of lexer tokens to internal symbols */
|
|
|
|
protected $tokenToSymbol;
|
|
|
|
/** @var array Map of symbols to their names */
|
|
|
|
protected $symbolToName;
|
|
|
|
/** @var array Names of the production rules (only necessary for debugging) */
|
|
|
|
protected $productions;
|
|
|
|
|
|
|
|
/** @var array Map of states to a displacement into the $action table. The corresponding action for this
|
|
|
|
* state/symbol pair is $action[$actionBase[$state] + $symbol]. If $actionBase[$state] is 0, the
|
|
|
|
action is defaulted, i.e. $actionDefault[$state] should be used instead. */
|
|
|
|
protected $actionBase;
|
|
|
|
/** @var array Table of actions. Indexed according to $actionBase comment. */
|
|
|
|
protected $action;
|
|
|
|
/** @var array Table indexed analogously to $action. If $actionCheck[$actionBase[$state] + $symbol] != $symbol
|
|
|
|
* then the action is defaulted, i.e. $actionDefault[$state] should be used instead. */
|
|
|
|
protected $actionCheck;
|
|
|
|
/** @var array Map of states to their default action */
|
|
|
|
protected $actionDefault;
|
|
|
|
|
|
|
|
/** @var array Map of non-terminals to a displacement into the $goto table. The corresponding goto state for this
|
|
|
|
* non-terminal/state pair is $goto[$gotoBase[$nonTerminal] + $state] (unless defaulted) */
|
|
|
|
protected $gotoBase;
|
|
|
|
/** @var array Table of states to goto after reduction. Indexed according to $gotoBase comment. */
|
|
|
|
protected $goto;
|
|
|
|
/** @var array Table indexed analogously to $goto. If $gotoCheck[$gotoBase[$nonTerminal] + $state] != $nonTerminal
|
|
|
|
* then the goto state is defaulted, i.e. $gotoDefault[$nonTerminal] should be used. */
|
|
|
|
protected $gotoCheck;
|
|
|
|
/** @var array Map of non-terminals to the default state to goto after their reduction */
|
|
|
|
protected $gotoDefault;
|
|
|
|
|
|
|
|
/** @var array Map of rules to the non-terminal on their left-hand side, i.e. the non-terminal to use for
|
|
|
|
* determining the state to goto after reduction. */
|
|
|
|
protected $ruleToNonTerminal;
|
|
|
|
/** @var array Map of rules to the length of their right-hand side, which is the number of elements that have to
|
|
|
|
* be popped from the stack(s) on reduction. */
|
|
|
|
protected $ruleToLength;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The following members are part of the parser state:
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @var Lexer Lexer that is used when parsing */
|
2014-04-20 00:08:59 +02:00
|
|
|
protected $lexer;
|
2014-04-20 13:16:54 +02:00
|
|
|
/** @var mixed Temporary value containing the result of last semantic action (reduction) */
|
|
|
|
protected $semValue;
|
|
|
|
/** @var array Semantic value stack (contains values of tokens and semantic action results) */
|
|
|
|
protected $semStack;
|
|
|
|
/** @var int Position in stacks (state stack, semantic value stack, attribute stack) */
|
|
|
|
protected $stackPos;
|
2014-04-20 00:08:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a parser instance.
|
|
|
|
*
|
|
|
|
* @param Lexer $lexer A lexer
|
|
|
|
*/
|
|
|
|
public function __construct(Lexer $lexer) {
|
|
|
|
$this->lexer = $lexer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses PHP code into a node tree.
|
|
|
|
*
|
|
|
|
* @param string $code The source code to parse
|
|
|
|
*
|
|
|
|
* @return Node[] Array of statements
|
|
|
|
*/
|
|
|
|
public function parse($code) {
|
|
|
|
$this->lexer->startLexing($code);
|
|
|
|
|
|
|
|
// We start off with no lookahead-token
|
2014-04-20 13:16:54 +02:00
|
|
|
$symbol = self::SYMBOL_NONE;
|
2014-04-20 00:08:59 +02:00
|
|
|
|
|
|
|
// The attributes for a node are taken from the first and last token of the node.
|
|
|
|
// From the first token only the startAttributes are taken and from the last only
|
|
|
|
// the endAttributes. Both are merged using the array union operator (+).
|
|
|
|
$startAttributes = array('startLine' => 1);
|
|
|
|
$endAttributes = array();
|
|
|
|
|
|
|
|
// In order to figure out the attributes for the starting token, we have to keep
|
|
|
|
// them in a stack
|
|
|
|
$attributeStack = array($startAttributes);
|
|
|
|
|
|
|
|
// Start off in the initial state and keep a stack of previous states
|
|
|
|
$state = 0;
|
|
|
|
$stateStack = array($state);
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
// Semantic value stack (contains values of tokens and semantic action results)
|
|
|
|
$this->semStack = array();
|
2014-04-20 00:08:59 +02:00
|
|
|
|
|
|
|
// Current position in the stack(s)
|
|
|
|
$this->stackPos = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
2014-04-20 13:16:54 +02:00
|
|
|
//$this->traceNewState($state, $symbol);
|
2014-04-20 00:08:59 +02:00
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($this->actionBase[$state] == 0) {
|
|
|
|
$rule = $this->actionDefault[$state];
|
2014-04-20 00:08:59 +02:00
|
|
|
} else {
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($symbol === self::SYMBOL_NONE) {
|
2014-04-20 00:08:59 +02:00
|
|
|
// Fetch the next token id from the lexer and fetch additional info by-ref.
|
|
|
|
// The end attributes are fetched into a temporary variable and only set once the token is really
|
|
|
|
// shifted (not during read). Otherwise you would sometimes get off-by-one errors, when a rule is
|
|
|
|
// reduced after a token was read but not yet shifted.
|
2014-04-20 13:16:54 +02:00
|
|
|
$tokenId = $this->lexer->getNextToken($tokenValue, $startAttributes, $nextEndAttributes);
|
2014-04-20 00:08:59 +02:00
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
// map the lexer token id to the internally used symbols
|
|
|
|
$symbol = $tokenId >= 0 && $tokenId < $this->tokenToSymbolMapSize
|
|
|
|
? $this->tokenToSymbol[$tokenId]
|
|
|
|
: $this->invalidSymbol;
|
2014-04-20 00:08:59 +02:00
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($symbol === $this->invalidSymbol) {
|
2014-04-20 00:08:59 +02:00
|
|
|
throw new \RangeException(sprintf(
|
|
|
|
'The lexer returned an invalid token (id=%d, value=%s)',
|
2014-04-20 13:16:54 +02:00
|
|
|
$tokenId, $tokenValue
|
2014-04-20 00:08:59 +02:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
//$this->traceRead($symbol);
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
$idx = $this->actionBase[$state] + $symbol;
|
|
|
|
if ((($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] == $symbol)
|
|
|
|
|| ($state < $this->YY2TBLSTATE
|
|
|
|
&& ($idx = $this->actionBase[$state + $this->YYNLSTATES] + $symbol) >= 0
|
|
|
|
&& $idx < $this->actionTableSize && $this->actionCheck[$idx] == $symbol))
|
|
|
|
&& ($action = $this->action[$idx]) != $this->defaultAction) {
|
2014-04-20 00:08:59 +02:00
|
|
|
/*
|
2014-04-20 13:16:54 +02:00
|
|
|
* >= YYNLSTATES: shift and reduce
|
2014-04-20 00:08:59 +02:00
|
|
|
* > 0: shift
|
|
|
|
* = 0: accept
|
|
|
|
* < 0: reduce
|
|
|
|
* = -YYUNEXPECTED: error
|
|
|
|
*/
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($action > 0) {
|
2014-04-20 00:08:59 +02:00
|
|
|
/* shift */
|
2014-04-20 13:16:54 +02:00
|
|
|
//$this->traceShift($symbol);
|
2014-04-20 00:08:59 +02:00
|
|
|
|
|
|
|
++$this->stackPos;
|
2014-04-20 13:16:54 +02:00
|
|
|
$stateStack[$this->stackPos] = $state = $action;
|
|
|
|
$this->semStack[$this->stackPos] = $tokenValue;
|
2014-04-20 00:08:59 +02:00
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
|
|
|
$endAttributes = $nextEndAttributes;
|
2014-04-20 13:16:54 +02:00
|
|
|
$symbol = self::SYMBOL_NONE;
|
2014-04-20 00:08:59 +02:00
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($action < $this->YYNLSTATES)
|
2014-04-20 00:08:59 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* $yyn >= YYNLSTATES means shift-and-reduce */
|
2014-04-20 13:16:54 +02:00
|
|
|
$rule = $action - $this->YYNLSTATES;
|
2014-04-20 00:08:59 +02:00
|
|
|
} else {
|
2014-04-20 13:16:54 +02:00
|
|
|
$rule = -$action;
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
} else {
|
2014-04-20 13:16:54 +02:00
|
|
|
$rule = $this->actionDefault[$state];
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($rule === 0) {
|
2014-04-20 00:08:59 +02:00
|
|
|
/* accept */
|
2014-04-20 13:16:54 +02:00
|
|
|
//$this->traceAccept();
|
|
|
|
return $this->semValue;
|
|
|
|
} elseif ($rule !== $this->unexpectedTokenRule) {
|
2014-04-20 00:08:59 +02:00
|
|
|
/* reduce */
|
2014-04-20 13:16:54 +02:00
|
|
|
//$this->traceReduce($rule);
|
2014-04-20 00:08:59 +02:00
|
|
|
|
|
|
|
try {
|
2014-04-20 13:16:54 +02:00
|
|
|
$this->{'reduceRule' . $rule}(
|
|
|
|
$attributeStack[$this->stackPos - $this->ruleToLength[$rule]]
|
2014-04-20 00:08:59 +02:00
|
|
|
+ $endAttributes
|
|
|
|
);
|
|
|
|
} catch (Error $e) {
|
2014-11-27 20:38:14 +01:00
|
|
|
if (-1 === $e->getRawLine() && isset($startAttributes['startLine'])) {
|
2014-04-20 00:08:59 +02:00
|
|
|
$e->setRawLine($startAttributes['startLine']);
|
|
|
|
}
|
|
|
|
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Goto - shift nonterminal */
|
2014-04-20 13:16:54 +02:00
|
|
|
$this->stackPos -= $this->ruleToLength[$rule];
|
|
|
|
$nonTerminal = $this->ruleToNonTerminal[$rule];
|
|
|
|
$idx = $this->gotoBase[$nonTerminal] + $stateStack[$this->stackPos];
|
|
|
|
if ($idx >= 0 && $idx < $this->gotoTableSize && $this->gotoCheck[$idx] == $nonTerminal) {
|
|
|
|
$state = $this->goto[$idx];
|
2014-04-20 00:08:59 +02:00
|
|
|
} else {
|
2014-04-20 13:16:54 +02:00
|
|
|
$state = $this->gotoDefault[$nonTerminal];
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
++$this->stackPos;
|
|
|
|
$stateStack[$this->stackPos] = $state;
|
2014-04-20 13:16:54 +02:00
|
|
|
$this->semStack[$this->stackPos] = $this->semValue;
|
2014-04-20 00:08:59 +02:00
|
|
|
$attributeStack[$this->stackPos] = $startAttributes;
|
2014-04-20 13:16:54 +02:00
|
|
|
|
|
|
|
if ($state < $this->YYNLSTATES)
|
|
|
|
break;
|
|
|
|
/* >= YYNLSTATES means shift-and-reduce */
|
|
|
|
$rule = $state - $this->YYNLSTATES;
|
2014-04-20 00:08:59 +02:00
|
|
|
} else {
|
|
|
|
/* error */
|
2014-04-20 13:16:54 +02:00
|
|
|
if ($expected = $this->getExpectedTokens($state)) {
|
2014-04-20 00:08:59 +02:00
|
|
|
$expectedString = ', expecting ' . implode(' or ', $expected);
|
2014-04-20 13:16:54 +02:00
|
|
|
} else {
|
|
|
|
$expectedString = '';
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
2015-04-14 20:31:06 +02:00
|
|
|
$tokens = $this->lexer->getTokens();
|
|
|
|
$errorPosition = $this->lexer->getPosition();
|
|
|
|
|
2014-04-20 00:08:59 +02:00
|
|
|
throw new Error(
|
2014-04-20 13:16:54 +02:00
|
|
|
'Syntax error, unexpected ' . $this->symbolToName[$symbol] . $expectedString,
|
2015-04-14 20:31:06 +02:00
|
|
|
$startAttributes['startLine'],
|
|
|
|
$tokens,
|
|
|
|
$errorPosition
|
2014-04-20 00:08:59 +02:00
|
|
|
);
|
|
|
|
}
|
2014-04-20 13:16:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getExpectedTokens($state) {
|
|
|
|
$expected = array();
|
|
|
|
|
|
|
|
$base = $this->actionBase[$state];
|
|
|
|
foreach ($this->symbolToName as $symbol => $name) {
|
|
|
|
$idx = $base + $symbol;
|
|
|
|
if ($idx >= 0 && $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol
|
|
|
|
|| $state < $this->YY2TBLSTATE
|
|
|
|
&& ($idx = $this->actionBase[$state + $this->YYNLSTATES] + $symbol) >= 0
|
|
|
|
&& $idx < $this->actionTableSize && $this->actionCheck[$idx] === $symbol
|
|
|
|
) {
|
|
|
|
if ($this->action[$idx] != $this->unexpectedTokenRule) {
|
|
|
|
if (count($expected) == 4) {
|
|
|
|
/* Too many expected tokens */
|
|
|
|
return array();
|
|
|
|
}
|
2014-04-20 00:08:59 +02:00
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
$expected[] = $name;
|
|
|
|
}
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-20 13:16:54 +02:00
|
|
|
|
|
|
|
return $expected;
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
2014-04-21 12:30:55 +02:00
|
|
|
/*
|
|
|
|
* Tracing functions used for debugging the parser.
|
|
|
|
*/
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
protected function traceNewState($state, $symbol) {
|
2014-04-20 00:08:59 +02:00
|
|
|
echo '% State ' . $state
|
2014-04-20 13:16:54 +02:00
|
|
|
. ', Lookahead ' . ($symbol == self::SYMBOL_NONE ? '--none--' : $this->symbolToName[$symbol]) . "\n";
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
protected function traceRead($symbol) {
|
|
|
|
echo '% Reading ' . $this->symbolToName[$symbol] . "\n";
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
2014-04-20 13:16:54 +02:00
|
|
|
protected function traceShift($symbol) {
|
|
|
|
echo '% Shift ' . $this->symbolToName[$symbol] . "\n";
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function traceAccept() {
|
|
|
|
echo "% Accepted.\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function traceReduce($n) {
|
2014-04-20 13:16:54 +02:00
|
|
|
echo '% Reduce by (' . $n . ') ' . $this->productions[$n] . "\n";
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|
2014-04-21 12:30:55 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Helper functions invoked by semantic actions
|
|
|
|
*/
|
|
|
|
|
2014-04-21 14:49:35 +02:00
|
|
|
/**
|
|
|
|
* Moves statements of semicolon-style namespaces into $ns->stmts and checks various error conditions.
|
|
|
|
*
|
|
|
|
* @param Node[] $stmts
|
|
|
|
* @return Node[]
|
|
|
|
*/
|
2014-04-21 12:30:55 +02:00
|
|
|
protected function handleNamespaces(array $stmts) {
|
2014-04-21 14:49:35 +02:00
|
|
|
$style = $this->getNamespacingStyle($stmts);
|
|
|
|
if (null === $style) {
|
|
|
|
// not namespaced, nothing to do
|
|
|
|
return $stmts;
|
|
|
|
} elseif ('brace' === $style) {
|
|
|
|
// For braced namespaces we only have to check that there are no invalid statements between the namespaces
|
|
|
|
$afterFirstNamespace = false;
|
|
|
|
foreach ($stmts as $stmt) {
|
|
|
|
if ($stmt instanceof Node\Stmt\Namespace_) {
|
|
|
|
$afterFirstNamespace = true;
|
|
|
|
} elseif (!$stmt instanceof Node\Stmt\HaltCompiler && $afterFirstNamespace) {
|
|
|
|
throw new Error('No code may exist outside of namespace {}', $stmt->getLine());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $stmts;
|
|
|
|
} else {
|
|
|
|
// For semicolon namespaces we have to move the statements after a namespace declaration into ->stmts
|
|
|
|
$resultStmts = array();
|
|
|
|
$targetStmts =& $resultStmts;
|
|
|
|
foreach ($stmts as $stmt) {
|
|
|
|
if ($stmt instanceof Node\Stmt\Namespace_) {
|
|
|
|
$stmt->stmts = array();
|
|
|
|
$targetStmts =& $stmt->stmts;
|
|
|
|
$resultStmts[] = $stmt;
|
|
|
|
} elseif ($stmt instanceof Node\Stmt\HaltCompiler) {
|
|
|
|
// __halt_compiler() is not moved into the namespace
|
|
|
|
$resultStmts[] = $stmt;
|
|
|
|
} else {
|
|
|
|
$targetStmts[] = $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $resultStmts;
|
|
|
|
}
|
|
|
|
}
|
2014-04-21 12:30:55 +02:00
|
|
|
|
2014-04-21 14:49:35 +02:00
|
|
|
private function getNamespacingStyle(array $stmts) {
|
|
|
|
$style = null;
|
2014-04-21 12:30:55 +02:00
|
|
|
$hasNotAllowedStmts = false;
|
2014-04-21 14:49:35 +02:00
|
|
|
foreach ($stmts as $stmt) {
|
2014-04-21 12:30:55 +02:00
|
|
|
if ($stmt instanceof Node\Stmt\Namespace_) {
|
2014-04-21 14:49:35 +02:00
|
|
|
$currentStyle = null === $stmt->stmts ? 'semicolon' : 'brace';
|
|
|
|
if (null === $style) {
|
|
|
|
$style = $currentStyle;
|
2014-04-21 12:30:55 +02:00
|
|
|
if ($hasNotAllowedStmts) {
|
|
|
|
throw new Error('Namespace declaration statement has to be the very first statement in the script', $stmt->getLine());
|
|
|
|
}
|
2014-04-21 14:49:35 +02:00
|
|
|
} elseif ($style !== $currentStyle) {
|
2014-04-21 12:30:55 +02:00
|
|
|
throw new Error('Cannot mix bracketed namespace declarations with unbracketed namespace declarations', $stmt->getLine());
|
|
|
|
}
|
2014-04-21 14:49:35 +02:00
|
|
|
} elseif (!$stmt instanceof Node\Stmt\Declare_ && !$stmt instanceof Node\Stmt\HaltCompiler) {
|
2014-04-21 12:30:55 +02:00
|
|
|
$hasNotAllowedStmts = true;
|
|
|
|
}
|
|
|
|
}
|
2014-04-21 14:49:35 +02:00
|
|
|
return $style;
|
2014-04-21 12:30:55 +02:00
|
|
|
}
|
2014-04-20 00:08:59 +02:00
|
|
|
}
|