Skip to content

Commit

Permalink
Moved the fatal error detection to App::shutdown and keeping the fata…
Browse files Browse the repository at this point in the history
…l error handler cleaner. It helps to be extended by applications/plugins.
  • Loading branch information
jrbasso committed Apr 14, 2012
1 parent 440f0c3 commit 1428659
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 26 deletions.
8 changes: 4 additions & 4 deletions app/Config/core.php
Expand Up @@ -41,20 +41,20 @@
*
* Options:
*
* - `handleFatalError` - callback - The callback to handle fatal errors. You can set this to any
* callback type, including anonymous functions.
* - `handler` - callback - The callback to handle errors. You can set this to any callback type,
* including anonymous functions.
* - `level` - int - The level of errors you are interested in capturing.
* - `trace` - boolean - Include stack traces for errors in log files.
* - `handleFatalError` - boolean - Enable the CakePHP fatal error handler, generating custom
* pages for fatal errors instead of show broke pages.
*
* @see ErrorHandler for more information on error handling and configuration.
*/
Configure::write('Error', array(
'handleFatalError' => 'ErrorHandler::handleFatalError',
'handler' => 'ErrorHandler::handleError',
'level' => E_ALL & ~E_DEPRECATED,
'trace' => true,
'handleFatalError' => true
'trace' => true
));

/**
Expand Down
3 changes: 3 additions & 0 deletions lib/Cake/Console/Templates/skel/Config/core.php
Expand Up @@ -41,6 +41,8 @@
*
* Options:
*
* - `handleFatalError` - callback - The callback to handle fatal errors. You can set this to any
* callback type, including anonymous functions.
* - `handler` - callback - The callback to handle errors. You can set this to any callback type,
* including anonymous functions.
* - `level` - int - The level of errors you are interested in capturing.
Expand All @@ -49,6 +51,7 @@
* @see ErrorHandler for more information on error handling and configuration.
*/
Configure::write('Error', array(
'handleFatalError' => 'ErrorHandler::handleFatalError',
'handler' => 'ErrorHandler::handleError',
'level' => E_ALL & ~E_DEPRECATED,
'trace' => true
Expand Down
28 changes: 27 additions & 1 deletion lib/Cake/Core/App.php
Expand Up @@ -881,7 +881,8 @@ protected static function _packageFormat() {
/**
* Object destructor.
*
* Writes cache file if changes have been made to the $_map
* Writes cache file if changes have been made to the $_map. Also, check if a fatal
* error happened and call the handler.
*
* @return void
*/
Expand All @@ -892,6 +893,31 @@ public static function shutdown() {
if (self::$_objectCacheChange) {
Cache::write('object_map', self::$_objects, '_cake_core_');
}

self::_checkFatalError();
}

/**
* Check if a fatal error happened and trigger the configured handler if configured
*
* @return void
*/
protected static function _checkFatalError() {
$lastError = error_get_last();
if (!is_array($lastError)) {
return;
}

list(, $log) = ErrorHandler::mapErrorCode($lastError['type']);
if ($log !== LOG_ERROR) {
return;
}

$fatalErrorHandler = Configure::read('Error.handleFatalError');
if (!is_callable($fatalErrorHandler)) {
return;
}
call_user_func($fatalErrorHandler, $lastError);
}

}
1 change: 0 additions & 1 deletion lib/Cake/Core/Configure.php
Expand Up @@ -345,6 +345,5 @@ protected static function _setErrorHandlers($error, $exception) {
if (!empty($exception['handler'])) {
set_exception_handler($exception['handler']);
}
register_shutdown_function('ErrorHandler::handleFatalError');
}
}
25 changes: 5 additions & 20 deletions lib/Cake/Error/ErrorHandler.php
Expand Up @@ -186,27 +186,12 @@ public static function handleError($code, $description, $file = null, $line = nu
/**
* Generate an error page when some fatal error happens.
*
* Use Configure::write('Error.handleFatalError', false) to disable this feature
*
* @param array $error Array with error information. See `error_get_last()` function
* @return void
*/
public static function handleFatalError() {
if (Configure::read('Error.handleFatalError') !== true) {
return;
}

$lastError = error_get_last();
if (!is_array($lastError)) {
return;
}

list($error, $log) = self::mapErrorCode($lastError['type']);
if ($log !== LOG_ERROR) {
return;
}

$logMessage = $error . ' (' . $lastError['type'] . '): ' . $lastError['message'] . ' in [' . $lastError['file'] . ', line ' . $lastError['line'] . ']';
CakeLog::write($log, $logMessage);
public static function handleFatalError($error) {
$logMessage = 'Fatal Error (' . $error['type'] . '): ' . $error['message'] . ' in [' . $error['file'] . ', line ' . $error['line'] . ']';
CakeLog::write(LOG_ERROR, $logMessage);

$exceptionHandler = Configure::read('Exception.handler');
if (!is_callable($exceptionHandler)) {
Expand All @@ -215,7 +200,7 @@ public static function handleFatalError() {

ob_clean();
if (Configure::read('debug')) {
call_user_func($exceptionHandler, new FatalErrorException($lastError['message'], 500, $lastError['file'], $lastError['line']));
call_user_func($exceptionHandler, new FatalErrorException($error['message'], 500, $error['file'], $error['line']));
} else {
call_user_func($exceptionHandler, new InternalErrorException());
}
Expand Down

0 comments on commit 1428659

Please sign in to comment.