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
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.
37 protected static $log = array();
40 * Debug messages from wfDebug().
44 protected static $debug = array();
47 * SQL statements of the database queries.
51 protected static $query = array();
54 * Is the debugger enabled?
58 protected static $enabled = false;
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();
69 * Enabled the debugger and load resource module.
70 * This is called by Setup.php when $wgDebugToolbar is true.
74 public static function init() {
75 self
::$enabled = true;
79 * Add ResourceLoader modules to the OutputPage object if debugging is
83 * @param OutputPage $out
85 public static function addModules( OutputPage
$out ) {
86 if ( self
::$enabled ) {
87 $out->addModules( 'mediawiki.debug.init' );
92 * Adds a line to the log
94 * @todo Add support for passing objects
99 public static function log( $str ) {
100 if ( !self
::$enabled ) {
104 self
::$log[] = array(
105 'msg' => htmlspecialchars( $str ),
107 'caller' => wfGetCaller(),
112 * Returns internal log array
116 public static function getLog() {
121 * Clears internal log array and deprecation tracking
124 public static function clearLog() {
125 self
::$log = array();
126 self
::$deprecationWarnings = array();
130 * Adds a warning entry to the log
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).
142 public static function warning( $msg, $callerOffset = 1, $level = E_USER_NOTICE
, $log = 'auto' ) {
143 global $wgDevelopmentWarnings;
145 if ( $log === 'auto' && !$wgDevelopmentWarnings ) {
149 if ( $log === 'debug' ) {
153 $callerDescription = self
::getCallerDescription( $callerOffset );
155 self
::sendMessage( $msg, $callerDescription, 'warning', $level );
157 if ( self
::$enabled ) {
158 self
::$log[] = array(
159 'msg' => htmlspecialchars( $msg ),
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
171 * - PHP's error log, with level E_USER_DEPRECATED, if $wgDevelopmentWarnings
173 * - MediaWiki's debug log, if $wgDevelopmentWarnings is set to false.
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'];
192 // Check to see if there already was a warning about this function
193 if ( isset( self
::$deprecationWarnings[$function][$callerFunc] ) ) {
195 } elseif ( isset( self
::$deprecationWarnings[$function] ) ) {
196 if ( self
::$enabled ) {
203 self
::$deprecationWarnings[$function][$callerFunc] = true;
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, '<' ) ) {
220 $component = $component === false ?
'MediaWiki' : $component;
221 $msg = "Use of $function was deprecated in $component $version.";
223 $msg = "Use of $function is deprecated.";
227 global $wgDevelopmentWarnings; // we could have a more specific $wgDeprecationWarnings setting.
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(
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'];
265 $file = '(internal function)';
268 $file = '(unknown location)';
271 if ( isset( $callers[$callerOffset +
1] ) ) {
272 $callerfunc = $callers[$callerOffset +
1];
274 if ( isset( $callerfunc['class'] ) ) {
275 $func .= $callerfunc['class'] . '::';
277 if ( isset( $callerfunc['function'] ) ) {
278 $func .= $callerfunc['function'];
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()
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
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 ) {
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
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)
358 self
::$query[] = array(
360 'function' => $function,
361 'master' => (bool)$isMaster,
363 '_start' => microtime( true ),
366 return count( self
::$query ) - 1;
370 * Calculates how long a query took.
375 public static function queryTime( $id ) {
376 if ( $id === -1 ||
!self
::$enabled ) {
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
390 protected static function getFilesIncluded( IContextSource
$context ) {
391 $files = get_included_files();
393 foreach ( $files as $file ) {
394 $size = filesize( $file );
397 'size' => $context->getLanguage()->formatSize( $size ),
405 * Returns the HTML to add to the page for the toolbar
408 * @param IContextSource $context
411 public static function getDebugHTML( IContextSource
$context ) {
412 global $wgDebugComments;
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 ) ) .
439 * Generate debug log in HTML for displaying at the bottom of the main
441 * If $wgShowDebug is false, an empty string is always returned.
444 * @return string HTML fragment
446 public static function getHTMLDebugLog() {
447 global $wgDebugTimestamps, $wgShowDebug;
449 if ( !$wgShowDebug ) {
454 $ret = "\n<hr />\n<strong>Debug data:</strong><ul id=\"mw-debug-html\">\n<li>";
456 foreach ( self
::$debug as $line ) {
458 if ( $wgDebugTimestamps ) {
460 if ( preg_match( '/^(\d+\.\d+ {1,3}\d+.\dM\s{2})/', $line, $matches ) ) {
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";
476 && substr( $display, 0, 9 ) != 'Entering '
477 && substr( $display, 0, 8 ) != 'Exiting '
481 $display = '<span style="background:yellow;">' .
482 nl2br( htmlspecialchars( $display ) ) . '</span>';
484 $display = nl2br( htmlspecialchars( $display ) );
488 $ret .= str_repeat( "</li></ul>\n", -$diff ) . "</li><li>\n";
489 } elseif ( $diff == 0 ) {
490 $ret .= "</li><li>\n";
492 $ret .= str_repeat( "<ul><li>\n", $diff );
494 $ret .= "<code>$display</code>\n";
499 $ret .= str_repeat( '</li></ul>', $curIdent ) . "</li>\n</ul>\n";
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 ) {
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();
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
544 public static function getDebugInfo( IContextSource
$context ) {
545 if ( !self
::$enabled ) {
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();
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,
567 'debugLog' => self
::$debug,
568 'queries' => self
::$query,
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 ),