Profiling: remove "m" prefixes from variables since they're pointless
[lhc/web/wiklou.git] / includes / profiler / ProfilerSimpleText.php
1 <?php
2 /**
3 * Profiler showing output in page source.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Profiler
22 */
23
24 /**
25 * The least sophisticated profiler output class possible, view your source! :)
26 *
27 * Put the following 2 lines in StartProfiler.php:
28 *
29 * $wgProfiler['class'] = 'ProfilerSimpleText';
30 * $wgProfiler['visible'] = true;
31 *
32 * @ingroup Profiler
33 */
34 class ProfilerSimpleText extends ProfilerStandard {
35 public $visible = false; /* Show as <PRE> or <!-- ? */
36
37 public function __construct( $profileConfig ) {
38 if ( isset( $profileConfig['visible'] ) && $profileConfig['visible'] ) {
39 $this->visible = true;
40 }
41 parent::__construct( $profileConfig );
42 }
43
44 public function logData() {
45 $out = '';
46 if ( $this->templated ) {
47 $this->close();
48 $totalReal = isset( $this->collated['-total'] )
49 ? $this->collated['-total']['real']
50 : 0; // profiling mismatch error?
51
52 uasort( $this->collated, function( $a, $b ) {
53 // sort descending by time elapsed
54 return $a['real'] < $b['real'];
55 } );
56
57 array_walk( $this->collated,
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 );
62 }
63 );
64
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>";
71 } else {
72 print "<!--\n{$out}\n-->\n";
73 }
74 } elseif ( $contentType === 'text/javascript' ) {
75 print "\n/*\n${$out}*/\n";
76 } elseif ( $contentType === 'text/css' ) {
77 print "\n/*\n{$out}*/\n";
78 }
79 }
80 }
81 }