. */ /** * SelectExpression ::= IdentificationVariable ["." "*"] | StateFieldPathExpression | * (AggregateExpression | "(" Subselect ")") [["AS"] FieldAliasIdentificationVariable] * * @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; protected $_expression = null; protected $_fieldIdentificationVariable = null; public function syntax() { // SelectExpression ::= IdentificationVariable ["." "*"] | StateFieldPathExpression | // (AggregateExpression | "(" Subselect ")") [["AS"] FieldAliasIdentificationVariable] $this->_AST = $this->AST('SelectExpression'); // First we recognize for an IdentificationVariable (Component alias) if ($this->_isIdentificationVariable()) { $this->_expression = $this->parse('IdentificationVariable'); // Inspecting if we are in a ["." "*"] if ($this->_isNextToken('.')) { $this->_parser->match('.'); $this->_parser->match('*'); } } else if (($isFunction = $this->_isFunction()) !== false || $this->_isSubselect()) { $this->_expression = $this->parse($isFunction ? 'AggregateExpression' : 'Subselect'); if ($this->_isNextToken(Doctrine_ORM_Query_Token::T_AS)) { $this->_parser->match(Doctrine_ORM_Query_Token::T_AS); $this->_fieldIdentificationVariable = $this->parse('FieldAliasIdentificationVariable'); } elseif ($this->_isNextToken(Doctrine_ORM_Query_Token::T_IDENTIFIER)) { $this->_fieldIdentificationVariable = $this->parse('FieldAliasIdentificationVariable'); } } else { $this->_expression = $this->parse('StateFieldPathExpression'); } } public function semantical() { $this->_AST->setExpression($this->_expression->semantical()); if ($this->_fieldIdentificationVariable !== null) { $this->_AST->setFieldIdentificationVariable($this->_fieldIdentificationVariable->semantical()); } // Return AST node return $this->_AST; } protected function _isIdentificationVariable() { // Trying 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) { return true; } return false; } }