Fix extra space from r64084
[lhc/web/wiklou.git] / includes / ProfilerSimpleTrace.php
1 <?php
2 /**
3 * @file
4 * @ingroup Profiler
5 */
6
7 if ( !class_exists( 'ProfilerSimple' ) ) {
8 require_once(dirname(__FILE__).'/ProfilerSimple.php');
9 }
10
11 /**
12 * Execution trace
13 * @todo document methods (?)
14 * @ingroup Profiler
15 */
16 class ProfilerSimpleTrace extends ProfilerSimple {
17 var $mMinimumTime = 0;
18 var $mProfileID = false;
19 var $trace = "";
20 var $memory = 0;
21
22 function __construct() {
23 global $wgRequestTime, $wgRUstart;
24 if (!empty($wgRequestTime) && !empty($wgRUstart)) {
25 $this->mWorkStack[] = array( '-total', 0, $wgRequestTime,$this->getCpuTime($wgRUstart));
26 $elapsedcpu = $this->getCpuTime() - $this->getCpuTime($wgRUstart);
27 $elapsedreal = microtime(true) - $wgRequestTime;
28 }
29 $this->trace .= "Beginning trace: \n";
30 }
31
32 function profileIn($functionname) {
33 global $wgDebugFunctionEntry;
34 $this->mWorkStack[] = array($functionname, count( $this->mWorkStack ), microtime(true), $this->getCpuTime());
35 $this->trace .= " " . sprintf("%6.1f",$this->memoryDiff()) . str_repeat( " ", count($this->mWorkStack)) . " > " . $functionname . "\n";
36 }
37
38 function profileOut($functionname) {
39 global $wgDebugFunctionEntry;
40
41 if ($wgDebugFunctionEntry) {
42 $this->debug(str_repeat(' ', count($this->mWorkStack) - 1).'Exiting '.$functionname."\n");
43 }
44
45 list($ofname, /* $ocount */ ,$ortime,$octime) = array_pop($this->mWorkStack);
46
47 if (!$ofname) {
48 $this->trace .= "Profiling error: $functionname\n";
49 } else {
50 if ($functionname == 'close') {
51 $message = "Profile section ended by close(): {$ofname}";
52 $functionname = $ofname;
53 $this->trace .= $message . "\n";
54 }
55 elseif ($ofname != $functionname) {
56 $self->trace .= "Profiling error: in({$ofname}), out($functionname)";
57 }
58 $elapsedcpu = $this->getCpuTime() - $octime;
59 $elapsedreal = microtime(true) - $ortime;
60 $this->trace .= sprintf("%03.6f %6.1f",$elapsedreal,$this->memoryDiff()) . str_repeat(" ",count($this->mWorkStack)+1) . " < " . $functionname . "\n";
61 }
62 }
63
64 function memoryDiff() {
65 $diff = memory_get_usage() - $this->memory;
66 $this->memory = memory_get_usage();
67 return $diff/1024;
68 }
69
70 function getOutput() {
71 print "<!-- \n {$this->trace} \n -->";
72 }
73 }