2011-04-18 19:02:30 +02:00
|
|
|
<?php
|
|
|
|
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Lexer
|
2011-04-18 19:02:30 +02:00
|
|
|
{
|
2011-06-03 22:02:02 +02:00
|
|
|
protected $code;
|
2011-04-18 19:02:30 +02:00
|
|
|
protected $tokens;
|
|
|
|
protected $pos;
|
2011-06-12 17:12:47 +02:00
|
|
|
protected $line;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2012-04-25 20:04:46 +02:00
|
|
|
protected $tokenMap;
|
|
|
|
protected $dropTokens;
|
2011-04-18 19:02:30 +02:00
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
|
|
|
* Creates a Lexer.
|
2012-04-25 20:04:46 +02:00
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
// map from internal tokens to PHPParser tokens
|
|
|
|
$this->tokenMap = $this->createTokenMap();
|
|
|
|
|
|
|
|
// map of tokens to drop while lexing (the map is only used for isset lookup,
|
|
|
|
// that's why the value is simply set to 1; the value is never actually used.)
|
|
|
|
$this->dropTokens = array_fill_keys(array(T_WHITESPACE, T_COMMENT, T_OPEN_TAG), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the lexer for lexing the provided source code.
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
2012-04-25 20:04:46 +02:00
|
|
|
* @param string $code The source code to lex
|
2011-07-13 23:07:05 +02:00
|
|
|
*
|
|
|
|
* @throws PHPParser_Error on lexing errors (unterminated comment or unexpected character)
|
2011-05-31 16:33:11 +02:00
|
|
|
*/
|
2012-04-25 20:04:46 +02:00
|
|
|
public function startLexing($code) {
|
2012-02-21 17:00:49 +01:00
|
|
|
$this->resetErrors();
|
2011-06-03 17:44:23 +02:00
|
|
|
$this->tokens = @token_get_all($code);
|
2012-02-21 17:00:49 +01:00
|
|
|
$this->handleErrors();
|
|
|
|
|
|
|
|
$this->code = $code; // keep the code around for __halt_compiler() handling
|
|
|
|
$this->pos = -1;
|
|
|
|
$this->line = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function resetErrors() {
|
|
|
|
// clear error_get_last() by forcing an undefined variable error
|
|
|
|
@$undefinedVariable;
|
|
|
|
}
|
2011-06-03 17:44:23 +02:00
|
|
|
|
2012-02-21 17:00:49 +01:00
|
|
|
protected function handleErrors() {
|
2011-06-03 17:44:23 +02:00
|
|
|
$error = error_get_last();
|
|
|
|
|
|
|
|
if (preg_match(
|
2012-02-21 17:00:49 +01:00
|
|
|
'~^Unterminated comment starting line ([0-9]+)$~',
|
|
|
|
$error['message'], $matches
|
|
|
|
)) {
|
2011-07-13 12:24:10 +02:00
|
|
|
throw new PHPParser_Error('Unterminated comment', $matches[1]);
|
2011-06-03 17:44:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (preg_match(
|
2012-02-21 17:00:49 +01:00
|
|
|
'~^Unexpected character in input: \'(.)\' \(ASCII=([0-9]+)\)~s',
|
|
|
|
$error['message'], $matches
|
|
|
|
)) {
|
2011-07-13 12:24:10 +02:00
|
|
|
throw new PHPParser_Error(sprintf(
|
|
|
|
'Unexpected character "%s" (ASCII %d)',
|
|
|
|
$matches[1], $matches[2]
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
// PHP cuts error message after null byte, so need special case
|
|
|
|
if (preg_match('~^Unexpected character in input: \'$~', $error['message'])) {
|
|
|
|
throw new PHPParser_Error('Unexpected null byte');
|
2011-06-03 17:44:23 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
|
|
|
* Returns the next token id.
|
|
|
|
*
|
2011-07-03 16:35:45 +02:00
|
|
|
* @param mixed $value Variable to store token content in
|
|
|
|
* @param mixed $line Variable to store line in
|
|
|
|
* @param mixed $docComment Variable to store doc comment in
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
|
|
|
* @return int Token id
|
|
|
|
*/
|
2012-04-25 20:04:46 +02:00
|
|
|
public function getNextToken(&$value = null, &$line = null, &$docComment = null) {
|
2011-07-03 16:35:45 +02:00
|
|
|
$docComment = null;
|
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
while (isset($this->tokens[++$this->pos])) {
|
|
|
|
$token = $this->tokens[$this->pos];
|
2011-06-03 22:02:02 +02:00
|
|
|
|
2011-04-18 19:02:30 +02:00
|
|
|
if (is_string($token)) {
|
2011-10-19 18:09:13 +02:00
|
|
|
$line = $this->line;
|
|
|
|
|
|
|
|
// bug in token_get_all
|
|
|
|
if ('b"' === $token) {
|
|
|
|
$value = 'b"';
|
|
|
|
return ord('"');
|
|
|
|
} else {
|
|
|
|
$value = $token;
|
|
|
|
return ord($token);
|
|
|
|
}
|
2011-07-13 13:27:14 +02:00
|
|
|
} else {
|
|
|
|
$this->line += substr_count($token[1], "\n");
|
|
|
|
|
|
|
|
if (T_DOC_COMMENT === $token[0]) {
|
|
|
|
$docComment = $token[1];
|
2012-04-25 20:04:46 +02:00
|
|
|
} elseif (!isset($this->dropTokens[$token[0]])) {
|
2011-07-13 13:27:14 +02:00
|
|
|
$value = $token[1];
|
|
|
|
$line = $token[2];
|
2012-04-25 20:04:46 +02:00
|
|
|
return $this->tokenMap[$token[0]];
|
2011-07-13 13:27:14 +02:00
|
|
|
}
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-29 22:57:46 +02:00
|
|
|
// 0 is the EOF token
|
2011-04-18 19:02:30 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-06-03 22:02:02 +02:00
|
|
|
/**
|
|
|
|
* Handles __halt_compiler() by returning the text after it.
|
|
|
|
*
|
|
|
|
* @return string Remaining text
|
|
|
|
*/
|
|
|
|
public function handleHaltCompiler() {
|
|
|
|
// get the length of the text before the T_HALT_COMPILER token
|
|
|
|
$textBefore = '';
|
|
|
|
for ($i = 0; $i <= $this->pos; ++$i) {
|
|
|
|
if (is_string($this->tokens[$i])) {
|
|
|
|
$textBefore .= $this->tokens[$i];
|
|
|
|
} else {
|
|
|
|
$textBefore .= $this->tokens[$i][1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// text after T_HALT_COMPILER, still including ();
|
|
|
|
$textAfter = substr($this->code, strlen($textBefore));
|
|
|
|
|
|
|
|
// ensure that it is followed by ();
|
|
|
|
// this simplifies the situation, by not allowing any comments
|
|
|
|
// in between of the tokens.
|
2011-11-27 11:21:06 +01:00
|
|
|
if (!preg_match('~\s*\(\s*\)\s*(?:;|\?>\r?\n?)~', $textAfter, $matches)) {
|
2011-06-05 18:52:41 +02:00
|
|
|
throw new PHPParser_Error('__halt_compiler must be followed by "();"');
|
2011-06-03 22:02:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// prevent the lexer from returning any further tokens
|
|
|
|
$this->pos = count($this->tokens);
|
|
|
|
|
|
|
|
// return with (); removed
|
2011-12-07 18:36:38 +01:00
|
|
|
return (string) substr($textAfter, strlen($matches[0])); // (string) converts false to ''
|
2011-06-03 22:02:02 +02:00
|
|
|
}
|
|
|
|
|
2011-05-31 16:33:11 +02:00
|
|
|
/**
|
2012-04-25 20:04:46 +02:00
|
|
|
* Creates the token map.
|
2011-05-31 16:33:11 +02:00
|
|
|
*
|
|
|
|
* The token map maps the PHP internal token identifiers
|
|
|
|
* to the identifiers used by the Parser. Additionally it
|
|
|
|
* maps T_OPEN_TAG_WITH_ECHO to T_ECHO and T_CLOSE_TAG to ';'.
|
2012-04-25 20:04:46 +02:00
|
|
|
*
|
|
|
|
* @return array The token map
|
2011-05-31 16:33:11 +02:00
|
|
|
*/
|
2012-04-25 20:04:46 +02:00
|
|
|
protected function createTokenMap() {
|
|
|
|
$tokenMap = array();
|
|
|
|
|
|
|
|
// 256 is the minimum possible token number, as everything below
|
|
|
|
// it is an ASCII value
|
|
|
|
for ($i = 256; $i < 1000; ++$i) {
|
|
|
|
// T_DOUBLE_COLON is equivalent to T_PAAMAYIM_NEKUDOTAYIM
|
|
|
|
if (T_DOUBLE_COLON === $i) {
|
|
|
|
$tokenMap[$i] = PHPParser_Parser::T_PAAMAYIM_NEKUDOTAYIM;
|
|
|
|
// T_OPEN_TAG_WITH_ECHO with dropped T_OPEN_TAG results in T_ECHO
|
|
|
|
} elseif(T_OPEN_TAG_WITH_ECHO === $i) {
|
|
|
|
$tokenMap[$i] = PHPParser_Parser::T_ECHO;
|
|
|
|
// T_CLOSE_TAG is equivalent to ';'
|
|
|
|
} elseif(T_CLOSE_TAG === $i) {
|
|
|
|
$tokenMap[$i] = ord(';');
|
|
|
|
// and the others can be mapped directly
|
|
|
|
} elseif ('UNKNOWN' !== ($name = token_name($i))
|
|
|
|
&& defined($name = 'PHPParser_Parser::' . $name)
|
|
|
|
) {
|
|
|
|
$tokenMap[$i] = constant($name);
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-25 20:04:46 +02:00
|
|
|
|
|
|
|
return $tokenMap;
|
2011-04-18 19:02:30 +02:00
|
|
|
}
|
|
|
|
}
|