patch #1160439, profiling enhancements
This commit is contained in:
@@ -7,6 +7,7 @@ $Source$
|
||||
|
||||
2005-07-29 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* tbl_change.php, lang/*: new message $strAndThen
|
||||
* libraries/dbg/profiling.php: improvements, thanks to Glen Arason
|
||||
|
||||
2005-07-28 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* pdf_pages.php: Go button renamed to Save because it's really used to save coordinates
|
||||
|
@@ -17,12 +17,12 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
|
||||
* LICENCE: This source file is subject to Mozilla Public License (MPL)
|
||||
* AUTHOR: Dmitri Dmitrienko <dd@cron.ru>
|
||||
*/
|
||||
|
||||
$dbg_prof_results = ""; // gma added var
|
||||
dbg_get_profiler_results($dbg_prof_results);
|
||||
|
||||
$cwdlen = strlen(getcwd()); // gma added var, $cwdlen = strlen(getcwd());
|
||||
echo '<br /><table width="1000" cellspacing="0" cellpadding="2" style="font:8pt courier">' . "\n" .
|
||||
'<thead>' . "\n" .
|
||||
'<tr style="background:#808080; color:#FFFFFF">' . "\n" .
|
||||
'<thead>' . "\n"; // gma change "." to ";"
|
||||
$tr = '<tr style="background:#808080; color:#FFFFFF">' . "\n" . // gma added "$tr ="
|
||||
'<td>' . $GLOBALS['strDBGModule'] . '</td>' . "\n" .
|
||||
'<td>' . $GLOBALS['strDBGLine'] . '</td>' . "\n" .
|
||||
'<td>' . $GLOBALS['strDBGHits'] . '</td>' . "\n" .
|
||||
@@ -32,10 +32,11 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
|
||||
'<td>' . $GLOBALS['strDBGMaxTimeMs'] . '</td>' . "\n" .
|
||||
'<td>' . $GLOBALS['strDBGContextID'] . '</td>' . "\n" .
|
||||
'<td>' . $GLOBALS['strDBGContext'] . '</td>' . "\n" .
|
||||
'</tr></thead>' . "\n" .
|
||||
'<tbody style="vertical-align: top">' . "\n";
|
||||
foreach ($dbg_prof_results['line_no'] AS $idx => $line_no) {
|
||||
'</tr></thead>' . "\n"; // gma change "." to ";"
|
||||
echo $tr.'<tbody style="vertical-align: top">' . "\n"; $lines = 0; // gma added "echo $tr." and "$lines = 0;"
|
||||
foreach ($dbg_prof_results['line_no'] AS $idx => $line_no) { $lines++; // gma added "$lines++;"
|
||||
$mod_no = $dbg_prof_results['mod_no'][$idx];
|
||||
$mod_name = ""; // gma added var
|
||||
dbg_get_module_name($mod_no, $mod_name);
|
||||
|
||||
//if (strpos("!".$mod_name, 'dbg.php') > 0) continue;
|
||||
@@ -51,10 +52,11 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
|
||||
$time_avg_hit = sprintf('%.3f', $time_avg_hit);
|
||||
$time_min = sprintf('%.3f', $time_min);
|
||||
$time_max = sprintf('%.3f', $time_max);
|
||||
|
||||
$ctx_id = ""; // gma added var
|
||||
dbg_get_source_context($mod_no, $line_no, $ctx_id);
|
||||
|
||||
//use a default context name if needed
|
||||
$ctx_name = ""; // gma added var
|
||||
if (dbg_get_context_name($ctx_id, $ctx_name)
|
||||
&& strcmp($ctx_name,'') == 0) {
|
||||
$ctx_name = "::main";
|
||||
@@ -66,7 +68,7 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
|
||||
|
||||
if ($time_avg_hit > $GLOBALS['cfg']['DBG']['profile']['threshold'] ) {
|
||||
echo '<tr style="background:' . $bk . '">' .
|
||||
'<td>' . $mod_name . '</td>' .
|
||||
'<td>' . substr($mod_name,$cwdlen+1) . '</td>' . // gma changed "$mod_name" to "substr($mod_name,$cwdlen+1)"
|
||||
'<td>' . $line_no . '</td>' .
|
||||
'<td>' . $hit_cnt . '</td>' .
|
||||
'<td>' . $time_avg_hit . '</td>' .
|
||||
@@ -76,10 +78,18 @@ if (isset($GLOBALS['DBG']) && $GLOBALS['DBG']
|
||||
'<td>' . $ctx_id . '</td>' .
|
||||
'<td>' . $ctx_name . '</td>' .
|
||||
'</tr>' . "\n";
|
||||
if($lines == 20) { $lines = 0; echo $tr;} // gma added line. Repeats the header every x lines.
|
||||
}
|
||||
}
|
||||
echo "</tbody></table>";
|
||||
}
|
||||
}
|
||||
|
||||
/* gma ... Developer Notes
|
||||
These two scriptlets can be used as On/Off buttons in your browsers, add to links.
|
||||
ON:
|
||||
javascript: document.cookie = 'DBGSESSID=' + escape('1;d=1,p=1') + '; path=/'; document.execCommand('refresh');
|
||||
or ... javascript: document.cookie = 'DBGSESSID=' + escape('1;d=0,p=1') + '; path=/'; document.execCommand('refresh');
|
||||
OFF:
|
||||
javascript: document.cookie = 'DBGSESSID=' + escape('1;d=0,p=0') + '; path=/'; document.execCommand('refresh');
|
||||
*/
|
||||
?>
|
||||
|
Reference in New Issue
Block a user