Go to the documentation of this file.
77 set_exception_handler(
'MWExceptionHandler::handleUncaughtException' );
78 set_error_handler(
'MWExceptionHandler::handleError' );
81 self::$reservedMemory = str_repeat(
' ', 16384 );
82 register_shutdown_function(
'MWExceptionHandler::handleFatalError' );
100 }
catch ( Exception $e2 ) {
117 $services = MediaWikiServices::getInstance();
118 if ( !
$services->isServiceDisabled(
'DBLoadBalancerFactory' ) ) {
123 $services->getDBLoadBalancerFactory()->rollbackMasterChanges( __METHOD__ );
148 register_shutdown_function(
194 $level, $message, $file =
null,
$line =
null
198 if ( in_array( $level, self::$fatalErrorTypes ) ) {
220 case E_COMPILE_WARNING:
221 $levelName =
'Warning';
222 $severity = LogLevel::ERROR;
225 $levelName =
'Notice';
226 $severity = LogLevel::ERROR;
230 $levelName =
'Notice';
231 $severity = LogLevel::WARNING;
235 $levelName =
'Warning';
236 $severity = LogLevel::WARNING;
239 $levelName =
'Strict Standards';
240 $severity = LogLevel::WARNING;
243 case E_USER_DEPRECATED:
244 $levelName =
'Deprecated';
245 $severity = LogLevel::WARNING;
248 $levelName =
'Unknown error';
249 $severity = LogLevel::ERROR;
253 $e =
new ErrorException(
"PHP $levelName: $message", 0, $level, $file,
$line );
284 $level =
null, $message =
null, $file =
null,
$line =
null,
289 self::$reservedMemory =
null;
291 if ( $level ===
null ) {
293 if ( static::$handledFatalCallback ) {
299 $lastError = error_get_last();
300 if ( $lastError !==
null ) {
301 $level = $lastError[
'type'];
302 $message = $lastError[
'message'];
303 $file = $lastError[
'file'];
304 $line = $lastError[
'line'];
311 if ( !in_array( $level, self::$fatalErrorTypes ) ) {
319 '[{exception_id}] {exception_url} PHP Fatal Error',
320 (
$line || $file ) ?
' from' :
'',
321 $line ?
" line $line" :
'',
322 (
$line && $file ) ?
' of' :
'',
323 $file ?
" $file" :
'',
326 $msg = implode(
'', $msgParts );
331 if ( preg_match(
"/Class (undefined: \w+|'\w+' not found)/", $message ) ) {
338 Please
see <
a href=
"https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries">mediawiki.org</
a>
for help on installing the required components.
349 $trace = $trace ?: debug_backtrace();
350 $logger = LoggerFactory::getInstance(
'fatal' );
351 $logger->error( $msg, [
352 'fatal_exception' => [
354 'message' =>
"PHP Fatal Error: {$message}",
358 'trace' => self::prettyPrintTrace( self::redactTrace( $trace ) ),
361 'exception_url' => $url,
362 'caught_by' => self::CAUGHT_BY_HANDLER
367 static::$handledFatalCallback =
true;
397 foreach ( $trace
as $level => $frame ) {
398 if ( isset( $frame[
'file'] ) && isset( $frame[
'line'] ) ) {
399 $text .=
"{$pad}#{$level} {$frame['file']}({$frame['line']}): ";
405 $text .=
"{$pad}#{$level} [internal function]: ";
408 if ( isset( $frame[
'class'] ) && isset( $frame[
'type'] ) && isset( $frame[
'function'] ) ) {
409 $text .= $frame[
'class'] . $frame[
'type'] . $frame[
'function'];
410 } elseif ( isset( $frame[
'function'] ) ) {
411 $text .= $frame[
'function'];
413 $text .=
'NO_FUNCTION_GIVEN';
416 if ( isset( $frame[
'args'] ) ) {
417 $text .=
'(' . implode(
', ', $frame[
'args'] ) .
")\n";
424 $text .=
"{$pad}#{$level} {main}";
441 return static::redactTrace(
$e->getTrace() );
455 return array_map(
function ( $frame ) {
456 if ( isset( $frame[
'args'] ) ) {
457 $frame[
'args'] = array_map(
function ( $arg ) {
458 return is_object( $arg ) ? get_class( $arg ) : gettype( $arg );
506 $file =
$e->getFile();
508 $message =
$e->getMessage();
511 return "[$id] $url $type from line $line of $file: $message";
525 $file =
$e->getFile();
527 $message =
$e->getMessage();
529 return "[{exception_id}] {exception_url} $type from line $line of $file: $message";
539 return '[' . $reqId .
'] '
540 . gmdate(
'Y-m-d H:i:s' ) .
': '
541 .
'Fatal exception of type "' .
$type .
'"';
560 'caught_by' => $catcher
581 'type' => get_class(
$e ),
582 'file' =>
$e->getFile(),
583 'line' =>
$e->getLine(),
584 'message' =>
$e->getMessage(),
585 'code' =>
$e->getCode(),
587 'caught_by' => $catcher
590 if (
$e instanceof ErrorException &&
591 ( error_reporting() &
$e->getSeverity() ) === 0
594 $data[
'suppressed'] =
true;
601 $previous =
$e->getPrevious();
602 if ( $previous !==
null ) {
664 $e, $pretty =
false, $escaping = 0, $catcher = self::CAUGHT_BY_OTHER
667 self::getStructuredExceptionData(
$e, $catcher ),
685 $logger = LoggerFactory::getInstance(
'exception' );
687 self::getLogNormalMessage(
$e ),
688 self::getLogContext(
$e, $catcher )
692 if ( $json !==
false ) {
693 $logger = LoggerFactory::getInstance(
'exception-json' );
694 $logger->error( $json, [
'private' =>
true ] );
710 ErrorException
$e, $channel, $level = LogLevel::ERROR
716 $suppressed = ( error_reporting() &
$e->getSeverity() ) === 0;
718 $logger = LoggerFactory::getInstance( $channel );
721 self::getLogNormalMessage(
$e ),
722 self::getLogContext(
$e, $catcher )
728 if ( $json !==
false ) {
729 $logger = LoggerFactory::getInstance(
"{$channel}-json" );
730 $logger->log( $level, $json, [
'private' =>
true ] );
static logError(ErrorException $e, $channel, $level=LogLevel::ERROR)
Log an exception that wasn't thrown but made to wrap an error.
static $handledFatalCallback
static getRedactedTrace( $e)
Return a copy of an exception's backtrace as an array.
WebRequest clone which takes values from a provided array.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
static getLogNormalMessage( $e)
Get a normalised message for formatting with PSR-3 log event context.
static getStructuredExceptionData( $e, $catcher=self::CAUGHT_BY_OTHER)
Get a structured representation of an Exception.
Handler class for MWExceptions.
static redactTrace(array $trace)
Redact a stacktrace generated by Exception::getTrace(), debug_backtrace() or similar means.
=Architecture==Two class hierarchies are used to provide the functionality associated with the different content models:*Content interface(and AbstractContent base class) define functionality that acts on the concrete content of a page, and *ContentHandler base class provides functionality specific to a content model, but not acting on concrete content. The most important function of ContentHandler is to act as a factory for the appropriate implementation of Content. These Content objects are to be used by MediaWiki everywhere, instead of passing page content around as text. All manipulation and analysis of page content must be done via the appropriate methods of the Content object. For each content model, a subclass of ContentHandler has to be registered with $wgContentHandlers. The ContentHandler object for a given content model can be obtained using ContentHandler::getForModelID($id). Also Title, WikiPage and Revision now have getContentHandler() methods for convenience. ContentHandler objects are singletons that provide functionality specific to the content type, but not directly acting on the content of some page. ContentHandler::makeEmptyContent() and ContentHandler::unserializeContent() can be used to create a Content object of the appropriate type. However, it is recommended to instead use WikiPage::getContent() resp. Revision::getContent() to get a page 's content as a Content object. These two methods should be the ONLY way in which page content is accessed. Another important function of ContentHandler objects is to define custom action handlers for a content model, see ContentHandler::getActionOverrides(). This is similar to what WikiPage::getActionOverrides() was already doing.==Serialization==With the ContentHandler facility, page content no longer has to be text based. Objects implementing the Content interface are used to represent and handle the content internally. For storage and data exchange, each content model supports at least one serialization format via ContentHandler::serializeContent($content). The list of supported formats for a given content model can be accessed using ContentHandler::getSupportedFormats(). Content serialization formats are identified using MIME type like strings. The following formats are built in:*text/x-wiki - wikitext *text/javascript - for js pages *text/css - for css pages *text/plain - for future use, e.g. with plain text messages. *text/html - for future use, e.g. with plain html messages. *application/vnd.php.serialized - for future use with the api and for extensions *application/json - for future use with the api, and for use by extensions *application/xml - for future use with the api, and for use by extensions In PHP, use the corresponding CONTENT_FORMAT_XXX constant. Note that when using the API to access page content, especially action=edit, action=parse and action=query &prop=revisions, the model and format of the content should always be handled explicitly. Without that information, interpretation of the provided content is not reliable. The same applies to XML dumps generated via maintenance/dumpBackup.php or Special:Export. Also note that the API will provide encapsulated, serialized content - so if the API was called with format=json, and contentformat is also json(or rather, application/json), the page content is represented as a string containing an escaped json structure. Extensions that use JSON to serialize some types of page content may provide specialized API modules that allow access to that content in a more natural form.==Compatibility==The ContentHandler facility is introduced in a way that should allow all existing code to keep functioning at least for pages that contain wikitext or other text based content. However, a number of functions and hooks have been deprecated in favor of new versions that are aware of the page 's content model, and will now generate warnings when used. Most importantly, the following functions have been deprecated:*Revisions::getText() is deprecated in favor Revisions::getContent() *WikiPage::getText() is deprecated in favor WikiPage::getContent() Also, the old Article::getContent()(which returns text) is superceded by Article::getContentObject(). However, both methods should be avoided since they do not provide clean access to the page 's actual content. For instance, they may return a system message for non-existing pages. Use WikiPage::getContent() instead. Code that relies on a textual representation of the page content should eventually be rewritten. However, ContentHandler::getContentText() provides a stop-gap that can be used to get text for a page. Its behavior is controlled by $wgContentHandlerTextFallback it
static installHandler()
Install handlers with PHP.
</source > ! result< div class="mw-highlight mw-content-ltr" dir="ltr">< pre >< span ></span >< span class="kd"> var</span >< span class="nx"> a</span >< span class="p"></span ></pre ></div > ! end ! test Multiline< source/> in lists !input *< source > a b</source > *foo< source > a b</source > ! html< ul >< li >< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul >< ul >< li > foo< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul > ! html tidy< ul >< li >< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul >< ul >< li > foo< div class="mw-highlight mw-content-ltr" dir="ltr">< pre > a b</pre ></div ></li ></ul > ! end ! test Custom attributes !input< source lang="javascript" id="foo" class="bar" dir="rtl" style="font-size: larger;"> var a
static handleUncaughtException( $e)
Callback to use with PHP's set_exception_handler.
This document provides an overview of the usage of PageUpdater and that is
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
$wgPropagateErrors
If true, the MediaWiki error handler passes errors/warnings to the default error handler after loggin...
static getPublicLogMessage( $e)
static handleFatalError( $level=null, $message=null, $file=null, $line=null, $context=null, $trace=null)
Dual purpose callback used as both a set_error_handler() callback and a registered shutdown function.
static getLogContext( $e, $catcher=self::CAUGHT_BY_OTHER)
Get a PSR-3 log event context from an Exception.
static prettyPrintTrace(array $trace, $pad='')
Generate a string representation of a stacktrace.
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
static getURL()
If the exception occurred in the course of responding to a request, returns the requested URL.
static handleException( $e)
Exception handler which simulates the appropriate catch() handling:
static getLogMessage( $e)
Get a message formatting the exception message and its origin.
null for the wiki Added in
static $fatalErrorTypes
Error types that, if unhandled, are fatal to the request.
static rollbackMasterChangesAndLog( $e)
Roll back any open database transactions and log the stack trace of the exception.
$wgLogExceptionBacktrace
If true, send the exception backtrace to the error log.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
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))
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this submitted means any form of or written communication sent to the Licensor or its including but not limited to communication on electronic mailing source code control and issue tracking systems that are managed by
static getLogId( $e)
Get the ID for this exception.
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their please see
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
wfIsCLI()
Check if we are running from the commandline.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging a wrapping ErrorException $suppressed
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going on
static output( $e, $mode, $eNew=null)
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
static report( $e)
Report an exception to the user.
static getRequestId()
Get the unique request ID.
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
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
static getGlobalRequestURL()
Return the path and query string portion of the main request URI.
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
static jsonSerializeException( $e, $pretty=false, $escaping=0, $catcher=self::CAUGHT_BY_OTHER)
Serialize an Exception object to JSON.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
if(! $wgDBerrorLogTZ) $wgRequest
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 MediaWikiServices
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static handleError( $level, $message, $file=null, $line=null)
Handler for set_error_handler() callback notifications.
static getRedactedTraceAsString( $e)
Generate a string representation of an exception's stack trace.
static logException( $e, $catcher=self::CAUGHT_BY_OTHER)
Log an exception to the exception log (if enabled).