MediaWiki  REL1_31
ProfilerOutputText.php
Go to the documentation of this file.
1 <?php
32  protected $thresholdMs;
33 
35  parent::__construct( $collector, $params );
36  $this->thresholdMs = isset( $params['thresholdMs'] )
37  ? $params['thresholdMs']
38  : 1.0;
39  }
40  public function log( array $stats ) {
41  if ( $this->collector->getTemplated() ) {
42  $out = '';
43 
44  // Filter out really tiny entries
45  $min = $this->thresholdMs;
46  $stats = array_filter( $stats, function ( $a ) use ( $min ) {
47  return $a['real'] > $min;
48  } );
49  // Sort descending by time elapsed
50  usort( $stats, function ( $a, $b ) {
51  return $a['real'] < $b['real'];
52  } );
53 
54  array_walk( $stats,
55  function ( $item ) use ( &$out ) {
56  $out .= sprintf( "%6.2f%% %3.3f %6d - %s\n",
57  $item['%real'], $item['real'], $item['calls'], $item['name'] );
58  }
59  );
60 
61  $contentType = $this->collector->getContentType();
62  if ( wfIsCLI() ) {
63  print "<!--\n{$out}\n-->\n";
64  } elseif ( $contentType === 'text/html' ) {
65  $visible = isset( $this->params['visible'] ) ?
66  $this->params['visible'] : false;
67  if ( $visible ) {
68  print "<pre>{$out}</pre>";
69  } else {
70  print "<!--\n{$out}\n-->\n";
71  }
72  } elseif ( $contentType === 'text/javascript' || $contentType === 'text/css' ) {
73  print "\n/*\n{$out}*/\n";
74  }
75  }
76  }
77 }
use
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
Definition: APACHE-LICENSE-2.0.txt:10
array
the array() calling protocol came about after MediaWiki 1.4rc1.
ProfilerOutputText\$thresholdMs
float $thresholdMs
Min real time display threshold.
Definition: ProfilerOutputText.php:32
$out
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:864
ProfilerOutputText
The least sophisticated profiler output class possible, view your source! :)
Definition: ProfilerOutputText.php:30
ProfilerOutput\$collector
Profiler $collector
Definition: ProfilerOutput.php:29
ProfilerOutputText\__construct
__construct(Profiler $collector, array $params)
Definition: ProfilerOutputText.php:34
php
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
Definition: injection.txt:37
ProfilerOutput\$params
array $params
Configuration of $wgProfiler.
Definition: ProfilerOutput.php:31
ProfilerOutputText\log
log(array $stats)
Log MediaWiki-style profiling data.
Definition: ProfilerOutputText.php:40
Profiler
Profiler base class that defines the interface and some trivial functionality.
Definition: Profiler.php:33
wfIsCLI
wfIsCLI()
Check if we are running from the commandline.
Definition: GlobalFunctions.php:2042
print
print
Definition: opensearch_desc.php:46
ProfilerOutput
Base class for profiling output.
Definition: ProfilerOutput.php:27