Passed
Push — master ( dd99a9...c8547b )
by Michiel
10:09
created

Series   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 60
Duplicated Lines 0 %

Test Coverage

Coverage 96.55%

Importance

Changes 0
Metric Value
eloc 20
dl 0
loc 60
ccs 28
cts 29
cp 0.9655
rs 10
c 0
b 0
f 0
wmc 10

8 Methods

Rating   Name   Duplication   Size   Complexity  
A getTotalTime() 0 3 1
A setFinishTime() 0 4 1
A size() 0 3 1
A add() 0 4 1
A __construct() 0 3 1
A current() 0 6 2
A getAverageTime() 0 6 2
A getTimes() 0 7 1
1
<?php
2
/**
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the LGPL. For more information please see
17
 * <http://phing.info>.
18
 */
19
20
/**
21
 * @author    Siad Ardroumli <[email protected]>
22
 * @package   phing.listener.statistics
23
 */
24
class Series
25
{
26
    private $stack;
27
28
    /**
29
     * @var Duration[] $list
30
     */
31
    private $list = [];
32
33 1
    public function __construct()
34
    {
35 1
        $this->stack = new SplStack();
36 1
    }
37
38 1
    public function add(Duration $duration)
39
    {
40 1
        $this->list[] = $duration;
41 1
        $this->stack->push($duration);
42 1
    }
43
44 1
    public function setFinishTime($time)
45
    {
46 1
        $duration = $this->stack->pop();
47 1
        $duration->setFinishTime($time);
48 1
    }
49
50 1
    public function getTimes()
51
    {
52 1
        return array_map(
53 1
            function (Duration $elem) {
54 1
                return $elem->getTime();
55 1
            },
56 1
            $this->list
57
        );
58
    }
59
60 1
    public function getTotalTime()
61
    {
62 1
        return array_sum($this->getTimes());
63
    }
64
65 1
    public function getAverageTime()
66
    {
67 1
        if (count($this->list) === 0) {
68
            return 0;
69
        }
70 1
        return $this->getTotalTime() / count($this->list);
71
    }
72
73 1
    public function size()
74
    {
75 1
        return count($this->list);
76
    }
77
78 1
    public function current()
79
    {
80 1
        if ($this->stack->isEmpty()) {
81 1
            $this->stack->push(new Duration());
82
        }
83 1
        return $this->stack->top();
84
    }
85
}
86