我目前有两个类层次结构:一个用于处理错误,另一个用于记录它们。
我想知道
1)将错误处理委托给与错误处理程序
分开的类是否有利并且
2)我所拥有的是一个好的设计。
以下是我的内容:
class ErrorHandler {
public __construct(ErrorLogger $ErrorLogger) {
...
$this->setErrorPageURL('/error.php');
}
public function setErrorPageURL($errorPageURL);
public function handle() {
...
$this->ErrorLogger->log($errorNumber, $errorMessage, $errorFile, $errorLine);
header("Location: $this->errorPageURL");
}
}
class ErrorLogger {
abstract protected function log($errorNumber, $errorMessage, $errorFile, $errorLine);
// Overridable.
protected function getExtraLogMessage() {
return null;
}
}
class EmailerErrorLogger extends ErrorLogger {
public function __construct($toEmailAddress, $fromEmailAddress) {
...
}
protected function log($errorNumber, $errorMessage, $errorFile, $errorLine) {
// collect error information and various pieces of information
mail(...);
}
}
register_shutdown_function(array(new ErrorHandler(new EmailerErrorLogger()), 'handle'));
答案 0 :(得分:1)
我认为这种结构很有意义,因为你的错误处理程序除了记录错误之外还必须完成其他工作。
记录器本身可以实现chain of responsibility pattern