-
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathCollection.php
More file actions
204 lines (162 loc) · 3.3 KB
/
Collection.php
File metadata and controls
204 lines (162 loc) · 3.3 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
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Utils;
use Nette;
/**
* Collection of items (probably of same type).
*/
abstract class Collection
{
/** @var array */
private $items = [];
/** @var bool */
private $keysMatter = FALSE;
/**
* @return static
* @throws Nette\NotSupportedException
*/
public static function fromIterator(\Traversable $iterator, array $constructorArgs = [])
{
$me = new static(...array_values($constructorArgs));
if (!method_exists($me, 'add')) {
throw new Nette\NotSupportedException(__METHOD__ . '() requires ' . get_class($me) . '::add() to be implemented.');
}
foreach ($iterator as $item) {
$me->add($item);
}
return $me;
}
/**
* @return static
* @throws Nette\NotSupportedException
*/
public static function fromArray(array $items, array $constructorArgs = [])
{
return static::fromIterator(new \ArrayIterator($items), $constructorArgs);
}
/**
* @return int
*/
public function count()
{
return count($this->items);
}
/**
* @param mixed
* @return bool
*/
public function has($key)
{
return array_key_exists($this->normalizeKey($key), $this->items);
}
/**
* @return array
*/
public function getKeys()
{
return array_keys($this->items);
}
/**
* @return \ArrayIterator
*/
public function getIterator()
{
return new \ArrayIterator($this->items);
}
/**
* @param callable
* @return static
*/
public function filter(callable $cb)
{
$me = clone $this;
$me->items = array_filter($this->items, $cb, ARRAY_FILTER_USE_BOTH);
return $me;
}
/**
* @param callable
* @return static
*/
public function walk(callable $cb)
{
array_walk($this->items, $cb);
return $this;
}
/**
* @param callable
* @return array
*/
public function convert(callable $cb)
{
$result = [];
foreach ($this->items as $key => $item) {
$unset = FALSE;
$item = $cb($item, $key, $unset);
if (!$unset) {
if ($key === NULL) {
$result[] = $item;
} else {
$result[$key] = $item;
}
}
}
return $result;
}
/**
* @param callable $cb
* @return static
*/
public function sortBy(callable $cb)
{
if ($this->keysMatter) {
uasort($this->items, $cb);
} else {
usort($this->items, $cb);
}
return $this;
}
/**
* @param mixed $key
* @return int|string
*/
protected function normalizeKey($key)
{
return $key;
}
/**
* @param mixed
* @param mixed
* @throws Nette\ArgumentOutOfRangeException
* @return void
*/
protected function addItem($item, $key)
{
$key = $this->normalizeKey($key);
if ($key === NULL) {
$this->items[] = $item;
} else {
if (array_key_exists($key, $this->items)) {
throw new Nette\ArgumentOutOfRangeException("Item with key '$key' already exists in " . get_class($this) . " collection.");
}
$this->items[$key] = $item;
$this->keysMatter = TRUE;
}
}
/**
* @param mixed
* @return mixed
* @throws ItemNotFoundException
*/
protected function getItem($key)
{
$key = $this->normalizeKey($key);
if (!array_key_exists($key, $this->items)) {
throw new ItemNotFoundException("Item with key '$key' was not found in collection.");
}
return $this->items[$key];
}
}