1 | <?php |
||
29 | abstract class HashArray extends ArrayObject implements Hashable { |
||
30 | |||
31 | /** |
||
32 | * Maps element hashes to their offsets. |
||
33 | * |
||
34 | * @since 0.1 |
||
35 | * |
||
36 | * @var array [ element hash (string) => element offset (string|int) ] |
||
37 | */ |
||
38 | protected $offsetHashes = []; |
||
39 | |||
40 | /** |
||
41 | * @var integer |
||
42 | */ |
||
43 | protected $indexOffset = 0; |
||
44 | |||
45 | /** |
||
46 | * Returns the name of an interface/class that the element should implement/extend. |
||
47 | * |
||
48 | * @since 0.4 |
||
49 | * |
||
50 | * @return string |
||
51 | */ |
||
52 | abstract public function getObjectType(); |
||
53 | |||
54 | /** |
||
55 | * @see ArrayObject::__construct |
||
56 | * |
||
57 | * @param array|Traversable|null $input |
||
58 | * @param int $flags |
||
59 | * @param string $iteratorClass |
||
60 | * |
||
61 | * @throws InvalidArgumentException |
||
62 | */ |
||
63 | public function __construct( $input = null, $flags = 0, $iteratorClass = 'ArrayIterator' ) { |
||
76 | |||
77 | /** |
||
78 | * Finds a new offset for when appending an element. |
||
79 | * The base class does this, so it would be better to integrate, |
||
80 | * but there does not appear to be any way to do this... |
||
81 | * |
||
82 | * @return integer |
||
83 | */ |
||
84 | protected function getNewOffset() { |
||
91 | |||
92 | /** |
||
93 | * Gets called before a new element is added to the ArrayObject. |
||
94 | * |
||
95 | * At this point the index is always set (ie not null) and the |
||
96 | * value is always of the type returned by @see getObjectType. |
||
97 | * |
||
98 | * Should return a boolean. When false is returned the element |
||
99 | * does not get added to the ArrayObject. |
||
100 | * |
||
101 | * @since 0.1 |
||
102 | * |
||
103 | * @param int|string $index |
||
104 | * @param Hashable $hashable |
||
105 | * |
||
106 | * @return bool |
||
107 | */ |
||
108 | protected function preSetElement( $index, $hashable ) { |
||
122 | |||
123 | /** |
||
124 | * Returns if there is an element with the provided hash. |
||
125 | * |
||
126 | * @since 0.1 |
||
127 | * |
||
128 | * @param string $elementHash |
||
129 | * |
||
130 | * @return bool |
||
131 | */ |
||
132 | public function hasElementHash( $elementHash ) { |
||
135 | |||
136 | /** |
||
137 | * Returns if there is an element with the same hash as the provided element in the list. |
||
138 | * |
||
139 | * @since 0.1 |
||
140 | * |
||
141 | * @param Hashable $element |
||
142 | * |
||
143 | * @return bool |
||
144 | */ |
||
145 | public function hasElement( Hashable $element ) { |
||
148 | |||
149 | /** |
||
150 | * Removes the element with the hash of the provided element, if there is such an element in the list. |
||
151 | * |
||
152 | * @since 0.1 |
||
153 | * |
||
154 | * @param Hashable $element |
||
155 | */ |
||
156 | public function removeElement( Hashable $element ) { |
||
159 | |||
160 | /** |
||
161 | * Removes the element with the provided hash, if there is such an element in the list. |
||
162 | * |
||
163 | * @since 0.1 |
||
164 | * |
||
165 | * @param string $elementHash |
||
166 | */ |
||
167 | public function removeByElementHash( $elementHash ) { |
||
173 | |||
174 | /** |
||
175 | * Adds the provided element to the list if there is no element with the same hash yet. |
||
176 | * |
||
177 | * @since 0.1 |
||
178 | * |
||
179 | * @param Hashable $element |
||
180 | * |
||
181 | * @return bool Indicates if the element was added or not. |
||
182 | */ |
||
183 | public function addElement( Hashable $element ) { |
||
192 | |||
193 | /** |
||
194 | * Returns the element with the provided hash or false if there is no such element. |
||
195 | * |
||
196 | * @since 0.1 |
||
197 | * |
||
198 | * @param string $elementHash |
||
199 | * |
||
200 | * @return mixed|bool |
||
201 | */ |
||
202 | public function getByElementHash( $elementHash ) { |
||
211 | |||
212 | /** |
||
213 | * @see ArrayObject::offsetUnset |
||
214 | * |
||
215 | * @since 0.1 |
||
216 | * |
||
217 | * @param mixed $index |
||
218 | */ |
||
219 | public function offsetUnset( $index ) { |
||
233 | |||
234 | /** |
||
235 | * @see Hashable::getHash |
||
236 | * |
||
237 | * The hash is purely valuer based. Order of the elements in the array is not held into account. |
||
238 | * |
||
239 | * @since 0.1 |
||
240 | * |
||
241 | * @return string |
||
242 | */ |
||
243 | public function getHash() { |
||
247 | |||
248 | /** |
||
249 | * @see ArrayObject::append |
||
250 | * |
||
251 | * @param mixed $value |
||
252 | */ |
||
253 | public function append( $value ) { |
||
256 | |||
257 | /** |
||
258 | * @see ArrayObject::offsetSet() |
||
259 | * |
||
260 | * @param mixed $index |
||
261 | * @param mixed $value |
||
262 | */ |
||
263 | public function offsetSet( $index, $value ) { |
||
266 | |||
267 | /** |
||
268 | * Returns if the provided value has the same type as the elements |
||
269 | * that can be added to this ArrayObject. |
||
270 | * |
||
271 | * @param mixed $value |
||
272 | * |
||
273 | * @return bool |
||
274 | */ |
||
275 | protected function hasValidType( $value ) { |
||
279 | |||
280 | /** |
||
281 | * Method that actually sets the element and holds |
||
282 | * all common code needed for set operations, including |
||
283 | * type checking and offset resolving. |
||
284 | * |
||
285 | * If you want to do additional indexing or have code that |
||
286 | * otherwise needs to be executed whenever an element is added, |
||
287 | * you can overload @see preSetElement. |
||
288 | * |
||
289 | * @param mixed $index |
||
290 | * @param mixed $value |
||
291 | * |
||
292 | * @throws InvalidArgumentException |
||
293 | */ |
||
294 | protected function setElement( $index, $value ) { |
||
309 | |||
310 | /** |
||
311 | * @see Serializable::serialize |
||
312 | * |
||
313 | * @return string |
||
314 | */ |
||
315 | public function serialize() { |
||
321 | |||
322 | /** |
||
323 | * @see Serializable::unserialize |
||
324 | * |
||
325 | * @param string $serialized |
||
326 | */ |
||
327 | public function unserialize( $serialized ) { |
||
338 | |||
339 | /** |
||
340 | * Returns if the ArrayObject has no elements. |
||
341 | * |
||
342 | * @return bool |
||
343 | */ |
||
344 | public function isEmpty() { |
||
347 | |||
348 | } |
||
349 |
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()
method in theSon
calls the wrong method in the parent class.