2009-03-23 20:39:33 +03:00
|
|
|
<?php
|
2009-08-07 01:42:07 +04:00
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.doctrine-project.org>.
|
2009-03-23 20:39:33 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Query\AST\Functions;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Query\Lexer;
|
2010-02-12 00:19:54 +03:00
|
|
|
use Doctrine\DBAL\Platforms\AbstractPlatform;
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* "TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")"
|
|
|
|
*
|
2009-08-07 01:42:07 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2010-08-08 13:49:39 +04:00
|
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
2009-03-23 20:39:33 +03:00
|
|
|
*/
|
|
|
|
class TrimFunction extends FunctionNode
|
|
|
|
{
|
2009-08-07 01:42:07 +04:00
|
|
|
public $leading;
|
|
|
|
public $trailing;
|
|
|
|
public $both;
|
2010-02-12 00:19:54 +03:00
|
|
|
public $trimChar = false;
|
2009-08-07 01:42:07 +04:00
|
|
|
public $stringPrimary;
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
|
|
|
|
{
|
2010-02-12 00:19:54 +03:00
|
|
|
$pos = AbstractPlatform::TRIM_UNSPECIFIED;
|
2009-08-07 01:42:07 +04:00
|
|
|
if ($this->leading) {
|
2010-02-12 00:19:54 +03:00
|
|
|
$pos = AbstractPlatform::TRIM_LEADING;
|
2009-08-07 01:42:07 +04:00
|
|
|
} else if ($this->trailing) {
|
2010-02-12 00:19:54 +03:00
|
|
|
$pos = AbstractPlatform::TRIM_TRAILING;
|
2009-08-07 01:42:07 +04:00
|
|
|
} else if ($this->both) {
|
2010-02-12 00:19:54 +03:00
|
|
|
$pos = AbstractPlatform::TRIM_BOTH;
|
2009-08-07 01:42:07 +04:00
|
|
|
}
|
2010-02-12 00:19:54 +03:00
|
|
|
|
|
|
|
return $sqlWalker->getConnection()->getDatabasePlatform()->getTrimExpression(
|
|
|
|
$sqlWalker->walkStringPrimary($this->stringPrimary),
|
|
|
|
$pos,
|
|
|
|
($this->trimChar != false) ? $sqlWalker->getConnection()->quote($this->trimChar) : false
|
|
|
|
);
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @override
|
|
|
|
*/
|
|
|
|
public function parse(\Doctrine\ORM\Query\Parser $parser)
|
|
|
|
{
|
|
|
|
$lexer = $parser->getLexer();
|
2010-02-12 00:19:54 +03:00
|
|
|
|
2009-11-04 04:52:40 +03:00
|
|
|
$parser->match(Lexer::T_IDENTIFIER);
|
|
|
|
$parser->match(Lexer::T_OPEN_PARENTHESIS);
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
if (strcasecmp('leading', $lexer->lookahead['value']) === 0) {
|
2009-11-04 04:52:40 +03:00
|
|
|
$parser->match(Lexer::T_LEADING);
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->leading = true;
|
2009-03-23 20:39:33 +03:00
|
|
|
} else if (strcasecmp('trailing', $lexer->lookahead['value']) === 0) {
|
2009-11-04 04:52:40 +03:00
|
|
|
$parser->match(Lexer::T_TRAILING);
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->trailing = true;
|
2009-03-23 20:39:33 +03:00
|
|
|
} else if (strcasecmp('both', $lexer->lookahead['value']) === 0) {
|
2009-11-04 04:52:40 +03:00
|
|
|
$parser->match(Lexer::T_BOTH);
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->both = true;
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($lexer->isNextToken(Lexer::T_STRING)) {
|
|
|
|
$parser->match(Lexer::T_STRING);
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->trimChar = $lexer->token['value'];
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|
|
|
|
|
2009-08-07 01:42:07 +04:00
|
|
|
if ($this->leading || $this->trailing || $this->both || $this->trimChar) {
|
2009-03-23 20:39:33 +03:00
|
|
|
$parser->match(Lexer::T_FROM);
|
|
|
|
}
|
|
|
|
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->stringPrimary = $parser->StringPrimary();
|
2010-02-12 00:19:54 +03:00
|
|
|
|
2009-11-04 04:52:40 +03:00
|
|
|
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|
2010-02-12 00:19:54 +03:00
|
|
|
|
2009-03-23 20:39:33 +03:00
|
|
|
}
|