Completed
Push — master ( 1c936f...4dad64 )
by Jesse
02:03
created

ElementSorter::compareElements()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 14
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 7
c 0
b 0
f 0
dl 0
loc 14
rs 10
cc 2
nc 2
nop 3
1
<?php
2
declare(strict_types=1);
3
4
namespace Stratadox\Sorting;
5
6
use Closure;
7
use Stratadox\Sorting\Contracts\Sorter;
8
use Stratadox\Sorting\Contracts\Sorting;
9
10
/**
11
 * Sorter logic for comparing multiple values according to the sort definition.
12
 *
13
 * Leaves retrieving the values to the concrete implementations.
14
 *
15
 * @author  Stratadox
16
 * @package Stratadox\Sorting
17
 */
18
abstract class ElementSorter implements Sorter
19
{
20
    public function sort(array $elements, Sorting $sorting): array
21
    {
22
        usort($elements, $this->functionFor($sorting));
23
        return $elements;
24
    }
25
26
    private function functionFor(Sorting $sorting): Closure
27
    {
28
        return function ($element1, $element2) use ($sorting) {
29
            return $this->doTheSorting($element1, $element2, $sorting);
30
        };
31
    }
32
33
    private function doTheSorting(
34
        $element1,
35
        $element2,
36
        Sorting $sorting
37
    ): int {
38
        $comparison = 0;
39
        while ($sorting->isRequired()) {
40
            $comparison = $this->compareElements(
41
                $element1,
42
                $element2,
43
                $sorting
44
            );
45
            if ($comparison !== 0) {
46
                break;
47
            }
48
            $sorting = $sorting->next();
49
        }
50
        return $comparison;
51
    }
52
53
    private function compareElements(
54
        $element1,
55
        $element2,
56
        Sorting $sorting
57
    ): int {
58
        if ($sorting->ascends()) {
59
            return $this->compareValues(
60
                $this->valueFor($element1, $sorting->field()),
61
                $this->valueFor($element2, $sorting->field())
62
            );
63
        }
64
        return $this->compareValues(
65
            $this->valueFor($element2, $sorting->field()),
66
            $this->valueFor($element1, $sorting->field())
67
        );
68
    }
69
70
    private function compareValues($value1, $value2): int
71
    {
72
        return $value1 <=> $value2;
73
    }
74
75
    abstract protected function valueFor($element, string $field);
76
}
77