2011-12-18 13:04:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ATTENTION: This code is WRITE-ONLY. Do not try to read it.
|
|
|
|
*/
|
|
|
|
class PHPParser_Lexer_Emulative extends PHPParser_Lexer
|
|
|
|
{
|
2012-04-25 20:04:46 +02:00
|
|
|
protected $newKeywords;
|
2011-12-18 13:04:27 +01:00
|
|
|
protected $inObjectAccess;
|
|
|
|
|
2012-04-25 20:04:46 +02:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
$newKeywordsPerVersion = array(
|
|
|
|
'5.5.0-dev' => array(
|
|
|
|
'finally' => PHPParser_Parser::T_FINALLY,
|
2012-09-07 19:24:44 +02:00
|
|
|
'yield' => PHPParser_Parser::T_YIELD,
|
2012-09-07 18:06:11 +02:00
|
|
|
),
|
|
|
|
'5.4.0-dev' => array(
|
|
|
|
'callable' => PHPParser_Parser::T_CALLABLE,
|
|
|
|
'insteadof' => PHPParser_Parser::T_INSTEADOF,
|
|
|
|
'trait' => PHPParser_Parser::T_TRAIT,
|
|
|
|
'__trait__' => PHPParser_Parser::T_TRAIT_C,
|
|
|
|
),
|
2012-04-25 20:04:46 +02:00
|
|
|
);
|
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->newKeywords = array();
|
|
|
|
foreach ($newKeywordsPerVersion as $version => $newKeywords) {
|
|
|
|
if (version_compare(PHP_VERSION, $version, '>=')) {
|
|
|
|
break;
|
|
|
|
}
|
2012-04-25 20:04:46 +02:00
|
|
|
|
2012-09-07 18:06:11 +02:00
|
|
|
$this->newKeywords += $newKeywords;
|
|
|
|
}
|
2012-04-25 20:04:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function startLexing($code) {
|
2011-12-18 13:04:27 +01:00
|
|
|
$this->inObjectAccess = false;
|
|
|
|
|
2012-02-21 17:56:07 +01:00
|
|
|
// on PHP 5.4 don't do anything
|
|
|
|
if (version_compare(PHP_VERSION, '5.4.0RC1', '>=')) {
|
2012-04-25 20:04:46 +02:00
|
|
|
parent::startLexing($code);
|
2012-02-21 17:56:07 +01:00
|
|
|
} else {
|
|
|
|
$code = $this->preprocessCode($code);
|
2012-04-25 20:04:46 +02:00
|
|
|
parent::startLexing($code);
|
2012-02-21 17:56:07 +01:00
|
|
|
$this->postprocessTokens();
|
2011-12-18 13:04:27 +01:00
|
|
|
}
|
2012-02-21 17:56:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Replaces new features in the code by ~__EMU__{NAME}__{DATA}__~ sequences.
|
|
|
|
* ~LABEL~ is never valid PHP code, that's why we can (to some degree) safely
|
|
|
|
* use it here.
|
|
|
|
* Later when preprocessing the tokens these sequences will either be replaced
|
|
|
|
* by real tokens or replaced with their original content (e.g. if they occured
|
|
|
|
* inside a string, i.e. a place where they don't have a special meaning).
|
|
|
|
*/
|
|
|
|
protected function preprocessCode($code) {
|
|
|
|
// binary notation (0b010101101001...)
|
2014-02-05 22:37:07 +01:00
|
|
|
return preg_replace('(\b0b[01]+\b)', '~__EMU__BINARY__$0__~', $code);
|
2012-02-21 17:56:07 +01:00
|
|
|
}
|
2011-12-18 13:04:27 +01:00
|
|
|
|
2012-02-21 17:56:07 +01:00
|
|
|
/*
|
|
|
|
* Replaces the ~__EMU__...~ sequences with real tokens or their original
|
|
|
|
* value.
|
|
|
|
*/
|
|
|
|
protected function postprocessTokens() {
|
|
|
|
// we need to manually iterate and manage a count because we'll change
|
|
|
|
// the tokens array on the way
|
2011-12-18 13:04:27 +01:00
|
|
|
for ($i = 0, $c = count($this->tokens); $i < $c; ++$i) {
|
2014-02-05 22:37:07 +01:00
|
|
|
// first check that the following tokens are of form ~LABEL~,
|
2012-02-21 17:56:07 +01:00
|
|
|
// then match the __EMU__... sequence.
|
2011-12-18 13:04:27 +01:00
|
|
|
if ('~' === $this->tokens[$i]
|
|
|
|
&& isset($this->tokens[$i + 2])
|
|
|
|
&& '~' === $this->tokens[$i + 2]
|
|
|
|
&& T_STRING === $this->tokens[$i + 1][0]
|
|
|
|
&& preg_match('(^__EMU__([A-Z]++)__(?:([A-Za-z0-9]++)__)?$)', $this->tokens[$i + 1][1], $matches)
|
|
|
|
) {
|
|
|
|
if ('BINARY' === $matches[1]) {
|
2012-02-21 17:56:07 +01:00
|
|
|
// the binary number can either be an integer or a double, so return a LNUMBER
|
|
|
|
// or DNUMBER respectively
|
2012-01-15 15:19:07 +01:00
|
|
|
$replace = array(
|
|
|
|
array(is_int(bindec($matches[2])) ? T_LNUMBER : T_DNUMBER, $matches[2], $this->tokens[$i + 1][2])
|
|
|
|
);
|
2011-12-18 13:04:27 +01:00
|
|
|
} else {
|
2012-02-21 17:56:07 +01:00
|
|
|
// just ignore all other __EMU__ sequences
|
2011-12-18 13:04:27 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_splice($this->tokens, $i, 3, $replace);
|
|
|
|
$c -= 3 - count($replace);
|
2012-02-21 17:56:07 +01:00
|
|
|
// for multichar tokens (e.g. strings) replace any ~__EMU__...~ sequences
|
|
|
|
// in their content with the original character sequence
|
2011-12-18 13:04:27 +01:00
|
|
|
} elseif (is_array($this->tokens[$i])
|
|
|
|
&& 0 !== strpos($this->tokens[$i][1], '__EMU__')
|
|
|
|
) {
|
|
|
|
$this->tokens[$i][1] = preg_replace_callback(
|
|
|
|
'(~__EMU__([A-Z]++)__(?:([A-Za-z0-9]++)__)?~)',
|
|
|
|
array($this, 'restoreContentCallback'),
|
|
|
|
$this->tokens[$i][1]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-21 17:56:07 +01:00
|
|
|
/*
|
|
|
|
* This method is a callback for restoring EMU sequences in
|
|
|
|
* multichar tokens (like strings) to their original value.
|
|
|
|
*/
|
2011-12-18 13:04:27 +01:00
|
|
|
public function restoreContentCallback(array $matches) {
|
|
|
|
if ('BINARY' === $matches[1]) {
|
|
|
|
return $matches[2];
|
|
|
|
} else {
|
|
|
|
return $matches[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-05 17:34:27 +02:00
|
|
|
public function getNextToken(&$value = null, &$startAttributes = null, &$endAttributes = null) {
|
|
|
|
$token = parent::getNextToken($value, $startAttributes, $endAttributes);
|
2011-12-18 13:04:27 +01:00
|
|
|
|
2012-02-21 17:56:07 +01:00
|
|
|
// replace new keywords by their respective tokens. This is not done
|
|
|
|
// if we currently are in an object access (e.g. in $obj->namespace
|
|
|
|
// "namespace" stays a T_STRING tokens and isn't converted to T_NAMESPACE)
|
2011-12-18 13:04:27 +01:00
|
|
|
if (PHPParser_Parser::T_STRING === $token && !$this->inObjectAccess) {
|
2012-04-25 20:04:46 +02:00
|
|
|
if (isset($this->newKeywords[strtolower($value)])) {
|
|
|
|
return $this->newKeywords[strtolower($value)];
|
2011-12-18 13:04:27 +01:00
|
|
|
}
|
2012-02-21 17:56:07 +01:00
|
|
|
// keep track of whether we currently are in an object access (after ->)
|
2011-12-18 13:04:27 +01:00
|
|
|
} elseif (PHPParser_Parser::T_OBJECT_OPERATOR === $token) {
|
|
|
|
$this->inObjectAccess = true;
|
|
|
|
} else {
|
|
|
|
$this->inObjectAccess = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $token;
|
|
|
|
}
|
|
|
|
}
|