Merge "SpecialBlock [Vue]: add NamespacesField and PagesField components"
[mediawiki.git] / includes / profiler / ProfilerXhprof.php
blob88771fff305bffd13cea94d9f0bbb20ff8a3591f
1 <?php
2 /**
3 * Copyright 2014 Wikimedia Foundation and contributors
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
23 /**
24 * Profiler that captures all function calls from the XHProf PHP extension.
26 * This extension can be installed via PECL or your operating system's package manager.
27 * This also supports the Tideways-XHProf PHP extension.
29 * @ingroup Profiler
30 * @see $wgProfiler
31 * @see https://php.net/xhprof
32 * @see https://github.com/tideways/php-xhprof-extension
34 class ProfilerXhprof extends Profiler {
35 /**
36 * @var XhprofData|null
38 protected $xhprofData;
40 /**
41 * Profiler for explicit, arbitrary, frame labels
42 * @var SectionProfiler
44 protected $sprofiler;
46 /**
47 * @see $wgProfiler
48 * @param array $params Associative array of parameters:
49 * - int flags: Bitmask of constants from the XHProf or Tideways-XHProf extension
50 * that will be passed to its enable function,
51 * such as `XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY | XHPROF_FLAGS_NO_BUILTINS`.
52 * With Tideways-XHProf, use `TIDEWAYS_XHPROF_FLAGS_*` instead.
53 * - bool running: If true, it is assumed that the enable function was already
54 * called. The `flags` option is ignored in this case.
55 * This exists for use with a custom web entrypoint from which the profiler
56 * is started before MediaWiki is included.
57 * - array include: If set, only function names matching a pattern in this
58 * array will be reported. The pattern strings will be matched using
59 * the PHP fnmatch() function.
60 * - array exclude: If set, function names matching an exact name in this
61 * will be skipped over by XHProf. Ignored functions become transparent
62 * in the profile. For example, `foo=>ignored=>bar` becomes `foo=>bar`.
63 * This option is backed by XHProf's `ignored_functions` option.
65 * **Note:** The `exclude` option is not supported in Tideways-XHProf.
67 public function __construct( array $params = [] ) {
68 parent::__construct( $params );
70 // See T180183 and T247332 for why we need the 'running' option.
71 if ( empty( $params['running'] ) ) {
72 $flags = $params['flags'] ?? 0;
73 if ( function_exists( 'xhprof_enable' ) ) {
74 $options = isset( $params['exclude'] )
75 ? [ 'ignored_functions' => $params['exclude'] ]
76 : [];
77 xhprof_enable( $flags, $options );
78 } elseif ( function_exists( 'tideways_xhprof_enable' ) ) {
79 if ( isset( $params['exclude'] ) ) {
80 throw new RuntimeException( 'The exclude option is not supported in tideways_xhprof' );
82 tideways_xhprof_enable( $flags );
83 } else {
84 throw new RuntimeException( 'Neither xhprof nor tideways_xhprof is installed' );
88 $this->sprofiler = new SectionProfiler();
91 /**
92 * @return XhprofData
94 public function getXhprofData() {
95 if ( !$this->xhprofData ) {
96 if ( function_exists( 'xhprof_disable' ) ) {
97 $data = xhprof_disable();
98 } elseif ( function_exists( 'tideways_xhprof_disable' ) ) {
99 $data = tideways_xhprof_disable();
100 } else {
101 throw new RuntimeException( 'Neither xhprof nor tideways_xhprof is installed' );
103 $this->xhprofData = new XhprofData( $data, $this->params );
105 return $this->xhprofData;
108 public function scopedProfileIn( $section ) {
109 $key = 'section.' . ltrim( $section, '.' );
110 return $this->sprofiler->scopedProfileIn( $key );
114 * No-op for xhprof profiling.
116 public function close() {
120 * Check if a function or section should be excluded from the output.
122 * @param string $name Function or section name.
123 * @return bool
125 private function shouldExclude( $name ) {
126 if ( $name === '-total' ) {
127 return true;
129 if ( !empty( $this->params['include'] ) ) {
130 foreach ( $this->params['include'] as $pattern ) {
131 if ( fnmatch( $pattern, $name, FNM_NOESCAPE ) ) {
132 return false;
135 return true;
137 if ( !empty( $this->params['exclude'] ) ) {
138 foreach ( $this->params['exclude'] as $pattern ) {
139 if ( fnmatch( $pattern, $name, FNM_NOESCAPE ) ) {
140 return true;
144 return false;
147 public function getFunctionStats() {
148 $metrics = $this->getXhprofData()->getCompleteMetrics();
149 $profile = [];
151 $main = null; // units in ms
152 foreach ( $metrics as $fname => $stats ) {
153 if ( $this->shouldExclude( $fname ) ) {
154 continue;
156 // Convert elapsed times from μs to ms to match interface
157 $entry = [
158 'name' => $fname,
159 'calls' => $stats['ct'],
160 'real' => $stats['wt']['total'] / 1000,
161 '%real' => $stats['wt']['percent'],
162 'cpu' => ( $stats['cpu']['total'] ?? 0 ) / 1000,
163 '%cpu' => $stats['cpu']['percent'] ?? 0,
164 'memory' => $stats['mu']['total'] ?? 0,
165 '%memory' => $stats['mu']['percent'] ?? 0,
166 'min_real' => $stats['wt']['min'] / 1000,
167 'max_real' => $stats['wt']['max'] / 1000
169 $profile[] = $entry;
170 if ( $fname === 'main()' ) {
171 $main = $entry;
175 // Merge in all of the custom profile sections
176 foreach ( $this->sprofiler->getFunctionStats() as $stats ) {
177 if ( $this->shouldExclude( $stats['name'] ) ) {
178 continue;
181 // @note: getFunctionStats() values already in ms
182 $stats['%real'] = $main['real'] ? $stats['real'] / $main['real'] * 100 : 0;
183 $stats['%cpu'] = $main['cpu'] ? $stats['cpu'] / $main['cpu'] * 100 : 0;
184 $stats['%memory'] = $main['memory'] ? $stats['memory'] / $main['memory'] * 100 : 0;
185 $profile[] = $stats; // assume no section names collide with $metrics
188 return $profile;
192 * Returns a profiling output to be stored in debug file
194 * @return string
196 public function getOutput() {
197 return $this->getFunctionReport();
201 * Get a report of profiled functions sorted by inclusive wall clock time
202 * in descending order.
204 * Each line of the report includes this data:
205 * - Function name
206 * - Number of times function was called
207 * - Total wall clock time spent in function in microseconds
208 * - Minimum wall clock time spent in function in microseconds
209 * - Average wall clock time spent in function in microseconds
210 * - Maximum wall clock time spent in function in microseconds
211 * - Percentage of total wall clock time spent in function
212 * - Total delta of memory usage from start to end of function in bytes
214 * @return string
216 protected function getFunctionReport() {
217 $data = $this->getFunctionStats();
218 usort( $data, static function ( $a, $b ) {
219 return $b['real'] <=> $a['real']; // descending
220 } );
222 $width = 140;
223 $nameWidth = $width - 65;
224 $format = "%-{$nameWidth}s %6d %9d %9d %9d %9d %7.3f%% %9d";
225 $out = [];
226 $out[] = sprintf( "%-{$nameWidth}s %6s %9s %9s %9s %9s %7s %9s",
227 'Name', 'Calls', 'Total', 'Min', 'Each', 'Max', '%', 'Mem'
229 foreach ( $data as $stats ) {
230 $out[] = sprintf( $format,
231 $stats['name'],
232 $stats['calls'],
233 $stats['real'] * 1000,
234 $stats['min_real'] * 1000,
235 $stats['real'] / $stats['calls'] * 1000,
236 $stats['max_real'] * 1000,
237 $stats['%real'],
238 $stats['memory']
241 return implode( "\n", $out );
245 * Retrieve raw data from xhprof
246 * @return array
248 public function getRawData() {
249 return $this->getXhprofData()->getRawData();