. */ namespace Doctrine\ORM\Query\AST\Functions; use Doctrine\ORM\Query\Lexer; /** * "TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")" * * @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 TrimFunction extends FunctionNode { public $leading; public $trailing; public $both; public $trimChar; public $stringPrimary; /** * @override */ public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) { $sql = 'TRIM('; if ($this->leading) { $sql .= 'LEADING '; } else if ($this->trailing) { $sql .= 'TRAILING '; } else if ($this->both) { $sql .= 'BOTH '; } if ($this->trimChar) { $sql .= $sqlWalker->getConnection()->quote($this->trimChar) . ' '; } return $sql . 'FROM ' . $sqlWalker->walkStringPrimary($this->stringPrimary) . ')'; } /** * @override */ public function parse(\Doctrine\ORM\Query\Parser $parser) { $lexer = $parser->getLexer(); $parser->match($lexer->lookahead['value']); $parser->match('('); if (strcasecmp('leading', $lexer->lookahead['value']) === 0) { $parser->match($lexer->lookahead['value']); $this->leading = true; } else if (strcasecmp('trailing', $lexer->lookahead['value']) === 0) { $parser->match($lexer->lookahead['value']); $this->trailing = true; } else if (strcasecmp('both', $lexer->lookahead['value']) === 0) { $parser->match($lexer->lookahead['value']); $this->both = true; } if ($lexer->isNextToken(Lexer::T_STRING)) { $parser->match(Lexer::T_STRING); $this->trimChar = $lexer->token['value']; } if ($this->leading || $this->trailing || $this->both || $this->trimChar) { $parser->match(Lexer::T_FROM); } $this->stringPrimary = $parser->StringPrimary(); $parser->match(')'); } }