-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathPageIterator.php
More file actions
295 lines (263 loc) · 8.04 KB
/
PageIterator.php
File metadata and controls
295 lines (263 loc) · 8.04 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
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
<?php
declare(strict_types=1);
namespace TheCodingMachine\TDBM;
use Doctrine\DBAL\Statement;
use Mouf\Database\MagicQuery;
use Porpaginas\Page;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
/*
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 PageIterator implements Page, \ArrayAccess, \JsonSerializable
{
/** @var Statement */
protected $statement;
/** @var bool */
protected $fetchStarted = false;
/** @var ObjectStorageInterface */
private $objectStorage;
/** @var string|null */
private $className;
/** @var ResultIterator */
private $parentResult;
/** @var TDBMService */
private $tdbmService;
/** @var string */
private $magicSql;
/** @var mixed[] */
private $parameters;
/** @var int|null */
private $limit;
/** @var int|null */
private $offset;
/** @var array[] */
private $columnDescriptors;
/** @var MagicQuery */
private $magicQuery;
/**
* The key of the current retrieved object.
*
* @var int
*/
protected $key = -1;
/** @var AbstractTDBMObject|null */
protected $current;
/** @var InnerResultIteratorInterface */
private $innerResultIterator;
/** @var int */
private $mode;
/** @var LoggerInterface */
private $logger;
private function __construct()
{
}
/**
* @param mixed[] $parameters
* @param array[] $columnDescriptors
*/
public static function createResultIterator(ResultIterator $parentResult, string $magicSql, array $parameters, int $limit, int $offset, array $columnDescriptors, ObjectStorageInterface $objectStorage, ?string $className, TDBMService $tdbmService, MagicQuery $magicQuery, int $mode, LoggerInterface $logger): self
{
$iterator = new self();
$iterator->parentResult = $parentResult;
$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->mode = $mode;
$iterator->logger = $logger;
return $iterator;
}
public static function createEmpyIterator(ResultIterator $parentResult): self
{
$iterator = new self();
$iterator->parentResult = $parentResult;
$iterator->logger = new NullLogger();
return $iterator;
}
/**
* Retrieve an external iterator.
*
* @return InnerResultIteratorInterface
*/
public function getIterator()
{
if ($this->innerResultIterator === null) {
if ($this->parentResult instanceof EmptyResultIterator) {
$this->innerResultIterator = new EmptyInnerResultIterator();
} elseif ($this->mode === TDBMService::MODE_CURSOR) {
$this->innerResultIterator = InnerResultIterator::createInnerResultIterator($this->magicSql, $this->parameters, $this->limit, $this->offset, $this->columnDescriptors, $this->objectStorage, $this->className, $this->tdbmService, $this->magicQuery, $this->logger);
} else {
$this->innerResultIterator = InnerResultArray::createInnerResultIterator($this->magicSql, $this->parameters, $this->limit, $this->offset, $this->columnDescriptors, $this->objectStorage, $this->className, $this->tdbmService, $this->magicQuery, $this->logger);
}
}
return $this->innerResultIterator;
}
/**
* @return int
*/
public function getCurrentOffset()
{
return $this->offset;
}
/**
* @return int
*/
public function getCurrentPage()
{
return (int) floor($this->offset / $this->limit) + 1;
}
/**
* @return int
*/
public function getCurrentLimit()
{
return $this->limit;
}
/**
* Return the number of results on the current page of the {@link Result}.
*
* @return int
*/
public function count()
{
return $this->getIterator()->count();
}
/**
* Return the number of ALL results in the paginatable of {@link Result}.
*
* @return int
*/
public function totalCount()
{
return $this->parentResult->count();
}
/**
* Casts the result set to a PHP array.
*
* @return AbstractTDBMObject[]
*/
public function toArray(): array
{
return iterator_to_array($this->getIterator());
}
/**
* Returns a new iterator mapping any call using the $callable function.
*
* @param callable $callable
*
* @return MapIterator
*/
public function map(callable $callable): MapIterator
{
if ($this->count() === 0) {
return new MapIterator([], $callable);
}
return new MapIterator($this->getIterator(), $callable);
}
/**
* 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)
{
return $this->getIterator()->offsetExists($offset);
}
/**
* 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)
{
return $this->getIterator()->offsetGet($offset);
}
/**
* 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)
{
$this->getIterator()->offsetSet($offset, $value);
}
/**
* 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)
{
$this->getIterator()->offsetUnset($offset);
}
/**
* Specify data which should be serialized to JSON.
*
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php
*
* @return mixed data which can be serialized by <b>json_encode</b>,
* which is a value of any type other than a resource
*
* @since 5.4.0
*/
public function jsonSerialize()
{
return array_map(function (AbstractTDBMObject $item) {
return $item->jsonSerialize();
}, $this->toArray());
}
}