5 * Copyright 2005 Kate Turner.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 ini_set( 'zlib.output_compression', 'off' );
30 $wgEnableProfileInfo = $wgProfileToDatabase = false;
31 if ( isset( $_SERVER['MW_COMPILED'] ) ) {
32 require ( 'core/includes/WebStart.php' );
34 require ( __DIR__
. '/includes/WebStart.php' );
38 header( 'Content-Type: text/html; charset=utf-8' );
43 <title
>Profiling data
</title
>
44 <style type
="text/css">
47 border
-bottom
: solid
1px black
;
55 td
.timep
, td
.memoryp
, td
.count
, td
.cpr
, td
.tpc
, td
.mpc
, td
.tpr
, td
.mpr
{
58 td
.timep
, td
.tpc
, td
.tpr
{
59 background
-color
: #ffff80;
61 td
.memoryp
, td
.mpc
, td
.mpr
{
62 background
-color
: #80f8ff;
65 background
-color
: #80ff80;
68 background
-color
: #89f9f9;
79 if ( !$wgEnableProfileInfo ) {
80 echo "<p>Disabled</p>\n";
81 echo "</body></html>";
85 $dbr = wfGetDB( DB_SLAVE
);
87 if( !$dbr->tableExists( 'profiling' ) ) {
88 echo "<p>No 'profiling' table exists, so we can't show you anything.</p>\n";
89 echo "<p>If you want to log profiling data, create the table using "
90 . "<tt>maintenance/archives/patch-profiling.sql</tt> and enable "
91 . "<tt>\$wgProfileToDatabase</tt>.</p>\n";
92 echo "</body></html>";
97 if ( isset( $_REQUEST['expand'] ) )
98 foreach( explode( ',', $_REQUEST['expand'] ) as $f )
101 class profile_point
{
107 static $totaltime, $totalmemory, $totalcount;
109 function __construct( $name, $count, $time, $memory ) {
111 $this->count
= $count;
113 $this->memory
= $memory;
114 $this->children
= array();
117 function add_child( $child ) {
118 $this->children
[] = $child;
121 function display( $expand, $indent = 0.0 ) {
122 usort( $this->children
, 'compare_point' );
124 $ex = isset( $expand[$this->name()] );
127 if ( count( $this->children
) ) {
128 $url = getEscapedProfileUrl( false, false, $expand +
array( $this->name() => true ) );
129 $extet = " <a href=\"$url\">[+]</a>";
135 foreach ( $expand as $name => $ep ) {
136 if ( $name != $this->name() ) {
137 $e +
= array( $name => $ep );
141 $extet = " <a href=\"" . getEscapedProfileUrl( false, false, $e ) . "\">[–]</a>";
145 <td
class="name" style
="padding-left: <?php echo $indent ?>em;">
146 <?php
echo htmlspecialchars( $this->name() ) . $extet ?
>
148 <td
class="timep"><?php
echo @wfPercent
( $this->time() / self
::$totaltime * 100 ) ?
></td
>
149 <td
class="memoryp"><?php
echo @wfPercent
( $this->memory() / self
::$totalmemory * 100 ) ?
></td
>
150 <td
class="count"><?php
echo $this->count() ?
></td
>
151 <td
class="cpr"><?php
echo round( sprintf( '%.2f', $this->callsPerRequest() ), 2 ) ?
></td
>
152 <td
class="tpc"><?php
echo round( sprintf( '%.2f', $this->timePerCall() ), 2 ) ?
></td
>
153 <td
class="mpc"><?php
echo round( sprintf( '%.2f' ,$this->memoryPerCall() / 1024 ), 2 ) ?
></td
>
154 <td
class="tpr"><?php
echo @round
( sprintf( '%.2f', $this->time() / self
::$totalcount ), 2 ) ?
></td
>
155 <td
class="mpr"><?php
echo @round
( sprintf( '%.2f' ,$this->memory() / self
::$totalcount / 1024 ), 2 ) ?
></td
>
159 foreach ( $this->children
as $child ) {
160 $child->display( $expand, $indent +
2 );
178 return $this->memory
;
181 function timePerCall() {
182 return @( $this->time
/ $this->count
);
185 function memoryPerCall() {
186 return @( $this->memory
/ $this->count
);
189 function callsPerRequest() {
190 return @( $this->count
/ self
::$totalcount );
193 function timePerRequest() {
194 return @( $this->time
/ self
::$totalcount );
197 function memoryPerRequest() {
198 return @( $this->memory
/ self
::$totalcount );
202 return sprintf( "%5.02f", $this->time
);
206 function compare_point(profile_point
$a, profile_point
$b) {
210 return strcmp( $a->name(), $b->name() );
212 return $a->time() > $b->time() ?
-1 : 1;
214 return $a->memory() > $b->memory() ?
-1 : 1;
216 return $a->count() > $b->count() ?
-1 : 1;
217 case "time_per_call":
218 return $a->timePerCall() > $b->timePerCall() ?
-1 : 1;
219 case "memory_per_call":
220 return $a->memoryPerCall() > $b->memoryPerCall() ?
-1 : 1;
221 case "calls_per_req":
222 return $a->callsPerRequest() > $b->callsPerRequest() ?
-1 : 1;
224 return $a->timePerRequest() > $b->timePerRequest() ?
-1 : 1;
225 case "memory_per_req":
226 return $a->memoryPerRequest() > $b->memoryPerRequest() ?
-1 : 1;
230 $sorts = array( 'time', 'memory', 'count', 'calls_per_req', 'name',
231 'time_per_call', 'memory_per_call', 'time_per_req', 'memory_per_req' );
233 if ( isset( $_REQUEST['sort'] ) && in_array( $_REQUEST['sort'], $sorts ) )
234 $sort = $_REQUEST['sort'];
236 $res = $dbr->select( 'profiling', '*', array(), 'profileinfo.php', array( 'ORDER BY' => 'pf_name ASC' ) );
238 if (isset( $_REQUEST['filter'] ) )
239 $filter = $_REQUEST['filter'];
244 <form method
="get" action
="profileinfo.php">
246 <input type
="text" name
="filter" value
="<?php echo htmlspecialchars($filter)?>"/>
247 <input type
="hidden" name
="sort" value
="<?php echo htmlspecialchars($sort)?>"/>
248 <input type
="hidden" name
="expand" value
="<?php echo htmlspecialchars(implode(",", array_keys($expand)))?>"/>
249 <input type
="submit" value
="Filter" />
253 <table cellspacing
="0" border
="1">
255 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'name' ) ?>">Name
</a
></th
>
256 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time' ) ?>">Time (%
)</a
></th
>
257 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory' ) ?>">Memory (%
)</a
></th
>
258 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'count' ) ?>">Count
</a
></th
>
259 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'calls_per_req' ) ?>">Calls
/req
</a
></th
>
260 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time_per_call' ) ?>">ms
/call
</a
></th
>
261 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory_per_call' ) ?>">kb
/call
</a
></th
>
262 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time_per_req' ) ?>">ms
/req
</a
></th
>
263 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory_per_req' ) ?>">kb
/req
</a
></th
>
266 profile_point
::$totaltime = 0.0;
267 profile_point
::$totalcount = 0;
268 profile_point
::$totalmemory = 0.0;
270 function getEscapedProfileUrl( $_filter = false, $_sort = false, $_expand = false ) {
271 global $filter, $sort, $expand;
273 if ( $_expand === false )
276 return htmlspecialchars(
279 'filter' => $_filter ?
$_filter : $filter,
280 'sort' => $_sort ?
$_sort : $sort,
281 'expand' => implode( ',', array_keys( $_expand ) )
291 foreach( $res as $o ) {
292 $next = new profile_point( $o->pf_name
, $o->pf_count
, $o->pf_time
, $o->pf_memory
);
293 if( $next->name() == '-total' ) {
294 profile_point
::$totaltime = $next->time();
295 profile_point
::$totalcount = $next->count();
296 profile_point
::$totalmemory = $next->memory();
298 if ( $last !== false ) {
299 if ( preg_match( "/^".preg_quote( $last->name(), "/" )."/", $next->name() ) ) {
300 $last->add_child($next);
305 if ( preg_match( "/^query: /", $next->name() ) ||
preg_match( "/^query-m: /", $next->name() ) ) {
306 $sqltotal +
= $next->time();
313 $s = new profile_point( "SQL Queries", 0, $sqltotal, 0, 0 );
314 foreach ( $queries as $q )
318 usort( $points, "compare_point" );
320 foreach ( $points as $point ) {
321 if ( strlen( $filter ) && !strstr( $point->name(), $filter ) )
324 $point->display( $expand );
329 <p
>Total time
: <tt
><?php
printf("%5.02f", profile_point
::$totaltime) ?
></tt
></p
>
330 <p
>Total memory
: <tt
><?php
printf("%5.02f", profile_point
::$totalmemory / 1024 ) ?
></tt
></p
>