乐在其中设计模式(C#) - 命令模式(Command Pattern)
原文:乐在其中设计模式(C#) - 命令模式(Command Pattern)
作者:webabcd
介绍
将一个请求封装为一个对象,从而使你可用不同的请求对客户进行参数化;对请求排队或记录请求日志,以及支持可取消的操作。
示例
有一个Message实体类,某个类对它的操作有Insert()和Delete()方法。现在要求可以对之前的所有操作做撤销和重复。

MessageModel
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// Message实体类
/// </summary>
public class MessageModel
{
/**//// <summary>
/// 构造函数
/// </summary>
/// <param name="msg">Message内容</param>
/// <param name="pt">Message发布时间</param>
public MessageModel(string msg, DateTime pt)
{
this._message = msg;
this._publishTime = pt;
}
private string _message;
/**//// <summary>
/// Message内容
/// </summary>
public string Message
{
get
{ return _message; }
set
{ _message = value; }
}
private DateTime _publishTime;
/**//// <summary>
/// Message发布时间
/// </summary>
public DateTime PublishTime
{
get
{ return _publishTime; }
set
{ _publishTime = value; }
}
}
}Action
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// enum
/// 定义操作的两种方法Insert和Delete
/// </summary>
public enum Action
{
/**//// <summary>
/// Insert
/// </summary>
Insert,

/**//// <summary>
/// Delete
/// </summary>
Delete
}
}
SqlMessage
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// 接收者(Receiver)角色
/// Sql方式操作Message
/// </summary>
public class SqlMessage
{
/**//// <summary>
/// 操作
/// </summary>
/// <param name="action">操作的方法</param>
/// <param name="mm">Message实体对象</param>
public void Operation(Action action, MessageModel mm)
{
switch (action)
{
case Action.Insert :
Insert(mm);
break;
case Action.Delete :
Delete(mm);
break;
}
}

/**//// <summary>
/// 插入Message
/// </summary>
/// <param name="mm">Message实体对象</param>
private void Insert(MessageModel mm)
{
// 代码略
}

/**//// <summary>
/// 删除Message
/// </summary>
/// <param name="mm">Message实体对象</param>
private void Delete(MessageModel mm)
{
// 代码略
}
}
}
ICommand
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// 命令(Command)角色
/// </summary>
public interface ICommand
{
/**//// <summary>
/// 执行
/// </summary>
/// <returns>操作的方法及操作的信息</returns>
string Execute();

/**//// <summary>
/// 取消执行
/// </summary>
/// <returns>操作的方法及操作的信息</returns>
string UnExecute();
}
}
SqlMessageCommand
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// 具体命令(ConcreteCommand)角色
/// </summary>
public class SqlMessageCommand : ICommand
{
/**//// <summary>
/// 操作的方法
/// </summary>
private Action _action;

/**//// <summary>
/// Message实体对象
/// </summary>
private MessageModel _mm;

/**//// <summary>
/// 构造函数
/// </summary>
/// <param name="action">操作的方法</param>
/// <param name="mm">Message实体对象</param>
public SqlMessageCommand(Action action, MessageModel mm)
{
this._action = action;
this._mm = mm;
}

/**//// <summary>
/// 执行
/// </summary>
/// <returns>操作的方法及操作的信息</returns>
public string Execute()
{
new SqlMessage().Operation(_action, _mm);
return _action.ToString() + ":" + _mm.Message;
}

/**//// <summary>
/// 取消执行(调用一个方法,以决定取消执行的算法)
/// </summary>
/// <returns>操作的方法及操作的信息</returns>
public string UnExecute()
{
_action = GetUndoAction(_action);
new SqlMessage().Operation(_action, _mm);
return _action.ToString() + ":" + _mm.Message;
}

/**//// <summary>
/// 获得取消执行的算法
/// </summary>
/// <param name="action">操作的方法</param>
/// <returns></returns>
private Action GetUndoAction(Action action)
{
Action undo;
switch (action)
{
case Action.Insert :
undo = Action.Delete;
break;
case Action.Delete :
undo = Action.Insert;
break;
// 这句没啥用
default :
undo = Action.Insert;
break;
}
return undo;
}
}
}
Message
using System;
using System.Collections.Generic;
using System.Text;
namespace Pattern.Command

{
/**//// <summary>
/// 请求者(Invoker)角色
/// </summary>
public class Message
{
/**//// <summary>
/// 命令集合(保存每次操作)
/// </summary>
private List<ICommand> _listCommand = new List<ICommand>();

/**//// <summary>
/// 命令集合中当前要执行的命令的索引
/// </summary>
;

/**//// <summary>
/// 执行Sql
/// </summary>
/// <param name="action">操作的方法</param>
/// <param name="mm">Message实体对象</param>
/// <returns>操作的方法及操作的信息</returns>
public string Do(Action action, MessageModel mm)
{
string rtn = "";
ICommand cmd = new SqlMessageCommand(action, mm);
rtn = cmd.Execute();
_listCommand.Add(cmd);
current++;
return rtn;
}

/**//// <summary>
/// 撤销
/// </summary>
/// <param name="levels">执行撤销操作的次数</param>
/// <returns>操作的方法及操作的信息(用空格分开多条记录)</returns>
public string Undo(int levels)
{
string rtn = "";
; i < levels; i++)
{
)
{
ICommand cmd = _listCommand[--current];
rtn += cmd.UnExecute() + " ";
}
}
return rtn;
}

/**//// <summary>
/// 重复
/// </summary>
/// <param name="levels">执行重复操作的次数</param>
/// <returns>操作的方法及操作的信息(用空格分开多条记录)</returns>
public string Redo(int levels)
{
string rtn = "";
; i < levels; i++)
{
)
{
ICommand cmd = _listCommand[current++];
rtn += cmd.UnExecute() + " ";
}
}
return rtn;
}
}
}
client
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Pattern.Command;
public partial class Command : System.Web.UI.Page

{
protected void Page_Load(object sender, EventArgs e)
{
Message m = new Message();
Response.Write("操作");
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第1条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第2条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第3条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第4条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Delete, new MessageModel("第2条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第5条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Delete, new MessageModel("第3条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第6条", DateTime.Now)));
Response.Write("<br />");
Response.Write(m.Do(Action.Insert, new MessageModel("第7条", DateTime.Now)));
Response.Write("<br />");
Response.Write("<br />");
Response.Write("撤销4次操作");
Response.Write("<br />");
Response.Write(m.Undo());
Response.Write("<br />");
Response.Write("<br />");
Response.Write("重复2次操作");
Response.Write("<br />");
Response.Write(m.Redo());
Response.Write("<br />");
Response.Write("<br />");
Response.Write("撤销3次操作");
Response.Write("<br />");
Response.Write(m.Undo());
}
}
运行结果
操作
Insert:第1条
Insert:第2条
Insert:第3条
Insert:第4条
Delete:第2条
Insert:第5条
Delete:第3条
Insert:第6条
Insert:第7条
撤销4次操作
Delete:第7条 Delete:第6条 Insert:第3条 Delete:第5条
重复2次操作
Insert:第5条 Delete:第3条
撤销3次操作
Insert:第3条 Delete:第5条 Insert:第2条
参考
http://www.dofactory.com/Patterns/PatternCommand.aspx
OK
[源码下载]
乐在其中设计模式(C#) - 命令模式(Command Pattern)的更多相关文章
- 二十四种设计模式:命令模式(Command Pattern)
命令模式(Command Pattern) 介绍将一个请求封装为一个对象,从而使你可用不同的请求对客户进行参数化:对请求排队或记录请求日志,以及支持可取消的操作. 示例有一个Message实体类,某个 ...
- 设计模式-15命令模式(Command Pattern)
1.模式动机 在软件设计中,我们经常需要向某些对象发送请求,但是并不知道请求的接收者是谁,也不知道被请求的操作是哪个,我们只需在程序运行时指定具体的请求接收者即可,此时,可以使用命令模式来进行设计,使 ...
- 【UE4 设计模式】命令模式 Command Pattern
概述 描述 将一个请求封装为一个对象,从而使我们可用不同的请求对客户进行参数化:对请求排队或者记录请求日志,以及支持可撤销的操作. 命令模式是一种对象行为型模式,其别名为动作(Action)模式或事务 ...
- 设计模式 - 命令模式(command pattern) 多命令 具体解释
命令模式(command pattern) 多命令 具体解释 本文地址: http://blog.csdn.net/caroline_wendy 參考命令模式: http://blog.csdn.ne ...
- 设计模式 - 命令模式(command pattern) 具体解释
命令模式(command pattern) 详细解释 本文地址: http://blog.csdn.net/caroline_wendy 命令模式(command pattern) : 将请求封装成对 ...
- 设计模式 - 命令模式(command pattern) 宏命令(macro command) 具体解释
命令模式(command pattern) 宏命令(macro command) 具体解释 本文地址: http://blog.csdn.net/caroline_wendy 參考: 命名模式(撤销) ...
- 设计模式 - 命令模式(command pattern) 撤销(undo) 具体解释
命令模式(command pattern) 撤销(undo) 详细解释 本文地址: http://blog.csdn.net/caroline_wendy 參考命令模式: http://blog.cs ...
- 设计模式 ( 十三 ) 命令模式Command(对象行为型)
设计模式 ( 十三 ) 命令模式Command(对象行为型) 1.概述 在软件设计中,我们经常需要向某些对象发送请求,但是并不知道请求的接收者是谁,也不知道被请求的操作是哪个,我们只需 ...
- 乐在其中设计模式(C#) - 提供者模式(Provider Pattern)
原文:乐在其中设计模式(C#) - 提供者模式(Provider Pattern) [索引页][源码下载] 乐在其中设计模式(C#) - 提供者模式(Provider Pattern) 作者:weba ...
随机推荐
- POJ1505&&UVa714 Copying Books(DP)
Copying Books Time Limit: 3000MS Memory Limit: 10000K Total Submissions: 7109 Accepted: 2221 Descrip ...
- 开发指南专题4:JEECG高速微云开发平台--JEECG开发环境的搭建
开发指南专题4:JEECG微云高速开发平台开发环境搭建 1. JEECG开发环境搭建 JEECG推荐的开发环境为Myeclipse8.5/Eclipse3.7+JDK1.6+Tomcat6.0 1.1 ...
- 怎样在Linux下通过ldapsearch查询活动文件夹的内容
从Win2000開始.微软抛弃NT域而採用活动文件夹来管理Windows域.而活动文件夹就是微软基于遵守LDAP协议的文件夹服务.假设用扫描器扫描的话能够发现活动文件夹的389port是打开的.并且微 ...
- xcode target
A target specifies a product to build and contains the instructions for building the product from a ...
- HDU3977(斐波那契数列模n的循环节长度)
题目:http://acm.hdu.edu.cn/showproblem.php?pid=3977 题意:求斐波那契数列模p的循环节长度,注意p最大是2*10^9,但是它的素因子小于10^6. 分析过 ...
- PHP:小数位计算
本文提供了两种方法,分数的方法成为字符串.然后,"."为了拦截.跟.子长后.另一个是关于小数*10的N钍.实例10的8再次钍8取余次.然后继续10余.取决于10结果的余数是不0. ...
- .net数据根据字段进行分类(linq语句)
var items = List<实体>; var models = items.GroupBy(r => r.分类字段).ToDictionary(d => d.Key, d ...
- 在spring MVC的controller中获取ServletConfig
在使用SmartUpload进行文件上传时,须要用到srevletConfig: 假设是在servlet中写当然是非常easy实现的: private ServletConfig config; // ...
- 用XAML做网页!!—终结篇
原文:用XAML做网页!!-终结篇 迄今为止的设计都很顺利,但这次就不得不接触我前面所说的非常糟糕的流文档了,但在此之前先来把标题弄好: <Border BorderBrush="#6 ...
- [Unity3D]Unity3D游戏开发之飞机大战项目解说
大家好,我是秦元培,欢迎大家继续关注我的博客,我的博客地址是blog.csdn.net/qinyuanpei. 首先感谢大家对我博客的关注,今天我想和大家分享的是一个飞机大战的项目.这是一个比較综合的 ...