Fix hook situation for Skin::doEditSectionLink
[mediawiki.git] / includes / debug / MWDebug.php
blobc4c6cf37bd82a32fa7c6434326ff0166f26d2c13
1 <?php
2 /**
3 * Debug toolbar related code.
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 * New debugger system that outputs a toolbar on page view.
26 * By default, most methods do nothing ( self::$enabled = false ). You have
27 * to explicitly call MWDebug::init() to enabled them.
29 * @since 1.19
31 class MWDebug {
32 /**
33 * Log lines
35 * @var array $log
37 protected static $log = array();
39 /**
40 * Debug messages from wfDebug().
42 * @var array $debug
44 protected static $debug = array();
46 /**
47 * SQL statements of the database queries.
49 * @var array $query
51 protected static $query = array();
53 /**
54 * Is the debugger enabled?
56 * @var bool $enabled
58 protected static $enabled = false;
60 /**
61 * Array of functions that have already been warned, formatted
62 * function-caller to prevent a buttload of warnings
64 * @var array $deprecationWarnings
66 protected static $deprecationWarnings = array();
68 /**
69 * Enabled the debugger and load resource module.
70 * This is called by Setup.php when $wgDebugToolbar is true.
72 * @since 1.19
74 public static function init() {
75 self::$enabled = true;
78 /**
79 * Add ResourceLoader modules to the OutputPage object if debugging is
80 * enabled.
82 * @since 1.19
83 * @param OutputPage $out
85 public static function addModules( OutputPage $out ) {
86 if ( self::$enabled ) {
87 $out->addModules( 'mediawiki.debug.init' );
91 /**
92 * Adds a line to the log
94 * @todo Add support for passing objects
96 * @since 1.19
97 * @param string $str
99 public static function log( $str ) {
100 if ( !self::$enabled ) {
101 return;
104 self::$log[] = array(
105 'msg' => htmlspecialchars( $str ),
106 'type' => 'log',
107 'caller' => wfGetCaller(),
112 * Returns internal log array
113 * @since 1.19
114 * @return array
116 public static function getLog() {
117 return self::$log;
121 * Clears internal log array and deprecation tracking
122 * @since 1.19
124 public static function clearLog() {
125 self::$log = array();
126 self::$deprecationWarnings = array();
130 * Adds a warning entry to the log
132 * @since 1.19
133 * @param string $msg
134 * @param int $callerOffset
135 * @param int $level A PHP error level. See sendMessage()
136 * @param string $log 'production' will always trigger a php error, 'auto'
137 * will trigger an error if $wgDevelopmentWarnings is true, and 'debug'
138 * will only write to the debug log(s).
140 * @return mixed
142 public static function warning( $msg, $callerOffset = 1, $level = E_USER_NOTICE, $log = 'auto' ) {
143 global $wgDevelopmentWarnings;
145 if ( $log === 'auto' && !$wgDevelopmentWarnings ) {
146 $log = 'debug';
149 if ( $log === 'debug' ) {
150 $level = false;
153 $callerDescription = self::getCallerDescription( $callerOffset );
155 self::sendMessage( $msg, $callerDescription, 'warning', $level );
157 if ( self::$enabled ) {
158 self::$log[] = array(
159 'msg' => htmlspecialchars( $msg ),
160 'type' => 'warn',
161 'caller' => $callerDescription['func'],
167 * Show a warning that $function is deprecated.
168 * This will send it to the following locations:
169 * - Debug toolbar, with one item per function and caller, if $wgDebugToolbar
170 * is set to true.
171 * - PHP's error log, with level E_USER_DEPRECATED, if $wgDevelopmentWarnings
172 * is set to true.
173 * - MediaWiki's debug log, if $wgDevelopmentWarnings is set to false.
175 * @since 1.19
176 * @param string $function Function that is deprecated.
177 * @param string|bool $version Version in which the function was deprecated.
178 * @param string|bool $component Component to which the function belongs.
179 * If false, it is assumbed the function is in MediaWiki core.
180 * @param int $callerOffset How far up the callstack is the original
181 * caller. 2 = function that called the function that called
182 * MWDebug::deprecated() (Added in 1.20).
184 public static function deprecated( $function, $version = false,
185 $component = false, $callerOffset = 2
187 $callerDescription = self::getCallerDescription( $callerOffset );
188 $callerFunc = $callerDescription['func'];
190 $sendToLog = true;
192 // Check to see if there already was a warning about this function
193 if ( isset( self::$deprecationWarnings[$function][$callerFunc] ) ) {
194 return;
195 } elseif ( isset( self::$deprecationWarnings[$function] ) ) {
196 if ( self::$enabled ) {
197 $sendToLog = false;
198 } else {
199 return;
203 self::$deprecationWarnings[$function][$callerFunc] = true;
205 if ( $version ) {
206 global $wgDeprecationReleaseLimit;
207 if ( $wgDeprecationReleaseLimit && $component === false ) {
208 # Strip -* off the end of $version so that branches can use the
209 # format #.##-branchname to avoid issues if the branch is merged into
210 # a version of MediaWiki later than what it was branched from
211 $comparableVersion = preg_replace( '/-.*$/', '', $version );
213 # If the comparableVersion is larger than our release limit then
214 # skip the warning message for the deprecation
215 if ( version_compare( $wgDeprecationReleaseLimit, $comparableVersion, '<' ) ) {
216 $sendToLog = false;
220 $component = $component === false ? 'MediaWiki' : $component;
221 $msg = "Use of $function was deprecated in $component $version.";
222 } else {
223 $msg = "Use of $function is deprecated.";
226 if ( $sendToLog ) {
227 global $wgDevelopmentWarnings; // we could have a more specific $wgDeprecationWarnings setting.
228 self::sendMessage(
229 $msg,
230 $callerDescription,
231 'deprecated',
232 $wgDevelopmentWarnings ? E_USER_DEPRECATED : false
236 if ( self::$enabled ) {
237 $logMsg = htmlspecialchars( $msg ) .
238 Html::rawElement( 'div', array( 'class' => 'mw-debug-backtrace' ),
239 Html::element( 'span', array(), 'Backtrace:' ) . wfBacktrace()
242 self::$log[] = array(
243 'msg' => $logMsg,
244 'type' => 'deprecated',
245 'caller' => $callerFunc,
251 * Get an array describing the calling function at a specified offset.
253 * @param int $callerOffset How far up the callstack is the original
254 * caller. 0 = function that called getCallerDescription()
255 * @return array Array with two keys: 'file' and 'func'
257 private static function getCallerDescription( $callerOffset ) {
258 $callers = wfDebugBacktrace();
260 if ( isset( $callers[$callerOffset] ) ) {
261 $callerfile = $callers[$callerOffset];
262 if ( isset( $callerfile['file'] ) && isset( $callerfile['line'] ) ) {
263 $file = $callerfile['file'] . ' at line ' . $callerfile['line'];
264 } else {
265 $file = '(internal function)';
267 } else {
268 $file = '(unknown location)';
271 if ( isset( $callers[$callerOffset + 1] ) ) {
272 $callerfunc = $callers[$callerOffset + 1];
273 $func = '';
274 if ( isset( $callerfunc['class'] ) ) {
275 $func .= $callerfunc['class'] . '::';
277 if ( isset( $callerfunc['function'] ) ) {
278 $func .= $callerfunc['function'];
280 } else {
281 $func = 'unknown';
284 return array( 'file' => $file, 'func' => $func );
288 * Send a message to the debug log and optionally also trigger a PHP
289 * error, depending on the $level argument.
291 * @param string $msg Message to send
292 * @param array $caller Caller description get from getCallerDescription()
293 * @param string $group Log group on which to send the message
294 * @param int|bool $level Error level to use; set to false to not trigger an error
296 private static function sendMessage( $msg, $caller, $group, $level ) {
297 $msg .= ' [Called from ' . $caller['func'] . ' in ' . $caller['file'] . ']';
299 if ( $level !== false ) {
300 trigger_error( $msg, $level );
303 wfDebugLog( $group, $msg, 'log' );
307 * This is a method to pass messages from wfDebug to the pretty debugger.
308 * Do NOT use this method, use MWDebug::log or wfDebug()
310 * @since 1.19
311 * @param string $str
313 public static function debugMsg( $str ) {
314 global $wgDebugComments, $wgShowDebug;
316 if ( self::$enabled || $wgDebugComments || $wgShowDebug ) {
317 self::$debug[] = rtrim( UtfNormal::cleanUp( $str ) );
322 * Begins profiling on a database query
324 * @since 1.19
325 * @param string $sql
326 * @param string $function
327 * @param bool $isMaster
328 * @return int ID number of the query to pass to queryTime or -1 if the
329 * debugger is disabled
331 public static function query( $sql, $function, $isMaster ) {
332 if ( !self::$enabled ) {
333 return -1;
336 // Replace invalid UTF-8 chars with a square UTF-8 character
337 // This prevents json_encode from erroring out due to binary SQL data
338 $sql = preg_replace(
340 [\xC0-\xC1] # Invalid UTF-8 Bytes
341 | [\xF5-\xFF] # Invalid UTF-8 Bytes
342 | \xE0[\x80-\x9F] # Overlong encoding of prior code point
343 | \xF0[\x80-\x8F] # Overlong encoding of prior code point
344 | [\xC2-\xDF](?![\x80-\xBF]) # Invalid UTF-8 Sequence Start
345 | [\xE0-\xEF](?![\x80-\xBF]{2}) # Invalid UTF-8 Sequence Start
346 | [\xF0-\xF4](?![\x80-\xBF]{3}) # Invalid UTF-8 Sequence Start
347 | (?<=[\x0-\x7F\xF5-\xFF])[\x80-\xBF] # Invalid UTF-8 Sequence Middle
348 | (?<![\xC2-\xDF]|[\xE0-\xEF]|[\xE0-\xEF][\x80-\xBF]|[\xF0-\xF4]
349 |[\xF0-\xF4][\x80-\xBF]|[\xF0-\xF4][\x80-\xBF]{2})[\x80-\xBF] # Overlong Sequence
350 | (?<=[\xE0-\xEF])[\x80-\xBF](?![\x80-\xBF]) # Short 3 byte sequence
351 | (?<=[\xF0-\xF4])[\x80-\xBF](?![\x80-\xBF]{2}) # Short 4 byte sequence
352 | (?<=[\xF0-\xF4][\x80-\xBF])[\x80-\xBF](?![\x80-\xBF]) # Short 4 byte sequence (2)
353 )/x',
354 'â– ',
355 $sql
358 self::$query[] = array(
359 'sql' => $sql,
360 'function' => $function,
361 'master' => (bool)$isMaster,
362 'time' => 0.0,
363 '_start' => microtime( true ),
366 return count( self::$query ) - 1;
370 * Calculates how long a query took.
372 * @since 1.19
373 * @param int $id
375 public static function queryTime( $id ) {
376 if ( $id === -1 || !self::$enabled ) {
377 return;
380 self::$query[$id]['time'] = microtime( true ) - self::$query[$id]['_start'];
381 unset( self::$query[$id]['_start'] );
385 * Returns a list of files included, along with their size
387 * @param IContextSource $context
388 * @return array
390 protected static function getFilesIncluded( IContextSource $context ) {
391 $files = get_included_files();
392 $fileList = array();
393 foreach ( $files as $file ) {
394 $size = filesize( $file );
395 $fileList[] = array(
396 'name' => $file,
397 'size' => $context->getLanguage()->formatSize( $size ),
401 return $fileList;
405 * Returns the HTML to add to the page for the toolbar
407 * @since 1.19
408 * @param IContextSource $context
409 * @return string
411 public static function getDebugHTML( IContextSource $context ) {
412 global $wgDebugComments;
414 $html = '';
416 if ( self::$enabled ) {
417 MWDebug::log( 'MWDebug output complete' );
418 $debugInfo = self::getDebugInfo( $context );
420 // Cannot use OutputPage::addJsConfigVars because those are already outputted
421 // by the time this method is called.
422 $html = Html::inlineScript(
423 ResourceLoader::makeLoaderConditionalScript(
424 ResourceLoader::makeConfigSetScript( array( 'debugInfo' => $debugInfo ) )
429 if ( $wgDebugComments ) {
430 $html .= "<!-- Debug output:\n" .
431 htmlspecialchars( implode( "\n", self::$debug ) ) .
432 "\n\n-->";
435 return $html;
439 * Generate debug log in HTML for displaying at the bottom of the main
440 * content area.
441 * If $wgShowDebug is false, an empty string is always returned.
443 * @since 1.20
444 * @return string HTML fragment
446 public static function getHTMLDebugLog() {
447 global $wgDebugTimestamps, $wgShowDebug;
449 if ( !$wgShowDebug ) {
450 return '';
453 $curIdent = 0;
454 $ret = "\n<hr />\n<strong>Debug data:</strong><ul id=\"mw-debug-html\">\n<li>";
456 foreach ( self::$debug as $line ) {
457 $pre = '';
458 if ( $wgDebugTimestamps ) {
459 $matches = array();
460 if ( preg_match( '/^(\d+\.\d+ {1,3}\d+.\dM\s{2})/', $line, $matches ) ) {
461 $pre = $matches[1];
462 $line = substr( $line, strlen( $pre ) );
465 $display = ltrim( $line );
466 $ident = strlen( $line ) - strlen( $display );
467 $diff = $ident - $curIdent;
469 $display = $pre . $display;
470 if ( $display == '' ) {
471 $display = "\xc2\xa0";
474 if ( !$ident
475 && $diff < 0
476 && substr( $display, 0, 9 ) != 'Entering '
477 && substr( $display, 0, 8 ) != 'Exiting '
479 $ident = $curIdent;
480 $diff = 0;
481 $display = '<span style="background:yellow;">' .
482 nl2br( htmlspecialchars( $display ) ) . '</span>';
483 } else {
484 $display = nl2br( htmlspecialchars( $display ) );
487 if ( $diff < 0 ) {
488 $ret .= str_repeat( "</li></ul>\n", -$diff ) . "</li><li>\n";
489 } elseif ( $diff == 0 ) {
490 $ret .= "</li><li>\n";
491 } else {
492 $ret .= str_repeat( "<ul><li>\n", $diff );
494 $ret .= "<code>$display</code>\n";
496 $curIdent = $ident;
499 $ret .= str_repeat( '</li></ul>', $curIdent ) . "</li>\n</ul>\n";
501 return $ret;
505 * Append the debug info to given ApiResult
507 * @param IContextSource $context
508 * @param ApiResult $result
510 public static function appendDebugInfoToApiResult( IContextSource $context, ApiResult $result ) {
511 if ( !self::$enabled ) {
512 return;
515 // output errors as debug info, when display_errors is on
516 // this is necessary for all non html output of the api, because that clears all errors first
517 $obContents = ob_get_contents();
518 if ( $obContents ) {
519 $obContentArray = explode( '<br />', $obContents );
520 foreach ( $obContentArray as $obContent ) {
521 if ( trim( $obContent ) ) {
522 self::debugMsg( Sanitizer::stripAllTags( $obContent ) );
527 MWDebug::log( 'MWDebug output complete' );
528 $debugInfo = self::getDebugInfo( $context );
530 $result->setIndexedTagName( $debugInfo, 'debuginfo' );
531 $result->setIndexedTagName( $debugInfo['log'], 'line' );
532 $result->setIndexedTagName( $debugInfo['debugLog'], 'msg' );
533 $result->setIndexedTagName( $debugInfo['queries'], 'query' );
534 $result->setIndexedTagName( $debugInfo['includes'], 'queries' );
535 $result->addValue( null, 'debuginfo', $debugInfo );
539 * Returns the HTML to add to the page for the toolbar
541 * @param IContextSource $context
542 * @return array
544 public static function getDebugInfo( IContextSource $context ) {
545 if ( !self::$enabled ) {
546 return array();
549 global $wgVersion, $wgRequestTime;
550 $request = $context->getRequest();
552 // HHVM's reported memory usage from memory_get_peak_usage()
553 // is not useful when passing false, but we continue passing
554 // false for consistency of historical data in zend.
555 // see: https://github.com/facebook/hhvm/issues/2257#issuecomment-39362246
556 $realMemoryUsage = wfIsHHVM();
558 return array(
559 'mwVersion' => $wgVersion,
560 'phpEngine' => wfIsHHVM() ? 'HHVM' : 'PHP',
561 'phpVersion' => wfIsHHVM() ? HHVM_VERSION : PHP_VERSION,
562 'gitRevision' => GitInfo::headSHA1(),
563 'gitBranch' => GitInfo::currentBranch(),
564 'gitViewUrl' => GitInfo::headViewUrl(),
565 'time' => microtime( true ) - $wgRequestTime,
566 'log' => self::$log,
567 'debugLog' => self::$debug,
568 'queries' => self::$query,
569 'request' => array(
570 'method' => $request->getMethod(),
571 'url' => $request->getRequestURL(),
572 'headers' => $request->getAllHeaders(),
573 'params' => $request->getValues(),
575 'memory' => $context->getLanguage()->formatSize( memory_get_usage( $realMemoryUsage ) ),
576 'memoryPeak' => $context->getLanguage()->formatSize( memory_get_peak_usage( $realMemoryUsage ) ),
577 'includes' => self::getFilesIncluded( $context ),