1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Zicht Online <http://zicht.nl> |
4
|
|
|
*/ |
5
|
|
|
|
6
|
|
|
// todo: place the two classed in their own file |
7
|
|
|
// phpcs:disable PSR1.Classes.ClassDeclaration.MultipleClasses |
8
|
|
|
// phpcs:disable Zicht.Commenting.PropertyComment.VarTypeAvoidMixed |
9
|
|
|
|
10
|
|
|
namespace Zicht\Itertools\lib; |
11
|
|
|
|
12
|
|
|
use Zicht\Itertools\lib\Interfaces\FiniteIterableInterface; |
13
|
|
|
use Zicht\Itertools\lib\Traits\FiniteIterableTrait; |
14
|
|
|
|
15
|
|
|
class GroupedIterator extends \IteratorIterator implements FiniteIterableInterface |
16
|
|
|
{ |
17
|
|
|
use FiniteIterableTrait; |
18
|
|
|
|
19
|
|
|
/** @var mixed */ |
20
|
|
|
protected $groupKey; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @param mixed $groupKey |
24
|
|
|
*/ |
25
|
20 |
|
public function __construct($groupKey) |
26
|
|
|
{ |
27
|
20 |
|
$this->groupKey = $groupKey; |
28
|
20 |
|
parent::__construct(new \ArrayIterator()); |
29
|
20 |
|
} |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* @return mixed |
33
|
|
|
*/ |
34
|
18 |
|
public function getGroupKey() |
35
|
|
|
{ |
36
|
18 |
|
return $this->groupKey; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Adds an element to the iterable |
41
|
|
|
* |
42
|
|
|
* @param mixed $key |
43
|
|
|
* @param mixed $value |
44
|
|
|
*/ |
45
|
20 |
|
public function append($key, $value) |
46
|
|
|
{ |
47
|
20 |
|
$this->getInnerIterator()->append([$key, $value]); |
|
|
|
|
48
|
20 |
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* {@inheritdoc} |
52
|
|
|
*/ |
53
|
18 |
|
public function current() |
54
|
|
|
{ |
55
|
18 |
|
return $this->getInnerIterator()->current()[1]; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* {@inheritdoc} |
60
|
|
|
*/ |
61
|
18 |
|
public function key() |
62
|
|
|
{ |
63
|
18 |
|
return $this->getInnerIterator()->current()[0]; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* {@inheritdoc} |
68
|
|
|
*/ |
69
|
11 |
|
public function count() |
70
|
|
|
{ |
71
|
11 |
|
return iterator_count($this->getInnerIterator()); |
72
|
|
|
} |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
class GroupbyIterator extends \IteratorIterator implements FiniteIterableInterface |
76
|
|
|
{ |
77
|
|
|
use FiniteIterableTrait; |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* @param \Closure $func |
81
|
|
|
* @param \Iterator $iterable |
82
|
|
|
*/ |
83
|
20 |
|
public function __construct(\Closure $func, \Iterator $iterable) |
84
|
|
|
{ |
85
|
|
|
// todo: this implementation pre-computes everything... this is |
86
|
|
|
// not the way an iterator should work. Please re-write. |
87
|
20 |
|
$groupedIterator = null; |
88
|
20 |
|
$previousGroupKey = null; |
89
|
20 |
|
$data = []; |
90
|
|
|
|
91
|
20 |
|
foreach ($iterable as $key => $value) { |
92
|
20 |
|
$groupKey = call_user_func($func, $value, $key); |
93
|
20 |
|
if ($previousGroupKey !== $groupKey || $groupedIterator === null) { |
94
|
20 |
|
$previousGroupKey = $groupKey; |
95
|
20 |
|
$groupedIterator = new GroupedIterator($groupKey); |
96
|
20 |
|
$data [] = $groupedIterator; |
97
|
|
|
} |
98
|
20 |
|
$groupedIterator->append($key, $value); |
99
|
|
|
} |
100
|
|
|
|
101
|
20 |
|
parent::__construct(new \ArrayIterator($data)); |
102
|
20 |
|
} |
103
|
|
|
|
104
|
|
|
/** |
105
|
|
|
* {@inheritdoc} |
106
|
|
|
*/ |
107
|
18 |
|
public function key() |
108
|
|
|
{ |
109
|
18 |
|
return $this->current()->getGroupKey(); |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
/** |
113
|
|
|
* {@inheritdoc} |
114
|
|
|
*/ |
115
|
11 |
|
public function count() |
116
|
|
|
{ |
117
|
11 |
|
return iterator_count($this->getInnerIterator()); |
118
|
|
|
} |
119
|
|
|
} |
120
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: