mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-22 20:06:02 +03:00
31 lines
494 B
Go
31 lines
494 B
Go
package proxy
|
|
|
|
type Subject interface {
|
|
Do() string
|
|
}
|
|
|
|
type RealSubject struct{}
|
|
|
|
func (RealSubject) Do() string {
|
|
return "real"
|
|
}
|
|
|
|
type Proxy struct {
|
|
real RealSubject
|
|
}
|
|
|
|
func (p Proxy) Do() string {
|
|
var res string
|
|
|
|
// 在调用真实对象之前的工作,检查缓存,判断权限,实例化真实对象等。。
|
|
res += "pre:"
|
|
|
|
// 调用真实对象
|
|
res += p.real.Do()
|
|
|
|
// 调用之后的操作,如缓存结果,对结果进行处理等。。
|
|
res += ":after"
|
|
|
|
return res
|
|
}
|