. */ namespace Doctrine\ORM\Query\AST\Functions; /** * "LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")" * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision: 3938 $ * @author Guilherme Blanco * @author Jonathan Wage * @author Roman Borschel */ class LocateFunction extends FunctionNode { public $firstStringPrimary; public $secondStringPrimary; public $simpleArithmeticExpression; /** * @override */ public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) { //TODO: Use platform to get SQL return 'LOCATE(' . $sqlWalker->walkStringPrimary($this->firstStringPrimary) . ', ' . $sqlWalker->walkStringPrimary($this->secondStringPrimary) . (($this->simpleArithmeticExpression) ? ', ' . $sqlWalker->walkSimpleArithmeticExpression($this->simpleArithmeticExpression) : '' ) . ')'; } /** * @override */ public function parse(\Doctrine\ORM\Query\Parser $parser) { $lexer = $parser->getLexer(); $parser->match($lexer->lookahead['value']); $parser->match('('); $this->firstStringPrimary = $parser->StringPrimary(); $parser->match(','); $this->secondStringPrimary = $parser->StringPrimary(); if ($lexer->isNextToken(',')) { $parser->match(','); $this->simpleArithmeticExpression = $parser->SimpleArithmeticExpression(); } $parser->match(')'); } }