. */ /** * SimpleStateFieldPathExpression ::= IdentificationVariable "." SimpleStateField * * @author Guilherme Blanco * @author Janne Vanhala * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link http://www.phpdoctrine.org * @since 2.0 * @version $Revision$ */ class Doctrine_ORM_Query_Parser_SimpleStateFieldPathExpression extends Doctrine_ORM_Query_ParserRule { protected $_AST = null; public function syntax($paramHolder) { // SimpleStateFieldPathExpression ::= IdentificationVariable "." SimpleStateField $this->_AST = $this->AST('SimpleStateFieldPathExpression'); $this->_AST->setIdentificationVariable($this->parse('IdentificationVariable', $paramHolder)); $this->_parser->match('.'); $this->_AST->setSimpleStateField($this->parse('SimpleStateField', $paramHolder)); } public function semantical($paramHolder) { $parserResult = $this->_parser->getParserResult(); $componentAlias = $this->_AST->getIdentificationVariable()->getComponentAlias(); $componentFieldName = $this->_AST->getSimpleStateField()->getFieldName(); // We need to make sure field exists try { $queryComponent = $parserResult->getQueryComponent($componentAlias); $classMetadata = $queryComponent['metadata']; } catch (Doctrine_Exception $e) { $this->_parser->semanticalError($e->getMessage()); return; } if ($classMetadata instanceof Doctrine_ClassMetadata && ! $classMetadata->hasField($componentFieldName)) { $this->_parser->semanticalError( "Cannot use key mapping. Field '" . $componentFieldName . "' " . "does not exist in component '" . $classMetadata->getClassName() . "'.", $this->_parser->token ); } // Return AST node return $this->_AST; } }