-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathQueryResult.php
More file actions
278 lines (250 loc) · 6.94 KB
/
QueryResult.php
File metadata and controls
278 lines (250 loc) · 6.94 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
<?php
namespace TYPO3\CMS\Extbase\Persistence\Generic;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
use TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper;
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
/**
* A lazy result list that is returned by Query::execute()
*/
class QueryResult implements QueryResultInterface
{
/**
* @var \TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper
*/
protected $dataMapper;
/**
* @var \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface
*/
protected $persistenceManager;
/**
* @var int|null
*/
protected $numberOfResults;
/**
* @var \TYPO3\CMS\Extbase\Persistence\QueryInterface
*/
protected $query;
/**
* @var array
*/
protected $queryResult;
/**
* @var ObjectManagerInterface
*/
protected $objectManager;
/**
* @param ObjectManagerInterface $objectManager
*/
public function injectObjectManager(ObjectManagerInterface $objectManager)
{
$this->objectManager = $objectManager;
}
/**
* @param \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface $persistenceManager
*/
public function injectPersistenceManager(\TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface $persistenceManager)
{
$this->persistenceManager = $persistenceManager;
}
/**
* Constructor
*
* @param \TYPO3\CMS\Extbase\Persistence\QueryInterface $query
*/
public function __construct(\TYPO3\CMS\Extbase\Persistence\QueryInterface $query)
{
$this->query = $query;
}
/**
* Object initialization called when object is created with ObjectManager, after constructor
*/
public function initializeObject()
{
$this->dataMapper = $this->objectManager->get(DataMapper::class, $this->query);
}
/**
* Loads the objects this QueryResult is supposed to hold
*/
protected function initialize()
{
if (!is_array($this->queryResult)) {
$this->queryResult = $this->dataMapper->map($this->query->getType(), $this->persistenceManager->getObjectDataByQuery($this->query));
}
}
/**
* Returns a clone of the query object
*
* @return \TYPO3\CMS\Extbase\Persistence\QueryInterface
*/
public function getQuery()
{
return clone $this->query;
}
/**
* Returns the first object in the result set
*
* @return object
*/
public function getFirst()
{
if (is_array($this->queryResult)) {
$queryResult = $this->queryResult;
reset($queryResult);
} else {
$query = $this->getQuery();
$query->setLimit(1);
$queryResult = $this->dataMapper->map($query->getType(), $this->persistenceManager->getObjectDataByQuery($query));
}
$firstResult = current($queryResult);
if ($firstResult === false) {
$firstResult = null;
}
return $firstResult;
}
/**
* Returns the number of objects in the result
*
* @return int The number of matching objects
*/
public function count()
{
if ($this->numberOfResults === null) {
if (is_array($this->queryResult)) {
$this->numberOfResults = count($this->queryResult);
} else {
$this->numberOfResults = $this->persistenceManager->getObjectCountByQuery($this->query);
}
}
return $this->numberOfResults;
}
/**
* Returns an array with the objects in the result set
*
* @return array
*/
public function toArray()
{
$this->initialize();
return iterator_to_array($this);
}
/**
* This method is needed to implement the ArrayAccess interface,
* but it isn't very useful as the offset has to be an integer
*
* @param mixed $offset
* @return bool
* @see ArrayAccess::offsetExists()
*/
public function offsetExists($offset)
{
$this->initialize();
return isset($this->queryResult[$offset]);
}
/**
* @param mixed $offset
* @return mixed
* @see ArrayAccess::offsetGet()
*/
public function offsetGet($offset)
{
$this->initialize();
return $this->queryResult[$offset] ?? null;
}
/**
* This method has no effect on the persisted objects but only on the result set
*
* @param mixed $offset
* @param mixed $value
* @see ArrayAccess::offsetSet()
*/
public function offsetSet($offset, $value)
{
$this->initialize();
$this->queryResult[$offset] = $value;
}
/**
* This method has no effect on the persisted objects but only on the result set
*
* @param mixed $offset
* @see ArrayAccess::offsetUnset()
*/
public function offsetUnset($offset)
{
$this->initialize();
unset($this->queryResult[$offset]);
}
/**
* @return mixed
* @see Iterator::current()
*/
public function current()
{
$this->initialize();
return current($this->queryResult);
}
/**
* @return mixed
* @see Iterator::key()
*/
public function key()
{
$this->initialize();
return key($this->queryResult);
}
/**
* @see Iterator::next()
*/
public function next()
{
$this->initialize();
next($this->queryResult);
}
/**
* @see Iterator::rewind()
*/
public function rewind()
{
$this->initialize();
reset($this->queryResult);
}
/**
* @return bool
* @see Iterator::valid()
*/
public function valid()
{
$this->initialize();
return current($this->queryResult) !== false;
}
/**
* Ensures that the objectManager, persistenceManager and dataMapper are back when loading the QueryResult
* from the cache
* @internal only to be used within Extbase, not part of TYPO3 Core API.
*/
public function __wakeup()
{
$objectManager = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Extbase\Object\ObjectManager::class);
$this->persistenceManager = $objectManager->get(\TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface::class);
$this->dataMapper = $objectManager->get(DataMapper::class);
}
/**
* @return array
* @internal only to be used within Extbase, not part of TYPO3 Core API.
*/
public function __sleep()
{
return ['query'];
}
}