MediaWiki  1.33.0
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  return $b['real'] <=> $a['real']; // descending
77  } );
78 
79  $width = 140;
80  $nameWidth = $width - 65;
81  $format = "%-{$nameWidth}s %6d %9d %9d %9d %9d %7.3f%% %9d";
82  $out = [];
83  $out[] = sprintf( "%-{$nameWidth}s %6s %9s %9s %9s %9s %7s %9s",
84  'Name', 'Calls', 'Total', 'Min', 'Each', 'Max', '%', 'Mem'
85  );
86  foreach ( $data as $stats ) {
87  $out[] = sprintf( $format,
88  $stats['name'],
89  $stats['calls'],
90  $stats['real'] * 1000,
91  $stats['min_real'] * 1000,
92  $stats['real'] / $stats['calls'] * 1000,
93  $stats['max_real'] * 1000,
94  $stats['%real'],
95  $stats['memory']
96  );
97  }
98  return implode( "\n", $out );
99  }
100 }
ProfilerSectionOnly
Profiler that only tracks explicit profiling sections.
Definition: ProfilerSectionOnly.php:33
ProfilerSectionOnly\getFunctionReport
getFunctionReport()
Get a report of profiled functions sorted by inclusive wall clock time in descending order.
Definition: ProfilerSectionOnly.php:73
$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 When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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:780
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:35
$data
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
Definition: generatePhpCharToUpperMappings.php:13
Profiler
Profiler base class that defines the interface and some trivial functionality.
Definition: Profiler.php:33
SectionProfiler
Custom PHP profiler for parser/DB type section names that xhprof/xdebug can't handle.
Definition: SectionProfiler.php:30
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
ProfilerSectionOnly\getFunctionStats
getFunctionStats()
Get the aggregated inclusive profiling data for each method.
Definition: ProfilerSectionOnly.php:49
ProfilerSectionOnly\scopedProfileIn
scopedProfileIn( $section)
Mark the start of a custom profiling frame (e.g.
Definition: ProfilerSectionOnly.php:42
ProfilerSectionOnly\close
close()
Close opened profiling sections.
Definition: ProfilerSectionOnly.php:46
ProfilerSectionOnly\getOutput
getOutput()
Returns a profiling output to be stored in debug file.
Definition: ProfilerSectionOnly.php:53
$section
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:3053
ProfilerSectionOnly\__construct
__construct(array $params=[])
Definition: ProfilerSectionOnly.php:37
as
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
Definition: distributors.txt:9
Profiler\$params
array $params
All of the params passed from $wgProfiler.
Definition: Profiler.php:39
ProfilerSectionOnly\$sprofiler
SectionProfiler $sprofiler
Definition: ProfilerSectionOnly.php:35