wiki.techinc.nl/includes/Profiling.php

354 lines
9.3 KiB
PHP
Raw Normal View History

2006-01-07 13:09:30 +00:00
<?php
/**
* This file is only included if profiling is enabled
* @package MediaWiki
*/
/**
* @param $functioname name of the function we will profile
*/
2005-01-28 00:50:58 +00:00
function wfProfileIn($functionname) {
global $wgProfiler;
2005-01-28 00:50:58 +00:00
$wgProfiler->profileIn($functionname);
}
/**
* @param $functioname name of the function we have profiled
*/
2005-01-28 00:50:58 +00:00
function wfProfileOut($functionname = 'missing') {
global $wgProfiler;
2005-01-28 00:50:58 +00:00
$wgProfiler->profileOut($functionname);
}
2005-01-28 00:50:58 +00:00
function wfGetProfilingOutput($start, $elapsed) {
global $wgProfiler;
2005-01-28 00:50:58 +00:00
return $wgProfiler->getOutput($start, $elapsed);
}
function wfProfileClose() {
global $wgProfiler;
$wgProfiler->close();
}
2005-01-28 00:50:58 +00:00
if (!function_exists('memory_get_usage')) {
# Old PHP or --enable-memory-limit not compiled in
function memory_get_usage() {
return 0;
}
}
/**
* @todo document
* @package MediaWiki
*/
2005-01-28 00:50:58 +00:00
class Profiler {
var $mStack = array (), $mWorkStack = array (), $mCollated = array ();
var $mCalls = array (), $mTotals = array ();
2006-01-07 13:31:29 +00:00
function Profiler()
{
// Push an entry for the pre-profile setup time onto the stack
global $wgRequestTime;
if ( !empty( $wgRequestTime ) ) {
$this->mWorkStack[] = array( '-total', 0, $wgRequestTime, 0 );
$this->mStack[] = array( '-setup', 1, $wgRequestTime, 0, microtime(true), 0 );
} else {
$this->profileIn( '-total' );
}
2006-01-07 13:31:29 +00:00
}
2005-01-28 00:50:58 +00:00
function profileIn($functionname) {
global $wgDebugFunctionEntry;
2005-01-28 00:50:58 +00:00
if ($wgDebugFunctionEntry && function_exists('wfDebug')) {
wfDebug(str_repeat(' ', count($this->mWorkStack)).'Entering '.$functionname."\n");
}
2005-07-25 07:00:20 +00:00
$this->mWorkStack[] = array($functionname, count( $this->mWorkStack ), $this->getTime(), memory_get_usage());
}
2005-01-28 00:50:58 +00:00
function profileOut($functionname) {
$memory = memory_get_usage();
2005-07-25 07:00:20 +00:00
$time = $this->getTime();
2005-06-19 02:31:54 +00:00
2005-12-04 18:27:59 +00:00
global $wgDebugFunctionEntry;
2005-01-28 00:50:58 +00:00
if ($wgDebugFunctionEntry && function_exists('wfDebug')) {
2005-05-28 07:00:28 +00:00
wfDebug(str_repeat(' ', count($this->mWorkStack) - 1).'Exiting '.$functionname."\n");
}
2005-01-28 00:50:58 +00:00
$bit = array_pop($this->mWorkStack);
if (!$bit) {
wfDebug("Profiling error, !\$bit: $functionname\n");
} else {
2005-07-25 07:00:20 +00:00
//if ($wgDebugProfiling) {
2005-01-28 00:50:58 +00:00
if ($functionname == 'close') {
2005-08-23 16:53:40 +00:00
$message = "Profile section ended by close(): {$bit[0]}";
wfDebug( "$message\n" );
2005-08-14 13:22:50 +00:00
$this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 );
2005-01-28 00:50:58 +00:00
}
elseif ($bit[0] != $functionname) {
2005-08-23 16:53:40 +00:00
$message = "Profiling error: in({$bit[0]}), out($functionname)";
wfDebug( "$message\n" );
2005-08-14 13:22:50 +00:00
$this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 );
}
2005-07-25 07:00:20 +00:00
//}
$bit[] = $time;
$bit[] = $memory;
$this->mStack[] = $bit;
}
}
2005-01-28 00:50:58 +00:00
function close() {
2005-01-28 00:50:58 +00:00
while (count($this->mWorkStack)) {
$this->profileOut('close');
}
}
function getOutput() {
global $wgDebugFunctionEntry;
$wgDebugFunctionEntry = false;
if (!count($this->mStack) && !count($this->mCollated)) {
return "No profiling output\n";
}
2004-05-26 12:30:36 +00:00
$this->close();
2005-01-28 00:50:58 +00:00
global $wgProfileCallTree;
2005-01-28 00:50:58 +00:00
if ($wgProfileCallTree) {
return $this->getCallTree();
} else {
return $this->getFunctionReport();
}
}
2005-01-28 00:50:58 +00:00
function getCallTree($start = 0) {
return implode('', array_map(array (& $this, 'getCallTreeLine'), $this->remapCallTree($this->mStack)));
}
2005-01-28 00:50:58 +00:00
function remapCallTree($stack) {
if (count($stack) < 2) {
return $stack;
}
2005-01-28 00:50:58 +00:00
$outputs = array ();
for ($max = count($stack) - 1; $max > 0;) {
/* Find all items under this entry */
$level = $stack[$max][1];
2005-01-28 00:50:58 +00:00
$working = array ();
for ($i = $max -1; $i >= 0; $i --) {
if ($stack[$i][1] > $level) {
$working[] = $stack[$i];
} else {
break;
}
}
2005-01-28 00:50:58 +00:00
$working = $this->remapCallTree(array_reverse($working));
$output = array ();
foreach ($working as $item) {
array_push($output, $item);
}
2005-01-28 00:50:58 +00:00
array_unshift($output, $stack[$max]);
$max = $i;
2005-01-28 00:50:58 +00:00
array_unshift($outputs, $output);
}
2005-01-28 00:50:58 +00:00
$final = array ();
foreach ($outputs as $output) {
foreach ($output as $item) {
$final[] = $item;
}
}
return $final;
}
2005-01-28 00:50:58 +00:00
function getCallTreeLine($entry) {
list ($fname, $level, $start, $x, $end) = $entry;
$delta = $end - $start;
2005-01-28 00:50:58 +00:00
$space = str_repeat(' ', $level);
# The ugly double sprintf is to work around a PHP bug,
# which has been fixed in recent releases.
2005-06-19 02:31:54 +00:00
return sprintf( "%10s %s %s\n",
trim( sprintf( "%7.3f", $delta * 1000.0 ) ),
$space, $fname );
}
2006-01-07 13:31:29 +00:00
2005-07-25 07:00:20 +00:00
function getTime() {
return microtime(true);
2005-07-25 07:00:20 +00:00
#return $this->getUserTime();
}
2005-06-19 02:31:54 +00:00
function getUserTime() {
$ru = getrusage();
return $ru['ru_utime.tv_sec'].' '.$ru['ru_utime.tv_usec'] / 1e6;
}
2006-01-07 13:31:29 +00:00
function getFunctionReport() {
2005-06-19 02:31:54 +00:00
$width = 140;
$nameWidth = $width - 65;
$format = "%-{$nameWidth}s %6d %13.3f %13.3f %13.3f%% %9d (%13.3f -%13.3f) [%d]\n";
$titleFormat = "%-{$nameWidth}s %6s %13s %13s %13s %9s\n";
$prof = "\nProfiling data\n";
2005-01-28 00:50:58 +00:00
$prof .= sprintf($titleFormat, 'Name', 'Calls', 'Total', 'Each', '%', 'Mem');
$this->mCollated = array ();
$this->mCalls = array ();
$this->mMemory = array ();
# Estimate profiling overhead
2005-01-28 00:50:58 +00:00
$profileCount = count($this->mStack);
wfProfileIn('-overhead-total');
for ($i = 0; $i < $profileCount; $i ++) {
wfProfileIn('-overhead-internal');
wfProfileOut('-overhead-internal');
}
2005-01-28 00:50:58 +00:00
wfProfileOut('-overhead-total');
# First, subtract the overhead!
2005-01-28 00:50:58 +00:00
foreach ($this->mStack as $entry) {
$fname = $entry[0];
$thislevel = $entry[1];
$start = $entry[2];
$end = $entry[4];
$elapsed = $end - $start;
$memory = $entry[5] - $entry[3];
2005-01-28 00:50:58 +00:00
if ($fname == '-overhead-total') {
$overheadTotal[] = $elapsed;
$overheadMemory[] = $memory;
2005-01-28 00:50:58 +00:00
}
elseif ($fname == '-overhead-internal') {
$overheadInternal[] = $elapsed;
}
}
2005-01-28 00:50:58 +00:00
$overheadTotal = array_sum($overheadTotal) / count($overheadInternal);
$overheadMemory = array_sum($overheadMemory) / count($overheadInternal);
$overheadInternal = array_sum($overheadInternal) / count($overheadInternal);
# Collate
2005-01-28 00:50:58 +00:00
foreach ($this->mStack as $index => $entry) {
$fname = $entry[0];
$thislevel = $entry[1];
$start = $entry[2];
$end = $entry[4];
$elapsed = $end - $start;
2005-01-28 00:50:58 +00:00
$memory = $entry[5] - $entry[3];
2005-01-28 00:50:58 +00:00
$subcalls = $this->calltreeCount($this->mStack, $index);
if (!preg_match('/^-overhead/', $fname)) {
# Adjust for profiling overhead (except special values with elapsed=0
if ( $elapsed ) {
$elapsed -= $overheadInternal;
$elapsed -= ($subcalls * $overheadTotal);
$memory -= ($subcalls * $overheadMemory);
}
}
2005-01-28 00:50:58 +00:00
if (!array_key_exists($fname, $this->mCollated)) {
2004-01-17 11:31:48 +00:00
$this->mCollated[$fname] = 0;
$this->mCalls[$fname] = 0;
$this->mMemory[$fname] = 0;
$this->mMin[$fname] = 1 << 24;
$this->mMax[$fname] = 0;
$this->mOverhead[$fname] = 0;
2004-01-17 11:31:48 +00:00
}
$this->mCollated[$fname] += $elapsed;
2005-01-28 00:50:58 +00:00
$this->mCalls[$fname]++;
$this->mMemory[$fname] += $memory;
2005-01-28 00:50:58 +00:00
$this->mMin[$fname] = min($this->mMin[$fname], $elapsed);
$this->mMax[$fname] = max($this->mMax[$fname], $elapsed);
$this->mOverhead[$fname] += $subcalls;
}
2005-01-28 00:50:58 +00:00
$total = @ $this->mCollated['-total'];
$this->mCalls['-overhead-total'] = $profileCount;
# Output
2005-01-28 00:50:58 +00:00
asort($this->mCollated, SORT_NUMERIC);
foreach ($this->mCollated as $fname => $elapsed) {
$calls = $this->mCalls[$fname];
$percent = $total ? 100. * $elapsed / $total : 0;
$memory = $this->mMemory[$fname];
$prof .= sprintf($format, substr($fname, 0, $nameWidth), $calls, (float) ($elapsed * 1000), (float) ($elapsed * 1000) / $calls, $percent, $memory, ($this->mMin[$fname] * 1000.0), ($this->mMax[$fname] * 1000.0), $this->mOverhead[$fname]);
global $wgProfileToDatabase;
2005-01-28 00:50:58 +00:00
if ($wgProfileToDatabase) {
Profiler :: logToDB($fname, (float) ($elapsed * 1000), $calls);
}
}
$prof .= "\nTotal: $total\n\n";
return $prof;
}
/**
* Counts the number of profiled function calls sitting under
* the given point in the call graph. Not the most efficient algo.
*
* @param $stack Array:
* @param $start Integer:
* @return Integer
* @private
*/
2005-01-28 00:50:58 +00:00
function calltreeCount(& $stack, $start) {
$level = $stack[$start][1];
$count = 0;
2005-01-28 00:50:58 +00:00
for ($i = $start -1; $i >= 0 && $stack[$i][1] > $level; $i --) {
$count ++;
}
return $count;
}
2003-11-19 00:48:40 +00:00
/**
* @static
*/
function logToDB($name, $timeSum, $eventCount) {
# Warning: $wguname is a live patch, it should be moved to Setup.php
global $wguname, $wgProfilePerHost;
$fname = 'Profiler::logToDB';
2005-01-28 00:50:58 +00:00
$dbw = & wfGetDB(DB_MASTER);
if (!is_object($dbw))
return false;
$errorState = $dbw->ignoreErrors( true );
2005-01-28 00:50:58 +00:00
$profiling = $dbw->tableName('profiling');
2005-01-28 00:50:58 +00:00
$name = substr($name, 0, 255);
$encname = $dbw->strencode($name);
if ($wgProfilePerHost) {
$pfhost = $wguname['nodename'];
} else {
$pfhost = '';
}
$sql = "UPDATE $profiling "."SET pf_count=pf_count+{$eventCount}, "."pf_time=pf_time + {$timeSum} ".
"WHERE pf_name='{$encname}' AND pf_server='{$pfhost}'";
$dbw->query($sql);
2003-11-19 00:48:40 +00:00
2005-01-28 00:50:58 +00:00
$rc = $dbw->affectedRows();
if ($rc == 0) {
2006-01-07 13:09:30 +00:00
$dbw->insert('profiling', array ('pf_name' => $name, 'pf_count' => $eventCount,
'pf_time' => $timeSum, 'pf_server' => $pfhost ), $fname, array ('IGNORE'));
2003-11-19 00:48:40 +00:00
}
// When we upgrade to mysql 4.1, the insert+update
// can be merged into just a insert with this construct added:
// "ON DUPLICATE KEY UPDATE ".
// "pf_count=pf_count + VALUES(pf_count), ".
2006-01-07 13:09:30 +00:00
// "pf_time=pf_time + VALUES(pf_time)";
$dbw->ignoreErrors( $errorState );
}
2003-11-19 00:48:40 +00:00
/**
* Get the function name of the current profiling section
*/
function getCurrentSection() {
2005-10-26 01:01:56 +00:00
$elt = end($this->mWorkStack);
return $elt[0];
}
}
?>