顾名思义,责任链模式(Chain of Responsibility Pattern)为请求创建了一个接收者对象的链。这种模式给予请求的类型,对请求的发送者和接收者进行解耦。这种类型的设计模式属于行为型模式。
在这种模式中,通常每个接收者都包含对另一个接收者的引用。如果一个对象不能处理该请求,那么它会把相同的请求传给下一个接收者,依此类推。
介绍
意图:避免请求发送者与接收者耦合在一起,让多个对象都有可能接收请求,将这些对象连接成一条链,并且沿着这条链传递请求,直到有对象处理它为止。
主要解决:职责链上的处理者负责处理请求,客户只需要将请求发送到职责链上即可,无须关心请求的处理细节和请求的传递,所以职责链将请求的发送者和请求的处理者解耦了。
何时使用:在处理消息的时候以过滤很多道。
如何解决:拦截的类都实现统一接口。
优点:
- 降低耦合度。它将请求的发送者和接收者解耦。
- 简化了对象。使得对象不需要知道链的结构。
- 增强给对象指派职责的灵活性。通过改变链内的成员或者调动它们的次序,允许动态地新增或者删除责任。
- 增加新的请求处理类很方便。
缺点:
- 不能保证请求一定被接收。
- 系统性能将受到一定影响,而且在进行代码调试时不太方便,可能会造成循环调用。
- 可能不容易观察运行时的特征,有碍于除错。
使用场景:
- 有多个对象可以处理同一个请求,具体哪个对象处理该请求由运行时刻自动确定。
- 在不明确指定接收者的情况下,向多个对象中的一个提交一个请求。
- 可动态指定一组对象处理请求。
实现
我们创建抽象类 AbstractLogger,带有详细的日志记录级别。然后我们创建三种类型的记录器,都扩展了 AbstractLogger。每个记录器消息的级别是否属于自己的级别,如果是则相应地打印出来,否则将不打印并把消息传给下一个记录器。
步骤1
创建抽象记录器AbstractLogger
public abstract class AbstractLogger {
public static int INFO = 1;
public static int DEBUG = 2;
public static int ERROR = 3;
protected int level;
protected AbstractLogger nextLogger;
public void setNextLogger (AbstractLogger nextLogger) {
this.nextLogger = nextLogger;
}
public void logMessage (int level, String message) {
if (this.level <= level) {
write(message);
}
if (nextLogger != null) {
nextLogger.logMessage(level, message);
}
}
abstract protected void write(String message);
}
步骤 2
创建扩展了该记录器类的实体类
类1:InfoLog
public class InfoLog extends AbstractLogger {
public InfoLog (int level) {
this.level = level;
}
@Override
protected void write(String message) {
System.out.print("\nInfoLog: " + message);
}
}
类2:DebugLog
public class DebugLog extends AbstractLogger {
public DebugLog (int level) {
this.level = level;
}
@Override
protected void write(String message) {
System.out.print("\nDebugLog: " + message);
}
}
类3:ErrorLog
public class ErrorLog extends AbstractLogger {
public ErrorLog (int level) {
this.level = level;
}
@Override
protected void write(String message) {
System.out.print("\nErrorLog: " + message);
}
}
步骤 3
创建不同类型的记录器。赋予它们不同的错误级别,并在每个记录器中设置下一个记录器。每个记录器中的下一个记录器代表的是链的一部分。
public class MyClass {
private static AbstractLogger getLogChain() {
AbstractLogger infoLog = new InfoLog(AbstractLogger.INFO);
AbstractLogger debugLog = new DebugLog(AbstractLogger.DEBUG);
AbstractLogger errorLog = new ErrorLog(AbstractLogger.ERROR);
infoLog.setNextLogger(debugLog);
debugLog.setNextLogger(errorLog);
return infoLog;
}
public static void main(String[] args) {
AbstractLogger loggerChain = getLogChain();
loggerChain.logMessage(AbstractLogger.ERROR, "This is error log");
System.out.print("\n-------------------------------------\n");
loggerChain.logMessage(AbstractLogger.DEBUG, "This is debugger log");
System.out.print("\n-------------------------------------\n");
loggerChain.logMessage(AbstractLogger.INFO, "This is info log");
}
}
结果输出:
InfoLog: This is error log
DebugLog: This is error log
ErrorLog: This is error log
InfoLog: This is debugger log
DebugLog: This is debugger log
InfoLog: This is info log