-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathPageIteratorTrait.php
More file actions
327 lines (283 loc) · 7.94 KB
/
PageIteratorTrait.php
File metadata and controls
327 lines (283 loc) · 7.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
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
<?php
/**
* Copyright 2017 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Google\Cloud\Core\Iterator;
use Google\Cloud\Core\ArrayTrait;
/**
* This trait fulfills the
* [\Iterator](http://php.net/manual/en/class.iterator.php) interface and
* returns results as a page of items.
*/
trait PageIteratorTrait
{
use ArrayTrait;
/**
* @var array|null
*/
private $page;
/**
* @var callable
*/
private $resultMapper;
/**
* @var callable
*/
private $call;
/**
* @var array
*/
private $callOptions;
/**
* @var array
*/
private $config;
/**
* @var int
*/
private $position = 0;
/**
* @var int
*/
private $itemCount = 0;
/**
* @var array
*/
private $resultTokenPath;
/**
* @var array
*/
private $nextResultTokenPath;
/**
* @var array
*/
private $itemsPath;
/**
* @var string|null
*/
private $initialResultToken;
/**
* @param callable $resultMapper Maps a result.
* @param callable $call The call to execute.
* @param array $callOptions Options to use with the call.
* @param array $config [optional] {
* Configuration options.
*
* @type string $itemsKey The key for the items to iterate over from the
* response. **Defaults to** `"items"`.
* @type string $nextResultTokenKey The key for the next result token in
* the response. **Defaults to** `"nextPageToken"`.
* @type string $resultTokenKey The key for the results token set in the
* request. **Defaults too** `"pageToken"`.
* @type array $firstPage The first page of results. If set, this data
* will be used for the first page of results instead of making
* a network request.
* @type callable $setNextResultTokenCondition If this condition passes
* then it should be considered safe to set the token to get the
* next set of results.
* @type int $resultLimit Limit the number of results returned in total.
* **Defaults to** `0` (return all results).
* }
*/
public function __construct(
callable $resultMapper,
callable $call,
array $callOptions,
array $config = []
) {
$this->resultMapper = $resultMapper;
$this->call = $call;
$this->config = $config + [
'itemsKey' => 'items',
'nextResultTokenKey' => 'nextPageToken',
'resultTokenKey' => 'pageToken',
'firstPage' => null,
'resultLimit' => 0,
'setNextResultTokenCondition' => function () {
return true;
}
];
$this->callOptions = $callOptions;
$this->resultTokenPath = explode('.', $this->config['resultTokenKey']);
$this->nextResultTokenPath = explode('.', $this->config['nextResultTokenKey']);
$this->itemsPath = explode('.', $this->config['itemsKey']);
$this->initialResultToken = $this->nextResultToken();
}
/**
* Fetch the token used to get the next set of results.
*
* @return string|null
*/
public function nextResultToken()
{
return $this->get($this->resultTokenPath, $this->callOptions);
}
/**
* Rewind the iterator.
*
* @return null
*/
#[\ReturnTypeWillChange]
public function rewind()
{
$this->itemCount = 0;
$this->position = 0;
if ($this->config['firstPage']) {
list($this->page, $shouldContinue) = $this->mapResults($this->config['firstPage']);
$nextResultToken = $this->determineNextResultToken($this->page, $shouldContinue);
} else {
$this->page = null;
$nextResultToken = $this->initialResultToken;
}
if ($nextResultToken) {
$this->set($this->resultTokenPath, $this->callOptions, $nextResultToken);
}
}
/**
* Get the current page.
*
* @return array|null
*/
#[\ReturnTypeWillChange]
public function current()
{
if ($this->page === null) {
$this->page = $this->executeCall();
}
$page = $this->get($this->itemsPath, $this->page);
if ($this->nextResultToken()) {
return $page ?: [];
}
return $page;
}
/**
* Get the key current page's key.
*
* @return int
*/
#[\ReturnTypeWillChange]
public function key()
{
return $this->position;
}
/**
* Advances to the next page.
*
* @return null
*/
#[\ReturnTypeWillChange]
public function next()
{
$this->position++;
$this->page = $this->nextResultToken()
? $this->executeCall()
: null;
}
/**
* Determines if the current position is valid.
*
* @return bool
*/
#[\ReturnTypeWillChange]
public function valid()
{
if (!$this->page && $this->position) {
return false;
}
return true;
}
/**
* Executes the provided call to get a set of results.
*
* @return array
*/
private function executeCall()
{
$call = $this->call;
list($results, $shouldContinue) = $this->mapResults(
$call($this->callOptions)
);
$this->set(
$this->resultTokenPath,
$this->callOptions,
$this->determineNextResultToken($results, $shouldContinue)
);
return $results;
}
/**
* @param array $results
* @return array
*/
private function mapResults(array $results)
{
$items = $this->get($this->itemsPath, $results);
$resultMapper = $this->resultMapper;
$shouldContinue = true;
if ($items) {
foreach ($items as $key => $item) {
$items[$key] = $resultMapper($item);
$this->itemCount++;
if ($this->config['resultLimit'] && $this->config['resultLimit'] <= $this->itemCount) {
$items = array_slice($items, 0, $key + 1);
$shouldContinue = false;
break;
}
}
$this->set($this->itemsPath, $results, $items);
}
return [$results, $shouldContinue];
}
/**
* @param array $results
* @param bool $shouldContinue
* @return null
*/
private function determineNextResultToken(array $results, $shouldContinue = true)
{
return $shouldContinue && $this->config['setNextResultTokenCondition']($results)
? $this->get($this->nextResultTokenPath, $results)
: null;
}
/**
* @param array $path
* @param array $array
* @return mixed
*/
private function get(array $path, array $array)
{
$result = $array;
foreach ($path as $key) {
if (!isset($result[$key])) {
return null;
}
$result = $result[$key];
}
return $result;
}
/**
* @param array $path
* @param array $array
* @param mixed $value
* @return null
*/
private function set(array $path, array &$array, $value)
{
$temp = &$array;
foreach ($path as $key) {
$temp = &$temp[$key];
}
$temp = $value;
}
}