-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathInnerResultArray.php
141 lines (126 loc) · 3.92 KB
/
InnerResultArray.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
<?php
declare(strict_types=1);
namespace TheCodingMachine\TDBM;
use TheCodingMachine\TDBM\QueryFactory\SmartEagerLoad\ManyToOneDataLoader;
use TheCodingMachine\TDBM\QueryFactory\SmartEagerLoad\StorageNode;
use TheCodingMachine\TDBM\QueryFactory\SmartEagerLoad\StorageNodeTrait;
/*
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. It behaves like an array.
*/
class InnerResultArray extends InnerResultIterator implements StorageNode
{
use StorageNodeTrait;
/**
* The list of results already fetched.
*
* @var AbstractTDBMObject[]
*/
private $results = [];
/**
* 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)
{
if ($this->count === 0) {
return false;
}
try {
$this->toIndex($offset);
} catch (TDBMInvalidOffsetException $e) {
return false;
}
return true;
}
/**
* 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)
{
$this->toIndex($offset);
return $this->results[$offset];
}
/**
* @param mixed $offset
* @throws TDBMInvalidOffsetException
*/
private function toIndex($offset): void
{
if ($offset < 0 || filter_var($offset, FILTER_VALIDATE_INT) === false) {
throw new TDBMInvalidOffsetException('Trying to access result set using offset "'.$offset.'". An offset must be a positive integer.');
}
if ($this->statement === null) {
$this->executeQuery();
}
while (!isset($this->results[$offset])) {
$this->next();
if ($this->current === null) {
throw new TDBMInvalidOffsetException('Offset "'.$offset.'" does not exist in result set.');
}
}
}
public function next()
{
// Let's overload the next() method to store the result.
if (isset($this->results[$this->key + 1])) {
++$this->key;
$this->current = $this->results[$this->key];
} else {
parent::next();
if ($this->current !== null) {
$this->results[$this->key] = $this->current;
}
}
}
/**
* Overloads the rewind implementation.
* Do not reexecute the query.
*/
public function rewind()
{
if ($this->count === 0) {
return;
}
if (!$this->fetchStarted) {
$this->executeQuery();
}
$this->key = -1;
$this->next();
}
}