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

命令模式(Command Pattern

——.NET设计模式系列之十七

TerryLee20067

概述

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

意图

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

结构图

Command模式结构图如下:

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

1  Command模式结构图

生活中的例子

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

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

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

Command模式解说

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

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

3

示意性代码:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// 文档类
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 Document
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
/**//// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// 显示操作
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// </summary>

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Display()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        Console.WriteLine(
Display《.NET设计模式(17):命令模式(Command Pattern)》);
《.NET设计模式(17):命令模式(Command Pattern)》    }
 
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
/**//// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// 撤销操作
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// </summary>

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Undo()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        Console.WriteLine(
Undo《.NET设计模式(17):命令模式(Command Pattern)》);
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
/**//// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// 恢复操作
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// </summary>

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Redo()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        Console.WriteLine(
Redo《.NET设计模式(17):命令模式(Command Pattern)》);
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

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

《.NET设计模式(17):命令模式(Command Pattern)》
class
 Program
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
static void Main(string[] args)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        Document doc 
= new Document();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        doc.Display();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        doc.Undo();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        doc.Redo();
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

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

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

4

示意性代码:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// 抽象命令
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
abstract
 
class
 DocumentCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    Document _document;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public DocumentCommand(Document doc)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        
this._document = doc;
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
/**//// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// 执行
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
/// </summary>

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public abstract void Execute();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》}

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

《.NET设计模式(17):命令模式(Command Pattern)》
5

示意性代码:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// 显示命令
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 DisplayCommand : DocumentCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
public DisplayCommand(Document doc)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        : 
base(doc)
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{    
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public override void Execute()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _document.Display();   
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}


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

/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// 撤销命令
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 UndoCommand : DocumentCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

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

《.NET设计模式(17):命令模式(Command Pattern)》    
public UndoCommand(Document doc)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        : 
base(doc)
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{   
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public override void Execute()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _document.Undo();   
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}


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

/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// 重做命令
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 RedoCommand : DocumentCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
public RedoCommand(Document doc)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        : 
base(doc)
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public override void Execute()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _document.Redo();   
《.NET设计模式(17):命令模式(Command Pattern)》    }
 
《.NET设计模式(17):命令模式(Command Pattern)》}

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

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

6

示意性代码:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// Invoker角色
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 DocumentInvoker
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    DocumentCommand _discmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    DocumentCommand _undcmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    DocumentCommand _redcmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public DocumentInvoker(DocumentCommand discmd,DocumentCommand undcmd,DocumentCommand redcmd)
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
this._discmd = discmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
this._undcmd = undcmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
this._redcmd = redcmd;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Display()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _discmd.Execute();
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Undo()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _undcmd.Execute();
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Redo()
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        _redcmd.Execute();
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

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

《.NET设计模式(17):命令模式(Command Pattern)》
class
 Program
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
static void Main(string[] args)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        Document doc 
= new Document();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        DocumentCommand discmd 
= new DisplayCommand(doc);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        DocumentCommand undcmd 
= new UndoCommand(doc);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        DocumentCommand redcmd 
= new RedoCommand(doc);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        DocumentInvoker invoker 
= new DocumentInvoker(discmd,undcmd,redcmd);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        invoker.Display();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        invoker.Undo();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        invoker.Redo();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

可以看到:

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

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

.NET中的Command模式

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

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

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

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

8 Front Controller的命令部分结构图

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

Handler类:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// Handler类
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 Handler : IHttpHandler
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
public void ProcessRequest(HttpContext context)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        Command command 
= CommandFactory.Make(context.Request.Params);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        command.Execute(context);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public bool IsReusable
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        
get
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》        
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》            
return true;
《.NET设计模式(17):命令模式(Command Pattern)》        }

《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

Command接口:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// Command
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
interface
 Command
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
void Execute(HttpContext context);
《.NET设计模式(17):命令模式(Command Pattern)》}

CommandFactory类:

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/**/
/// <summary>
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// CommandFactory
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》
/// </summary>

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

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

public
 
class
 CommandFactory
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
public static Command Make(NameValueCollection parms)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
string requestParm = parms[requestParm];
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        Command command 
= null;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
//根据输入参数得到不同的Command对象
《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》        
switch (requestParm)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》        
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》            
case 1:
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                command 
= new FirstPortal();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                
break;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》            
case 2:
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                command 
= new SecondPortal();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                
break;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》            
default:
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                command 
= new FirstPortal();
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》                
break;
《.NET设计模式(17):命令模式(Command Pattern)》        }

《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
return command;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

RedirectCommand类:

《.NET设计模式(17):命令模式(Command Pattern)》
public
 
abstract
 
class
 RedirectCommand : Command
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
//获得Web.Config中定义的key和url键值对,UrlMap类详见下载包中的代码
《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》    
private UrlMap map = UrlMap.SoleInstance;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
protected abstract void OnExecute(HttpContext context);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    
public void Execute(HttpContext context)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        OnExecute(context);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        
//根据key和url键值对提交到具体处理的页面
《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》        
string url = String.Format({0}?{1}, map.Map[context.Request.Url.AbsolutePath], context.Request.Url.Query);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》        context.Server.Transfer(url);
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

FirstPortal类:

《.NET设计模式(17):命令模式(Command Pattern)》
public
 
class
 FirstPortal : RedirectCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
protected override void OnExecute(HttpContext context)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        
//在输入参数中加入项portalId以便页面处理
《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》        context.Items[
portalId= 1;
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

SecondPortal类:

《.NET设计模式(17):命令模式(Command Pattern)》
public
 
class
 SecondPortal : RedirectCommand
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》

《.NET设计模式(17):命令模式(Command Pattern)》
{
《.NET设计模式(17):命令模式(Command Pattern)》    
protected override void OnExecute(HttpContext context)
《.NET设计模式(17):命令模式(Command Pattern)》
《.NET设计模式(17):命令模式(Command Pattern)》《.NET设计模式(17):命令模式(Command Pattern)》    
《.NET设计模式(17):命令模式(Command Pattern)》{
《.NET设计模式(17):命令模式(Command Pattern)》        context.Items[
portalId= 2;
《.NET设计模式(17):命令模式(Command Pattern)》    }

《.NET设计模式(17):命令模式(Command Pattern)》}

效果及实现要点

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设计模式》

    原文作者:TerryLee
    原文地址: http://terrylee.cnblogs.com/archive/2006/07/17/Command_Pattern.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞