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 // This endpoint is supposed to be independent of request cookies and other
29 // details of the session. Log warnings for violations of the no-session
31 define( 'MW_NO_SESSION', 'warn' );
33 ini_set( 'zlib.output_compression', 'off' );
35 $wgEnableProfileInfo = false;
36 require __DIR__
. '/includes/WebStart.php';
38 header( 'Content-Type: text/html; charset=utf-8' );
44 <meta charset
="UTF-8" />
45 <title
>Profiling data
</title
>
47 /* noc.wikimedia.org/base.css */
57 font
: 14px
/1.6 sans
-serif
;
67 text
-decoration
: none
;
71 text
-decoration
: underline
;
77 * Copyright 2012 Twitter, Inc
78 * Licensed under the Apache License v2.0
79 * http://www.apache.org/licenses/LICENSE-2.0
81 * Designed and built with all the love in the world @twitter by @mdo and @fat.
86 background
-color
: transparent
;
87 border
-collapse
: collapse
;
101 border
-top
: 1px solid
#ddd;
109 vertical
-align
: bottom
;
112 .table thead
:first
-child tr
:first
-child th
,
113 .table thead
:first
-child tr
:first
-child td
{
117 .table tbody + tbody
{
118 border
-top
: 2px solid
#ddd;
122 .table
-condensed td
{
126 .table
-striped tbody tr
:nth
-child(odd
) td
,
127 .table
-striped tbody tr
:nth
-child(odd
) th
{
128 background
-color
: #f9f9f9;
131 .table
-hover tbody tr
:hover td
,
132 .table
-hover tbody tr
:hover th
{
133 background
-color
: #f5f5f5;
139 border
-top
: 1px solid
#eee;
140 border
-bottom
: 1px solid
#fff;
147 if ( !$wgEnableProfileInfo ) {
148 echo '<p>Disabled</p>'
153 $dbr = wfGetDB( DB_SLAVE
);
155 if ( !$dbr->tableExists( 'profiling' ) ) {
156 echo '<p>No <code>profiling</code> table exists, so we can\'t show you anything.</p>'
157 . '<p>If you want to log profiling data, enable <code>$wgProfiler[\'output\'] = \'db\'</code>'
158 . ' in your StartProfiler.php and run <code>maintenance/update.php</code> to'
159 . ' create the profiling table.'
165 if ( isset( $_REQUEST['expand'] ) ) {
166 foreach ( explode( ',', $_REQUEST['expand'] ) as $f ) {
171 // @codingStandardsIgnoreStart
172 class profile_point
{
173 // @codingStandardsIgnoreEnd
180 public static $totaltime, $totalmemory, $totalcount;
182 public function __construct( $name, $count, $time, $memory ) {
184 $this->count
= $count;
186 $this->memory
= $memory;
187 $this->children
= [];
190 public function add_child( $child ) {
191 $this->children
[] = $child;
194 public function display( $expand, $indent = 0.0 ) {
195 usort( $this->children
, 'compare_point' );
197 $ex = isset( $expand[$this->name()] );
199 $anchor = str_replace( '"', '', $this->name() );
202 if ( count( $this->children
) ) {
203 $url = getEscapedProfileUrl( false, false, $expand +
[ $this->name() => true ] );
204 $extet = " <a id=\"{$anchor}\" href=\"{$url}#{$anchor}\">[+]</a>";
210 foreach ( $expand as $name => $ep ) {
211 if ( $name != $this->name() ) {
212 $e +
= [ $name => $ep ];
215 $url = getEscapedProfileUrl( false, false, $e );
216 $extet = " <a id=\"{$anchor}\" href=\"{$url}#{$anchor}\">[–]</a>";
221 <div style
="margin-left: <?php echo (int)$indent; ?>em;">
222 <?php
echo htmlspecialchars( str_replace( ',', ', ', $this->name() ) ) . $extet ?
>
225 <?php
//@codingStandardsIgnoreStart ?>
226 <td
class="mw-profileinfo-timep"><?php
echo @wfPercent
( $this->time() / self
::$totaltime * 100 ); ?
></td
>
227 <td
class="mw-profileinfo-memoryp"><?php
echo @wfPercent
( $this->memory() / self
::$totalmemory * 100 ); ?
></td
>
228 <td
class="mw-profileinfo-count"><?php
echo $this->count(); ?
></td
>
229 <td
class="mw-profileinfo-cpr"><?php
echo round( sprintf( '%.2f', $this->callsPerRequest() ), 2 ); ?
></td
>
230 <td
class="mw-profileinfo-tpc"><?php
echo round( sprintf( '%.2f', $this->timePerCall() ), 2 ); ?
></td
>
231 <td
class="mw-profileinfo-mpc"><?php
echo round( sprintf( '%.2f', $this->memoryPerCall() / 1024 ), 2 ); ?
></td
>
232 <td
class="mw-profileinfo-tpr"><?php
echo @round
( sprintf( '%.2f', $this->time() / self
::$totalcount ), 2 ); ?
></td
>
233 <td
class="mw-profileinfo-mpr"><?php
echo @round
( sprintf( '%.2f', $this->memory() / self
::$totalcount / 1024 ), 2 ); ?
></td
>
234 <?php
//@codingStandardsIgnoreEnd ?>
238 foreach ( $this->children
as $child ) {
239 $child->display( $expand, $indent +
2 );
244 public function name() {
248 public function count() {
252 public function time() {
256 public function memory() {
257 return $this->memory
;
260 public function timePerCall() {
261 // @codingStandardsIgnoreStart
262 return @( $this->time
/ $this->count
);
263 // @codingStandardsIgnoreEnd
266 public function memoryPerCall() {
267 // @codingStandardsIgnoreStart
268 return @( $this->memory
/ $this->count
);
269 // @codingStandardsIgnoreEnd
272 public function callsPerRequest() {
273 // @codingStandardsIgnoreStart
274 return @( $this->count
/ self
::$totalcount );
275 // @codingStandardsIgnoreEnd
278 public function timePerRequest() {
279 // @codingStandardsIgnoreStart
280 return @( $this->time
/ self
::$totalcount );
281 // @codingStandardsIgnoreEnd
284 public function memoryPerRequest() {
285 // @codingStandardsIgnoreStart
286 return @( $this->memory
/ self
::$totalcount );
287 // @codingStandardsIgnoreEnd
290 public function fmttime() {
291 return sprintf( '%5.02f', $this->time
);
295 function compare_point( profile_point
$a, profile_point
$b ) {
296 // @codingStandardsIgnoreStart
298 // @codingStandardsIgnoreEnd
301 return strcmp( $a->name(), $b->name() );
303 return $a->time() > $b->time() ?
-1 : 1;
305 return $a->memory() > $b->memory() ?
-1 : 1;
307 return $a->count() > $b->count() ?
-1 : 1;
308 case 'time_per_call':
309 return $a->timePerCall() > $b->timePerCall() ?
-1 : 1;
310 case 'memory_per_call':
311 return $a->memoryPerCall() > $b->memoryPerCall() ?
-1 : 1;
312 case 'calls_per_req':
313 return $a->callsPerRequest() > $b->callsPerRequest() ?
-1 : 1;
315 return $a->timePerRequest() > $b->timePerRequest() ?
-1 : 1;
316 case 'memory_per_req':
317 return $a->memoryPerRequest() > $b->memoryPerRequest() ?
-1 : 1;
321 $sorts = [ 'time', 'memory', 'count', 'calls_per_req', 'name',
322 'time_per_call', 'memory_per_call', 'time_per_req', 'memory_per_req' ];
324 if ( isset( $_REQUEST['sort'] ) && in_array( $_REQUEST['sort'], $sorts ) ) {
325 $sort = $_REQUEST['sort'];
333 [ 'ORDER BY' => 'pf_name ASC' ]
336 if ( isset( $_REQUEST['filter'] ) ) {
337 $filter = $_REQUEST['filter'];
343 <form method
="get" action
="profileinfo.php">
345 <input type
="text" name
="filter" value
="<?php echo htmlspecialchars( $filter ); ?>">
346 <input type
="hidden" name
="sort" value
="<?php echo htmlspecialchars( $sort ); ?>">
347 <input type
="hidden" name
="expand" value
="<?php
348 echo htmlspecialchars( implode( ",", array_keys( $expand ) ) );
350 <input type
="submit" value
="Filter">
354 <table
class="mw-profileinfo-table table table-striped table-hover">
358 echo getEscapedProfileUrl( false, 'name' );
361 echo getEscapedProfileUrl( false, 'time' );
362 ?>">Time (%
)</a
></th
>
364 echo getEscapedProfileUrl( false, 'memory' );
365 ?>">Memory (%
)</a
></th
>
367 echo getEscapedProfileUrl( false, 'count' );
370 echo getEscapedProfileUrl( false, 'calls_per_req' );
371 ?>">Calls
/req
</a
></th
>
373 echo getEscapedProfileUrl( false, 'time_per_call' );
376 echo getEscapedProfileUrl( false, 'memory_per_call' );
379 echo getEscapedProfileUrl( false, 'time_per_req' );
382 echo getEscapedProfileUrl( false, 'memory_per_req' );
388 profile_point
::$totaltime = 0.0;
389 profile_point
::$totalcount = 0;
390 profile_point
::$totalmemory = 0.0;
392 function getEscapedProfileUrl( $_filter = false, $_sort = false, $_expand = false ) {
393 // @codingStandardsIgnoreStart
394 global $filter, $sort, $expand;
395 // @codingStandardsIgnoreEnd
397 if ( $_expand === false ) {
401 return htmlspecialchars(
404 'filter' => $_filter ?
$_filter : $filter,
405 'sort' => $_sort ?
$_sort : $sort,
406 'expand' => implode( ',', array_keys( $_expand ) )
416 foreach ( $res as $o ) {
417 $next = new profile_point( $o->pf_name
, $o->pf_count
, $o->pf_time
, $o->pf_memory
);
418 if ( $next->name() == '-total' ||
$next->name() == 'main()' ) {
419 profile_point
::$totaltime = $next->time();
420 profile_point
::$totalcount = $next->count();
421 profile_point
::$totalmemory = $next->memory();
423 if ( $last !== false ) {
424 if ( preg_match( '/^' . preg_quote( $last->name(), '/' ) . '/', $next->name() ) ) {
425 $last->add_child( $next );
430 if ( preg_match( '/^query: /', $next->name() ) ||
preg_match( '/^query-m: /', $next->name() ) ) {
431 $sqltotal +
= $next->time();
438 $s = new profile_point( 'SQL Queries', 0, $sqltotal, 0, 0 );
439 foreach ( $queries as $q ) {
444 // @codingStandardsIgnoreStart
445 @usort
( $points, 'compare_point' );
446 // @codingStandardsIgnoreEnd
448 foreach ( $points as $point ) {
449 if ( strlen( $filter ) && !strstr( $point->name(), $filter ) ) {
453 $point->display( $expand );
459 <p
>Total time
: <code
><?php
printf( '%5.02f', profile_point
::$totaltime ); ?
></code
></p
>
461 <p
>Total memory
: <code
><?php
printf( '%5.02f', profile_point
::$totalmemory / 1024 ); ?
></code
></p
>