MediaWiki REL1_31
ProfilerSectionOnly.php
Go to the documentation of this file.
1<?php
35 protected $sprofiler;
36
37 public function __construct( array $params = [] ) {
38 parent::__construct( $params );
39 $this->sprofiler = new SectionProfiler();
40 }
41
42 public function scopedProfileIn( $section ) {
43 return $this->sprofiler->scopedProfileIn( $section );
44 }
45
46 public function close() {
47 }
48
49 public function getFunctionStats() {
50 return $this->sprofiler->getFunctionStats();
51 }
52
53 public function getOutput() {
54 return $this->getFunctionReport();
55 }
56
73 protected function getFunctionReport() {
74 $data = $this->getFunctionStats();
75 usort( $data, function ( $a, $b ) {
76 if ( $a['real'] === $b['real'] ) {
77 return 0;
78 }
79 return ( $a['real'] > $b['real'] ) ? -1 : 1; // descending
80 } );
81
82 $width = 140;
83 $nameWidth = $width - 65;
84 $format = "%-{$nameWidth}s %6d %9d %9d %9d %9d %7.3f%% %9d";
85 $out = [];
86 $out[] = sprintf( "%-{$nameWidth}s %6s %9s %9s %9s %9s %7s %9s",
87 'Name', 'Calls', 'Total', 'Min', 'Each', 'Max', '%', 'Mem'
88 );
89 foreach ( $data as $stats ) {
90 $out[] = sprintf( $format,
91 $stats['name'],
92 $stats['calls'],
93 $stats['real'] * 1000,
94 $stats['min_real'] * 1000,
95 $stats['real'] / $stats['calls'] * 1000,
96 $stats['max_real'] * 1000,
97 $stats['%real'],
98 $stats['memory']
99 );
100 }
101 return implode( "\n", $out );
102 }
103}
Profiler that only tracks explicit profiling sections.
getFunctionReport()
Get a report of profiled functions sorted by inclusive wall clock time in descending order.
getFunctionStats()
Get the aggregated inclusive profiling data for each method.
close()
Close opened profiling sections.
getOutput()
Returns a profiling output to be stored in debug file.
__construct(array $params=[])
scopedProfileIn( $section)
Mark the start of a custom profiling frame (e.g.
Profiler base class that defines the interface and some trivial functionality.
Definition Profiler.php:33
array $params
All of the params passed from $wgProfiler.
Definition Profiler.php:39
Custom PHP profiler for parser/DB type section names that xhprof/xdebug can't handle.
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
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:3022