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' );
37 header( 'Content-Type: text/html; charset=utf-8' );
43 <meta charset
="UTF-8">
44 <title
>Profiling data
</title
>
46 /* noc.wikimedia.org/base.css */
56 font
: 14px
/1.6 sans
-serif
;
66 text
-decoration
: none
;
70 text
-decoration
: underline
;
76 * Copyright 2012 Twitter, Inc
77 * Licensed under the Apache License v2.0
78 * http://www.apache.org/licenses/LICENSE-2.0
80 * Designed and built with all the love in the world @twitter by @mdo and @fat.
85 background
-color
: transparent
;
86 border
-collapse
: collapse
;
100 border
-top
: 1px solid
#ddd;
108 vertical
-align
: bottom
;
111 .table thead
:first
-child tr
:first
-child th
,
112 .table thead
:first
-child tr
:first
-child td
{
116 .table tbody + tbody
{
117 border
-top
: 2px solid
#ddd;
121 .table
-condensed td
{
125 .table
-striped tbody tr
:nth
-child(odd
) td
,
126 .table
-striped tbody tr
:nth
-child(odd
) th
{
127 background
-color
: #f9f9f9;
130 .table
-hover tbody tr
:hover td
,
131 .table
-hover tbody tr
:hover th
{
132 background
-color
: #f5f5f5;
138 border
-top
: 1px solid
#eee;
139 border
-bottom
: 1px solid
#fff;
146 if ( !$wgEnableProfileInfo ) {
147 echo '<p>Disabled</p>'
152 $dbr = wfGetDB( DB_SLAVE
);
154 if ( !$dbr->tableExists( 'profiling' ) ) {
155 echo '<p>No <code>profiling</code> table exists, so we can\'t show you anything.</p>'
156 . '<p>If you want to log profiling data, enable <code>$wgProfileToDatabase</code>'
157 . ' in your LocalSettings.php and run <code>maintenance/update.php</code> to'
158 . ' create the profiling table.'
164 if ( isset( $_REQUEST['expand'] ) ) {
165 foreach ( explode( ',', $_REQUEST['expand'] ) as $f ) {
170 class profile_point
{
176 static $totaltime, $totalmemory, $totalcount;
178 function __construct( $name, $count, $time, $memory ) {
180 $this->count
= $count;
182 $this->memory
= $memory;
183 $this->children
= array();
186 function add_child( $child ) {
187 $this->children
[] = $child;
190 function display( $expand, $indent = 0.0 ) {
191 usort( $this->children
, 'compare_point' );
193 $ex = isset( $expand[$this->name()] );
195 $anchor = str_replace( '"', '', $this->name() );
198 if ( count( $this->children
) ) {
199 $url = getEscapedProfileUrl( false, false, $expand +
array( $this->name() => true ) );
200 $extet = " <a id=\"{$anchor}\" href=\"{$url}#{$anchor}\">[+]</a>";
206 foreach ( $expand as $name => $ep ) {
207 if ( $name != $this->name() ) {
208 $e +
= array( $name => $ep );
211 $url = getEscapedProfileUrl( false, false, $e );
212 $extet = " <a id=\"{$anchor}\" href=\"{$url}#{$anchor}\">[–]</a>";
217 <div style
="margin-left: <?php echo (int)$indent; ?>em;">
218 <?php
echo htmlspecialchars( str_replace( ',', ', ', $this->name() ) ) . $extet ?
>
221 <td
class="mw-profileinfo-timep"><?php
echo @wfPercent
( $this->time() / self
::$totaltime * 100 ); ?
></td
>
222 <td
class="mw-profileinfo-memoryp"><?php
echo @wfPercent
( $this->memory() / self
::$totalmemory * 100 ); ?
></td
>
223 <td
class="mw-profileinfo-count"><?php
echo $this->count(); ?
></td
>
224 <td
class="mw-profileinfo-cpr"><?php
echo round( sprintf( '%.2f', $this->callsPerRequest() ), 2 ); ?
></td
>
225 <td
class="mw-profileinfo-tpc"><?php
echo round( sprintf( '%.2f', $this->timePerCall() ), 2 ); ?
></td
>
226 <td
class="mw-profileinfo-mpc"><?php
echo round( sprintf( '%.2f', $this->memoryPerCall() / 1024 ), 2 ); ?
></td
>
227 <td
class="mw-profileinfo-tpr"><?php
echo @round
( sprintf( '%.2f', $this->time() / self
::$totalcount ), 2 ); ?
></td
>
228 <td
class="mw-profileinfo-mpr"><?php
echo @round
( sprintf( '%.2f', $this->memory() / self
::$totalcount / 1024 ), 2 ); ?
></td
>
232 foreach ( $this->children
as $child ) {
233 $child->display( $expand, $indent +
2 );
251 return $this->memory
;
254 function timePerCall() {
255 return @( $this->time
/ $this->count
);
258 function memoryPerCall() {
259 return @( $this->memory
/ $this->count
);
262 function callsPerRequest() {
263 return @( $this->count
/ self
::$totalcount );
266 function timePerRequest() {
267 return @( $this->time
/ self
::$totalcount );
270 function memoryPerRequest() {
271 return @( $this->memory
/ self
::$totalcount );
275 return sprintf( '%5.02f', $this->time
);
279 function compare_point( profile_point
$a, profile_point
$b ) {
283 return strcmp( $a->name(), $b->name() );
285 return $a->time() > $b->time() ?
-1 : 1;
287 return $a->memory() > $b->memory() ?
-1 : 1;
289 return $a->count() > $b->count() ?
-1 : 1;
290 case 'time_per_call':
291 return $a->timePerCall() > $b->timePerCall() ?
-1 : 1;
292 case 'memory_per_call':
293 return $a->memoryPerCall() > $b->memoryPerCall() ?
-1 : 1;
294 case 'calls_per_req':
295 return $a->callsPerRequest() > $b->callsPerRequest() ?
-1 : 1;
297 return $a->timePerRequest() > $b->timePerRequest() ?
-1 : 1;
298 case 'memory_per_req':
299 return $a->memoryPerRequest() > $b->memoryPerRequest() ?
-1 : 1;
303 $sorts = array( 'time', 'memory', 'count', 'calls_per_req', 'name',
304 'time_per_call', 'memory_per_call', 'time_per_req', 'memory_per_req' );
306 if ( isset( $_REQUEST['sort'] ) && in_array( $_REQUEST['sort'], $sorts ) ) {
307 $sort = $_REQUEST['sort'];
310 $res = $dbr->select( 'profiling', '*', array(), 'profileinfo.php', array( 'ORDER BY' => 'pf_name ASC' ) );
312 if ( isset( $_REQUEST['filter'] ) ) {
313 $filter = $_REQUEST['filter'];
319 <form method
="get" action
="profileinfo.php">
321 <input type
="text" name
="filter" value
="<?php echo htmlspecialchars( $filter ); ?>">
322 <input type
="hidden" name
="sort" value
="<?php echo htmlspecialchars( $sort ); ?>">
323 <input type
="hidden" name
="expand" value
="<?php echo htmlspecialchars( implode( ",", array_keys( $expand ) ) ); ?>">
324 <input type
="submit" value
="Filter">
328 <table
class="mw-profileinfo-table table table-striped table-hover">
331 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'name' ); ?>">Name
</a
></th
>
332 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time' ); ?>">Time (%
)</a
></th
>
333 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory' ); ?>">Memory (%
)</a
></th
>
334 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'count' ); ?>">Count
</a
></th
>
335 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'calls_per_req' ); ?>">Calls
/req
</a
></th
>
336 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time_per_call' ); ?>">ms
/call
</a
></th
>
337 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory_per_call' ); ?>">kb
/call
</a
></th
>
338 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'time_per_req' ); ?>">ms
/req
</a
></th
>
339 <th
><a href
="<?php echo getEscapedProfileUrl( false, 'memory_per_req' ); ?>">kb
/req
</a
></th
>
344 profile_point
::$totaltime = 0.0;
345 profile_point
::$totalcount = 0;
346 profile_point
::$totalmemory = 0.0;
348 function getEscapedProfileUrl( $_filter = false, $_sort = false, $_expand = false ) {
349 global $filter, $sort, $expand;
351 if ( $_expand === false ) {
355 return htmlspecialchars(
358 'filter' => $_filter ?
$_filter : $filter,
359 'sort' => $_sort ?
$_sort : $sort,
360 'expand' => implode( ',', array_keys( $_expand ) )
370 foreach ( $res as $o ) {
371 $next = new profile_point( $o->pf_name
, $o->pf_count
, $o->pf_time
, $o->pf_memory
);
372 if ( $next->name() == '-total' ) {
373 profile_point
::$totaltime = $next->time();
374 profile_point
::$totalcount = $next->count();
375 profile_point
::$totalmemory = $next->memory();
377 if ( $last !== false ) {
378 if ( preg_match( '/^' . preg_quote( $last->name(), '/' ) . '/', $next->name() ) ) {
379 $last->add_child( $next );
384 if ( preg_match( '/^query: /', $next->name() ) ||
preg_match( '/^query-m: /', $next->name() ) ) {
385 $sqltotal +
= $next->time();
392 $s = new profile_point( 'SQL Queries', 0, $sqltotal, 0, 0 );
393 foreach ( $queries as $q )
397 usort( $points, 'compare_point' );
399 foreach ( $points as $point ) {
400 if ( strlen( $filter ) && !strstr( $point->name(), $filter ) ) {
404 $point->display( $expand );
410 <p
>Total time
: <code
><?php
printf( '%5.02f', profile_point
::$totaltime ); ?
></code
></p
>
412 <p
>Total memory
: <code
><?php
printf( '%5.02f', profile_point
::$totalmemory / 1024 ); ?
></code
></p
>