1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Wikibase\DataModel; |
4
|
|
|
|
5
|
|
|
use ArrayIterator; |
6
|
|
|
use Comparable; |
7
|
|
|
use Countable; |
8
|
|
|
use InvalidArgumentException; |
9
|
|
|
use IteratorAggregate; |
10
|
|
|
use Traversable; |
11
|
|
|
use Wikibase\DataModel\Internal\MapValueHasher; |
12
|
|
|
use Wikibase\DataModel\Snak\Snak; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* List of Reference objects. |
16
|
|
|
* |
17
|
|
|
* @since 0.1 |
18
|
|
|
* Does not implement References anymore since 2.0 |
19
|
|
|
* Does not extend SplObjectStorage since 5.0 |
20
|
|
|
* |
21
|
|
|
* @licence GNU GPL v2+ |
22
|
|
|
* @author Jeroen De Dauw < [email protected] > |
23
|
|
|
* @author H. Snater < [email protected] > |
24
|
|
|
* @author Thiemo Mättig |
25
|
|
|
* @author Bene* < [email protected] > |
26
|
|
|
*/ |
27
|
|
|
class ReferenceList implements Comparable, Countable, IteratorAggregate { |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @var Reference[] |
31
|
|
|
*/ |
32
|
|
|
private $references = array(); |
33
|
|
|
|
34
|
|
|
/** |
35
|
|
|
* @param Reference[]|Traversable $references |
36
|
|
|
* |
37
|
|
|
* @throws InvalidArgumentException |
38
|
|
|
*/ |
39
|
|
|
public function __construct( $references = array() ) { |
40
|
|
|
if ( !is_array( $references ) && !( $references instanceof Traversable ) ) { |
41
|
|
|
throw new InvalidArgumentException( '$references must be an array or an instance of Traversable' ); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
foreach ( $references as $reference ) { |
45
|
|
|
if ( !( $reference instanceof Reference ) ) { |
46
|
|
|
throw new InvalidArgumentException( 'Every element in $references must be an instance of Reference' ); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
$this->addReference( $reference ); |
50
|
|
|
} |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Adds the provided reference to the list. |
55
|
|
|
* Empty references are ignored. |
56
|
|
|
* |
57
|
|
|
* @since 0.1 |
58
|
|
|
* |
59
|
|
|
* @param Reference $reference |
60
|
|
|
* @param int|null $index |
61
|
|
|
* |
62
|
|
|
* @throws InvalidArgumentException |
63
|
|
|
*/ |
64
|
|
|
public function addReference( Reference $reference, $index = null ) { |
65
|
|
|
if ( $index !== null && ( !is_int( $index ) || $index < 0 ) ) { |
66
|
|
|
throw new InvalidArgumentException( '$index must be a non-negative integer or null' ); |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
if ( $reference->isEmpty() ) { |
70
|
|
|
return; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
if ( $index === null || $index >= count( $this->references ) ) { |
74
|
|
|
// Append object to the end of the reference list. |
75
|
|
|
$this->references[] = $reference; |
76
|
|
|
} else { |
77
|
|
|
$this->insertReferenceAtIndex( $reference, $index ); |
78
|
|
|
} |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* @since 1.1 |
83
|
|
|
* |
84
|
|
|
* @param Snak[]|Snak $snaks |
85
|
|
|
* @param Snak [$snak2,...] |
86
|
|
|
* |
87
|
|
|
* @throws InvalidArgumentException |
88
|
|
|
*/ |
89
|
|
|
public function addNewReference( $snaks = array() /*...*/ ) { |
90
|
|
|
if ( $snaks instanceof Snak ) { |
91
|
|
|
$snaks = func_get_args(); |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
$this->addReference( new Reference( $snaks ) ); |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
/** |
98
|
|
|
* @param Reference $reference |
99
|
|
|
* @param int $index |
100
|
|
|
*/ |
101
|
|
|
private function insertReferenceAtIndex( Reference $reference, $index ) { |
102
|
|
|
array_splice( $this->references, $index, 0, array( $reference ) ); |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* Returns if the list contains a reference with the same hash as the provided reference. |
107
|
|
|
* |
108
|
|
|
* @since 0.1 |
109
|
|
|
* |
110
|
|
|
* @param Reference $reference |
111
|
|
|
* |
112
|
|
|
* @return boolean |
113
|
|
|
*/ |
114
|
|
|
public function hasReference( Reference $reference ) { |
115
|
|
|
return $this->hasReferenceHash( $reference->getHash() ); |
116
|
|
|
} |
117
|
|
|
|
118
|
|
|
/** |
119
|
|
|
* Returns the index of a reference or false if the reference could not be found. |
120
|
|
|
* |
121
|
|
|
* @since 0.5 |
122
|
|
|
* |
123
|
|
|
* @param Reference $reference |
124
|
|
|
* |
125
|
|
|
* @return int|boolean |
126
|
|
|
*/ |
127
|
|
|
public function indexOf( Reference $reference ) { |
128
|
|
|
foreach ( $this->references as $index => $ref ) { |
129
|
|
|
if ( $ref === $reference ) { |
130
|
|
|
return $index; |
131
|
|
|
} |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
return false; |
135
|
|
|
} |
136
|
|
|
|
137
|
|
|
/** |
138
|
|
|
* Removes the reference with the same hash as the provided reference if such a reference exists in the list. |
139
|
|
|
* |
140
|
|
|
* @since 0.1 |
141
|
|
|
* |
142
|
|
|
* @param Reference $reference |
143
|
|
|
*/ |
144
|
|
|
public function removeReference( Reference $reference ) { |
145
|
|
|
$this->removeReferenceHash( $reference->getHash() ); |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
/** |
149
|
|
|
* Returns if the list contains a reference with the provided hash. |
150
|
|
|
* |
151
|
|
|
* @since 0.3 |
152
|
|
|
* |
153
|
|
|
* @param string $referenceHash |
154
|
|
|
* |
155
|
|
|
* @return boolean |
156
|
|
|
*/ |
157
|
|
|
public function hasReferenceHash( $referenceHash ) { |
158
|
|
|
return $this->getReference( $referenceHash ) !== null; |
159
|
|
|
} |
160
|
|
|
|
161
|
|
|
/** |
162
|
|
|
* Removes the reference with the provided hash if it exists in the list. |
163
|
|
|
* |
164
|
|
|
* @since 0.3 |
165
|
|
|
* |
166
|
|
|
* @param string $referenceHash ` |
167
|
|
|
*/ |
168
|
|
|
public function removeReferenceHash( $referenceHash ) { |
169
|
|
|
foreach ( $this->references as $index => $reference ) { |
170
|
|
|
if ( $reference->getHash() === $referenceHash ) { |
171
|
|
|
$this->removeReferenceAtIndex( $index ); |
172
|
|
|
} |
173
|
|
|
} |
174
|
|
|
} |
175
|
|
|
|
176
|
|
|
/** |
177
|
|
|
* @param int $index |
178
|
|
|
*/ |
179
|
|
|
private function removeReferenceAtIndex( $index ) { |
180
|
|
|
array_splice( $this->references, $index, 1 ); |
181
|
|
|
} |
182
|
|
|
|
183
|
|
|
/** |
184
|
|
|
* Returns the reference with the provided hash, or |
185
|
|
|
* null if there is no such reference in the list. |
186
|
|
|
* |
187
|
|
|
* @since 0.3 |
188
|
|
|
* |
189
|
|
|
* @param string $referenceHash |
190
|
|
|
* |
191
|
|
|
* @return Reference|null |
192
|
|
|
*/ |
193
|
|
|
public function getReference( $referenceHash ) { |
194
|
|
|
foreach ( $this->references as $reference ) { |
195
|
|
|
if ( $reference->getHash() === $referenceHash ) { |
196
|
|
|
return $reference; |
197
|
|
|
} |
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
return null; |
201
|
|
|
} |
202
|
|
|
|
203
|
|
|
/** |
204
|
|
|
* @since 4.4 |
205
|
|
|
* |
206
|
|
|
* @return bool |
207
|
|
|
*/ |
208
|
|
|
public function isEmpty() { |
209
|
|
|
return empty( $this->references ); |
210
|
|
|
} |
211
|
|
|
|
212
|
|
|
/** |
213
|
|
|
* The hash is purely valuer based. Order of the elements in the array is not held into account. |
214
|
|
|
* |
215
|
|
|
* @since 0.3 |
216
|
|
|
* |
217
|
|
|
* @return string |
218
|
|
|
*/ |
219
|
|
|
public function getValueHash() { |
220
|
|
|
$hasher = new MapValueHasher(); |
221
|
|
|
return $hasher->hash( $this->references ); |
222
|
|
|
} |
223
|
|
|
|
224
|
|
|
/** |
225
|
|
|
* @see Comparable::equals |
226
|
|
|
* |
227
|
|
|
* The comparison is done purely value based, ignoring the order of the elements in the array. |
228
|
|
|
* |
229
|
|
|
* @since 0.3 |
230
|
|
|
* |
231
|
|
|
* @param mixed $target |
232
|
|
|
* |
233
|
|
|
* @return bool |
234
|
|
|
*/ |
235
|
|
|
public function equals( $target ) { |
236
|
|
|
if ( $this === $target ) { |
237
|
|
|
return true; |
238
|
|
|
} |
239
|
|
|
|
240
|
|
|
return $target instanceof self |
241
|
|
|
&& $this->getValueHash() === $target->getValueHash(); |
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
/** |
245
|
|
|
* @see Countable::count |
246
|
|
|
* |
247
|
|
|
* @return int |
248
|
|
|
*/ |
249
|
|
|
public function count() { |
250
|
|
|
return count( $this->references ); |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
/** |
254
|
|
|
* @see IteratorAggregate::getIterator |
255
|
|
|
* |
256
|
|
|
* @since 5.0 |
257
|
|
|
* |
258
|
|
|
* @return Traversable |
259
|
|
|
*/ |
260
|
|
|
public function getIterator() { |
261
|
|
|
return new ArrayIterator( $this->references ); |
262
|
|
|
} |
263
|
|
|
|
264
|
|
|
} |
265
|
|
|
|