| Total Complexity | 81 |
| Total Lines | 554 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like AbstractCommand often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AbstractCommand, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 69 | abstract class AbstractCommand implements CommandInterface, ProfilerAwareInterface |
||
| 70 | { |
||
| 71 | use LoggerAwareTrait; |
||
| 72 | use ProfilerAwareTrait; |
||
| 73 | |||
| 74 | protected string|null $isolationLevel = null; |
||
| 75 | protected string|null $refreshTableName = null; |
||
| 76 | protected Closure|null $retryHandler = null; |
||
| 77 | private string $sql = ''; |
||
| 78 | /** * @var ParamInterface[] */ |
||
| 79 | protected array $params = []; |
||
| 80 | |||
| 81 | public function addCheck(string $name, string $table, string $expression): static |
||
| 82 | { |
||
| 83 | $sql = $this->queryBuilder()->addCheck($name, $table, $expression); |
||
| 84 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 85 | } |
||
| 86 | |||
| 87 | public function addColumn(string $table, string $column, string $type): static |
||
| 88 | { |
||
| 89 | $sql = $this->queryBuilder()->addColumn($table, $column, $type); |
||
| 90 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 91 | } |
||
| 92 | |||
| 93 | public function addCommentOnColumn(string $table, string $column, string $comment): static |
||
| 94 | { |
||
| 95 | $sql = $this->queryBuilder()->addCommentOnColumn($table, $column, $comment); |
||
| 96 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 97 | } |
||
| 98 | |||
| 99 | public function addCommentOnTable(string $table, string $comment): static |
||
| 100 | { |
||
| 101 | $sql = $this->queryBuilder()->addCommentOnTable($table, $comment); |
||
| 102 | return $this->setSql($sql); |
||
| 103 | } |
||
| 104 | |||
| 105 | public function addDefaultValue(string $name, string $table, string $column, mixed $value): static |
||
| 109 | } |
||
| 110 | |||
| 111 | public function addForeignKey( |
||
| 112 | string $name, |
||
| 113 | string $table, |
||
| 114 | array|string $columns, |
||
| 115 | string $refTable, |
||
| 116 | array|string $refColumns, |
||
| 117 | string $delete = null, |
||
| 118 | string $update = null |
||
| 119 | ): static { |
||
| 120 | $sql = $this->queryBuilder()->addForeignKey( |
||
| 121 | $name, |
||
| 122 | $table, |
||
| 123 | $columns, |
||
| 124 | $refTable, |
||
| 125 | $refColumns, |
||
| 126 | $delete, |
||
| 127 | $update |
||
| 128 | ); |
||
| 129 | |||
| 130 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 131 | } |
||
| 132 | |||
| 133 | public function addPrimaryKey(string $name, string $table, array|string $columns): static |
||
| 134 | { |
||
| 135 | $sql = $this->queryBuilder()->addPrimaryKey($name, $table, $columns); |
||
| 136 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 137 | } |
||
| 138 | |||
| 139 | public function addUnique(string $name, string $table, array|string $columns): static |
||
| 143 | } |
||
| 144 | |||
| 145 | public function alterColumn(string $table, string $column, string $type): static |
||
| 146 | { |
||
| 147 | $sql = $this->queryBuilder()->alterColumn($table, $column, $type); |
||
| 148 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 149 | } |
||
| 150 | |||
| 151 | public function batchInsert(string $table, array $columns, iterable $rows): static |
||
| 152 | { |
||
| 153 | $table = $this->queryBuilder()->quoter()->quoteSql($table); |
||
| 154 | |||
| 155 | /** @psalm-var string[] $columns */ |
||
| 156 | foreach ($columns as &$column) { |
||
| 157 | $column = $this->queryBuilder()->quoter()->quoteSql($column); |
||
| 158 | } |
||
| 159 | |||
| 160 | unset($column); |
||
| 161 | |||
| 162 | $params = []; |
||
| 163 | $sql = $this->queryBuilder()->batchInsert($table, $columns, $rows, $params); |
||
| 164 | |||
| 165 | $this->setRawSql($sql); |
||
| 166 | $this->bindValues($params); |
||
| 167 | return $this; |
||
| 168 | } |
||
| 169 | |||
| 170 | abstract public function bindValue(int|string $name, mixed $value, int $dataType = null): static; |
||
| 171 | |||
| 172 | abstract public function bindValues(array $values): static; |
||
| 173 | |||
| 174 | public function checkIntegrity(string $schema, string $table, bool $check = true): static |
||
| 175 | { |
||
| 176 | $sql = $this->queryBuilder()->checkIntegrity($schema, $table, $check); |
||
| 177 | return $this->setSql($sql); |
||
| 178 | } |
||
| 179 | |||
| 180 | public function createIndex( |
||
| 181 | string $name, |
||
| 182 | string $table, |
||
| 183 | array|string $columns, |
||
| 184 | string $indexType = null, |
||
| 185 | string $indexMethod = null |
||
| 186 | ): static { |
||
| 187 | $sql = $this->queryBuilder()->createIndex($name, $table, $columns, $indexType, $indexMethod); |
||
| 188 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 189 | } |
||
| 190 | |||
| 191 | public function createTable(string $table, array $columns, string $options = null): static |
||
| 195 | } |
||
| 196 | |||
| 197 | public function createView(string $viewName, QueryInterface|string $subquery): static |
||
| 198 | { |
||
| 199 | $sql = $this->queryBuilder()->createView($viewName, $subquery); |
||
| 200 | return $this->setSql($sql)->requireTableSchemaRefresh($viewName); |
||
| 201 | } |
||
| 202 | |||
| 203 | public function delete(string $table, array|string $condition = '', array $params = []): static |
||
| 204 | { |
||
| 205 | $sql = $this->queryBuilder()->delete($table, $condition, $params); |
||
| 206 | return $this->setSql($sql)->bindValues($params); |
||
| 207 | } |
||
| 208 | |||
| 209 | public function dropCheck(string $name, string $table): static |
||
| 210 | { |
||
| 211 | $sql = $this->queryBuilder()->dropCheck($name, $table); |
||
| 212 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 213 | } |
||
| 214 | |||
| 215 | public function dropColumn(string $table, string $column): static |
||
| 216 | { |
||
| 217 | $sql = $this->queryBuilder()->dropColumn($table, $column); |
||
| 218 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 219 | } |
||
| 220 | |||
| 221 | public function dropCommentFromColumn(string $table, string $column): static |
||
| 222 | { |
||
| 223 | $sql = $this->queryBuilder()->dropCommentFromColumn($table, $column); |
||
| 224 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 225 | } |
||
| 226 | |||
| 227 | public function dropCommentFromTable(string $table): static |
||
| 228 | { |
||
| 229 | $sql = $this->queryBuilder()->dropCommentFromTable($table); |
||
| 230 | return $this->setSql($sql); |
||
| 231 | } |
||
| 232 | |||
| 233 | public function dropDefaultValue(string $name, string $table): static |
||
| 234 | { |
||
| 235 | $sql = $this->queryBuilder()->dropDefaultValue($name, $table); |
||
| 236 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 237 | } |
||
| 238 | |||
| 239 | public function dropForeignKey(string $name, string $table): static |
||
| 240 | { |
||
| 241 | $sql = $this->queryBuilder()->dropForeignKey($name, $table); |
||
| 242 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 243 | } |
||
| 244 | |||
| 245 | public function dropIndex(string $name, string $table): static |
||
| 246 | { |
||
| 247 | $sql = $this->queryBuilder()->dropIndex($name, $table); |
||
| 248 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 249 | } |
||
| 250 | |||
| 251 | public function dropPrimaryKey(string $name, string $table): static |
||
| 252 | { |
||
| 253 | $sql = $this->queryBuilder()->dropPrimaryKey($name, $table); |
||
| 254 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 255 | } |
||
| 256 | |||
| 257 | public function dropTable(string $table): static |
||
| 258 | { |
||
| 259 | $sql = $this->queryBuilder()->dropTable($table); |
||
| 260 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 261 | } |
||
| 262 | |||
| 263 | public function dropUnique(string $name, string $table): static |
||
| 264 | { |
||
| 265 | $sql = $this->queryBuilder()->dropUnique($name, $table); |
||
| 266 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 267 | } |
||
| 268 | |||
| 269 | public function dropView(string $viewName): static |
||
| 270 | { |
||
| 271 | $sql = $this->queryBuilder()->dropView($viewName); |
||
| 272 | return $this->setSql($sql)->requireTableSchemaRefresh($viewName); |
||
| 273 | } |
||
| 274 | |||
| 275 | public function getParams(bool $asValues = true): array |
||
| 276 | { |
||
| 277 | if (!$asValues) { |
||
| 278 | return $this->params; |
||
| 279 | } |
||
| 280 | |||
| 281 | $buildParams = []; |
||
| 282 | |||
| 283 | foreach ($this->params as $name => $value) { |
||
| 284 | /** @psalm-var mixed */ |
||
| 285 | $buildParams[$name] = $value->getValue(); |
||
| 286 | } |
||
| 287 | |||
| 288 | return $buildParams; |
||
| 289 | } |
||
| 290 | |||
| 291 | public function getRawSql(): string |
||
| 336 | } |
||
| 337 | |||
| 338 | public function getSql(): string |
||
| 339 | { |
||
| 340 | return $this->sql; |
||
| 341 | } |
||
| 342 | |||
| 343 | public function insert(string $table, QueryInterface|array $columns): static |
||
| 344 | { |
||
| 345 | $params = []; |
||
| 346 | $sql = $this->queryBuilder()->insert($table, $columns, $params); |
||
| 347 | return $this->setSql($sql)->bindValues($params); |
||
| 348 | } |
||
| 349 | |||
| 350 | public function insertWithReturningPks(string $table, array $columns): bool|array |
||
| 351 | { |
||
| 352 | $params = []; |
||
| 353 | |||
| 354 | $sql = $this->queryBuilder()->insertWithReturningPks($table, $columns, $params); |
||
| 355 | |||
| 356 | $this->setSql($sql)->bindValues($params); |
||
| 357 | |||
| 358 | /** @psalm-var array|bool $result */ |
||
| 359 | $result = $this->queryInternal(self::QUERY_MODE_ROW | self::QUERY_MODE_EXECUTE); |
||
| 360 | |||
| 361 | return is_array($result) ? $result : false; |
||
| 362 | } |
||
| 363 | |||
| 364 | /** |
||
| 365 | * @psalm-suppress MixedReturnStatement |
||
| 366 | * @psalm-suppress MixedInferredReturnType |
||
| 367 | */ |
||
| 368 | public function execute(): int |
||
| 369 | { |
||
| 370 | $sql = $this->getSql(); |
||
| 371 | |||
| 372 | if ($sql === '') { |
||
| 373 | return 0; |
||
| 374 | } |
||
| 375 | |||
| 376 | return $this->queryInternal(self::QUERY_MODE_EXECUTE); |
||
| 377 | } |
||
| 378 | |||
| 379 | /** |
||
| 380 | * @psalm-suppress MixedReturnStatement |
||
| 381 | * @psalm-suppress MixedInferredReturnType |
||
| 382 | */ |
||
| 383 | public function query(): DataReaderInterface |
||
| 384 | { |
||
| 385 | return $this->queryInternal(self::QUERY_MODE_CURSOR); |
||
| 386 | } |
||
| 387 | |||
| 388 | public function queryAll(): array |
||
| 389 | { |
||
| 390 | /** @psalm-var array<array-key, array>|null $results */ |
||
| 391 | $results = $this->queryInternal(self::QUERY_MODE_ALL); |
||
| 392 | |||
| 393 | return $results ?? []; |
||
| 394 | } |
||
| 395 | |||
| 396 | public function queryColumn(): array |
||
| 397 | { |
||
| 398 | /** @psalm-var mixed $results */ |
||
| 399 | $results = $this->queryInternal(self::QUERY_MODE_COLUMN); |
||
| 400 | |||
| 401 | return is_array($results) ? $results : []; |
||
| 402 | } |
||
| 403 | |||
| 404 | public function queryOne(): array|null |
||
| 405 | { |
||
| 406 | /** @psalm-var mixed $results */ |
||
| 407 | $results = $this->queryInternal(self::QUERY_MODE_ROW); |
||
| 408 | |||
| 409 | return is_array($results) ? $results : null; |
||
| 410 | } |
||
| 411 | |||
| 412 | /** |
||
| 413 | * @psalm-suppress MixedReturnStatement |
||
| 414 | * @psalm-suppress MixedInferredReturnType |
||
| 415 | */ |
||
| 416 | public function queryScalar(): bool|string|null|int|float |
||
| 417 | { |
||
| 418 | $firstRow = $this->queryInternal(self::QUERY_MODE_ROW); |
||
| 419 | |||
| 420 | if (!is_array($firstRow)) { |
||
| 421 | return false; |
||
| 422 | } |
||
| 423 | |||
| 424 | /** @psalm-var mixed $result */ |
||
| 425 | $result = current($firstRow); |
||
| 426 | |||
| 427 | if (is_resource($result) && get_resource_type($result) === 'stream') { |
||
| 428 | return stream_get_contents($result); |
||
| 429 | } |
||
| 430 | |||
| 431 | return $result; |
||
| 432 | } |
||
| 433 | |||
| 434 | public function renameColumn(string $table, string $oldName, string $newName): static |
||
| 435 | { |
||
| 436 | $sql = $this->queryBuilder()->renameColumn($table, $oldName, $newName); |
||
| 437 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 438 | } |
||
| 439 | |||
| 440 | public function renameTable(string $table, string $newName): static |
||
| 441 | { |
||
| 442 | $sql = $this->queryBuilder()->renameTable($table, $newName); |
||
| 443 | return $this->setSql($sql)->requireTableSchemaRefresh($table); |
||
| 444 | } |
||
| 445 | |||
| 446 | public function resetSequence(string $table, int|string $value = null): static |
||
| 447 | { |
||
| 448 | $sql = $this->queryBuilder()->resetSequence($table, $value); |
||
| 449 | return $this->setSql($sql); |
||
| 450 | } |
||
| 451 | |||
| 452 | public function setRawSql(string $sql): static |
||
| 453 | { |
||
| 454 | if ($sql !== $this->sql) { |
||
| 455 | $this->cancel(); |
||
| 456 | $this->reset(); |
||
| 457 | $this->sql = $sql; |
||
| 458 | } |
||
| 459 | |||
| 460 | return $this; |
||
| 461 | } |
||
| 462 | |||
| 463 | public function setSql(string $sql): static |
||
| 464 | { |
||
| 465 | $this->cancel(); |
||
| 466 | $this->reset(); |
||
| 467 | $this->sql = $this->queryBuilder()->quoter()->quoteSql($sql); |
||
| 468 | |||
| 469 | return $this; |
||
| 470 | } |
||
| 471 | |||
| 472 | public function setRetryHandler(Closure|null $handler): static |
||
| 473 | { |
||
| 474 | $this->retryHandler = $handler; |
||
| 475 | return $this; |
||
| 476 | } |
||
| 477 | |||
| 478 | public function truncateTable(string $table): static |
||
| 479 | { |
||
| 480 | $sql = $this->queryBuilder()->truncateTable($table); |
||
| 481 | return $this->setSql($sql); |
||
| 482 | } |
||
| 483 | |||
| 484 | public function update(string $table, array $columns, array|string $condition = '', array $params = []): static |
||
| 485 | { |
||
| 486 | $sql = $this->queryBuilder()->update($table, $columns, $condition, $params); |
||
| 487 | return $this->setSql($sql)->bindValues($params); |
||
| 488 | } |
||
| 489 | |||
| 490 | public function upsert( |
||
| 491 | string $table, |
||
| 492 | QueryInterface|array $insertColumns, |
||
| 493 | bool|array $updateColumns = true, |
||
| 494 | array $params = [] |
||
| 495 | ): static { |
||
| 496 | $sql = $this->queryBuilder()->upsert($table, $insertColumns, $updateColumns, $params); |
||
| 497 | return $this->setSql($sql)->bindValues($params); |
||
| 498 | } |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Executes a prepared statement. |
||
| 502 | * |
||
| 503 | * @param string|null $rawSql the rawSql if it has been created. |
||
| 504 | * |
||
| 505 | * @throws Exception |
||
| 506 | * @throws Throwable |
||
| 507 | */ |
||
| 508 | abstract protected function internalExecute(string|null $rawSql): void; |
||
| 509 | |||
| 510 | protected function is(int $value, int $flag): bool |
||
| 511 | { |
||
| 512 | return ($value & $flag) === $flag; |
||
| 513 | } |
||
| 514 | |||
| 515 | /** |
||
| 516 | * Returns the query result. |
||
| 517 | * |
||
| 518 | * @param int $queryMode One from modes QUERY_MODE_*. |
||
| 519 | * |
||
| 520 | * @throws Exception |
||
| 521 | * @throws Throwable |
||
| 522 | */ |
||
| 523 | abstract protected function internalGetQueryResult(int $queryMode): mixed; |
||
| 524 | |||
| 525 | /** |
||
| 526 | * Refreshes table schema, which was marked by {@see requireTableSchemaRefresh()}. |
||
| 527 | */ |
||
| 528 | abstract protected function refreshTableSchema(): void; |
||
| 529 | |||
| 530 | /** |
||
| 531 | * The method is called after the query is executed. |
||
| 532 | * |
||
| 533 | * @param int $queryMode One from modes QUERY_MODE_*. |
||
| 534 | * |
||
| 535 | * @throws Exception |
||
| 536 | * @throws Throwable |
||
| 537 | */ |
||
| 538 | protected function queryInternal(int $queryMode): mixed |
||
| 569 | } |
||
| 570 | |||
| 571 | /** |
||
| 572 | * Logs the current database query if query logging is enabled and returns the profiling token if profiling is |
||
| 573 | * enabled. |
||
| 574 | */ |
||
| 575 | protected function logQuery(string $rawSql, string $category): void |
||
| 576 | { |
||
| 577 | $this->logger?->log(LogLevel::INFO, $rawSql, [$category]); |
||
| 578 | } |
||
| 579 | |||
| 580 | /** |
||
| 581 | * Marks a specified table schema to be refreshed after command execution. |
||
| 582 | * |
||
| 583 | * @param string $name Name of the table, which schema should be refreshed. |
||
| 584 | * |
||
| 585 | * @return static The command object itself. |
||
| 586 | */ |
||
| 587 | protected function requireTableSchemaRefresh(string $name): static |
||
| 591 | } |
||
| 592 | |||
| 593 | /** |
||
| 594 | * Marks the command to be executed in transaction. |
||
| 595 | * |
||
| 596 | * @param string|null $isolationLevel The isolation level to use for this transaction. |
||
| 597 | * |
||
| 598 | * {@see TransactionInterface::begin()} for details. |
||
| 599 | * |
||
| 600 | * @return static The command object itself. |
||
| 601 | */ |
||
| 602 | protected function requireTransaction(string $isolationLevel = null): static |
||
| 603 | { |
||
| 604 | $this->isolationLevel = $isolationLevel; |
||
| 605 | return $this; |
||
| 606 | } |
||
| 607 | |||
| 608 | /** |
||
| 609 | * Resets the command object, so it can be reused to build another SQL statement. |
||
| 610 | */ |
||
| 611 | protected function reset(): void |
||
| 612 | { |
||
| 613 | $this->sql = ''; |
||
| 614 | $this->params = []; |
||
| 615 | $this->refreshTableName = null; |
||
| 616 | $this->isolationLevel = null; |
||
| 617 | $this->retryHandler = null; |
||
| 618 | } |
||
| 619 | |||
| 620 | private function isReadMode(int $queryMode): bool |
||
| 621 | { |
||
| 622 | return !$this->is($queryMode, self::QUERY_MODE_EXECUTE); |
||
| 623 | } |
||
| 624 | } |
||
| 625 |