异常处理
默认情况下,Soter一旦发生了“异常”,代码就会终止运行,并显示出错误信息在浏览器中。
1.默认处理
在入口文件里面我们可以看到下面自定义的错误显示控制处理类的配置:
//系统错误显示设置,非产品环境才显示
->setShowError(Sr::config()->getEnvironment() != Sr::ENV_PRODUCTION)
...
//设置自定义的错误显示控制处理类
->setExceptionHandle(new Soter_Exception_Handle_Default())
Soter_Exception_Handle_Default类代码如下:
class Soter_Exception_Handle_Default implements Soter_Exception_Handle {
public function handle(Soter_Exception $exception) {
$exception->render();
}
}
可以看到,默认情况下,Soter_Exception_Handle_Default类在handle方法里面
直接调用了Soter_Exception异常对象$exception的render方法向浏览器输出了错误信息。
如果我们不想显示这个错误信息,我看可以通过在入口文件里面通过设置showError为false,
就会关闭错误信息在浏览器中的显示。
2.自定义处理
如果我们想自己控制这个错误信息的显示怎么办呢,我们只需要通过setExceptionHandle设置自己的异常处理类即可。
异常处理类都必须实现Soter_Exception_Handle接口,也就是要有一个handle方法接收一个Soter_Exception参数。
比如新建文件:application/classes/Exception/MyHandle.php,内容如下:
class Exception_MyHandle implements Soter_Exception_Handle {
public function handle(Soter_Exception $exception) {
if (Sr::isCli()) {
$exception->render();
} elseif (Sr::isAjax()) {
$exception->renderJson();
} else {
$exception->setHttpHeader();
$data['exception'] = $exception;
if ($exception instanceof Soter_Exception_404) {
Sr::view()->load('error/404', $data);
} elseif ($exception instanceof Soter_Exception_500) {
Sr::view()->load('error/404', $data);
} elseif ($exception instanceof Soter_Exception_Database) {
echo Sr::view()->load('error/404', $data);
} else {
Sr::view()->load('error/404', $data);
}
}
exit();
}
}
上面我们自定义类一个异常处理类Exception_MyHandle,实现了handle方法,在方法里面直接显示不同类型的错误提示信息,
然后注册我们的类:
//设置自定义的错误显示控制处理类
->setExceptionHandle(new Exception_MyHandle())
那么当我们showError为true的时候,只要发生了异常,页面就会显示我们写的不同类型的错误提示信息。
注意:只有showError为true的时候,用户用户自定义类错误显示处理类或系统错误显示处理类才会被调用。
1.当设置了自定义类错误显示处理类,系统错误显示处理类不再起作用,是否显示错误由用户自定义类处理。
2.当没有设置自定义类错误显示处理类,系统错误显示处理类显示错误。
异常日志记录
当发生了异常我们可以通过注册日志记录类,来记录异常信息到数据库,到文件等等。
日志记录类不应该有输出,应该仅记录错误信息到日志系统(文件、数据库等等)
而且不能执行退出的操作比如exit,die。
1.默认情况
在入口文件里面我们可以看到下面错误日志类相关配置:
/* 错误日志记录,注释掉这行会关闭日志记录,去掉注释则开启日志文件记录,
* 第一个参数是日志文件路径,第二个参数为是否记录404类型异常 */
//->addLoggerWriter(new Soter_Logger_FileWriter(SOTER_APP_PATH . 'storage/logs/',false))
/* 设置日志记录子目录格式,参数就是date()函数的第一个参数,默认是 Y-m-d/H */
->setLogsSubDirNameFormat('Y-m-d/H')
我们可以多次调用addLoggerWriter方法注册多个不同的日志记录类。
默认情况下,我们看到Soter注册了一个默认的日志记录类Soter_Logger_FileWriter,
这个类会把错误信息记录到日志目录application/storage/logs/。
Soter_Logger_FileWriter类代码如下:
class Soter_Logger_FileWriter implements Soter_Logger_Writer {
private $logsDirPath, $log404;
public function __construct($logsDirPath, $log404 = true) {
$this->log404 = $log404;
$this->logsDirPath = Sr::realPath($logsDirPath) . '/' . date(Sr::config()->getLogsSubDirNameFormat()) . '/';
}
public function write(Soter_Exception $exception) {
if (!$this->log404 && ($exception instanceof Soter_Exception_404)) {
return;
}
$content = 'Domain : ' . Sr::server('http_host') . "\n"
. 'ClientIP : ' . Sr::server('SERVER_ADDR') . "\n"
. 'ServerIP : ' . Sr::serverIp() . "\n"
. 'ServerHostname : ' . Sr::hostname() . "\n"
. (!Sr::isCli() ? 'Request Uri : ' . Sr::server('request_uri') : '') . "\n"
. (!Sr::isCli() ? 'Get Data : ' . json_encode(Sr::get()) : '') . "\n"
. (!Sr::isCli() ? 'Post Data : ' . json_encode(Sr::post()) : '') . "\n"
. (!Sr::isCli() ? 'Cookie Data : ' . json_encode(Sr::cookie()) : '') . "\n"
. (!Sr::isCli() ? 'Server Data : ' . json_encode(Sr::server()) : '') . "\n"
. $exception->renderCli() . "\n";
if (!is_dir($this->logsDirPath)) {
mkdir($this->logsDirPath, 0700, true);
}
if (!file_exists($logsFilePath = $this->logsDirPath . 'logs.php')) {
$content = '' . "\n" . $content;
}
file_put_contents($logsFilePath, $content, LOCK_EX | FILE_APPEND);
}
}
可以看到Soter_Logger_FileWriter日志处理类把错误信息整理之后写入得到了日志目录。
2.自定义日志处理类
默认情况下,Soter注册了一个默认的日志记录类Soter_Logger_FileWriter,那么如何注册我们自己的错误日志记录类呢?
错误日志记录类只要实现了Soter_Logger_Writer接口即可,也就是实现write方法处理异常对象。
比如新建文件:application/classes/Logger/MyFileWriter.php,内容如下:
class Logger_MyFileWriter implements Soter_Logger_Writer {
public function write(Soter_Exception $exception) {
$environment=$exception->getEnvironment();//当前环境
$line=$exception->getErrorMessage();//错误信息
$code=$exception->getErrorCode();//错误码
$file=$exception->getErrorFile();//错误文件路径
$line=$exception->getErrorLine();//出错行数
$type=$exception->getErrorType();//错误类型
$formatCliString=$exception->renderCli();//不含html的文本,用于记录到文件
$formatJsonString=$exception->renderJson();//json格式,用于api接口输出
$formatHtmlString=$exception->renderHtml();//含有html的文本,用于显示到浏览器
$autoFormatString=$exception->render(false,true);//会根据环境自动返回不含html的文本或者含有html的文本
$traceCliString=$exception->getTraceCliString();//不含html的调用堆栈信息文本,用于记录到文件,或者在命令行下面显示
$traceHtmlString=$exception->getTraceHtmlString();//含html的调用堆栈信息文本,用于显示到浏览器
//这里可以把上面需要的信息记录到文件或者其它地方
file_put_contents('logger.txt',$formatCliString);
}
}
上面我们自定义了一个Logger_MyFileWriter日志记录类,实现了接口Soter_Logger_Writer的write方法,
然后在write方法里面通过异常对象$exception获取各种信息,然后把信息记录到logger.txt文件。
然后注册我们的Logger_MyFileWriter日志记录类:
//错误日志记录,注释掉这行会关闭日志记录,去掉注释则开启日志文件记录
->addLoggerWriter(new Soter_Logger_FileWriter(SOTER_APP_PATH . 'storage/logs/'))
//设置日志记录子目录格式,参数就是date()函数的第一个参数,默认是 Y-m-d/H
->setLogsSubDirNameFormat('Y-m-d/H')
//注册我们自己的日志处理类
->addLoggerWriter(new Logger_MyFileWriter())
最后我们在控制器里面故意触发一个错误,比如我们在Welcome控制器的index方法里面调用不存在的方法,none();
然后访问比如:http://127.0.0.1/index.php/Welcome/index.do
然后我们就能发现入口文件目录里面多了个logger.txt文件里面记录了错误信息。
温馨提示:
我们可以从上面看到renderJson()
方法,renderJson()
方法里面的内容可以根据我们个人爱好来自定义。
我们可以在入口文件看到->setExceptionJsonRender
方法,->setExceptionJsonRender
方法就是来自定义renderJson()
方法里面内容。
示例如下:
->setExceptionJsonRender(function(Exception $e) {
$json['environment'] = $e->getEnvironment();
$json['file'] = $e->getErrorFile();
$json['line'] = $e->getErrorLine();
$json['message'] = $e->getErrorMessage();
$json['type'] = $e->getErrorType();
$json['code'] = $e->getErrorCode();
$json['time'] = date('Y/m/d H:i:s T');
$json['trace'] = $e->getTraceCliString();
return @json_encode($json);
})