AST
9 months ago
Exec
9 months ago
Expr
9 months ago
Filter
9 months ago
Expr.php
9 months ago
FilterCollection.php
9 months ago
Lexer.php
9 months ago
OutputWalker.php
9 months ago
Parameter.php
9 months ago
ParameterTypeInferer.php
9 months ago
Parser.php
9 months ago
ParserResult.php
9 months ago
Printer.php
9 months ago
QueryException.php
9 months ago
QueryExpressionVisitor.php
9 months ago
ResultSetMapping.php
9 months ago
ResultSetMappingBuilder.php
9 months ago
SqlOutputWalker.php
9 months ago
SqlWalker.php
9 months ago
TokenType.php
9 months ago
TreeWalker.php
9 months ago
TreeWalkerAdapter.php
9 months ago
TreeWalkerChain.php
9 months ago
TreeWalkerChainIterator.php
9 months ago
index.php
9 months ago
TreeWalkerAdapter.php
250 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Query; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use MailPoetVendor\Doctrine\Deprecations\Deprecation; |
| 6 | use MailPoetVendor\Doctrine\ORM\AbstractQuery; |
| 7 | use MailPoetVendor\Doctrine\ORM\Mapping\ClassMetadata; |
| 8 | use LogicException; |
| 9 | use function array_diff; |
| 10 | use function array_keys; |
| 11 | use function debug_backtrace; |
| 12 | use function is_a; |
| 13 | use function sprintf; |
| 14 | use const DEBUG_BACKTRACE_IGNORE_ARGS; |
| 15 | abstract class TreeWalkerAdapter implements TreeWalker |
| 16 | { |
| 17 | private $query; |
| 18 | private $parserResult; |
| 19 | private $queryComponents; |
| 20 | public function __construct($query, $parserResult, array $queryComponents) |
| 21 | { |
| 22 | $this->query = $query; |
| 23 | $this->parserResult = $parserResult; |
| 24 | $this->queryComponents = $queryComponents; |
| 25 | } |
| 26 | public function getQueryComponents() |
| 27 | { |
| 28 | return $this->queryComponents; |
| 29 | } |
| 30 | public function setQueryComponent($dqlAlias, array $queryComponent) |
| 31 | { |
| 32 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); |
| 33 | if (!isset($trace[1]['class']) || !is_a($trace[1]['class'], self::class, \true)) { |
| 34 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method %s will be protected in 3.0. Calling it publicly is deprecated.', __METHOD__); |
| 35 | } |
| 36 | $requiredKeys = ['metadata', 'parent', 'relation', 'map', 'nestingLevel', 'token']; |
| 37 | if (array_diff($requiredKeys, array_keys($queryComponent))) { |
| 38 | throw QueryException::invalidQueryComponent($dqlAlias); |
| 39 | } |
| 40 | $this->queryComponents[$dqlAlias] = $queryComponent; |
| 41 | } |
| 42 | protected function _getQueryComponents() |
| 43 | { |
| 44 | Deprecation::triggerIfCalledFromOutside('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method %s is deprecated, call getQueryComponents() instead.', __METHOD__); |
| 45 | return $this->queryComponents; |
| 46 | } |
| 47 | protected function _getQuery() |
| 48 | { |
| 49 | return $this->query; |
| 50 | } |
| 51 | protected function _getParserResult() |
| 52 | { |
| 53 | return $this->parserResult; |
| 54 | } |
| 55 | public function walkSelectStatement(AST\SelectStatement $AST) |
| 56 | { |
| 57 | } |
| 58 | public function walkSelectClause($selectClause) |
| 59 | { |
| 60 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 61 | } |
| 62 | public function walkFromClause($fromClause) |
| 63 | { |
| 64 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 65 | } |
| 66 | public function walkFunction($function) |
| 67 | { |
| 68 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 69 | } |
| 70 | public function walkOrderByClause($orderByClause) |
| 71 | { |
| 72 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 73 | } |
| 74 | public function walkOrderByItem($orderByItem) |
| 75 | { |
| 76 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 77 | } |
| 78 | public function walkHavingClause($havingClause) |
| 79 | { |
| 80 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 81 | } |
| 82 | public function walkJoin($join) |
| 83 | { |
| 84 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 85 | } |
| 86 | public function walkSelectExpression($selectExpression) |
| 87 | { |
| 88 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 89 | } |
| 90 | public function walkQuantifiedExpression($qExpr) |
| 91 | { |
| 92 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 93 | } |
| 94 | public function walkSubselect($subselect) |
| 95 | { |
| 96 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 97 | } |
| 98 | public function walkSubselectFromClause($subselectFromClause) |
| 99 | { |
| 100 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 101 | } |
| 102 | public function walkSimpleSelectClause($simpleSelectClause) |
| 103 | { |
| 104 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 105 | } |
| 106 | public function walkSimpleSelectExpression($simpleSelectExpression) |
| 107 | { |
| 108 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 109 | } |
| 110 | public function walkAggregateExpression($aggExpression) |
| 111 | { |
| 112 | } |
| 113 | public function walkGroupByClause($groupByClause) |
| 114 | { |
| 115 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 116 | } |
| 117 | public function walkGroupByItem($groupByItem) |
| 118 | { |
| 119 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 120 | } |
| 121 | public function walkUpdateStatement(AST\UpdateStatement $AST) |
| 122 | { |
| 123 | } |
| 124 | public function walkDeleteStatement(AST\DeleteStatement $AST) |
| 125 | { |
| 126 | } |
| 127 | public function walkDeleteClause(AST\DeleteClause $deleteClause) |
| 128 | { |
| 129 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 130 | } |
| 131 | public function walkUpdateClause($updateClause) |
| 132 | { |
| 133 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 134 | } |
| 135 | public function walkUpdateItem($updateItem) |
| 136 | { |
| 137 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 138 | } |
| 139 | public function walkWhereClause($whereClause) |
| 140 | { |
| 141 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 142 | } |
| 143 | public function walkConditionalExpression($condExpr) |
| 144 | { |
| 145 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 146 | } |
| 147 | public function walkConditionalTerm($condTerm) |
| 148 | { |
| 149 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 150 | } |
| 151 | public function walkConditionalFactor($factor) |
| 152 | { |
| 153 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 154 | } |
| 155 | public function walkConditionalPrimary($primary) |
| 156 | { |
| 157 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 158 | } |
| 159 | public function walkExistsExpression($existsExpr) |
| 160 | { |
| 161 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 162 | } |
| 163 | public function walkCollectionMemberExpression($collMemberExpr) |
| 164 | { |
| 165 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 166 | } |
| 167 | public function walkEmptyCollectionComparisonExpression($emptyCollCompExpr) |
| 168 | { |
| 169 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 170 | } |
| 171 | public function walkNullComparisonExpression($nullCompExpr) |
| 172 | { |
| 173 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 174 | } |
| 175 | public function walkInExpression($inExpr) |
| 176 | { |
| 177 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 178 | } |
| 179 | public function walkInstanceOfExpression($instanceOfExpr) |
| 180 | { |
| 181 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 182 | } |
| 183 | public function walkLiteral($literal) |
| 184 | { |
| 185 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 186 | } |
| 187 | public function walkBetweenExpression($betweenExpr) |
| 188 | { |
| 189 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 190 | } |
| 191 | public function walkLikeExpression($likeExpr) |
| 192 | { |
| 193 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 194 | } |
| 195 | public function walkStateFieldPathExpression($stateFieldPathExpression) |
| 196 | { |
| 197 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 198 | } |
| 199 | public function walkComparisonExpression($compExpr) |
| 200 | { |
| 201 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 202 | } |
| 203 | public function walkInputParameter($inputParam) |
| 204 | { |
| 205 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 206 | } |
| 207 | public function walkArithmeticExpression($arithmeticExpr) |
| 208 | { |
| 209 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 210 | } |
| 211 | public function walkArithmeticTerm($term) |
| 212 | { |
| 213 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 214 | } |
| 215 | public function walkStringPrimary($stringPrimary) |
| 216 | { |
| 217 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 218 | } |
| 219 | public function walkArithmeticFactor($factor) |
| 220 | { |
| 221 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 222 | } |
| 223 | public function walkSimpleArithmeticExpression($simpleArithmeticExpr) |
| 224 | { |
| 225 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 226 | } |
| 227 | public function walkPathExpression($pathExpr) |
| 228 | { |
| 229 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 230 | } |
| 231 | public function walkResultVariable($resultVariable) |
| 232 | { |
| 233 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 234 | } |
| 235 | public function getExecutor($AST) |
| 236 | { |
| 237 | Deprecation::trigger('doctrine/orm', 'https://github.com/doctrine/orm/pull/9551', 'Method "%s" is deprecated and will be removed in ORM 3.0 without replacement.', __METHOD__); |
| 238 | return null; |
| 239 | } |
| 240 | protected final function getMetadataForDqlAlias(string $dqlAlias) : ClassMetadata |
| 241 | { |
| 242 | // @phpstan-ignore method.deprecated |
| 243 | $metadata = $this->_getQueryComponents()[$dqlAlias]['metadata'] ?? null; |
| 244 | if ($metadata === null) { |
| 245 | throw new LogicException(sprintf('No metadata for DQL alias: %s', $dqlAlias)); |
| 246 | } |
| 247 | return $metadata; |
| 248 | } |
| 249 | } |
| 250 |