123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OC\DB\QueryBuilder\ExpressionBuilder;
- use Doctrine\DBAL\Query\Expression\ExpressionBuilder as DoctrineExpressionBuilder;
- use OC\DB\ConnectionAdapter;
- use OC\DB\QueryBuilder\CompositeExpression;
- use OC\DB\QueryBuilder\FunctionBuilder\FunctionBuilder;
- use OC\DB\QueryBuilder\Literal;
- use OC\DB\QueryBuilder\QueryFunction;
- use OC\DB\QueryBuilder\QuoteHelper;
- use OCP\DB\QueryBuilder\ICompositeExpression;
- use OCP\DB\QueryBuilder\IExpressionBuilder;
- use OCP\DB\QueryBuilder\ILiteral;
- use OCP\DB\QueryBuilder\IParameter;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\DB\QueryBuilder\IQueryFunction;
- use OCP\IDBConnection;
- class ExpressionBuilder implements IExpressionBuilder {
- /** @var \Doctrine\DBAL\Query\Expression\ExpressionBuilder */
- protected $expressionBuilder;
- /** @var QuoteHelper */
- protected $helper;
- /** @var IDBConnection */
- protected $connection;
- /** @var FunctionBuilder */
- protected $functionBuilder;
- /**
- * Initializes a new <tt>ExpressionBuilder</tt>.
- *
- * @param ConnectionAdapter $connection
- * @param IQueryBuilder $queryBuilder
- */
- public function __construct(ConnectionAdapter $connection, IQueryBuilder $queryBuilder) {
- $this->connection = $connection;
- $this->helper = new QuoteHelper();
- $this->expressionBuilder = new DoctrineExpressionBuilder($connection->getInner());
- $this->functionBuilder = $queryBuilder->func();
- }
- /**
- * Creates a conjunction of the given boolean expressions.
- *
- * Example:
- *
- * [php]
- * // (u.type = ?) AND (u.role = ?)
- * $expr->andX('u.type = ?', 'u.role = ?'));
- *
- * @param mixed ...$x Optional clause. Defaults = null, but requires
- * at least one defined when converting to string.
- *
- * @return \OCP\DB\QueryBuilder\ICompositeExpression
- */
- public function andX(...$x): ICompositeExpression {
- $compositeExpression = call_user_func_array([$this->expressionBuilder, 'andX'], $x);
- return new CompositeExpression($compositeExpression);
- }
- /**
- * Creates a disjunction of the given boolean expressions.
- *
- * Example:
- *
- * [php]
- * // (u.type = ?) OR (u.role = ?)
- * $qb->where($qb->expr()->orX('u.type = ?', 'u.role = ?'));
- *
- * @param mixed ...$x Optional clause. Defaults = null, but requires
- * at least one defined when converting to string.
- *
- * @return \OCP\DB\QueryBuilder\ICompositeExpression
- */
- public function orX(...$x): ICompositeExpression {
- $compositeExpression = call_user_func_array([$this->expressionBuilder, 'orX'], $x);
- return new CompositeExpression($compositeExpression);
- }
- /**
- * Creates a comparison expression.
- *
- * @param mixed $x The left expression.
- * @param string $operator One of the IExpressionBuilder::* constants.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function comparison($x, string $operator, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->comparison($x, $operator, $y);
- }
- /**
- * Creates an equality comparison expression with the given arguments.
- *
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> = <right expr>. Example:
- *
- * [php]
- * // u.id = ?
- * $expr->eq('u.id', '?');
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function eq($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->eq($x, $y);
- }
- /**
- * Creates a non equality comparison expression with the given arguments.
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> <> <right expr>. Example:
- *
- * [php]
- * // u.id <> 1
- * $q->where($q->expr()->neq('u.id', '1'));
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function neq($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->neq($x, $y);
- }
- /**
- * Creates a lower-than comparison expression with the given arguments.
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> < <right expr>. Example:
- *
- * [php]
- * // u.id < ?
- * $q->where($q->expr()->lt('u.id', '?'));
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function lt($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->lt($x, $y);
- }
- /**
- * Creates a lower-than-equal comparison expression with the given arguments.
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> <= <right expr>. Example:
- *
- * [php]
- * // u.id <= ?
- * $q->where($q->expr()->lte('u.id', '?'));
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function lte($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->lte($x, $y);
- }
- /**
- * Creates a greater-than comparison expression with the given arguments.
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> > <right expr>. Example:
- *
- * [php]
- * // u.id > ?
- * $q->where($q->expr()->gt('u.id', '?'));
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function gt($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->gt($x, $y);
- }
- /**
- * Creates a greater-than-equal comparison expression with the given arguments.
- * First argument is considered the left expression and the second is the right expression.
- * When converted to string, it will generated a <left expr> >= <right expr>. Example:
- *
- * [php]
- * // u.id >= ?
- * $q->where($q->expr()->gte('u.id', '?'));
- *
- * @param mixed $x The left expression.
- * @param mixed $y The right expression.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function gte($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->gte($x, $y);
- }
- /**
- * Creates an IS NULL expression with the given arguments.
- *
- * @param string|ILiteral|IParameter|IQueryFunction $x The field in string format to be restricted by IS NULL.
- *
- * @return string
- */
- public function isNull($x): string {
- $x = $this->helper->quoteColumnName($x);
- return $this->expressionBuilder->isNull($x);
- }
- /**
- * Creates an IS NOT NULL expression with the given arguments.
- *
- * @param string|ILiteral|IParameter|IQueryFunction $x The field in string format to be restricted by IS NOT NULL.
- *
- * @return string
- */
- public function isNotNull($x): string {
- $x = $this->helper->quoteColumnName($x);
- return $this->expressionBuilder->isNotNull($x);
- }
- /**
- * Creates a LIKE() comparison expression with the given arguments.
- *
- * @param ILiteral|IParameter|IQueryFunction|string $x Field in string format to be inspected by LIKE() comparison.
- * @param mixed $y Argument to be used in LIKE() comparison.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function like($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->like($x, $y);
- }
- /**
- * Creates a ILIKE() comparison expression with the given arguments.
- *
- * @param string $x Field in string format to be inspected by ILIKE() comparison.
- * @param mixed $y Argument to be used in ILIKE() comparison.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- * @since 9.0.0
- */
- public function iLike($x, $y, $type = null): string {
- return $this->expressionBuilder->like($this->functionBuilder->lower($x), $this->functionBuilder->lower($y));
- }
- /**
- * Creates a NOT LIKE() comparison expression with the given arguments.
- *
- * @param ILiteral|IParameter|IQueryFunction|string $x Field in string format to be inspected by NOT LIKE() comparison.
- * @param mixed $y Argument to be used in NOT LIKE() comparison.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function notLike($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnName($y);
- return $this->expressionBuilder->notLike($x, $y);
- }
- /**
- * Creates a IN () comparison expression with the given arguments.
- *
- * @param ILiteral|IParameter|IQueryFunction|string $x The field in string format to be inspected by IN() comparison.
- * @param ILiteral|IParameter|IQueryFunction|string|array $y The placeholder or the array of values to be used by IN() comparison.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function in($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnNames($y);
- return $this->expressionBuilder->in($x, $y);
- }
- /**
- * Creates a NOT IN () comparison expression with the given arguments.
- *
- * @param ILiteral|IParameter|IQueryFunction|string $x The field in string format to be inspected by NOT IN() comparison.
- * @param ILiteral|IParameter|IQueryFunction|string|array $y The placeholder or the array of values to be used by NOT IN() comparison.
- * @param mixed|null $type one of the IQueryBuilder::PARAM_* constants
- * required when comparing text fields for oci compatibility
- *
- * @return string
- */
- public function notIn($x, $y, $type = null): string {
- $x = $this->helper->quoteColumnName($x);
- $y = $this->helper->quoteColumnNames($y);
- return $this->expressionBuilder->notIn($x, $y);
- }
- /**
- * Creates a $x = '' statement, because Oracle needs a different check
- *
- * @param string|ILiteral|IParameter|IQueryFunction $x The field in string format to be inspected by the comparison.
- * @return string
- * @since 13.0.0
- */
- public function emptyString($x): string {
- return $this->eq($x, $this->literal('', IQueryBuilder::PARAM_STR));
- }
- /**
- * Creates a `$x <> ''` statement, because Oracle needs a different check
- *
- * @param string|ILiteral|IParameter|IQueryFunction $x The field in string format to be inspected by the comparison.
- * @return string
- * @since 13.0.0
- */
- public function nonEmptyString($x): string {
- return $this->neq($x, $this->literal('', IQueryBuilder::PARAM_STR));
- }
- /**
- * Binary AND Operator copies a bit to the result if it exists in both operands.
- *
- * @param string|ILiteral $x The field or value to check
- * @param int $y Bitmap that must be set
- * @return IQueryFunction
- * @since 12.0.0
- */
- public function bitwiseAnd($x, int $y): IQueryFunction {
- return new QueryFunction($this->connection->getDatabasePlatform()->getBitAndComparisonExpression(
- $this->helper->quoteColumnName($x),
- $y
- ));
- }
- /**
- * Binary OR Operator copies a bit if it exists in either operand.
- *
- * @param string|ILiteral $x The field or value to check
- * @param int $y Bitmap that must be set
- * @return IQueryFunction
- * @since 12.0.0
- */
- public function bitwiseOr($x, int $y): IQueryFunction {
- return new QueryFunction($this->connection->getDatabasePlatform()->getBitOrComparisonExpression(
- $this->helper->quoteColumnName($x),
- $y
- ));
- }
- /**
- * Quotes a given input parameter.
- *
- * @param mixed $input The parameter to be quoted.
- * @param int $type One of the IQueryBuilder::PARAM_* constants
- *
- * @return ILiteral
- */
- public function literal($input, $type = IQueryBuilder::PARAM_STR): ILiteral {
- return new Literal($this->expressionBuilder->literal($input, $type));
- }
- /**
- * Returns a IQueryFunction that casts the column to the given type
- *
- * @param string|IQueryFunction $column
- * @param mixed $type One of IQueryBuilder::PARAM_*
- * @psalm-param IQueryBuilder::PARAM_* $type
- * @return IQueryFunction
- */
- public function castColumn($column, $type): IQueryFunction {
- return new QueryFunction(
- $this->helper->quoteColumnName($column)
- );
- }
- }
|