-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringKeyValueStore.php
More file actions
349 lines (302 loc) · 6.86 KB
/
StringKeyValueStore.php
File metadata and controls
349 lines (302 loc) · 6.86 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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<?php
/**
* This file is part of the Noctud Collection.
* Copyright (c) Noctud.dev
*/
declare(strict_types=1);
namespace Noctud\Collection\Map\StringMap;
use Noctud\Collection\Exception\InvalidKeyTypeException;
use Noctud\Collection\Exception\NoSuchElementException;
use Noctud\Collection\Map\SimpleMapEntry;
use Noctud\Collection\Map\KeyCollisionStrategy;
use Noctud\Collection\Store\KeyValueStore;
use Traversable;
/**
* Internal single-array entry storage for string-key maps.
* PHP may cast numeric strings ("123") to int as array keys; we cast back on iteration.
*
* @template V
* @implements KeyValueStore<string,V>
*/
final class StringKeyValueStore implements KeyValueStore
{
/** @var array<int|string,V> - PHP may cast string keys to int */
private array $data = [];
/**
* @template NV
* @param iterable<string|int,NV> $source
* @return self<NV>
*/
public static function fromAssoc(iterable $source): self
{
/** @var self<NV> $store */
$store = new self();
if (is_array($source)) {
$store->data = $source;
} else {
foreach ($source as $k => $v) {
$store->data[$k] = $v;
}
}
return $store;
}
/**
* @return self<mixed>
*/
public static function empty(): self
{
return new self();
}
/**
* @inheritDoc
*/
public function getIterator(): Traversable
{
foreach ($this->data as $key => $value) {
yield (string) $key => $value;
}
}
/**
* @inheritDoc
*/
public function count(): int
{
return count($this->data);
}
/**
* @inheritDoc
*/
public function isEmpty(): bool
{
return $this->data === [];
}
/**
* @inheritDoc
*/
public function containsKey(string|int|bool|float|object $key): bool
{
if (!is_string($key)) {
return false;
}
return array_key_exists($key, $this->data);
}
/**
* @inheritDoc
*/
public function contains(mixed $value): bool
{
return array_any($this->data, fn ($v) => $v === $value);
}
/**
* @inheritDoc
*/
public function get(string|int|bool|float|object $key, bool $throw = false): mixed
{
if (!is_string($key)) {
if (!$throw) {
return null;
}
throw new NoSuchElementException('Key not found in map');
}
if (!array_key_exists($key, $this->data)) {
if (!$throw) {
return null;
}
throw new NoSuchElementException('Key not found in map');
}
return $this->data[$key];
}
/**
* @return ($throw is true ? SimpleMapEntry<string,V> : SimpleMapEntry<string,V>|null)
* @throws NoSuchElementException
*/
public function first(bool $throw = false): ?SimpleMapEntry
{
if ($this->isEmpty()) {
if (!$throw) {
return null;
}
throw new NoSuchElementException();
}
$key = array_key_first($this->data);
return new SimpleMapEntry((string) $key, $this->data[$key]);
}
/**
* @return ($throw is true ? SimpleMapEntry<string,V> : SimpleMapEntry<string,V>|null)
* @throws NoSuchElementException
*/
public function last(bool $throw = false): ?SimpleMapEntry
{
if ($this->isEmpty()) {
if (!$throw) {
return null;
}
throw new NoSuchElementException();
}
$key = array_key_last($this->data);
return new SimpleMapEntry((string) $key, $this->data[$key]);
}
/**
* @return ($throw is true ? SimpleMapEntry<string,V> : SimpleMapEntry<string,V>|null)
* @throws NoSuchElementException
*/
public function random(bool $throw = false): ?SimpleMapEntry
{
if ($this->isEmpty()) {
if (!$throw) {
return null;
}
throw new NoSuchElementException();
}
$key = array_rand($this->data);
return new SimpleMapEntry((string) $key, $this->data[$key]);
}
/**
* @inheritDoc
*/
public function put(string|int|bool|float|object $key, mixed $value): void
{
if (!is_string($key)) {
throw new InvalidKeyTypeException(sprintf('StringMap requires string keys, got %s', get_debug_type($key)));
}
$this->data[$key] = $value;
}
/**
* @inheritDoc
*/
public function putAllFromAssoc(iterable $source): void
{
foreach ($source as $k => $v) {
if (!is_string($k)) {
throw new InvalidKeyTypeException(sprintf('StringMap requires string keys, got %s', get_debug_type($k)));
}
$this->data[$k] = $v; // @phpstan-ignore assign.propertyType
}
}
/**
* @inheritDoc
*/
public function putAllFromPairs(iterable $source): void
{
foreach ($source as [$k, $v]) {
if (!is_string($k)) {
throw new InvalidKeyTypeException(sprintf('StringMap requires string keys, got %s', get_debug_type($k)));
}
$this->data[$k] = $v; // @phpstan-ignore assign.propertyType
}
}
/**
* @inheritDoc
*/
public function putFirst(string|int|bool|float|object $key, mixed $value): void
{
if (!is_string($key)) {
throw new InvalidKeyTypeException(sprintf('StringMap requires string keys, got %s', get_debug_type($key)));
}
unset($this->data[$key]);
$this->data = [$key => $value] + $this->data;
}
/**
* @param string $key
*/
public function remove(string|int|bool|float|object $key): void
{
if (!is_string($key)) {
return;
}
unset($this->data[$key]);
}
public function removeFirst(): void
{
if (!$this->isEmpty()) {
$key = array_key_first($this->data);
unset($this->data[$key]);
}
}
public function removeLast(): void
{
if (!$this->isEmpty()) {
$key = array_key_last($this->data);
unset($this->data[$key]);
}
}
/**
* @inheritDoc
*/
public function clear(): void
{
$this->data = [];
}
/** @inheritDoc */
public function removeIf(callable $predicate): void
{
foreach ($this->data as $key => $value) {
if ($predicate($value, (string) $key)) {
unset($this->data[$key]);
}
}
}
/** @inheritDoc */
public function removeIfKey(callable $predicate): void
{
foreach ($this->data as $key => $value) {
if ($predicate((string) $key)) {
unset($this->data[$key]);
}
}
}
/** @inheritDoc */
public function removeIfValue(callable $predicate): void
{
foreach ($this->data as $key => $value) {
if ($predicate($value)) {
unset($this->data[$key]);
}
}
}
/** @inheritDoc */
public function sortByPairs(callable $comparator): void
{
$pairs = $this->toPairs();
usort($pairs, $comparator);
$this->data = [];
foreach ($pairs as [$k, $v]) {
$this->data[$k] = $v;
}
}
/** @inheritDoc */
public function reverse(): void
{
$this->data = array_reverse($this->data, true);
}
/** @inheritDoc */
public function shuffle(): void
{
$keys = array_keys($this->data);
shuffle($keys);
$shuffled = [];
foreach ($keys as $k) {
$shuffled[$k] = $this->data[$k];
}
$this->data = $shuffled;
}
/**
* @return array<int,array{0:string,1:V}>
*/
public function toPairs(): array
{
$out = [];
foreach ($this->data as $k => $v) {
$out[] = [(string) $k, $v];
}
return $out;
}
/**
* @inheritDoc
*/
public function toArray(KeyCollisionStrategy $onCollision = KeyCollisionStrategy::Throw): array
{
// String keys map 1:1 to PHP array keys - no collision possible since PHP 8.0
return $this->data;
}
}