乐在其中设计模式(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 ...
随机推荐
- 使用独立PID namespace防止误杀进程
一段错误的代码 首先看一段错误的代码: #!/bin/bash SLICE=100; slppid=1; pidfile=/var/run/vpnrulematch.pid # 停止之前的sleep ...
- 温故知新-------jQuery层次选择器
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></titl ...
- Hibernate学习之createSQLQuery与createQuery的区别及使用
hibernate中createQuery与createSQLQuery:前者用的hql语句进行查询,后者可以用sql语句查询,前者以hibernate生成的Bean为对象装入list返回,后者则是以 ...
- cocos2d-js-v3.0-rc0 下 pomelo-cocos2d-jsb native web 配置
一.基本步骤 注意:pomelo-cocos2d-jsb 没实用 https://github.com/NetEase/pomelo-cocos2d-jsb,原因这个不是最新版,另外,componen ...
- inkscape - 百度百科
http://wapbaike.baidu.com/view/1267893.htm?ssid=0&from=844b&uid=3151E6C0905477A13653132D762B ...
- Python什么是二次开发的意义?python在.net项目采用
任何人都知道python在.net该项目是做什么的啊? 辅助用途,用作"二次开发"..net站点的话python主要是CGI才用.能够用python编写B/S程序. 解释一下二次开 ...
- Java中对不变的 data和object reference 使用 final
Java中对不变的 data和object reference 使用 final 许多语言都提供常量数据的概念,用来表示那些既不会改变也不能改变的数据,java关键词final用来表示常量数据.例如: ...
- 怎样改动SVN的地址
改动svn地址的目的有两个,一个是更改默认svn路径.还有一个就是svn库server迁移了. 我碰到的是另外一种情况,SVN的IP地址改了,须要这么切换: 在本地配置库副本根文件夹点击鼠标右键--& ...
- DataInputStream类readLong()引起的思考
今天无意中看了下jdk中的DataInputStream类,然后看到readLong()方法,如下: private byte readBuffer[] = new byte[8]; public f ...
- Android 自己实现 NavigationView [Design Support Library(1)]
转载请标明出处: http://blog.csdn.net/lmj623565791/article/details/46405409: 本文出自:[张鸿洋的博客] 一.概述 Google I/O 2 ...