|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace GeminiLabs\BlackBar; |
|
4
|
|
|
|
|
5
|
|
|
class Profiler |
|
6
|
|
|
{ |
|
7
|
|
|
/** |
|
8
|
|
|
* This is the time that WordPress takes to execute the profiler hook. |
|
9
|
|
|
* @var float |
|
10
|
|
|
*/ |
|
11
|
|
|
protected $noise; |
|
12
|
|
|
/** |
|
13
|
|
|
* @var float |
|
14
|
|
|
*/ |
|
15
|
|
|
protected $start; |
|
16
|
|
|
/** |
|
17
|
|
|
* @var float |
|
18
|
|
|
*/ |
|
19
|
|
|
protected $stop; |
|
20
|
|
|
/** |
|
21
|
|
|
* @var array |
|
22
|
|
|
*/ |
|
23
|
|
|
protected $timers; |
|
24
|
|
|
|
|
25
|
|
|
public function __construct() |
|
26
|
|
|
{ |
|
27
|
|
|
$this->noise = (float) 0; |
|
28
|
|
|
$this->start = (float) 0; |
|
29
|
|
|
$this->stop = (float) 0; |
|
30
|
|
|
$this->timers = []; |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public function getMeasure(): array |
|
34
|
|
|
{ |
|
35
|
|
|
return $this->timers; |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
public function getMemoryString(array $timer): string |
|
39
|
|
|
{ |
|
40
|
|
|
return sprintf('%s kB', round($this->normalize($timer)['memory'] / 1000)); |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
public function getNameString(array $timer): string |
|
44
|
|
|
{ |
|
45
|
|
|
return $this->normalize($timer)['name']; |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
public function getTimeString(array $timer): string |
|
49
|
|
|
{ |
|
50
|
|
|
$timer = $this->normalize($timer); |
|
51
|
|
|
$index = array_search($timer['name'], array_column($this->timers, 'name')); |
|
52
|
|
|
$start = $this->start + ($index * $this->noise); |
|
53
|
|
|
$time = number_format(round(($timer['time'] - $start) * 1000, 4), 4); |
|
54
|
|
|
return sprintf('%s ms', $time); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
public function getTotalTime(): float |
|
58
|
|
|
{ |
|
59
|
|
|
$totalNoise = (count($this->timers) - 1) * $this->noise; |
|
60
|
|
|
return $this->stop - $this->start - $totalNoise; |
|
61
|
|
|
} |
|
62
|
|
|
|
|
63
|
|
|
public function trace(string $name): void |
|
64
|
|
|
{ |
|
65
|
|
|
$microtime = microtime(true); // float |
|
66
|
|
|
if (!$this->start) { |
|
67
|
|
|
$this->start = $microtime; |
|
|
|
|
|
|
68
|
|
|
} |
|
69
|
|
|
if ('blackbar/profiler/noise' === $name) { |
|
70
|
|
|
$this->noise = $microtime - $this->start; |
|
71
|
|
|
return; |
|
72
|
|
|
} |
|
73
|
|
|
$this->timers[] = [ |
|
74
|
|
|
'memory' => memory_get_peak_usage(), |
|
75
|
|
|
'name' => $name, |
|
76
|
|
|
'time' => $microtime, |
|
77
|
|
|
]; |
|
78
|
|
|
$this->stop = $microtime; |
|
|
|
|
|
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
protected function normalize(array $timer): array |
|
82
|
|
|
{ |
|
83
|
|
|
return wp_parse_args($timer, [ |
|
84
|
|
|
'memory' => 0, |
|
85
|
|
|
'name' => '', |
|
86
|
|
|
'time' => (float) 0, |
|
87
|
|
|
]); |
|
88
|
|
|
} |
|
89
|
|
|
} |
|
90
|
|
|
|
Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a mixed type is assigned to a property that is type hinted more strictly.
For example, imagine you have a variable
$accountIdthat can either hold an Id object or false (if there is no account id yet). Your code now assigns that value to theidproperty of an instance of theAccountclass. This class holds a proper account, so the id value must no longer be false.Either this assignment is in error or a type check should be added for that assignment.