31 define(
'MW_NO_SESSION',
'warn' );
33 ini_set(
'zlib.output_compression',
'off' );
36 require __DIR__ .
'/includes/WebStart.php';
38 header(
'Content-Type: text/html; charset=utf-8' );
44 <meta charset=
"UTF-8" />
57 font: 14px/1.6 sans-serif;
67 text-decoration: none;
71 text-decoration: underline;
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 {
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;
148 echo
'<p>Disabled</p>'
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 ) {
187 $this->children = [];
191 $this->children[] = $child;
195 usort( $this->children,
'compare_point' );
199 $anchor = str_replace(
'"',
'', $this->
name() );
202 if (
count( $this->children ) ) {
204 $extet =
" <a id=\"{$anchor}\" href=\"{$url}#{$anchor}\">[+]</a>";
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 ?>
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>
238 foreach ( $this->children
as $child ) {
239 $child->display(
$expand, $indent + 2 );
257 return $this->memory;
274 return @( $this->
count / self::$totalcount );
280 return @( $this->
time / self::$totalcount );
286 return @( $this->
memory / self::$totalcount );
291 return sprintf(
'%5.02f', $this->
time );
301 return strcmp( $a->
name(), $b->
name() );
303 return $a->
time() > $b->
time() ? -1 : 1;
308 case 'time_per_call':
310 case 'memory_per_call':
312 case 'calls_per_req':
316 case 'memory_per_req':
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;
397 if ( $_expand ===
false ) {
401 return htmlspecialchars(
404 'filter' => $_filter ? $_filter : $filter,
405 'sort' => $_sort ? $_sort : $sort,
406 'expand' => implode(
',', array_keys( $_expand ) )
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();
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() ) ) {
445 @usort(
$points,
'compare_point' );
449 if ( strlen( $filter ) && !strstr( $point->name(), $filter ) ) {
459 <p>Total time: <
code><?
php printf(
'%5.02f', profile_point::$totaltime ); ?></
code></p>
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
null means default in associative array form
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
wfPercent($nr, $acc=2, $round=true)
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
when a variable name is used in a it is silently declared as a new local masking the global
display($expand, $indent=0.0)
if(!$dbr->tableExists( 'profiling')) $expand
if(isset($_REQUEST['sort'])&&in_array($_REQUEST['sort'], $sorts)) $res
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
MediaWiki has optional support for a high distributed memory object caching system For general information on but for a larger site with heavy like it should help lighten the load on the database servers by caching data and objects in memory
__construct($name, $count, $time, $memory)
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
in the sidebar</td >< td > font color
getEscapedProfileUrl($_filter=false, $_sort=false, $_expand=false)
if(!$wgEnableProfileInfo) $dbr
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of or an object and a method hook function The function part of a third party developers and local administrators to define code that will be run at certain points in the mainline code
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
compare_point(profile_point $a, profile_point $b)