目录

备注什么是DCI?如何将Role注入到Data中?开发期注入字节码增强MixinTraitTemplateT4 + 部分类 + 显式接口实现 + 扩展类型,C#专用运行期注入Mixin动态代理为什么要用DCI?DCI在C#种的两种实现第一种:显式接口实现 + 部分类第二种实现:组合备注

备注返回目录

之前把DCI的Role和四色原型的Role给弄混了,本文也不会比较这两种Role的区别(后面有机会再说),这里简单的记录一下对DCI的理解。

参考文章:http://www.cnblogs.com/happyframework/p/3302238.html

什么是DCI?返回目录

Context 选择 Data,让 Data  扮演 Role 执行 Interaction。

Data

用户模型(只包含数据和本地方法)。

如:

 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace DCIStudy.V7
8 {
9 public partial class People
10 {
11 public string Name { get; set; }
12
13 public TRole Act<TRole>()
14 where TRole : class
15 {
16 return this as TRole;
17 }
18 }
19 }

Context

面向用例设设计,职责为:选择对象,让对象扮演角色,让角色执行交互。

如:

 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace DCIStudy.V7.Company
8 {
9 public class CompanyContext
10 {
11 public void Execute()
12 {
13 //选择对象。
14 var steven = new People { Name = "Steven" };
15
16 //扮演角色。
17 var developer = steven.Act<IDeveloper>();
18
19 //执行交互。
20 developer.Coding();
21 }
22 }
23 }

Interaction

角色的行为驱动用例的执行。

如:

 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 using DCIStudy.V7.Company;
8
9 namespace DCIStudy.V7
10 {
11 public partial class People : IDeveloper
12 {
13 void IDeveloper.Coding()
14 {
15 Console.WriteLine(string.Format("{0},快乐的编程中!",this.Name));
16 }
17 }
18 }

如何将Role注入到Data中?返回目录

开发期注入返回目录

字节码增强返回目录

下文的语法是AspectJ吗?我没有验证,有懂的朋友给我留言,我感觉字节码增强是可以实现的。

Mixin返回目录

http://www.cnblogs.com/happyframework/archive/2013/04/25/3040461.html

Trait返回目录

Trait本质上是一种Mixin的实现,Scala和Php5.4在语法级别支持了trait。

http://php.net/manual/en/language.oop5.traits.php

Template返回目录

http://www.cnblogs.com/stephen-liu74/archive/2012/08/12/2635583.html

T4 + 部分类 + 显式接口实现 + 扩展类型,C#专用返回目录

后面会给出示例,因为T4 + 扩展类型都是为了复用的,后文只给出显示接口实现 + 部分类的代码,如果有复用需求,可以引入T4 + 扩展类型。

运行期注入返回目录

Mixin返回目录

Mixin也分开发期间Mixin和运行期间Mixin。

凡是支持OpenClass的语言都支持运行期间Mixin,如:Ruby、Python和Javascript。OpenClass的本质是运行期间可以修改类型系统,也叫“动态类型”,像Php这种静态类型语言就没有这个特性,虽然Php是弱类型和解释执行的。

http://www.cnblogs.com/happyframework/archive/2013/04/25/3040461.html(重点看Ruby)。

动态代理返回目录

http://www.cnblogs.com/happyframework/p/3295853.html

http://qi4j.org/

为什么要用DCI?返回目录

如果将DCI作为一种编程模式或设计模式的话,我是比较认可的,作为一种架构模式,还有待考量,等有机会用一下再做评价。

DCI在C#种的两种实现返回目录

第一种:显式接口实现 + 部分类返回目录

项目结构

代码(给出一个上下文的代码)

 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace DCIStudy.V7.Home
8 {
9 public class HomeContext
10 {
11 public void Execute()
12 {
13 //选择对象。
14 var steven = new People { Name = "Steven" };
15
16 //扮演角色。
17 var player = steven.Act<IPlayer>();
18
19 //执行交互。
20 player.Play();
21 }
22 }
23 }
24
25 using System;
26 using System.Collections.Generic;
27 using System.Linq;
28 using System.Text;
29 using System.Threading.Tasks;
30
31 namespace DCIStudy.V7.Home
32 {
33 public interface IPlayer
34 {
35 void Play();
36 }
37 }
38
39 using System;
40 using System.Collections.Generic;
41 using System.Linq;
42 using System.Text;
43 using System.Threading.Tasks;
44
45 using DCIStudy.V7.Home;
46
47 namespace DCIStudy.V7
48 {
49 public partial class People : IPlayer
50 {
51 void IPlayer.Play()
52 {
53 Console.WriteLine(string.Format("{0},疯狂的游戏中!",this.Name));
54 }
55 }
56 }
57
58 using System;
59 using System.Collections.Generic;
60 using System.Linq;
61 using System.Text;
62 using System.Threading.Tasks;
63
64 namespace DCIStudy.V7
65 {
66 public partial class People
67 {
68 public string Name { get; set; }
69
70 public TRole Act<TRole>()
71 where TRole : class
72 {
73 return this as TRole;
74 }
75 }
76 }

第二种实现:组合返回目录

项目结构

代码(给出一个上下文的代码)

 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6
7 namespace DCIStudy.V8.Company
8 {
9 public class CompanyContext
10 {
11 public void Execute()
12 {
13 //选择对象。
14 var steven = new People { Name = "Steven" };
15
16 //扮演角色。
17 var developer = steven.Act<Developer>();
18
19 //执行交互。
20 developer.Coding();
21 }
22 }
23 }
24
25 using System;
26 using System.Collections.Generic;
27 using System.Linq;
28 using System.Text;
29 using System.Threading.Tasks;
30
31 namespace DCIStudy.V8.Company
32 {
33 public class CompanyContext
34 {
35 public void Execute()
36 {
37 //选择对象。
38 var steven = new People { Name = "Steven" };
39
40 //扮演角色。
41 var developer = steven.Act<Developer>();
42
43 //执行交互。
44 developer.Coding();
45 }
46 }
47 }
48
49 using System;
50 using System.Collections.Generic;
51 using System.Linq;
52 using System.Text;
53 using System.Threading.Tasks;
54
55 namespace DCIStudy.V8
56 {
57 public class People
58 {
59 public string Name { get; set; }
60
61 public TRole Act<TRole>()
62 where TRole : class
63 {
64 var role = Activator.CreateInstance<TRole>();
65
66 (role as dynamic).People = this;
67
68 return role;
69 }
70 }
71 }

备注返回目录

相对于DDD,DCI给出的模式显得过于泛化了,如:分层、分区(BondedContext)、每个层有哪些元素、如何交互等,DCI、四色原型和DDD应该可以以某种形式融合,有待慢慢思考。

什么是DCI的更多相关文章

  1. DDD为何叫好不叫座?兼论DCI与业务分析的方法论

    今天,仔细阅读了园子里面的一个朋友写的<一缕阳光:DDD(领域驱动设计)应对具体业务场景,如何聚焦 Domain Model(领域模型)?>(http://www.cnblogs.com/ ...

  2. DCI架构

    提出的文章:DCI架构:一个面向对象编程的新图景 http://wenku.baidu.com/view/a7b5e401de80d4d8d15a4fed.html http://www.360doc ...

  3. 自研DCI网络路由交换协议DCIP-白牌交换机时代的企业网络

    一转眼从听华为3Com的路由交换课程到如今已经13年有余了,依稀记得第一节课的时候我带着老婆去听的课(老婆是日语系的.那时还是女朋友,并不懂网络,仅仅是跟着我去上课的).抢了个头排,讲师宋岩老师提问了 ...

  4. DCI改进,发布后作业乱码不能打开

    1.发布后作业不能打开问题,找到com.comsys.net.cn.dci.ui.dialog.PublishesDialog 的960行,改为这样: //以前没有指定文件编码前,采用系统默认编码 / ...

  5. DCI:DCI学习总结

    备注 之前把DCI的Role和四色原型的Role给弄混了,本文也不会比较这两种Role的区别(后面有机会再说),这里简单的记录一下对DCI的理解. 参考文章:http://www.cnblogs.co ...

  6. DCI:The DCI Architecture: A New Vision of Object-Oriented Programming

    SummaryObject-oriented programming was supposed to unify the perspectives of the programmer and the ...

  7. 达梦DCI

    /************************************************************************/ /* DCI编程实例 */ /********** ...

  8. DCI架构是如何解决DDD战术建模缺点的?

    摘要:将DCI架构总结成一句话就是:领域对象(Object)在不同的场景(Context)中扮演(Cast)不同的角色(Role),角色之间通过交互(Interactive)来完成具体的业务逻辑. 本 ...

  9. 转:VIVADO使用技巧:设置DCI与内部参考电压

    本文转自:Vivado使用技巧(12):设置DCI与内部参考电压 - 灰信网(软件开发博客聚合) (freesion.com) DCI与内部参考电压 Xilinx FPGA提供了DCI(Digital ...

随机推荐

  1. HDU 4005 The war (图论-tarjan)

    The war Problem Description In the war, the intelligence about the enemy is very important. Now, our ...

  2. 【翻译自mos文章】v$undostat视图没有依照每10分钟进行更新,v$undostat仅仅有1行(one rows)

    v$undostat视图没有依照每10分钟进行更新,v$undostat仅仅有1行(one rows) 參考原文: The V$UNDOSTAT view is not getting updated ...

  3. 【Head First Javascript】学习笔记0——自己制作chm参考手册素材

    变量声明:var 常量声明:const 数据格式转换: 1.转换函数 parseInt(A):把字符串A转换成整数:其中A为只包含数字的字符串 parseFloat(A):把字符串A转换成浮点数:其中 ...

  4. 华为-on练习--身高找到最好的二人

    称号: 离5个人选择2个人作为礼工具.中的每个个体的身高的范围160-190,要求2个人高差值至少(假设差异值一样,他们中最高的选择).输出的两个人的身高升序. Smple input:161 189 ...

  5. 汽车之家购买价格PC真正的原因阿拉丁

        网行业风起云涌,先是6月3号汽车之家天价竞购百度PC阿拉丁.接着今天又有消息说易车拿下百度移动阿拉丁.易车拿下百度移动阿拉丁能够想象.但PC阿拉丁被向来不屑流量购买,以自主流量自居的汽车之家拿 ...

  6. 在ubuntu上部署hadoop时出现的问题

    1. 配置ssh登录 不须要改动/etc/ssh/sshd_config 2. 新建hadoop用户时,home以下没有hadoop文件夹 用以下命令创建 useradd -m hadoop 3. n ...

  7. SQL Server日志文件庞大收缩方法(实测好用)

    原文:SQL Server日志文件庞大收缩方法(实测好用) 这两个命令连续执行,间隔时间越少越明显(可多次运行),直到达到效果 --截断 BACKUP LOG CloudMonitor TO DISK ...

  8. 高性能双端js模板

    高性能双端js模板(新增filter)---simplite simplite是一款js实现的模板引擎,它能够完成浏览器端js模版和node服务器端js模板的数据渲染. 渲染性能十分突出. 支持浏览器 ...

  9. java之集合框架使用细节及常用方法

    集合类的由来:   对象用于封装特有数据,对象多了需要存储,如果对象的个数不确定.  就使用集合容器进行存储. 集合特点: 1,用于存储对象的容器. 2,集合的长度是可变的. 3,集合中不可以存储基本 ...

  10. 安卓MonkeyRunner源码分析之启动

    在工作中因为要追求完成目标的效率,所以更多是强调实战,注重招式,关注怎么去用各种框架来实现目的.但是如果一味只是注重招式,缺少对原理这个内功的了解,相信自己很难对各种框架有更深入的理解. 从几个月前开 ...