dao.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package kfc
  2. import (
  3. "time"
  4. "go-common/app/interface/main/activity/conf"
  5. "go-common/library/cache/memcache"
  6. xsql "go-common/library/database/sql"
  7. "go-common/library/log"
  8. httpx "go-common/library/net/http/blademaster"
  9. "go-common/library/stat/prom"
  10. )
  11. const (
  12. _kfcWinnerURI = "/gift/v4/Smalltv/getKfcWinnerById"
  13. )
  14. // PromError stat and log.
  15. func PromError(name string, format string, args ...interface{}) {
  16. prom.BusinessErrCount.Incr(name)
  17. log.Error(format, args...)
  18. }
  19. // Dao dao.
  20. type Dao struct {
  21. mc *memcache.Pool
  22. db *xsql.DB
  23. client *httpx.Client
  24. mcKfcExpire int32
  25. mcKfcCodeExpire int32
  26. kfcWinnerURL string
  27. }
  28. // New dao new.
  29. func New(c *conf.Config) (d *Dao) {
  30. d = &Dao{
  31. mc: memcache.NewPool(c.Memcache.Like),
  32. db: xsql.NewMySQL(c.MySQL.Like),
  33. client: httpx.NewClient(c.HTTPClientKfc),
  34. mcKfcExpire: int32(time.Duration(c.Memcache.KfcExpire) / time.Second),
  35. mcKfcCodeExpire: int32(time.Duration(c.Memcache.KfcCodeExpire) / time.Second),
  36. kfcWinnerURL: c.Host.LiveCo + _kfcWinnerURI,
  37. }
  38. return
  39. }
  40. // Close Dao
  41. func (d *Dao) Close() {
  42. if d.db != nil {
  43. d.db.Close()
  44. }
  45. if d.mc != nil {
  46. d.mc.Close()
  47. }
  48. }