// 人類角色特征
type HumanTrait interface {
CastHuman() *Human
}
// 學生角色特征
type StudentTrait interface {
CastStudent() *Student
}
// 員工角色特征
type WorkerTrait interface {
CastWorker() *Worker
}
// 游玩者角色特征
type EnjoyerTrait interface {
CastEnjoyer() *Enjoyer
}
Student
、Worker
、Enjoyer
組合HumanTrait
,并通過Compose(HumanTrait)
方法進行特征注入,只要在注入的時候保證Human
是同一個,就可以解決該問題了。
// 學生角色
type Student struct {
// Student同時也是個普通人,因此組合了Human角色
HumanTrait
data.StudentCard
}
// 注入人類角色特征
func (s *Student) Compose(trait HumanTrait) {
s.HumanTrait = trait
}
func (s *Student) Study() {
fmt.Printf("Student %+v studying\\n", s.StudentCard)
}
func (s *Student) Exam() {
fmt.Printf("Student %+v examing\\n", s.StudentCard)
}
// 員工角色
type Worker struct {
// Worker同時也是個普通人,因此組合了Human角色
HumanTrait
data.WorkCard
}
// 注入人類角色特征
func (w *Worker) Compose(trait HumanTrait) {
w.HumanTrait = trait
}
func (w *Worker) Work() {
fmt.Printf("%+v working\\n", w.WorkCard)
w.CastHuman().Balance++
}
func (w *Worker) OffWork() {
fmt.Printf("%+v getting off work\\n", w.WorkCard)
}
// 游玩者角色
type Enjoyer struct {
// Enjoyer同時也是個普通人,因此組合了Human角色
HumanTrait
}
// 注入人類角色特征
func (e *Enjoyer) Compose(trait HumanTrait) {
e.HumanTrait = trait
}
func (e *Enjoyer) BuyTicket() {
fmt.Printf("%+v buying a ticket\\n", e.CastHuman().IdentityCard)
e.CastHuman().Balance--
}
func (e *Enjoyer) Enjoy() {
fmt.Printf("%+v enjoying scenery\\n", e.CastHuman().IdentityCard)
}
最后,實現(xiàn)People
這一領域對象:
package object
type People struct {
// People對象扮演的角色
role.Human
role.Student
role.Worker
role.Enjoyer
}
// People實現(xiàn)了HumanTrait、StudentTrait、WorkerTrait、EnjoyerTrait等特征接口
func (p *People) CastHuman() *role.Human {
return &p.Human
}
func (p *People) CastStudent() *role.Student {
return &p.Student
}
func (p *People) CastWorker() *role.Worker {
return &p.Worker
}
func (p *People) CastEnjoyer() *role.Enjoyer {
return &p.Enjoyer
}
// People在初始化時,完成對角色特征的注入
func NewPeople(name string) *People {
// 一些初始化的邏輯...
people.Student.Compose(people)
people.Worker.Compose(people)
people.Enjoyer.Compose(people)
return people
}
進行角色拆分之后,在實現(xiàn)Home
、School
、Company
、Park
等場景時,只需依賴相應的角色即可,不再需要依賴People
這一領域對象:
// 家
type Home struct {
me *role.Human
}
func (h *Home) ComeBack(human *role.Human) {
fmt.Printf("%+v come back home\\n", human.IdentityCard)
h.me = human
}
// 執(zhí)行Home的業(yè)務邏輯
func (h *Home) Run() {
h.me.Eat()
h.me.PlayGame()
h.me.Sleep()
}
// 學校
type School struct {
Name string
students []*role.Student
}
func (s *School) Receive(student *role.Student) {
// 初始化StduentCard邏輯 ...
s.students = append(s.students, student)
fmt.Printf("%s Receive stduent %+v\\n", s.Name, student.StudentCard)
}
// 執(zhí)行School的業(yè)務邏輯
func (s *School) Run() {
fmt.Printf("%s start class\\n", s.Name)
for _, student := range s.students {
student.Study()
}
fmt.Println("students start to eating")
for _, student := range s.students {
student.CastHuman().Eat()
}
fmt.Println("students start to exam")
for _, student := range s.students {
student.Exam()
}
fmt.Printf("%s finish class\\n", s.Name)
}
// 公司
type Company struct {
Name string
workers []*role.Worker
}
func (c *Company) Employ(worker *role.Worker) {
// 初始化WorkCard邏輯 ...
c.workers = append(c.workers, worker)
fmt.Printf("%s Employ worker %s\\n", c.Name, worker.WorkCard.Name)
}
// 執(zhí)行Company的業(yè)務邏輯
func (c *Company) Run() {
fmt.Printf("%s start work\\n", c.Name)
for _, worker := range c.workers {
worker.Work()
}
fmt.Println("worker start to eating")
for _, worker := range c.workers {
worker.CastHuman().Eat()
}
fmt.Println("worker get off work")
for _, worker := range c.workers {
worker.OffWork()
}
fmt.Printf("%s finish work\\n", c.Name)
}
// 公園
type Park struct {
Name string
enjoyers []*role.Enjoyer
}
func (p *Park) Welcome(enjoyer *role.Enjoyer) {
fmt.Printf("%+v come park %s\\n", enjoyer.CastHuman().IdentityCard, p.Name)
p.enjoyers = append(p.enjoyers, enjoyer)
}
// 執(zhí)行Park的業(yè)務邏輯
func (p *Park) Run() {
fmt.Printf("%s start to sell tickets\\n", p.Name)
for _, enjoyer := range p.enjoyers {
enjoyer.BuyTicket()
}
fmt.Printf("%s start a show\\n", p.Name)
for _, enjoyer := range p.enjoyers {
enjoyer.Enjoy()
}
fmt.Printf("show finish\\n")
}
模型的運行方法如下:
paul := object.NewPeople("Paul")
mit := context.NewSchool("MIT")
google := context.NewCompany("Google")
home := context.NewHome()
summerPalace := context.NewPark("Summer Palace")
// 上學
mit.Receive(paul.CastStudent())
mit.Run()
// 回家
home.ComeBack(paul.CastHuman())
home.Run()
// 工作
google.Employ(paul.CastWorker())
google.Run()
// 公園游玩
summerPalace.Welcome(paul.CastEnjoyer())
summerPalace.Run()
寫在最后
從前文所描述的場景中,我們可以發(fā)現(xiàn)傳統(tǒng)的DDD/面向對象設計方法在對行為進行建模方面存在著不足,進而導致了所謂的 貧血模型和充血模型之爭 。
DCI架構的出現(xiàn)很好的彌補了這一點,它通過引入角色扮演的思想,巧妙地解決了充血模型中上帝類和模塊間耦合問題,而且不影響模型的正確性。當然,DCI架構也不是萬能的,在行為較少的業(yè)務模型中,使用DCI來建模并不合適。
最后,將DCI架構總結成一句話就是: 領域對象(Object)在不同的場景(Context)中扮演(Cast)不同的角色(Role),角色之間通過交互(Interactive)來完成具體的業(yè)務邏輯 。
-
編程語言
+關注
關注
10文章
1931瀏覽量
34553 -
應用程序
+關注
關注
37文章
3238瀏覽量
57550 -
DCI
+關注
關注
0文章
38瀏覽量
6799 -
面向對象編程
+關注
關注
0文章
22瀏覽量
1802
發(fā)布評論請先 登錄
相關推薦
評論