-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathInnerResultIterator.php
362 lines (313 loc) · 11.3 KB
/
InnerResultIterator.php
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
<?php
declare(strict_types=1);
namespace TheCodingMachine\TDBM;
use Doctrine\DBAL\Platforms\MySqlPlatform;
use Doctrine\DBAL\Statement;
use Mouf\Database\MagicQuery;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use TheCodingMachine\TDBM\Utils\DbalUtils;
/*
Copyright (C) 2006-2017 David Négrier - THE CODING MACHINE
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Iterator used to retrieve results.
*/
class InnerResultIterator implements \Iterator, InnerResultIteratorInterface
{
/**
* @var Statement
*/
protected $statement;
protected $fetchStarted = false;
private $objectStorage;
private $className;
/** @var TDBMService */
private $tdbmService;
private $magicSql;
private $parameters;
private $limit;
private $offset;
private $columnDescriptors;
/** @var MagicQuery */
private $magicQuery;
/**
* The key of the current retrieved object.
*
* @var int
*/
protected $key = -1;
protected $current = null;
private $databasePlatform;
/**
* @var LoggerInterface
*/
private $logger;
/** @var bool */
private $hasExcludedColumns;
protected $count = null;
private function __construct()
{
}
/**
* @param mixed[] $parameters
* @param array[] $columnDescriptors
*/
public static function createInnerResultIterator(
string $magicSql,
array $parameters,
?int $limit,
?int $offset,
array $columnDescriptors,
ObjectStorageInterface $objectStorage,
?string $className,
TDBMService $tdbmService,
MagicQuery $magicQuery,
LoggerInterface $logger,
bool $hasExcludedColumns
): self {
$iterator = new static();
$iterator->magicSql = $magicSql;
$iterator->objectStorage = $objectStorage;
$iterator->className = $className;
$iterator->tdbmService = $tdbmService;
$iterator->parameters = $parameters;
$iterator->limit = $limit;
$iterator->offset = $offset;
$iterator->columnDescriptors = $columnDescriptors;
$iterator->magicQuery = $magicQuery;
$iterator->databasePlatform = $iterator->tdbmService->getConnection()->getDatabasePlatform();
$iterator->logger = $logger;
$iterator->hasExcludedColumns = $hasExcludedColumns;
return $iterator;
}
private function getQuery(): string
{
$sql = $this->magicQuery->buildPreparedStatement($this->magicSql, $this->parameters);
$sql = $this->tdbmService->getConnection()->getDatabasePlatform()->modifyLimitQuery($sql, $this->limit, $this->offset);
return $sql;
}
protected function executeQuery(): void
{
$sql = $this->getQuery();
$this->logger->debug('Running SQL request: '.$sql);
$this->statement = $this->tdbmService->getConnection()->executeQuery($sql, $this->parameters, DbalUtils::generateArrayTypes($this->parameters));
$this->fetchStarted = true;
}
/**
* Counts found records (this is the number of records fetched, taking into account the LIMIT and OFFSET settings).
*
* @return int
*/
public function count()
{
if ($this->count !== null) {
return $this->count;
}
if ($this->fetchStarted && $this->tdbmService->getConnection()->getDatabasePlatform() instanceof MySqlPlatform) {
// Optimisation: we don't need a separate "count" SQL request in MySQL.
$this->count = $this->statement->rowCount();
return $this->count;
}
return $this->getRowCountViaSqlQuery();
}
/**
* Makes a separate SQL query to compute the row count.
* (not needed in MySQL if fetch is already done)
*/
private function getRowCountViaSqlQuery(): int
{
$countSql = 'SELECT COUNT(1) FROM ('.$this->getQuery().') c';
$this->logger->debug('Running count SQL request: '.$countSql);
$this->count = (int) $this->tdbmService->getConnection()->fetchColumn($countSql, $this->parameters, 0, DbalUtils::generateArrayTypes($this->parameters));
return $this->count;
}
/**
* Fetches record at current cursor.
*
* @return AbstractTDBMObject
*/
public function current()
{
return $this->current;
}
/**
* Returns the current result's key.
*
* @return int
*/
public function key()
{
return $this->key;
}
/**
* Advances the cursor to the next result.
* Casts the database result into one (or several) beans.
*/
public function next()
{
/** @var array<string, string> $row */
$row = $this->statement->fetch(\PDO::FETCH_ASSOC);
if ($row) {
// array<tablegroup, array<table, array<column, value>>>
/** @var array<string, array<string, array<string, mixed>>> $beansData */
$beansData = [];
foreach ($row as $key => $value) {
if (!isset($this->columnDescriptors[$key])) {
continue;
}
$columnDescriptor = $this->columnDescriptors[$key];
if ($columnDescriptor['tableGroup'] === null) {
// A column can have no tableGroup (if it comes from an ORDER BY expression)
continue;
}
// Let's cast the value according to its type
$value = $columnDescriptor['type']->convertToPHPValue($value, $this->databasePlatform);
$beansData[$columnDescriptor['tableGroup']][$columnDescriptor['table']][$columnDescriptor['column']] = $value;
}
$reflectionClassCache = [];
$firstBean = true;
foreach ($beansData as $beanData) {
// Let's find the bean class name associated to the bean.
list($actualClassName, $mainBeanTableName, $tablesUsed) = $this->tdbmService->_getClassNameFromBeanData($beanData);
// @TODO (gua) this is a weird hack to be able to force a TDBMObject...
// ClassName could be used to override $actualClassName
if ($this->className !== null && is_a($this->className, TDBMObject::class, true)) {
$actualClassName = $this->className;
}
// Let's filter out the beanData that is not used (because it belongs to a part of the hierarchy that is not fetched:
foreach ($beanData as $tableName => $descriptors) {
if (!in_array($tableName, $tablesUsed, true)) {
unset($beanData[$tableName]);
}
}
// Must we create the bean? Let's see in the cache if we have a mapping DbRow?
// Let's get the first object mapping a row:
// We do this loop only for the first table
$primaryKeys = $this->tdbmService->_getPrimaryKeysFromObjectData($mainBeanTableName, $beanData[$mainBeanTableName]);
$hash = $this->tdbmService->getObjectHash($primaryKeys);
/** @var DbRow|null $dbRow */
$dbRow = $this->objectStorage->get($mainBeanTableName, $hash);
if ($dbRow !== null) {
$bean = $dbRow->getTDBMObject();
} else {
// Let's construct the bean
if (!isset($reflectionClassCache[$actualClassName])) {
$reflectionClassCache[$actualClassName] = new \ReflectionClass($actualClassName);
}
// Let's bypass the constructor when creating the bean!
/** @var AbstractTDBMObject $bean */
$bean = $reflectionClassCache[$actualClassName]->newInstanceWithoutConstructor();
$bean->_constructFromData($beanData, $this->tdbmService, !$this->hasExcludedColumns);
}
// The first bean is the one containing the main table.
if ($firstBean) {
$firstBean = false;
$this->current = $bean;
}
}
++$this->key;
} else {
$this->current = null;
}
}
/**
* Moves the cursor to the beginning of the result set.
*/
public function rewind()
{
$this->executeQuery();
$this->key = -1;
$this->next();
}
/**
* Checks if the cursor is reading a valid result.
*
* @return bool
*/
public function valid()
{
return $this->current !== null;
}
/**
* Whether a offset exists.
*
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
*
* @param mixed $offset <p>
* An offset to check for.
* </p>
*
* @return bool true on success or false on failure.
* </p>
* <p>
* The return value will be casted to boolean if non-boolean was returned
*
* @since 5.0.0
*/
public function offsetExists($offset)
{
throw new TDBMInvalidOperationException('You cannot access this result set via index because it was fetched in CURSOR mode. Use ARRAY_MODE instead.');
}
/**
* Offset to retrieve.
*
* @link http://php.net/manual/en/arrayaccess.offsetget.php
*
* @param mixed $offset <p>
* The offset to retrieve.
* </p>
*
* @return mixed Can return all value types
*
* @since 5.0.0
*/
public function offsetGet($offset)
{
throw new TDBMInvalidOperationException('You cannot access this result set via index because it was fetched in CURSOR mode. Use ARRAY_MODE instead.');
}
/**
* Offset to set.
*
* @link http://php.net/manual/en/arrayaccess.offsetset.php
*
* @param mixed $offset <p>
* The offset to assign the value to.
* </p>
* @param mixed $value <p>
* The value to set.
* </p>
*
* @since 5.0.0
*/
public function offsetSet($offset, $value)
{
throw new TDBMInvalidOperationException('You cannot set values in a TDBM result set.');
}
/**
* Offset to unset.
*
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
*
* @param mixed $offset <p>
* The offset to unset.
* </p>
*
* @since 5.0.0
*/
public function offsetUnset($offset)
{
throw new TDBMInvalidOperationException('You cannot unset values in a TDBM result set.');
}
}