Completed
Pull Request — develop (#188)
by A.
03:51
created

ProjectorCollection   A

Complexity

Total Complexity 7

Size/Duplication

Total Lines 66
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 7
c 1
b 0
f 0
lcom 1
cbo 1
dl 0
loc 66
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A add() 0 4 1
A getProjectorNames() 0 9 1
A selectByNames() 0 19 3
A contains() 0 4 1
A getIterator() 0 4 1
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
     * @return string[]
43
     */
44
    public function getProjectorNames()
45
    {
46
        return array_map(
47
            function (ProjectorInterface $projector) {
48
                return get_class($projector);
49
            },
50
            array_values($this->projectors)
51
        );
52
    }
53
54
    /**
55
     * @param array $projectorNames
56
     * @return ProjectorCollection
57
     */
58
    public function selectByNames(array $projectorNames)
59
    {
60
        $subsetCollection = new ProjectorCollection;
61
62
        foreach ($projectorNames as $projectorName) {
63
            if (!array_key_exists($projectorName, $this->projectors)) {
64
                throw new InvalidArgumentException(
65
                    sprintf(
66
                        'Cannot select a subset of projectors, because projector "%s" is not present in the collection',
67
                        $projectorName
68
                    )
69
                );
70
            }
71
72
            $subsetCollection->add($this->projectors[$projectorName]);
73
        }
74
75
        return $subsetCollection;
76
    }
77
78
    /**
79
     * @param ProjectorInterface $projector
80
     * @return bool
81
     */
82
    public function contains(ProjectorInterface $projector)
83
    {
84
        return array_key_exists(get_class($projector), $this->projectors);
85
    }
86
87
    public function getIterator()
88
    {
89
        return new ArrayIterator($this->projectors);
90
    }
91
}
92