-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathQueryPlanAnalyzerMysql.php
More file actions
135 lines (113 loc) · 4.55 KB
/
QueryPlanAnalyzerMysql.php
File metadata and controls
135 lines (113 loc) · 4.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
declare(strict_types=1);
namespace staabm\PHPStanDba\Analyzer;
use mysqli;
use PDO;
use PHPStan\ShouldNotHappenException;
use staabm\PHPStanDba\QueryReflection\QueryReflection;
final class QueryPlanAnalyzerMysql
{
/**
* @api
*
* @deprecated use QueryPlanAnalyzer::DEFAULT_UNINDEXED_READS_THRESHOLD instead
*/
public const DEFAULT_UNINDEXED_READS_THRESHOLD = QueryPlanAnalyzer::DEFAULT_UNINDEXED_READS_THRESHOLD;
/**
* @api
*
* @deprecated use QueryPlanAnalyzer::TABLES_WITHOUT_DATA instead
*/
public const TABLES_WITHOUT_DATA = QueryPlanAnalyzer::TABLES_WITHOUT_DATA;
/**
* @api
*
* @deprecated use QueryPlanAnalyzer::DEFAULT_SMALL_TABLE_THRESHOLD instead
*/
public const DEFAULT_SMALL_TABLE_THRESHOLD = QueryPlanAnalyzer::DEFAULT_SMALL_TABLE_THRESHOLD;
/**
* @var PDO|mysqli
*/
private $connection;
/**
* @param PDO|mysqli $connection
*/
public function __construct($connection)
{
$this->connection = $connection;
}
/**
* @param non-empty-string $query
*/
public function analyze(string $query): QueryPlanResult
{
$simulatedQuery = 'EXPLAIN '.$query;
if ($this->connection instanceof PDO) {
$this->connection->beginTransaction();
try {
$stmt = $this->connection->query($simulatedQuery);
// @phpstan-ignore-next-line
$planResult = $this->buildResult($simulatedQuery, $stmt);
$stmt->closeCursor();
return $planResult;
} finally {
$this->connection->rollBack();
}
} else {
$this->connection->begin_transaction(\MYSQLI_TRANS_START_READ_ONLY);
try {
$result = $this->connection->query($simulatedQuery);
if ($result instanceof \mysqli_result) {
$planResult = $this->buildResult($simulatedQuery, $result);
$result->close();
return $planResult;
}
} finally {
$this->connection->rollback();
}
}
throw new ShouldNotHappenException();
}
/**
* @param \IteratorAggregate<array-key, array{select_type: string, key: string|null, type: string|null, rows: positive-int, table: ?string}> $it
*/
private function buildResult(string $simulatedQuery, $it): QueryPlanResult
{
$result = new QueryPlanResult($simulatedQuery);
$allowedUnindexedReads = QueryReflection::getRuntimeConfiguration()->getNumberOfAllowedUnindexedReads();
if (false === $allowedUnindexedReads) {
throw new ShouldNotHappenException();
}
$allowedRowsNotRequiringIndex = QueryReflection::getRuntimeConfiguration()->getNumberOfRowsNotRequiringIndex();
if (false === $allowedRowsNotRequiringIndex) {
throw new ShouldNotHappenException();
}
foreach ($it as $row) {
// mysql might return 'no matching row in const table'
if (null === $row['table']) {
continue;
}
if (null === $row['key'] && $row['rows'] >= $allowedRowsNotRequiringIndex) {
// derived table aka. a expression that generates a table within the scope of a query FROM clause
// is a temporary table, which indexes cannot be created for.
if ('derived' === strtolower($row['select_type'])) {
continue;
}
$result->addRow($row['table'], QueryPlanResult::NO_INDEX);
} else {
// don't analyse maybe existing data, to make the result consistent with empty db schemas
if (QueryPlanAnalyzer::TABLES_WITHOUT_DATA === $allowedRowsNotRequiringIndex) {
continue;
}
if (null !== $row['type'] && 'all' === strtolower($row['type']) && $row['rows'] >= $allowedRowsNotRequiringIndex) {
$result->addRow($row['table'], QueryPlanResult::TABLE_SCAN);
} elseif (true === $allowedUnindexedReads && $row['rows'] >= QueryPlanAnalyzer::DEFAULT_UNINDEXED_READS_THRESHOLD) {
$result->addRow($row['table'], QueryPlanResult::UNINDEXED_READS);
} elseif (\is_int($allowedUnindexedReads) && $row['rows'] >= $allowedUnindexedReads) {
$result->addRow($row['table'], QueryPlanResult::UNINDEXED_READS);
}
}
}
return $result;
}
}