装饰者模式以对客户端透明的方式动态的为对象增加责任。此模式提供了一个比继承更为灵活的替代方案来扩展对象的功能,避免了继承方法产生的类激增问题,而且更方便更改对象的责任。
我们经常要为某一些个别的对象增加一些新的职责,并不是全部的类。例如我们系统留言反馈板块中可能需要过滤用户输入留言中的一些词汇(例如政治敏感词汇、色情词汇等)、还可能对用户输入留言进行一些修饰(例如对用户输入的url自动加上超链接、对用户输入的ubb代码进行转换的)、还可能将用户输入的内容定时发送的网管的邮箱中等等。如果使用类继承的方式进行设计,我们可能要设计一个接口
bodycontentfilterintf,然后在由bodycontentfilterintf派生出sensitivewordcontentfilter、htmlcontentfilter、sendemailcontentfilter等类。但是如果还要要求同时能过滤敏感词汇并能进行修饰、或者过滤敏感词汇之后把用户输入的留言发送到网管邮箱等等,这样就要增加sensitivewordhtmlcontentfilter、sensitivewordsendemaillcontentfilter等类,这种方式导致了子类瀑发式的产生。
一个灵活的方法是将过滤器嵌入另一个过滤器中,由这个过滤器来负责调用被嵌入过滤器的方法并执行自己的过滤器方法。我们称这个嵌入的过滤器为装饰(decorator)。这个装饰与过滤器接口一致。装饰将请求向前转到到另一个过滤器,并且可能能转发前后执行一些额外的动作(如修饰、发送邮件),透明性使你可以递归的嵌套多个装饰,从面可以添加任意多的功能。
其实java中的过滤器模式应用非常多,典型的就是io的stream操作。在io处理中,java将数据抽象为流(stream)。在io库中,最基本的是inputstream和outputstream两个分别处理输出和输入的对象,但是在inputstream和outputstream中之提供了最简单的流处理方法,只能读入/写出字符,没有缓冲处理,无法处理文件,等等。
linenumberinputstream、bufferinputstream、stringbufferinputstream等提供各种不同服务的类只要组合起来就可以实现很多功能,如下:
filterinputstream mystream=new linenumberinputstream
( new bufferinputstream( new stringbufferinputstream( mystringbuffer)));
多个的decorator被层叠在一起,最后得到一个功能强大的流。既能够被缓冲,又能够得到行数,这就是decorator的威力!
下面是我们的类静态图
我们定义一个接口bodycontentfilterintf 来定义所有过滤器要实现的方法:
public interface bodycontentfilterintf {
public string filtcontent(string acontent) throws contentfilterexception;
}
这个接口中只有一个方法filtcontent,将要过滤的留言传给acontent参数,filtcontent对acontent进行一些处理(如装饰url、ubb等),然后将处理后的字符串做为返回值返回;如果留言没有通过过滤(如含有敏感词汇等),只要抛出自定义contentfilterexception异常即可。
下面是一个可能的一个过滤器(保证输入的字数多于50):
public class lengthcontentfilter
implements bodycontentfilterintf {
private bodycontentfilterintf bodycontentfilterintf = null;
public htmlcontentfilter(bodycontentfilterintf afilter)
{
bodycontentfilterintf = afilter;
}
public string filtcontent(string acontent) throws contentfilterexception {
string l_content = acontent;
if (bodycontentfilterintf!=null)
_content = bodycontentfilterintf .filtcontent(l_content);
if (acontent.length()<=50)
throw new contentfilterexception (“输入的字数不能少于50!”);
return acontext;
}
}
这是另一个过滤器(伪码,用来实现向网管邮箱发送邮件) public class sendemailcontentfilter
implements bodycontentfilterintf {
private bodycontentfilterintf bodycontentfilterintf = null;
public sendemailcontentfilter(bodycontentfilterintf afilter)
{
bodycontentfilterintf = afilter;
}
public string filtcontent(string acontent) throws contentfilterexception {
string l_content = acontent;
if (bodycontentfilterintf!=null)
l_content = bodycontentfilterintf .filtcontent(l_content);
sendemail(“[email protected]”,l_content)
return acontext;
}
}
当然还有sensitivewordcontextfilter(过滤敏感词汇),htmlcontentfilter(修饰用户输入留言中的超级链接)等。
有了这些过滤器,我们就可以很方便的为留言版添加各种复合的过滤器。例如我们想对输入的留言进行超链接修饰和过滤敏感词汇,那么我们只要如下调用即可:
try {
l_content = new htmlcontentfilter(new sensitivewordcontextfilter(null)).
filtcontent(bodycontext);
}
catch (contentfilterexception ex) {
bbscommon.showmsginresponse(response, ex.getmessage());
return;
}
我们甚至可以动态的添加不同的过滤器,例如对于会员我们要对输入的留言进行超链接修饰并且将他的留言发送到网管邮箱,而对于非会员我们则要过滤他输入的敏感词汇并且保证输入的字数不少于50,我们只要如下调用即可:
try {
bodycontentfilterintf bodycontentfilterintf = null;
bodycontentfilterintf = new htmlcontentfilter(null);
if(ismember==true)
bodycontentfilterintf = new sendemailcontentfilter(bodycontentfilterintf);
else
bodycontentfilterintf = new sensitivewordcontextfilter(bodycontentfilterintf);
l_content = bodycontentfilterintf.filtcontent(bodycontext);
}
catch (contentfilterexception ex) {
bbscommon.showmsginresponse(response, ex.getmessage());
return;
}