SubstringFunction.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. *
  15. * This software consists of voluntary contributions made by many individuals
  16. * and is licensed under the LGPL. For more information, see
  17. * <http://www.doctrine-project.org>.
  18. */
  19. namespace Doctrine\ORM\Query\AST\Functions;
  20. use Doctrine\ORM\Query\Lexer;
  21. /**
  22. * "SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")"
  23. *
  24. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  25. * @link www.doctrine-project.org
  26. * @since 2.0
  27. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  28. * @author Jonathan Wage <jonwage@gmail.com>
  29. * @author Roman Borschel <roman@code-factory.org>
  30. * @author Benjamin Eberlei <kontakt@beberlei.de>
  31. */
  32. class SubstringFunction extends FunctionNode
  33. {
  34. public $stringPrimary;
  35. public $firstSimpleArithmeticExpression;
  36. public $secondSimpleArithmeticExpression = null;
  37. /**
  38. * @override
  39. */
  40. public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker)
  41. {
  42. $optionalSecondSimpleArithmeticExpression = null;
  43. if ($this->secondSimpleArithmeticExpression !== null) {
  44. $optionalSecondSimpleArithmeticExpression = $sqlWalker->walkSimpleArithmeticExpression($this->secondSimpleArithmeticExpression);
  45. }
  46. return $sqlWalker->getConnection()->getDatabasePlatform()->getSubstringExpression(
  47. $sqlWalker->walkStringPrimary($this->stringPrimary),
  48. $sqlWalker->walkSimpleArithmeticExpression($this->firstSimpleArithmeticExpression),
  49. $optionalSecondSimpleArithmeticExpression
  50. );
  51. }
  52. /**
  53. * @override
  54. */
  55. public function parse(\Doctrine\ORM\Query\Parser $parser)
  56. {
  57. $parser->match(Lexer::T_IDENTIFIER);
  58. $parser->match(Lexer::T_OPEN_PARENTHESIS);
  59. $this->stringPrimary = $parser->StringPrimary();
  60. $parser->match(Lexer::T_COMMA);
  61. $this->firstSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
  62. $lexer = $parser->getLexer();
  63. if ($lexer->isNextToken(Lexer::T_COMMA)) {
  64. $parser->match(Lexer::T_COMMA);
  65. $this->secondSimpleArithmeticExpression = $parser->SimpleArithmeticExpression();
  66. }
  67. $parser->match(Lexer::T_CLOSE_PARENTHESIS);
  68. }
  69. }