Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/cakephp/cakephp/src/Console/ConsoleErrorHandler.php
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 * @link          https://cakephp.org CakePHP(tm) Project
 * @since         2.0.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\Console;

use
Cake\Error\BaseErrorHandler;
use
Cake\Error\FatalErrorException;
use
Cake\Error\PHP7ErrorException;
use
Exception;

/**
 * Error Handler for Cake console. Does simple printing of the
 * exception that occurred and the stack trace of the error.
 */
class ConsoleErrorHandler extends BaseErrorHandler
{
   
/**
     * Standard error stream.
     *
     * @var \Cake\Console\ConsoleOutput
     */
   
protected $_stderr;

   
/**
     * Options for this instance.
     *
     * @var array
     */
   
protected $_options;

   
/**
     * Constructor
     *
     * @param array $options Options for the error handler.
     */
   
public function __construct($options = [])
    {
        if (empty(
$options['stderr'])) {
           
$options['stderr'] = new ConsoleOutput('php://stderr');
        }
       
$this->_stderr = $options['stderr'];
       
$this->_options = $options;
    }

   
/**
     * Handle errors in the console environment. Writes errors to stderr,
     * and logs messages if Configure::read('debug') is false.
     *
     * @param \Exception $exception Exception instance.
     * @return void
     * @throws \Exception When renderer class not found
     * @see https://secure.php.net/manual/en/function.set-exception-handler.php
     */
   
public function handleException(Exception $exception)
    {
       
$this->_displayException($exception);
       
$this->_logException($exception);
       
$code = $exception->getCode();
       
$code = ($code && is_int($code)) ? $code : 1;
       
$this->_stop($code);
    }

   
/**
     * Prints an exception to stderr.
     *
     * @param \Exception $exception The exception to handle
     * @return void
     */
   
protected function _displayException($exception)
    {
       
$errorName = 'Exception:';
        if (
$exception instanceof FatalErrorException) {
           
$errorName = 'Fatal Error:';
        }

        if (
$exception instanceof PHP7ErrorException) {
           
$exception = $exception->getError();
        }

       
$message = sprintf(
           
'<error>%s</error> %s in [%s, line %s]',
           
$errorName,
           
$exception->getMessage(),
           
$exception->getFile(),
           
$exception->getLine()
        );
       
$this->_stderr->write($message);
    }

   
/**
     * Prints an error to stderr.
     *
     * Template method of BaseErrorHandler.
     *
     * @param array $error An array of error data.
     * @param bool $debug Whether or not the app is in debug mode.
     * @return void
     */
   
protected function _displayError($error, $debug)
    {
       
$message = sprintf(
           
'%s in [%s, line %s]',
           
$error['description'],
           
$error['file'],
           
$error['line']
        );
       
$message = sprintf(
           
"<error>%s Error:</error> %s\n",
           
$error['error'],
           
$message
       
);
       
$this->_stderr->write($message);
    }

   
/**
     * Stop the execution and set the exit code for the process.
     *
     * @param int $code The exit code.
     * @return void
     */
   
protected function _stop($code)
    {
        exit(
$code);
    }
}