1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2017 SURFnet B.V. |
5
|
|
|
* |
6
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
7
|
|
|
* you may not use this file except in compliance with the License. |
8
|
|
|
* You may obtain a copy of the License at |
9
|
|
|
* |
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
11
|
|
|
* |
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
14
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15
|
|
|
* See the License for the specific language governing permissions and |
16
|
|
|
* limitations under the License. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace Surfnet\StepupMiddleware\MiddlewareBundle\EventSourcing; |
20
|
|
|
|
21
|
|
|
use ArrayIterator; |
22
|
|
|
use Broadway\ReadModel\ProjectorInterface; |
23
|
|
|
use IteratorAggregate; |
24
|
|
|
use Surfnet\StepupMiddleware\MiddlewareBundle\Exception\InvalidArgumentException; |
25
|
|
|
|
26
|
|
|
final class ProjectorCollection implements IteratorAggregate |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* @var ProjectorInterface[] |
30
|
|
|
*/ |
31
|
|
|
private $projectors = []; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @param ProjectorInterface $projector |
35
|
|
|
*/ |
36
|
|
|
public function add(ProjectorInterface $projector) |
37
|
|
|
{ |
38
|
|
|
$this->projectors[get_class($projector)] = $projector; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @param array $projectorNames |
43
|
|
|
* @return ProjectorCollection |
44
|
|
|
*/ |
45
|
|
|
public function selectByNames(array $projectorNames) |
46
|
|
|
{ |
47
|
|
|
$subsetCollection = new ProjectorCollection; |
48
|
|
|
|
49
|
|
|
foreach ($projectorNames as $projectorName) { |
50
|
|
|
if (!array_key_exists($projectorName, $this->projectors)) { |
51
|
|
|
throw new InvalidArgumentException( |
52
|
|
|
sprintf( |
53
|
|
|
'Cannot select a subset of projectors, because projector "%s" is not present in the collection', |
54
|
|
|
$projectorName |
55
|
|
|
) |
56
|
|
|
); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
$subsetCollection->projectors[$projectorName] = $this->projectors; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
return $subsetCollection; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @param ProjectorInterface $projector |
67
|
|
|
* @return bool |
68
|
|
|
*/ |
69
|
|
|
public function contains(ProjectorInterface $projector) |
70
|
|
|
{ |
71
|
|
|
return array_key_exists(get_class($projector), $this->projectors); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
public function getIterator() |
75
|
|
|
{ |
76
|
|
|
return new ArrayIterator($this->projectors); |
77
|
|
|
} |
78
|
|
|
} |
79
|
|
|
|