UniqueCache   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 49
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 12
eloc 22
c 1
b 0
f 0
dl 0
loc 49
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A generate() 0 17 4
B exists() 0 21 7
A clear() 0 3 1
1
<?php
2
3
namespace Knp\FriendlyContexts\Utils;
4
5
class UniqueCache
6
{
7
    private $cache = [];
8
9
    public function exists($className, $field, $value)
10
    {
11
        if (!isset($this->cache[$className])) {
12
            return false;
13
        }
14
15
        if (!is_array($this->cache[$className]) || !isset($this->cache[$className][$field])) {
16
            return false;
17
        }
18
19
        if (!is_array($this->cache[$className][$field])) {
20
            return false;
21
        }
22
23
        foreach ($this->cache[$className][$field] as $cacheValue) {
24
            if ($value === $cacheValue) {
25
                return true;
26
            }
27
        }
28
29
        return false;
30
    }
31
32
    public function generate($className, $field, $callback)
33
    {
34
        do {
35
            $value = $callback();
36
        } while ($this->exists($className, $field, $value));
37
38
        if (!isset($this->cache[$className])) {
39
            $this->cache[$className] = [];
40
        }
41
42
        if (!isset($this->cache[$className][$field])) {
43
            $this->cache[$className][$field] = [];
44
        }
45
46
        $this->cache[$className][$field][] = $value;
47
48
        return $value;
49
    }
50
51
    public function clear()
52
    {
53
        $this->cache = [];
54
    }
55
}
56