前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >go设计模式之外观模式

go设计模式之外观模式

原创
作者头像
暮雨
修改2018-12-03 10:18:12
5400
修改2018-12-03 10:18:12
举报
文章被收录于专栏:云端漫步云端漫步

这篇是设计模式中结构模式的第一篇。微服务架构现在是系统的架构的主流,它将系统拆分成一个个独立的服务,服务之间通过通信建立起关联关系。假设现在有一个博客的系统,它由四个微服务组成。用户服务,文章管理服务,分类服务,评论服务。系统的微服务间会发生以下的服务关系。

服务间的调用关系比较混乱,微服务架构中通过一个网关来解决这种混乱的服务间调用,通过网关统一对外服务。

看一下改进后的调用关系图。

这样改进后,调用关系就变得清晰明了。结构图中的网关就是一个要展开的外观模式结构。

接下来通过go语言实现这种外观模式。

代码语言:javascript
复制
package main

import "fmt"

type Facade struct {
	UserSvc UserSvc
	ArticleSvc ArticleSvc
	CommentSvc CommentSvc
}

// 用户登录
func (f *Facade) login(name, password string) int {
	user := f.UserSvc.GetUser(name)
	if password == user.password {
		fmt.Println("登录成功!!!")
	}
	return user.id
}

func (f *Facade) CreateArticle(userId int, title, content string) *Article {
	articleId := 12345
    article := f.ArticleSvc.Create(articleId, title, content, userId)
	return article
}

func (f *Facade) CreateComment(articleId int, userId int, comment string) *Comment {
	commentId := 12345
	cm := f.CommentSvc.Create(commentId, comment, articleId, userId)
	return cm
}

// 用户服务
type UserSvc struct {
}

type User struct {
	id int
	name string
	password string
}

func (user *UserSvc) GetUser(name string) *User {
    if name == "zhangsan" {
		return &User{
			id: 12345,
			name: "zhangsan",
			password: "zhangsan",
		}
	} else {
		return &User{}
	}
}

// 文章服务
type ArticleSvc struct {
}

type Article struct {
	articleId int
	title string
	content string
	authorId int
}

func (articleSvc *ArticleSvc) Create(articleId int, title string, content string, userId int) *Article {
   return &Article {
	   articleId: articleId,
	   title: title,
	   content: content,
	   authorId: userId,
   }
}

// 评论服务
type CommentSvc struct {
}

type Comment struct {
	commentId int
	comment string
	articleId int
	userId int
}

func (commentSvc *CommentSvc) Create(commentId int, comment string, articleId int, userId int)  *Comment {
	return &Comment{
		commentId: commentId,
		comment: comment,
		articleId: articleId,
		userId: userId,
	}
}


func main() {
	f := &Facade{}
	userId := f.login("zhangsan", "zhangsan")
	fmt.Println("登录成功,当前用户Id", userId)

	title := "go设计模式外观模式"
	content := "外观模式是结构模式的一种。。。。"
	article := f.CreateArticle(userId, title, content)
	fmt.Println("文章发表成功,文章id", article.articleId)

	comment := f.CreateComment(article.articleId, userId, "介绍的很详细")
	fmt.Println("评论提交成功,评论id", comment.commentId)
}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档