-
Notifications
You must be signed in to change notification settings - Fork 1
/
XHProf.php
389 lines (337 loc) · 10.7 KB
/
XHProf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<?php
/**
* Class XHProf
* Simple wrapper for XHProf with basic functionality to configure and run/stop profiling.
* Also provide methods to get proper URL for report, callgraph or diff results.
*
* @author Vadym Stepanov <[email protected]>
*/
class XHProf
{
const STATUS_RUNNING = 0;
const STATUS_STOPPED = 1;
/**
* List of templates to get URL for report, callgraph or diff results
* @var array
*/
public static $urlTemplates = array(
'report' => 'index.php?run=%%ID%%&source=%%NAMESPACE%%',
'callgraph' => 'callgraph.php?run=%%ID%%&source=%%NAMESPACE%%',
'diff' => 'index.php?run1=%%ID1%%&run2=%%ID2%%&source=%%NAMESPACE%%'
);
/**
* Single instance to work with profiler
* @var self
*/
private static $instance;
/**
* Enable/disable flag XHPROF_FLAGS_NO_BUILTINS (http://php.net/manual/ru/xhprof.constants.php)
* @var boolean
*/
private $flagNoBuiltins = true;
/**
* Enable/disable flag XHPROF_FLAGS_CPU (http://php.net/manual/ru/xhprof.constants.php)
* Default: false. Reason - some overhead in calculation on linux OS
* @var boolean
*/
private $flagCpu = false;
/**
* Enable/disable flag XHPROF_FLAGS_MEMORY (http://php.net/manual/ru/xhprof.constants.php)
* @var boolean
*/
private $flagMemory = true;
/**
* Path to directory with 'xhprof_lib' contents
* @var string
*/
private $libPath;
/**
* URL path to 'xhprof_html' directory (to create URL for report and others)
* @var string
*/
private $htmlUrlPath;
/**
* Flag to get info if XHProf was started
* @var bool
*/
private $started = false;
/**
* Identifier for profile run. Must be unique. If not set - uniqid function will be used
* @var string
*/
private $runId;
/**
* Namespace for profile run results. To compare several runs they must be with equal namespace
* @var string
*/
private $runNamespace = 'yii-xhprof';
/**
* Status of XHProf
* @var int
*/
private $runStatus = self::STATUS_STOPPED;
/**
* Get single instance of XHProf
* @return XHProf
*/
public static function getInstance()
{
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Final construct to prevent from overloading.
* Checks if xhprof extension is available
*/
final protected function __construct()
{
if (!extension_loaded('xhprof')) {
throw new RuntimeException('XHProf extension is not available');
}
}
/**
* Configure instance of XHProf with key-valued array, where key must be the name of private attribute of the class
* with available public setter method
* @param array $config key-valued list of params
*/
public function configure(array $config)
{
foreach ($config as $key => $value) {
$methodName = 'set' . ucfirst($key);
if (method_exists($this, $methodName)) {
$this->$methodName($value);
}
}
}
/**
* Set value to use flag XHPROF_FLAGS_NO_BUILTINS (http://php.net/manual/ru/xhprof.constants.php)
* @param boolean $flagNoBuiltins
*/
public function setFlagNoBuiltins($flagNoBuiltins)
{
$this->flagNoBuiltins = $flagNoBuiltins;
}
/**
* Set value to use flag XHPROF_FLAGS_CPU (http://php.net/manual/ru/xhprof.constants.php)
* @param boolean $flagCpu
*/
public function setFlagCpu($flagCpu)
{
$this->flagCpu = $flagCpu;
}
/**
* Set value to use flag XHPROF_FLAGS_MEMORY (http://php.net/manual/ru/xhprof.constants.php)
* @param boolean $flagMemory
*/
public function setFlagMemory($flagMemory)
{
$this->flagMemory = $flagMemory;
}
/**
* Set path to directory with 'xhprof_lib' contents.
* @param string $libPath path to the directory
*/
public function setLibPath($libPath)
{
if (empty($libPath) || !is_dir($libPath)) {
throw new InvalidArgumentException('Lib path cannot be empty and should point to existing directory with xhprof_lib content');
}
if (!file_exists($libPath . '/utils/xhprof_lib.php') || !file_exists($libPath . '/utils/xhprof_runs.php')) {
throw new InvalidArgumentException('Lib path does not contain necessary files for XHProf (utils/xhprof_lib.php, utils/xhprof_runs.php)');
}
$this->libPath = $libPath;
}
/**
* Set own value of identifier for current profile run (should be unique, to separate all profiler runs)
* @param string $runId
*/
public function setRunId($runId)
{
if (empty($runId)) {
throw new InvalidArgumentException('Identifier cannot be blank');
}
$this->runId = $runId;
}
/**
* Set namespace for current profiler run
* @param string $runNamespace
*/
public function setRunNamespace($runNamespace)
{
if (empty($runNamespace)) {
throw new InvalidArgumentException('Namespace cannot be blank');
}
$this->runNamespace = $runNamespace;
}
/**
* Set URL path to the 'xhprof_html' directory (which contains XHProf UI)
* @param string $htmlUrlPath
*/
public function setHtmlUrlPath($htmlUrlPath)
{
if (empty($htmlUrlPath) || filter_var($htmlUrlPath, FILTER_VALIDATE_URL) === false) {
throw new InvalidArgumentException('HtmlUrlPath cannot be blank and must be a valid URL value');
}
$this->htmlUrlPath = rtrim($htmlUrlPath, '\\');
}
/**
* Get if profiler was started
* @return boolean
*/
public function isStarted()
{
return $this->started;
}
/**
* Get unique run identifier for active profiler
* @return string
*/
public function getRunId()
{
if ($this->runId === null) {
$this->runId = uniqid('', false);
}
return $this->runId;
}
/**
* Get namespace for current run
* @return string
*/
public function getRunNamespace()
{
return $this->runNamespace;
}
/**
* Get status of running
* @return int
*/
public function getStatus()
{
return $this->runStatus;
}
/**
* Get URL to the profiler report.
* @param string $id identifier of profiler run. If not specified will be used value from current run
* @param string $namespace namespace of the profiler run. If not specified will be used value from current run
* @return string
*/
public function getReportUrl($id = null, $namespace = null)
{
if ($id === null) {
$id = $this->getRunId();
}
if ($namespace === null) {
$namespace = $this->getRunNamespace();
}
return $this->getUrl('report', array($id), $namespace);
}
/**
* Get URL to the callgraph report.
* @param string $id identifier of profiler run. If not specified will be used value from current run
* @param string $namespace namespace of the profiler run. If not specified will be used value from current run
* @return string
*/
public function getCallgraphUrl($id = null, $namespace = null)
{
if ($id === null) {
$id = $this->getRunId();
$namespace = $this->getRunNamespace();
}
return $this->getUrl('callgraph', array($id), $namespace);
}
/**
* Get URL to the diff report of two specified runs.
* @param string $id1 identifier of first profiler run
* @param string $id2 identifier of another profiler run to compare with first
* @param string $namespace namespace of the profiler run. If not specified will be used value from current run
* @return string
*/
public function getDiffUrl($id1, $id2, $namespace = null)
{
if ($namespace === null) {
$namespace = $this->getRunNamespace();
}
return $this->getUrl('callgraph', array($id1, $id2), $namespace);
}
/**
* Get flags and run XHProf. Only one start per session is allowed
*/
public function run()
{
if ($this->started) {
throw new RuntimeException('Cannot run XHProf again - already started');
}
$flags = $this->getFlags();
if ($flags !== 0) {
xhprof_enable($flags);
} else {
xhprof_enable();
}
$this->runStatus = self::STATUS_RUNNING;
$this->started = true;
}
/**
* Stop profiling and save results with configured identifier and namespace
*/
public function stop()
{
if (!$this->started) {
throw new RuntimeException('Cannot stop XHProf - not started');
}
$runId = $this->getRunId();
$runNamespace = $this->runNamespace;
$data = xhprof_disable();
include_once($this->libPath . '/utils/xhprof_lib.php');
include_once($this->libPath . '/utils/xhprof_runs.php');
$xhprof = new XHProfRuns_Default();
$xhprof->save_run($data, $runNamespace, $runId);
$this->runStatus = self::STATUS_STOPPED;
}
/**
* Calculate flags for 'xhprof_enable' function
* @return int
*/
private function getFlags()
{
$flags = 0;
if ($this->flagNoBuiltins) {
$flags += XHPROF_FLAGS_NO_BUILTINS;
}
if ($this->flagCpu) {
$flags += XHPROF_FLAGS_CPU;
}
if ($this->flagMemory) {
$flags += XHPROF_FLAGS_MEMORY;
}
return $flags;
}
/**
* Utility method to get value of the URL with specified type and params
* @param string $type type of the URL. Allowed values are: 'report', 'callgraph', 'diff'
* @param array $ids one or two identifiers for URL creation
* @param string $namespace profile namespace
* @return string
*/
private function getUrl($type, array $ids, $namespace)
{
if (empty($this->htmlUrlPath)) {
throw new RuntimeException('Html URL path not specified');
}
if ($type !== 'diff') {
$url = $this->htmlUrlPath . '/' . str_replace(
array('%%ID%%', '%%NAMESPACE%%'),
array($ids[0], $namespace),
self::$urlTemplates[$type]
);
} else {
$url = $this->htmlUrlPath . '/' . str_replace(
array('%%ID1%%', '%%ID2%%', '%%NAMESPACE%%'),
array($ids[0], $ids[1], $namespace),
self::$urlTemplates[$type]
);
}
return $url;
}
}