Completed
Push — master ( a49478...ff8a6e )
by Pol
01:00 queued 10s
created

Shift::key()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace drupol\phpermutations\Iterators;
4
5
use drupol\phpermutations\Combinatorics;
6
use drupol\phpermutations\IteratorInterface;
7
8
/**
9
 * Class Shift.
10
 */
11
class Shift extends Combinatorics implements IteratorInterface
12
{
13
    /**
14
     * The key.
15
     *
16
     * @var int
17
     */
18
    protected $key = 0;
19
20
    /**
21
     * A copy of the dataset at a give time.
22
     *
23
     * @var array
24
     */
25
    protected $current;
26
27
    /**
28
     * Shift constructor.
29
     *
30
     * @param array $dataset
31
     *                       The dataset
32
     * @param int   $length
33
     *                       The shift length
34
     */
35 12
    public function __construct(array $dataset = [], $length = 1)
36
    {
37 12
        parent::__construct($dataset, $length);
38 12
        $this->current = $this->getDataset();
39 12
    }
40
41
    /**
42
     * {@inheritdoc}
43
     */
44 12 View Code Duplication
    public function setLength($length = null)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
45
    {
46 12
        $length = (null === $length) ? $this->datasetCount : $length;
0 ignored issues
show
Coding Style introduced by
Consider using a different name than the parameter $length. This often makes code more readable.
Loading history...
47 12
        $this->length = (abs($length) > $this->datasetCount) ? $this->datasetCount : $length;
48
49 12
        return $this;
50
    }
51
52
    /**
53
     * {@inheritdoc}
54
     */
55 4
    public function current()
56
    {
57 4
        return $this->current;
58
    }
59
60
    /**
61
     * {@inheritdoc}
62
     */
63 8
    public function next()
64
    {
65 8
        $this->doShift(1);
66 8
    }
67
68
    /**
69
     * {@inheritdoc}
70
     */
71
    public function rewind()
72
    {
73
        $this->doShift(-1);
74
    }
75
76
    /**
77
     * {@inheritdoc}
78
     */
79
    public function valid()
80
    {
81
        return true;
82
    }
83
84
    /**
85
     * {@inheritdoc}
86
     */
87 12
    public function count()
88
    {
89 12
        return count($this->getDataset());
90
    }
91
92
    /**
93
     * Internal function to do the shift.
94
     *
95
     * @param int $length
96
     */
97 8
    protected function doShift($length = 1)
98
    {
99 8
        $parameters = [];
100
101 8
        if ($length < 0) {
102
            $parameters[] = ['start' => abs($length), 'end' => null];
103
            $parameters[] = ['start' => 0, 'end' => abs($length)];
104
        } else {
105 8
            $parameters[] = ['start' => -1 * $length, 'end' => null];
106 8
            $parameters[] = ['start' => 0, 'end' => $this->datasetCount + $length * -1];
107
        }
108
109 8
        $this->current = array_merge(
110 8
            array_slice($this->current, $parameters[0]['start'], $parameters[0]['end']),
111 8
            array_slice($this->current, $parameters[1]['start'], $parameters[1]['end'])
112
        );
113 8
    }
114
}
115