单利模式

  1. func NewSingleton() *singleton {
  2. if instance == nil {
  3. instance = &singleton{}
  4. }
  5. return instance
  6. }
  7. func NewSingleton() *singleton {
  8. l.Lock() // lock
  9. defer l.Unlock()
  10. if instance == nil { // check
  11. instance = &singleton{}
  12. }
  13. return instance
  14. }
  15. func NewSingleton() *singleton {
  16. if instance == nil { // check
  17. l.Lock() // lock
  18. defer l.Unlock()
  19. if instance == nil { // check
  20. instance = &singleton{}
  21. }
  22. }
  23. return instance
  24. }
  25. func NewSingleton() *singleton {
  26. if atomic.LoadUInt32(&initialized) == 1 {
  27. return instance
  28. }
  29. mu.Lock()
  30. defer mu.Unlock()
  31. if initialized == 0 {
  32. instance = &singleton{}
  33. atomic.StoreUint32(&initialized, 1)
  34. }
  35. return instance
  36. }
  37. func NewSingleton() *singleton {
  38. once.Do(func() {
  39. instance = &singleton{}
  40. })
  41. return instance
  42. }

工厂模式

工厂根据条件产生不同功能的类。工厂模式使用经常使用在替代new的场景中,让工厂统一根据不同条件生产不同的类。工厂模式在解耦方面将使用者和产品之间的依赖推给了工厂,让工厂承担这种依赖关系。工厂模式又分为简单工厂,抽象工厂。golang实现一个简单工厂模式如下:

  1. package main
  2. import (
  3. "fmt"
  4. )
  5. type Op interface {
  6. getName() string
  7. }
  8. type A struct {
  9. }
  10. type B struct {
  11. }
  12. type Factory struct {
  13. }
  14. func (a *A) getName() string {
  15. return "A"
  16. }
  17. func (b *B) getName() string {
  18. return "B"
  19. }
  20. func (f *Factory) create(name string) Op {
  21. switch name {
  22. case `a`:
  23. return new(A)
  24. case `b`:
  25. return new(B)
  26. default:
  27. panic(`name not exists`)
  28. }
  29. return nil
  30. }
  31. func main() {
  32. var f = new(Factory)
  33. p := f.create(`a`)
  34. fmt.Println(p.getName())
  35. p = f.create(`b`)
  36. fmt.Println(p.getName())
  37. }

依赖注入

具体含义是:当某个角色(可能是一个实例,调用者)需要另一个角色(另一个实例,被调用者)的协助时,在传统的程序设计过程中,通常由调用者来创建被调用者的实例。但在这种场景下,创建被调用者实例的工作通常由容器(IoC)来完成,然后注入调用者,因此也称为依赖注入。Golang利用函数f可以当做参数来传递,同时配合reflect包拿到参数的类型,然后根据调用者传来的参数和类型匹配上之后,最后通过reflect.Call()执行具体的函数。

  1. package main
  2. import (
  3. "fmt"
  4. "reflect"
  5. )
  6. var inj *Injector
  7. type Injector struct {
  8. mappers map[reflect.Type]reflect.Value // 根据类型map实际的值
  9. }
  10. func (inj *Injector) SetMap(value interface{}) {
  11. inj.mappers[reflect.TypeOf(value)] = reflect.ValueOf(value)
  12. }
  13. func (inj *Injector) Get(t reflect.Type) reflect.Value {
  14. return inj.mappers[t]
  15. }
  16. func (inj *Injector) Invoke(i interface{}) interface{} {
  17. t := reflect.TypeOf(i)
  18. if t.Kind() != reflect.Func {
  19. panic("Should invoke a function!")
  20. }
  21. inValues := make([]reflect.Value, t.NumIn())
  22. for k := 0; k < t.NumIn(); k++ {
  23. inValues[k] = inj.Get(t.In(k))
  24. }
  25. ret := reflect.ValueOf(i).Call(inValues)
  26. return ret
  27. }
  28. func Host(name string, f func(a int, b string) string) {
  29. fmt.Println("Enter Host:", name)
  30. fmt.Println(inj.Invoke(f))
  31. fmt.Println("Exit Host:", name)
  32. }
  33. func Dependency(a int, b string) string {
  34. fmt.Println("Dependency: ", a, b)
  35. return `injection function exec finished ...`
  36. }
  37. func main() {
  38. // 创建注入器
  39. inj = &Injector{make(map[reflect.Type]reflect.Value)}
  40. inj.SetMap(3030)
  41. inj.SetMap("zdd")
  42. d := Dependency
  43. Host("zddhub", d)
  44. inj.SetMap(8080)
  45. inj.SetMap("www.zddhub.com")
  46. Host("website", d)
  47. }

装饰器模式

装饰器模式:允许向一个现有的对象添加新的功能,同时又不改变其结构。这种类型的设计模式属于结构型模式,它是作为现有的类的一个包装。这种模式创建了一个装饰类,用来包装原有的类,并在保持类方法签名完整性的前提下,提供了额外的功能。我们使用最为频繁的场景就是http请求的处理:对http请求做cookie校验。

  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "net/http"
  6. )
  7. func autoAuth(h http.HandlerFunc) http.HandlerFunc {
  8. return func(w http.ResponseWriter, r *http.Request) {
  9. cookie, err := r.Cookie("Auth")
  10. if err != nil || cookie.Value != "Authentic" {
  11. w.WriteHeader(http.StatusForbidden)
  12. return
  13. }
  14. h(w, r)
  15. }
  16. }
  17. func hello(w http.ResponseWriter, r *http.Request) {
  18. fmt.Fprintf(w, "Hello, World! "+r.URL.Path)
  19. }
  20. func main() {
  21. http.HandleFunc("/hello", autoAuth(hello))
  22. err := http.ListenAndServe(":5666", nil)
  23. if err != nil {
  24. log.Fatal("ListenAndServe: ", err)
  25. }
  26. }

golang视角下的设计模式 - 图1