-
Notifications
You must be signed in to change notification settings - Fork 2
/
XHProf.php
556 lines (483 loc) · 14.2 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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<?php
namespace stevad\xhprof;
/**
* 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.
*
* Supported extensions: xhprof, tideways_xhprof
*
* @author Vadym Stepanov <[email protected]>
* @date 13.03.2018
*/
class XHProf
{
const STATUS_RUNNING = 0;
const STATUS_STOPPED = 1;
const TYPE_REPORT = 'report';
const TYPE_CALLGRAPH = 'callgraph';
const TYPE_DIFF = 'diff';
const EXT_XHPROF = 'xhprof';
const EXT_TIDEWAYS_XHPROF = 'tideways_xhprof';
/**
* List of templates to get URL for report, callgraph or diff results
*
* @var array
*/
public static $urlTemplates = [
self::TYPE_REPORT => 'index.php?run=%%ID%%&source=%%NAMESPACE%%',
self::TYPE_CALLGRAPH => 'callgraph.php?run=%%ID%%&source=%%NAMESPACE%%',
self::TYPE_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;
/**
* List of functions to ignore during profiling (http://php.net/manual/ru/function.xhprof-enable.php)
*
* @var array
*/
private $ignoredFunctions = [];
/**
* 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;
/**
* Default directory to store XHProf runs. If not specified - will use 'sys_get_temp_dir()' value
*
* @var string|null
*/
private $tmpPath;
/**
* Flag to get info if XHProf was started
*
* @var bool
*/
private $started = false;
/**
* Namespace for profile run results. To compare several runs they must be with equal namespace
*
* @var string
*/
private $runNamespace = 'yii2-xhprof';
/**
* Status of XHProf
*
* @var int
*/
private $runStatus = self::STATUS_STOPPED;
/**
* Identifier for profile run. Internal attribute
*
* @var string
*/
private $runId;
/**
* @var string
*/
private $selectedExtension;
/**
* Final construct to prevent from overloading.
* Checks if xhprof or tideways_xhprof extension is available
*
* @throws \RuntimeException
*/
final protected function __construct()
{
$checkExtensions = [self::EXT_XHPROF, self::EXT_TIDEWAYS_XHPROF];
foreach ($checkExtensions as $extName) {
if (\extension_loaded($extName)) {
$this->selectedExtension = $extName;
break;
}
}
if ($this->selectedExtension === null) {
throw new \RuntimeException('xhprof or tideways_xhprof extension is not available');
}
}
/**
* Get single instance of XHProf
*
* @return XHProf
* @throws \RuntimeException
*/
public static function getInstance()
{
if (self::$instance === null) {
self::$instance = new self();
}
return self::$instance;
}
/**
* 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
*
* @return void
*/
public function configure(array $config)
{
foreach ($config as $key => $value) {
$methodName = 'set' . \ucfirst($key);
if (\method_exists($this, $methodName)) {
$this->{$methodName}($value);
}
}
if ($this->tmpPath === null) {
$this->setTmpPath(sys_get_temp_dir());
}
}
/**
* Set value to use flag XHPROF_FLAGS_NO_BUILTINS (http://php.net/manual/ru/xhprof.constants.php)
*
* @param boolean $flag
*
* @return $this
*/
public function setFlagNoBuiltins($flag)
{
$this->flagNoBuiltins = $flag;
return $this;
}
/**
* Set value to use flag XHPROF_FLAGS_CPU (http://php.net/manual/ru/xhprof.constants.php)
*
* @param boolean $flag
*
* @return $this
*/
public function setFlagCpu($flag)
{
$this->flagCpu = $flag;
return $this;
}
/**
* Set value to use flag XHPROF_FLAGS_MEMORY (http://php.net/manual/ru/xhprof.constants.php)
*
* @param boolean $flag
*
* @return $this
*/
public function setFlagMemory($flag)
{
$this->flagMemory = $flag;
return $this;
}
/**
* Set list of functions to ignore during profiling session
*
* @param array $functions
*
* @return $this
*/
public function setIgnoredFunctions(array $functions)
{
$this->ignoredFunctions = $functions;
return $this;
}
/**
* Get list of functions to ignore during profiling session
*
* @return array
*/
public function getIgnoredFunctions()
{
return $this->ignoredFunctions;
}
/**
* Set path to directory with 'xhprof_lib' contents.
*
* @param string $libPath path to the directory
*
* @return $this
* @throws \InvalidArgumentException
*/
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;
return $this;
}
/**
* Set URL path to the 'xhprof_html' directory (which contains XHProf UI)
*
* @param string $htmlUrlPath
*
* @return $this
* @throws \InvalidArgumentException
*/
public function setHtmlUrlPath($htmlUrlPath)
{
if (empty($htmlUrlPath) || \preg_match('/^http(s)?:\/\/.+$/i', $htmlUrlPath) === false) {
throw new \InvalidArgumentException('HtmlUrlPath cannot be blank and must be a valid URL value');
}
$this->htmlUrlPath = \rtrim($htmlUrlPath, '/');
return $this;
}
/**
* Set path to temporary directory to save XHProf results
*
* @param string|null $path
*
* @return $this
*/
public function setTmpPath($path)
{
if (!file_exists($path) || !is_dir($path) || !is_writable($path)) {
throw new \RuntimeException('Provided temporary path is not accessible: ' . $path);
}
$this->tmpPath = $path;
return $this;
}
/**
* 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(self::TYPE_REPORT, [$id], $namespace);
}
/**
* 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;
}
/**
* Set namespace for current profiler run
*
* @param string $runNamespace
*
* @return $this
* @throws \InvalidArgumentException
*/
public function setRunNamespace($runNamespace)
{
if (empty($runNamespace)) {
throw new \InvalidArgumentException('Namespace cannot be blank');
}
$this->runNamespace = $runNamespace;
return $this;
}
/**
* Get if profiler was started
*
* @return boolean
*/
public function isStarted()
{
return $this->started;
}
/**
* Get status of running
*
* @return int
*/
public function getStatus()
{
return $this->runStatus;
}
/**
* 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
* @throws \RuntimeException
*/
private function getUrl($type, array $ids, $namespace)
{
if (empty($this->htmlUrlPath)) {
throw new \RuntimeException('Html URL path not specified');
}
if ($type !== self::TYPE_DIFF) {
$url = $this->htmlUrlPath . '/'
. \str_replace(
['%%ID%%', '%%NAMESPACE%%'],
[$ids[0], $namespace],
self::$urlTemplates[$type]
);
} else {
$url = $this->htmlUrlPath . '/'
. \str_replace(
['%%ID1%%', '%%ID2%%', '%%NAMESPACE%%'],
[$ids[0], $ids[1], $namespace],
self::$urlTemplates[$type]
);
}
return $url;
}
/**
* 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(self::TYPE_CALLGRAPH, [$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(self::TYPE_DIFF, [$id1, $id2], $namespace);
}
/**
* Get flags and run XHProf. Only one start per session is allowed
*
* @return void
* @throws \RuntimeException
*/
public function run()
{
if ($this->started) {
throw new \RuntimeException('Cannot run XHProf again - already started');
}
$flags = $this->getFlags();
$options = [];
$functions = $this->getIgnoredFunctions();
if (!empty($functions)) {
$options['ignored_functions'] = $functions;
}
if ($this->selectedExtension === self::EXT_XHPROF) {
xhprof_enable($flags, $options);
} else {
tideways_xhprof_enable($flags);
}
$this->runStatus = self::STATUS_RUNNING;
$this->started = true;
}
/**
* Calculate flags for 'xhprof_enable' function
*
* @return int
*/
private function getFlags()
{
$flags = 0;
if ($this->flagNoBuiltins) {
$flags += $this->selectedExtension === self::EXT_XHPROF
? XHPROF_FLAGS_NO_BUILTINS
: TIDEWAYS_XHPROF_FLAGS_NO_BUILTINS;
}
if ($this->flagCpu) {
$flags += $this->selectedExtension === self::EXT_XHPROF
? XHPROF_FLAGS_CPU
: TIDEWAYS_XHPROF_FLAGS_CPU;
}
if ($this->flagMemory) {
$flags += $this->selectedExtension === self::EXT_XHPROF
? XHPROF_FLAGS_MEMORY
: TIDEWAYS_XHPROF_FLAGS_MEMORY;
}
return $flags;
}
/**
* Stop profiling and save results with configured identifier and namespace.
*
* @return array List of urls to report and callgraph
* @throws \RuntimeException
*/
public function stop()
{
if ($this->runStatus !== self::STATUS_RUNNING) {
throw new \RuntimeException('Cannot stop XHProf - it is not running');
}
$runId = $this->getRunId();
$runNamespace = $this->getRunNamespace();
if ($this->selectedExtension === self::EXT_XHPROF) {
$data = xhprof_disable();
} else {
$data = tideways_xhprof_disable();
}
include_once($this->libPath . '/utils/xhprof_lib.php');
include_once($this->libPath . '/utils/xhprof_runs.php');
$xhprof = new \XHProfRuns_Default($this->tmpPath);
$xhprof->save_run($data, $runNamespace, $runId);
$this->runStatus = self::STATUS_STOPPED;
return [
self::TYPE_REPORT => $this->getReportUrl($runId, $runNamespace),
self::TYPE_CALLGRAPH => $this->getCallgraphUrl($runId, $runNamespace),
];
}
}