Completed
Pull Request — master (#136)
by Alex
15:37 queued 21s
created

BidirectionalMap::removeValue()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 7

Duplication

Lines 10
Ratio 100 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 10
loc 10
rs 9.4285
cc 2
eloc 7
nc 2
nop 1
1
<?php
2
3
namespace AlgoWeb\ODataMetadata;
4
5
class BidirectionalMap
6
{
7
    private $keyToValue = [];
8
    private $valueToKey = [];
9
10
    public function reset()
11
    {
12
        $this->keyToValue = [];
13
        $this->valueToKey = [];
14
    }
15
16
    /**
17
     * Check if supplied key exists
18
     * @param $key
19
     * @return bool
20
     */
21
    public function hasKey($key)
22
    {
23
        return isset($this->keyToValue[$key]);
24
    }
25
26
    /**
27
     * Check if supplied key exists
28
     * @param $value
29
     * @return bool
30
     */
31
    public function hasValue($value)
32
    {
33
        return isset($this->valueToKey[$value]);
34
    }
35
36
    /**
37
     * Retrieve key matching supplied value
38
     * @param mixed $value
39
     * @return mixed|null
40
     */
41
    public function getKey($value)
42
    {
43
        if ($this->hasValue($value)) {
44
            return $this->valueToKey[$value];
45
        }
46
        return null;
47
    }
48
49
    /**
50
     * Retrieve value matching supplied key
51
     * @param mixed $key
52
     * @return mixed|null
53
     */
54
    public function getValue($key)
55
    {
56
        if ($this->hasKey($key)) {
57
            return $this->keyToValue[$key];
58
        }
59
        return null;
60
    }
61
62
    public function getAllKeys()
63
    {
64
        if (0 !== count($this->keyToValue)) {
65
            return array_keys($this->keyToValue);
66
        }
67
        return $this->keyToValue;
68
    }
69
70
    public function getAllValues()
71
    {
72
        if (0 !== count($this->valueToKey)) {
73
            return array_keys($this->valueToKey);
74
        }
75
        return $this->valueToKey;
76
    }
77
78
    public function putAll($array)
79
    {
80
        foreach ($array as $key => $value) {
81
            $this->put($key, $value);
82
        }
83
    }
84
85
    public function put($key, $value)
86
    {
87
        if ($this->hasKey($key)) {
88
            $this->removeKey($key);
89
        }
90
        if ($this->hasValue($value)) {
91
            $this->removeValue($value);
92
        }
93
        $this->keyToValue[$key] = $value;
94
        $this->valueToKey[$value] = $key;
95
    }
96
97
    /**
98
     * Remove supplied key from map and return matching value
99
     * @param mixed $key
100
     * @return mixed|null
101
     */
102 View Code Duplication
    public function removeKey($key)
1 ignored issue
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...
103
    {
104
        if (!$this->hasKey($key)) {
105
            return null;
106
        }
107
        unset($this->valueToKey[$this->keyToValue[$key]]);
108
        $value = $this->keyToValue[$key];
109
        unset($this->keyToValue[$key]);
110
        return $value;
111
    }
112
113
    /**
114
     * Remove supplied value from map and return matching key
115
     * @param mixed $value
116
     * @return mixed|null
117
     */
118 View Code Duplication
    public function removeValue($value)
1 ignored issue
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...
119
    {
120
        if (!$this->hasValue($value)) {
121
            return null;
122
        }
123
        unset($this->keyToValue[$this->valueToKey[$value]]);
124
        $key = $this->valueToKey[$value];
125
        unset($this->valueToKey[$value]);
126
        return $key;
127
    }
128
}
129