mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-03 13:13:34 +03:00
Merge b9b87f9c41
into f978e42036
This commit is contained in:
commit
a0904cdd2f
1 changed files with 62 additions and 0 deletions
62
structural/bridge.md
Normal file
62
structural/bridge.md
Normal file
|
@ -0,0 +1,62 @@
|
|||
# Bridge Pattern
|
||||
Decouples an interface from its implementation so that the two can vary independently
|
||||
|
||||
## Implementation
|
||||
|
||||
```go
|
||||
type Info struct {
|
||||
Sender // who or which way to send information. eg: QQ Wechat
|
||||
MsgTag // the tag of msg. just like log level tag. eg: COMMON IMPORTANCE
|
||||
}
|
||||
|
||||
func (i Info) Sending(to, msg string) {
|
||||
msg = i.MsgTag(msg)
|
||||
i.Sender.Send(to, msg)
|
||||
}
|
||||
|
||||
// interface
|
||||
|
||||
type Sender interface {
|
||||
Send(to, msg string)
|
||||
}
|
||||
|
||||
type MsgTag func(string) string
|
||||
|
||||
|
||||
// implementation
|
||||
|
||||
type QQSender struct {
|
||||
}
|
||||
|
||||
func (QQSender) Send(to, msg string) {
|
||||
fmt.Println("[QQ] send to " + to + " with message: " + msg)
|
||||
}
|
||||
|
||||
type WechatSender struct {
|
||||
}
|
||||
|
||||
func (WechatSender) Send(to, msg string) {
|
||||
fmt.Println("[Wechat] send to " + to + " with message: " + msg)
|
||||
}
|
||||
|
||||
func ImportanceTag(msg string) string {
|
||||
return "[IMPORTANCE] " + msg
|
||||
}
|
||||
|
||||
func CommonTag(msg string) string {
|
||||
return "[COMMON] " + msg
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
```go
|
||||
info := &Info{MsgTag: ImportanceTag, Sender: QQSender{}}
|
||||
info.Sending("cbping", "hello world")
|
||||
|
||||
info.Sender = WechatSender{}
|
||||
info.Sending("cbping", "hello world")
|
||||
|
||||
info.MsgTag = CommonTag
|
||||
info.Sending("cbping", "hello world")
|
||||
```
|
||||
|
Loading…
Add table
Reference in a new issue