1 | <?php |
||
46 | class Collection implements CollectionInterface |
||
47 | { |
||
48 | /** |
||
49 | * Objects |
||
50 | * |
||
51 | * @var ObjectInterface[]|RepositoryPath[] |
||
52 | */ |
||
53 | protected $objects = array(); |
||
54 | /** |
||
55 | * Object IDs |
||
56 | * |
||
57 | * @var array |
||
58 | */ |
||
59 | protected $objectIds = array(); |
||
60 | /** |
||
61 | * Internal object pointer |
||
62 | * |
||
63 | * @var int |
||
64 | */ |
||
65 | protected $pointer = 0; |
||
66 | |||
67 | /******************************************************************************* |
||
68 | * PUBLIC METHODS |
||
69 | *******************************************************************************/ |
||
70 | |||
71 | /** |
||
72 | * Collection constructor |
||
73 | * |
||
74 | * @param array $objects Collection objects |
||
75 | * @throws InvalidArgumentException If the an invalid object or path is provided |
||
76 | */ |
||
77 | 7 | public function __construct(array $objects = []) |
|
78 | { |
||
79 | 7 | foreach ($objects as $object) { |
|
80 | // If it's an object |
||
81 | 7 | if ($object instanceof ObjectInterface) { |
|
82 | 3 | $this->objects[$object->getId()->getId()] = $object; |
|
83 | 3 | continue; |
|
84 | |||
85 | // Else if it's an object path |
||
86 | 7 | } elseif ($object instanceof RepositoryPath) { |
|
87 | 7 | $this->objects[$object->getId()->getId()] = $object; |
|
|
|||
88 | 7 | continue; |
|
89 | } |
||
90 | |||
91 | 1 | throw new InvalidArgumentException( |
|
92 | 1 | 'Invalid collection object or path', |
|
93 | InvalidArgumentException::INVALID_COLLECTION_OBJECT_OR_PATH |
||
94 | 1 | ); |
|
95 | 7 | } |
|
96 | |||
97 | 7 | $this->objectIds = array_keys($this->objects); |
|
98 | 7 | } |
|
99 | |||
100 | /** |
||
101 | * Return the current object |
||
102 | * |
||
103 | * @return ObjectInterface Current object |
||
104 | */ |
||
105 | 3 | public function current() |
|
109 | |||
110 | /** |
||
111 | * Load and return an object by ID |
||
112 | * |
||
113 | * @param int $objectId Object ID |
||
114 | * @return ObjectInterface Object |
||
115 | */ |
||
116 | 3 | protected function loadObject($objectId) |
|
117 | { |
||
118 | // Lazy-load the object once |
||
119 | 3 | if ($this->objects[$objectId] instanceof RepositoryPath) { |
|
120 | 3 | $this->objects[$objectId] = $this->objects[$objectId]->getRepository()->loadObject( |
|
121 | 3 | $this->objects[$objectId] |
|
122 | 3 | ); |
|
123 | 3 | } |
|
124 | |||
125 | 3 | return $this->objects[$objectId]; |
|
126 | } |
||
127 | |||
128 | /** |
||
129 | * Move forward to next object |
||
130 | * |
||
131 | * @return void |
||
132 | */ |
||
133 | 1 | public function next() |
|
137 | |||
138 | /** |
||
139 | * Return the ID of the current object |
||
140 | * |
||
141 | * @return int Object ID |
||
142 | */ |
||
143 | 1 | public function key() |
|
147 | |||
148 | /** |
||
149 | * Checks if current position is valid |
||
150 | * |
||
151 | * @return boolean The current position is valid |
||
152 | */ |
||
153 | 3 | public function valid() |
|
157 | |||
158 | /** |
||
159 | * Rewind the Iterator to the first object |
||
160 | * |
||
161 | * @return void |
||
162 | */ |
||
163 | 3 | public function rewind() |
|
167 | |||
168 | /** |
||
169 | * Whether an object ID exists |
||
170 | * |
||
171 | * @param int $offset Object ID |
||
172 | * @return boolean Whether the object ID exists |
||
173 | */ |
||
174 | 1 | public function offsetExists($offset) |
|
178 | |||
179 | /** |
||
180 | * Get an object with a particular ID |
||
181 | * |
||
182 | * @param int $offset Object ID |
||
183 | * @return ObjectInterface Object |
||
184 | */ |
||
185 | 2 | public function offsetGet($offset) |
|
189 | |||
190 | /** |
||
191 | * Set an object by ID |
||
192 | * |
||
193 | * @param int $offset Object ID |
||
194 | * @param ObjectInterface $value Object |
||
195 | * @throws RuntimeException When an object should be set by ID |
||
196 | */ |
||
197 | 1 | public function offsetSet($offset, $value) |
|
203 | |||
204 | /** |
||
205 | * Unset an object by ID |
||
206 | * |
||
207 | * @param int $offset Object ID |
||
208 | * @throws RuntimeException When an object should be set by ID |
||
209 | */ |
||
210 | 1 | public function offsetUnset($offset) |
|
215 | |||
216 | /** |
||
217 | * Add an object to the collection |
||
218 | * |
||
219 | * @param string|ObjectInterface $object Object or object URL |
||
220 | * @return Collection Modified object collection |
||
221 | */ |
||
222 | 2 | public function add($object) |
|
228 | |||
229 | /** |
||
230 | * Remove an object out of this collection |
||
231 | * |
||
232 | * @param string|ObjectInterface $object Object or object ID |
||
233 | * @return Collection Modified object collection |
||
234 | */ |
||
235 | 1 | public function remove($object) |
|
249 | |||
250 | /** |
||
251 | * Count objects in this collection |
||
252 | * |
||
253 | * @return int The number of objects in this collection |
||
254 | */ |
||
255 | 6 | public function count() |
|
259 | |||
260 | /******************************************************************************* |
||
261 | * PRIVATE METHODS |
||
262 | *******************************************************************************/ |
||
263 | |||
264 | /** |
||
265 | * Append another collection |
||
266 | * |
||
267 | * @param Collection $collection Collection |
||
268 | * @return Collection Combined collections |
||
269 | */ |
||
270 | 1 | public function append(Collection $collection) |
|
275 | } |
||
276 |
Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.