. */ /** * SelectExpression ::= IdentificationVariable ["." "*"] | * (StateFieldPathExpression | AggregateExpression | "(" Subselect ")" ) * [["AS"] FieldIdentificationVariable] * * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 1.0 * @version $Revision$ */ class Doctrine_ORM_Query_Parser_SelectExpression extends Doctrine_ORM_Query_ParserRule { protected $_AST = null; public function syntax($paramHolder) { // SelectExpression ::= IdentificationVariable ["." "*"] | // (StateFieldPathExpression | AggregateExpression | "(" Subselect ")" ) // [["AS"] FieldIdentificationVariable] // First we recognize for an IdentificationVariable (Component alias) if ($this->_isIdentificationVariable()) { $identificationVariable = $this->parse('IdentificationVariable', $paramHolder); // Inspecting if we are in a ["." "*"] if ($this->_isNextToken('.')) { $this->_parser->match('.'); $this->_parser->match('*'); } return $identificationVariable; } } protected function _isIdentificationVariable() { // Retrying to recoginize this grammar: IdentificationVariable ["." "*"] $token = $this->_parser->lookahead; $this->_parser->getScanner()->resetPeek(); // We have an identifier here if ($token['type'] === Doctrine_ORM_Query_Token::T_IDENTIFIER) { $token = $this->_parser->getScanner()->peek(); // If we have a dot ".", then next char must be the "*" if ($token['value'] === '.') { $token = $this->_parser->getScanner()->peek(); return $token['value'] === '*'; } } return false; } }