Made default BagOStuff functions work consistently.
[mediawiki.git] / includes / debug / Debug.php
blob0c0052f434792948e108098d21945883d6f15fa9
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 * @todo Profiler support
31 * @since 1.19
33 class MWDebug {
35 /**
36 * Log lines
38 * @var array
40 protected static $log = array();
42 /**
43 * Debug messages from wfDebug()
45 * @var array
47 protected static $debug = array();
49 /**
50 * Queries
52 * @var array
54 protected static $query = array();
56 /**
57 * Is the debugger enabled?
59 * @var bool
61 protected static $enabled = false;
63 /**
64 * Array of functions that have already been warned, formatted
65 * function-caller to prevent a buttload of warnings
67 * @var array
69 protected static $deprecationWarnings = array();
71 /**
72 * Enabled the debugger and load resource module.
73 * This is called by Setup.php when $wgDebugToolbar is true.
75 * @since 1.19
77 public static function init() {
78 self::$enabled = true;
81 /**
82 * Add ResourceLoader modules to the OutputPage object if debugging is
83 * enabled.
85 * @since 1.19
86 * @param $out OutputPage
88 public static function addModules( OutputPage $out ) {
89 if ( self::$enabled ) {
90 $out->addModules( 'mediawiki.debug.init' );
94 /**
95 * Adds a line to the log
97 * @todo Add support for passing objects
99 * @since 1.19
100 * @param $str string
102 public static function log( $str ) {
103 if ( !self::$enabled ) {
104 return;
107 self::$log[] = array(
108 'msg' => htmlspecialchars( $str ),
109 'type' => 'log',
110 'caller' => wfGetCaller(),
115 * Returns internal log array
116 * @since 1.19
117 * @return array
119 public static function getLog() {
120 return self::$log;
124 * Clears internal log array and deprecation tracking
125 * @since 1.19
127 public static function clearLog() {
128 self::$log = array();
129 self::$deprecationWarnings = array();
133 * Adds a warning entry to the log
135 * @since 1.19
136 * @param $msg
137 * @param int $callerOffset
138 * @return mixed
140 public static function warning( $msg, $callerOffset = 1 ) {
141 if ( !self::$enabled ) {
142 return;
145 // Check to see if there was already a deprecation notice, so not to
146 // get a duplicate warning
147 $logCount = count( self::$log );
148 $caller = wfGetCaller( $callerOffset + 1 );
149 if ( $logCount ) {
150 $lastLog = self::$log[ $logCount - 1 ];
151 if ( $lastLog['type'] == 'deprecated' && $lastLog['caller'] == $caller ) {
152 return;
156 self::$log[] = array(
157 'msg' => htmlspecialchars( $msg ),
158 'type' => 'warn',
159 'caller' => $caller,
164 * Adds a depreciation entry to the log, along with a backtrace
166 * @since 1.19
167 * @param $function
168 * @param $version
169 * @param $component
170 * @return mixed
172 public static function deprecated( $function, $version, $component ) {
173 if ( !self::$enabled ) {
174 return;
177 // Chain: This function -> wfDeprecated -> deprecatedFunction -> caller
178 $caller = wfGetCaller( 4 );
180 // Check to see if there already was a warning about this function
181 $functionString = "$function-$caller";
182 if ( in_array( $functionString, self::$deprecationWarnings ) ) {
183 return;
186 $version = $version === false ? '(unknown version)' : $version;
187 $component = $component === false ? 'MediaWiki' : $component;
188 $msg = htmlspecialchars( "Use of function $function was deprecated in $component $version" );
189 $msg .= Html::rawElement( 'div', array( 'class' => 'mw-debug-backtrace' ),
190 Html::element( 'span', array(), 'Backtrace:' )
191 . wfBacktrace()
194 self::$deprecationWarnings[] = $functionString;
195 self::$log[] = array(
196 'msg' => $msg,
197 'type' => 'deprecated',
198 'caller' => $caller,
203 * This is a method to pass messages from wfDebug to the pretty debugger.
204 * Do NOT use this method, use MWDebug::log or wfDebug()
206 * @since 1.19
207 * @param $str string
209 public static function debugMsg( $str ) {
210 if ( !self::$enabled ) {
211 return;
214 self::$debug[] = trim( $str );
218 * Begins profiling on a database query
220 * @since 1.19
221 * @param $sql string
222 * @param $function string
223 * @param $isMaster bool
224 * @return int ID number of the query to pass to queryTime or -1 if the
225 * debugger is disabled
227 public static function query( $sql, $function, $isMaster ) {
228 if ( !self::$enabled ) {
229 return -1;
232 self::$query[] = array(
233 'sql' => $sql,
234 'function' => $function,
235 'master' => (bool) $isMaster,
236 'time' => 0.0,
237 '_start' => microtime( true ),
240 return count( self::$query ) - 1;
244 * Calculates how long a query took.
246 * @since 1.19
247 * @param $id int
249 public static function queryTime( $id ) {
250 if ( $id === -1 || !self::$enabled ) {
251 return;
254 self::$query[$id]['time'] = microtime( true ) - self::$query[$id]['_start'];
255 unset( self::$query[$id]['_start'] );
259 * Returns a list of files included, along with their size
261 * @param $context IContextSource
262 * @return array
264 protected static function getFilesIncluded( IContextSource $context ) {
265 $files = get_included_files();
266 $fileList = array();
267 foreach ( $files as $file ) {
268 $size = filesize( $file );
269 $fileList[] = array(
270 'name' => $file,
271 'size' => $context->getLanguage()->formatSize( $size ),
275 return $fileList;
279 * Returns the HTML to add to the page for the toolbar
281 * @since 1.19
282 * @param $context IContextSource
283 * @return string
285 public static function getDebugHTML( IContextSource $context ) {
286 if ( !self::$enabled ) {
287 return '';
290 MWDebug::log( 'MWDebug output complete' );
291 $debugInfo = self::getDebugInfo( $context );
293 // Cannot use OutputPage::addJsConfigVars because those are already outputted
294 // by the time this method is called.
295 $html = Html::inlineScript(
296 ResourceLoader::makeLoaderConditionalScript(
297 ResourceLoader::makeConfigSetScript( array( 'debugInfo' => $debugInfo ) )
301 return $html;
305 * Append the debug info to given ApiResult
307 * @param $context IContextSource
308 * @param $result ApiResult
310 public static function appendDebugInfoToApiResult( IContextSource $context, ApiResult $result ) {
311 if ( !self::$enabled ) {
312 return;
315 MWDebug::log( 'MWDebug output complete' );
316 $debugInfo = self::getDebugInfo( $context );
318 $result->setIndexedTagName( $debugInfo, 'debuginfo' );
319 $result->setIndexedTagName( $debugInfo['log'], 'line' );
320 foreach( $debugInfo['debugLog'] as $index => $debugLogText ) {
321 $vals = array();
322 ApiResult::setContent( $vals, $debugLogText );
323 $debugInfo['debugLog'][$index] = $vals; //replace
325 $result->setIndexedTagName( $debugInfo['debugLog'], 'msg' );
326 $result->setIndexedTagName( $debugInfo['queries'], 'query' );
327 $result->setIndexedTagName( $debugInfo['includes'], 'queries' );
328 $result->addValue( array(), 'debuginfo', $debugInfo );
332 * Returns the HTML to add to the page for the toolbar
334 * @param $context IContextSource
335 * @return array
337 public static function getDebugInfo( IContextSource $context ) {
338 if ( !self::$enabled ) {
339 return array();
342 global $wgVersion, $wgRequestTime;
343 $request = $context->getRequest();
344 return array(
345 'mwVersion' => $wgVersion,
346 'phpVersion' => PHP_VERSION,
347 'gitRevision' => GitInfo::headSHA1(),
348 'gitBranch' => GitInfo::currentBranch(),
349 'gitViewUrl' => GitInfo::headViewUrl(),
350 'time' => microtime( true ) - $wgRequestTime,
351 'log' => self::$log,
352 'debugLog' => self::$debug,
353 'queries' => self::$query,
354 'request' => array(
355 'method' => $_SERVER['REQUEST_METHOD'],
356 'url' => $request->getRequestURL(),
357 'headers' => $request->getAllHeaders(),
358 'params' => $request->getValues(),
360 'memory' => $context->getLanguage()->formatSize( memory_get_usage() ),
361 'memoryPeak' => $context->getLanguage()->formatSize( memory_get_peak_usage() ),
362 'includes' => self::getFilesIncluded( $context ),