码迷,mamicode.com
首页 > Web开发 > 详细

.NET设计模式(17):命令模式(Command Pattern)(转)

时间:2015-03-07 15:40:22      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

概述

在软件系统中,“行为请求者”与“行为实现者”通常呈现一种“紧耦合”。但在某些场合,比如要对行为进行“记录、撤销/重做、事务”等处理,这种无法抵御变化的紧耦合是不合适的。在这种情况下,如何将“行为请求者”与“行为实现者”解耦?将一组行为抽象为对象,可以实现二者之间的松耦合[李建忠]。这就是本文要说的Command模式。

意图

将一个请求封装为一个对象,从而使你可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可撤消的操作。[GOF 《设计模式》]

结构图

Command模式结构图如下:

技术分享

1  Command模式结构图

生活中的例子

Command模式将一个请求封装为一个对象,从而使你可以使用不同的请求对客户进行参数化。用餐时的账单是Command模式的一个例子。服务员接受顾客的点单,把它记在账单上封装。这个点单被排队等待烹饪。注意这里的"账单"是不依赖于菜单的,它可以被不同的顾客使用,因此它可以添入不同的点单项目。

技术分享

2  使用用餐例子的Command模式对象图

Command模式解说

在众多的设计模式中,Command模式是很简单也很优雅的一种设计模式。Command模式它封装的是命令,把命令发出者的责任和命令执行者的责任分开。我们知道,一个类是一组操作和相应的一些变量的集合,现在有这样一个类Document,如下:

技术分享

3

示意性代码:

技术分享/// <summary>
技术分享
技术分享
/// 文档类
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class Document
技术分享
技术分享
{
技术分享    
/// <summary>
技术分享
技术分享    
/// 显示操作
技术分享
技术分享    
/// </summary>

技术分享
技术分享    
public void Display()
技术分享
技术分享    
{
技术分享        Console.WriteLine(
"Display技术分享");
技术分享    }
 
技术分享
技术分享    
/// <summary>
技术分享
技术分享    
/// 撤销操作
技术分享
技术分享    
/// </summary>

技术分享
技术分享    
public void Undo()
技术分享
技术分享    
{
技术分享        Console.WriteLine(
"Undo技术分享");
技术分享    }

技术分享
技术分享    
/// <summary>
技术分享
技术分享    
/// 恢复操作
技术分享
技术分享    
/// </summary>

技术分享
技术分享    
public void Redo()
技术分享
技术分享    
{
技术分享        Console.WriteLine(
"Redo技术分享");
技术分享    }

技术分享}

一般情况下我们使用这个类的时候,都会这样去写:

 

技术分享class Program
技术分享
技术分享
{
技术分享    
static void Main(string[] args)
技术分享
技术分享    
{
技术分享        Document doc 
= new Document();
技术分享
技术分享        doc.Display();
技术分享
技术分享        doc.Undo();
技术分享
技术分享        doc.Redo();
技术分享    }

技术分享}

这样的使用本来是没有任何问题的,但是我们看到在这个特定的应用中,出现了Undo/Redo的操作,这时如果行为的请求者和行为的实现者之间还是呈现这样一种紧耦合,就不太合适了。可以看到,客户程序是依赖于具体Document的命令(方法)的,引入Command模式,需要对Document中的三个命令进行抽象,这是Command模式最有意思的地方,因为在我们看来Display()Undo()Redo()这三个方法都应该是Document所具有的,如果单独抽象出来成一个命令对象,那就是把函数层面的功能提到了类的层面,有点功能分解的味道,我觉得这正是Command模式解决这类问题的优雅之处,先对命令对象进行抽象:

技术分享

4

示意性代码:

技术分享/// <summary>
技术分享
技术分享
/// 抽象命令
技术分享
技术分享
/// </summary>

技术分享
技术分享
public abstract class DocumentCommand
技术分享
技术分享
{
技术分享    Document _document;
技术分享
技术分享    
public DocumentCommand(Document doc)
技术分享
技术分享    
{
技术分享        
this._document = doc;
技术分享    }

技术分享
技术分享    
/// <summary>
技术分享
技术分享    
/// 执行
技术分享
技术分享    
/// </summary>

技术分享
技术分享    
public abstract void Execute();
技术分享
技术分享}

其他的具体命令类都继承于该抽象类,如下:

 

技术分享
5

示意性代码:

 

技术分享/// <summary>
技术分享
技术分享
/// 显示命令
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class DisplayCommand : DocumentCommand
技术分享
技术分享
{
技术分享    
public DisplayCommand(Document doc)
技术分享
技术分享        : 
base(doc)
技术分享    
{    
技术分享
技术分享    }

技术分享
技术分享    
public override void Execute()
技术分享
技术分享    
{
技术分享        _document.Display();   
技术分享    }

技术分享}

技术分享
技术分享
技术分享
/// <summary>
技术分享
技术分享
/// 撤销命令
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class UndoCommand : DocumentCommand
技术分享
技术分享

技术分享    
public UndoCommand(Document doc)
技术分享
技术分享        : 
base(doc)
技术分享    
{   
技术分享
技术分享    }

技术分享
技术分享    
public override void Execute()
技术分享
技术分享    
{
技术分享        _document.Undo();   
技术分享    }

技术分享}

技术分享
技术分享
技术分享
/// <summary>
技术分享
技术分享
/// 重做命令
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class RedoCommand : DocumentCommand
技术分享
技术分享
{
技术分享    
public RedoCommand(Document doc)
技术分享
技术分享        : 
base(doc)
技术分享    

技术分享
技术分享    }

技术分享
技术分享    
public override void Execute()
技术分享
技术分享    
{
技术分享        _document.Redo();   
技术分享    }
 
技术分享}

现在还需要一个Invoker角色的类,这其实相当于一个中间角色,前面我曾经说过,使用这样的一个中间层也是我们经常使用的手法,即把AB的依赖转换为AC的依赖。如下:

技术分享

6

示意性代码:

技术分享/// <summary>
技术分享
技术分享
/// Invoker角色
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class DocumentInvoker
技术分享
技术分享
{
技术分享    DocumentCommand _discmd;
技术分享
技术分享    DocumentCommand _undcmd;
技术分享
技术分享    DocumentCommand _redcmd;
技术分享
技术分享    
public DocumentInvoker(DocumentCommand discmd,DocumentCommand undcmd,DocumentCommand redcmd)
技术分享    
{
技术分享
技术分享        
this._discmd = discmd;
技术分享
技术分享        
this._undcmd = undcmd;
技术分享
技术分享        
this._redcmd = redcmd;
技术分享
技术分享    }

技术分享
技术分享    
public void Display()
技术分享
技术分享    
{
技术分享        _discmd.Execute();
技术分享    }

技术分享
技术分享    
public void Undo()
技术分享
技术分享    
{
技术分享        _undcmd.Execute();
技术分享    }

技术分享
技术分享    
public void Redo()
技术分享
技术分享    
{
技术分享        _redcmd.Execute();
技术分享    }

技术分享}

现在再来看客户程序的调用代码:

技术分享class Program
技术分享
技术分享
{
技术分享    
static void Main(string[] args)
技术分享
技术分享    
{
技术分享
技术分享        Document doc 
= new Document();
技术分享
技术分享
技术分享        DocumentCommand discmd 
= new DisplayCommand(doc);
技术分享
技术分享        DocumentCommand undcmd 
= new UndoCommand(doc);
技术分享
技术分享        DocumentCommand redcmd 
= new RedoCommand(doc);
技术分享
技术分享
技术分享        DocumentInvoker invoker 
= new DocumentInvoker(discmd,undcmd,redcmd);
技术分享
技术分享        invoker.Display();
技术分享
技术分享        invoker.Undo();
技术分享
技术分享        invoker.Redo();
技术分享
技术分享    }

技术分享}

可以看到:

1.在客户程序中,不再依赖于DocumentDisplay()Undo()Redo()命令,通过Command对这些命令进行了封装,使用它的一个关键就是抽象的Command类,它定义了一个操作的接口。同时我们也可以看到,本来这三个命令仅仅是三个方法而已,但是通过Command模式却把它们提到了类的层面,这其实是违背了面向对象的原则,但它却优雅的解决了分离命令的请求者和命令的执行者的问题,在使用Command模式的时候,一定要判断好使用它的时机。

2.上面的Undo/Redo只是简单示意性的实现,如果要实现这样的效果,需要对命令对象设置一个状态,由命令对象可以把状态存储起来。

.NET中的Command模式

ASP.NETMVC模式中,有一种叫Front Controller的模式,它分为HandlerCommand树两个部分,Handler处理所有公共的逻辑,接收HTTP PostGet请求以及相关的参数并根据输入的参数选择正确的命令对象,然后将控制权传递到Command对象,由其完成后面的操作,这里面其实就是用到了Command模式。

技术分享

7  Front Controller 的处理程序部分结构图

技术分享

8 Front Controller的命令部分结构图

Handler 类负责处理各个 Web 请求,并将确定正确的 Command 对象这一职责委派给 CommandFactory 类。当 CommandFactory 返回 Command 对象后,Handler 将调用 Command 上的 Execute 方法来执行请求。具体的实现如下

Handler类:

技术分享/// <summary>
技术分享
技术分享
/// Handler类
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class Handler : IHttpHandler
技术分享
技术分享
{
技术分享    
public void ProcessRequest(HttpContext context)
技术分享
技术分享    
{
技术分享
技术分享        Command command 
= CommandFactory.Make(context.Request.Params);
技术分享
技术分享        command.Execute(context);
技术分享
技术分享    }

技术分享
技术分享    
public bool IsReusable
技术分享
技术分享    
{
技术分享        
get
技术分享
技术分享        
{
技术分享            
return true;
技术分享        }

技术分享    }

技术分享}

Command接口:

技术分享/// <summary>
技术分享
技术分享
/// Command
技术分享
技术分享
/// </summary>

技术分享
技术分享
public interface Command
技术分享
技术分享
{
技术分享    
void Execute(HttpContext context);
技术分享}

CommandFactory类:

技术分享/// <summary>
技术分享
技术分享
/// CommandFactory
技术分享
技术分享
/// </summary>

技术分享
技术分享
public class CommandFactory
技术分享
技术分享
{
技术分享    
public static Command Make(NameValueCollection parms)
技术分享
技术分享    
{
技术分享
技术分享        
string requestParm = parms["requestParm"];
技术分享
技术分享        Command command 
= null;
技术分享
技术分享        
//根据输入参数得到不同的Command对象
技术分享

技术分享        
switch (requestParm)
技术分享
技术分享        
{
技术分享            
case "1":
技术分享
技术分享                command 
= new FirstPortal();
技术分享
技术分享                
break;
技术分享
技术分享            
case "2":
技术分享
技术分享                command 
= new SecondPortal();
技术分享
技术分享                
break;
技术分享
技术分享            
default:
技术分享
技术分享                command 
= new FirstPortal();
技术分享
技术分享                
break;
技术分享        }

技术分享
技术分享        
return command;
技术分享
技术分享    }

技术分享}

RedirectCommand类:

技术分享public abstract class RedirectCommand : Command
技术分享
技术分享
{
技术分享    
//获得Web.Config中定义的key和url键值对,UrlMap类详见下载包中的代码
技术分享

技术分享    
private UrlMap map = UrlMap.SoleInstance;
技术分享
技术分享    
protected abstract void OnExecute(HttpContext context);
技术分享
技术分享    
public void Execute(HttpContext context)
技术分享
技术分享    
{
技术分享        OnExecute(context);
技术分享
技术分享        
//根据key和url键值对提交到具体处理的页面
技术分享

技术分享        
string url = String.Format("{0}?{1}", map.Map[context.Request.Url.AbsolutePath], context.Request.Url.Query);
技术分享
技术分享        context.Server.Transfer(url);
技术分享
技术分享    }

技术分享}

FirstPortal类:

技术分享public class FirstPortal : RedirectCommand
技术分享
技术分享
{
技术分享    
protected override void OnExecute(HttpContext context)
技术分享
技术分享    
{
技术分享        
//在输入参数中加入项portalId以便页面处理
技术分享

技术分享        context.Items[
"portalId"= "1";
技术分享
技术分享    }

技术分享}

SecondPortal类:

技术分享public class SecondPortal : RedirectCommand
技术分享
技术分享
{
技术分享    
protected override void OnExecute(HttpContext context)
技术分享
技术分享    
{
技术分享        context.Items[
"portalId"= "2";
技术分享    }

技术分享}

效果及实现要点

1Command模式的根本目的在于将“行为请求者”与“行为实现者”解耦,在面向对象语言中,常见的实现手段是“将行为抽象为对象”。

2.实现Command接口的具体命令对象ConcreteCommand有时候根据需要可能会保存一些额外的状态信息。

3.通过使用Compmosite模式,可以将多个命令封装为一个“复合命令”MacroCommand

4Command模式与C#中的Delegate有些类似。但两者定义行为接口的规范有所区别:Command以面向对象中的“接口-实现”来定义行为接口规范,更严格,更符合抽象原则;Delegate以函数签名来定义行为接口规范,更灵活,但抽象能力比较弱。

5.使用命令模式会导致某些系统有过多的具体命令类。某些系统可能需要几十个,几百个甚至几千个具体命令类,这会使命令模式在这样的系统里变得不实际。

适用性

在下面的情况下应当考虑使用命令模式:

1.使用命令模式作为"CallBack"在面向对象系统中的替代。"CallBack"讲的便是先将一个函数登记上,然后在以后调用此函数。

2.需要在不同的时间指定请求、将请求排队。一个命令对象和原先的请求发出者可以有不同的生命期。换言之,原先的请求发出者可能已经不在了,而命令对象本身仍然是活动的。这时命令的接收者可以是在本地,也可以在网络的另外一个地址。命令对象可以在串形化之后传送到另外一台机器上去。

3.系统需要支持命令的撤消(undo)。命令对象可以把状态存储起来,等到客户端需要撤销命令所产生的效果时,可以调用undo()方法,把命令所产生的效果撤销掉。命令对象还可以提供redo()方法,以供客户端在需要时,再重新实施命令效果。

4.如果一个系统要将系统中所有的数据更新到日志里,以便在系统崩溃时,可以根据日志里读回所有的数据更新命令,重新调用Execute()方法一条一条执行这些命令,从而恢复系统在崩溃前所做的数据更新。

总结

Command模式是非常简单而又优雅的一种设计模式,它的根本目的在于将“行为请求者”与“行为实现者”解耦。

更多的设计模式文章可以访问《.NET设计模式系列文章

 

参考资料

Erich Gamma等,《设计模式:可复用面向对象软件的基础》,机械工业出版社

Robert C.Martin,《敏捷软件开发:原则、模式与实践》,清华大学出版社

阎宏,《Java与模式》,电子工业出版社

Alan Shalloway James R. Trott,《Design Patterns Explained》,中国电力出版社

MSDN WebCast C#面向对象设计模式纵横谈(14)Command命令模式(结构型模式)

袁剑,《领悟Web设计模式》

.NET设计模式(17):命令模式(Command Pattern)(转)

标签:

原文地址:http://www.cnblogs.com/sandea/p/4320398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!