1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace EmanueleMinotto\TwigCacheBundle\DataCollector; |
4
|
|
|
|
5
|
|
|
use Symfony\Component\HttpFoundation\Request; |
6
|
|
|
use Symfony\Component\HttpFoundation\Response; |
7
|
|
|
use Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface; |
8
|
|
|
|
9
|
|
|
class TwigCacheCollector implements DataCollectorInterface |
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* @var string |
13
|
|
|
*/ |
14
|
|
|
private $strategyClass; |
15
|
|
|
|
16
|
|
|
/** |
17
|
|
|
* Data about fetchBlock requests. |
18
|
|
|
* |
19
|
|
|
* @var array |
20
|
|
|
*/ |
21
|
|
|
private $fetchBlock = []; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Data about generateKey requests. |
25
|
|
|
* |
26
|
|
|
* @var array |
27
|
|
|
*/ |
28
|
|
|
private $generateKey = []; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Cache hits. |
32
|
|
|
* |
33
|
|
|
* @var int |
34
|
|
|
*/ |
35
|
|
|
private $hits = 0; |
36
|
|
|
|
37
|
|
|
public function collect(Request $request, Response $response, \Exception $exception = null) |
38
|
|
|
{ |
39
|
|
|
// nothing to do here |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @return string The collector name |
44
|
|
|
*/ |
45
|
|
|
public function getName() |
46
|
|
|
{ |
47
|
|
|
return 'asm89_cache'; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @param string $strategyClass |
52
|
|
|
*/ |
53
|
|
|
public function setStrategyClass($strategyClass) |
54
|
|
|
{ |
55
|
|
|
$this->strategyClass = $strategyClass; |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* Store a fetch request. |
60
|
|
|
* |
61
|
|
|
* @param mixed $key |
62
|
|
|
* @param string $output |
63
|
|
|
*/ |
64
|
|
|
public function addFetchBlock($key, $output) |
65
|
|
|
{ |
66
|
|
|
$this->fetchBlock[] = [$key, $output]; |
67
|
|
|
|
68
|
|
|
if ($output) { |
69
|
|
|
++$this->hits; |
70
|
|
|
} |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Store a generateKey request. |
75
|
|
|
* |
76
|
|
|
* @param string $annotation |
77
|
|
|
* @param mixed $value |
78
|
|
|
*/ |
79
|
|
|
public function addGenerateKey($annotation, $value) |
80
|
|
|
{ |
81
|
|
|
$this->generateKey[] = [ |
82
|
|
|
'annotation' => $annotation, |
83
|
|
|
'value' => $value, |
84
|
|
|
]; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Get data stored in this profiler. |
89
|
|
|
* |
90
|
|
|
* @return array |
91
|
|
|
*/ |
92
|
|
|
public function getData() |
93
|
|
|
{ |
94
|
|
|
return [ |
95
|
|
|
'fetchBlock' => $this->fetchBlock, |
96
|
|
|
'generateKey' => $this->generateKey, |
97
|
|
|
'hits' => $this->hits, |
98
|
|
|
'strategyClass' => $this->strategyClass, |
99
|
|
|
]; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* Reset profiler data. |
104
|
|
|
*/ |
105
|
|
|
public function reset() |
106
|
|
|
{ |
107
|
|
|
$this->fetchBlock = []; |
108
|
|
|
$this->generateKey = []; |
109
|
|
|
$this->hits = 0; |
110
|
|
|
} |
111
|
|
|
} |
112
|
|
|
|