3 * Profiler showing output in page source.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * The least sophisticated profiler output class possible, view your source! :)
27 * Put the following 2 lines in StartProfiler.php:
29 * $wgProfiler['class'] = 'ProfilerSimpleText';
30 * $wgProfiler['visible'] = true;
34 class ProfilerSimpleText
extends ProfilerStandard
{
35 public $visible = false; /* Show as <PRE> or <!-- ? */
37 public function __construct( $profileConfig ) {
38 if ( isset( $profileConfig['visible'] ) && $profileConfig['visible'] ) {
39 $this->visible
= true;
41 parent
::__construct( $profileConfig );
44 public function logData() {
46 if ( $this->mTemplated
) {
48 $totalReal = isset( $this->mCollated
['-total'] )
49 ?
$this->mCollated
['-total']['real']
50 : 0; // profiling mismatch error?
52 uasort( $this->mCollated
, function( $a, $b ) {
53 // sort descending by time elapsed
54 return $a['real'] < $b['real'];
57 array_walk( $this->mCollated
,
58 function( $item, $key ) use ( &$out, $totalReal ) {
59 $perc = $totalReal ?
$item['real'] / $totalReal * 100 : 0;
60 $out .= sprintf( "%6.2f%% %3.6f %6d - %s\n",
61 $perc, $item['real'], $item['count'], $key );
65 $contentType = $this->getContentType();
66 if ( PHP_SAPI
=== 'cli' ) {
67 print "<!--\n{$out}\n-->\n";
68 } elseif ( $contentType === 'text/html' ) {
69 if ( $this->visible
) {
70 print "<pre>{$out}</pre>";
72 print "<!--\n{$out}\n-->\n";
74 } elseif ( $contentType === 'text/javascript' ) {
75 print "\n/*\n${$out}*/\n";
76 } elseif ( $contentType === 'text/css' ) {
77 print "\n/*\n{$out}*/\n";