dao.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package archive
  2. import (
  3. "context"
  4. "time"
  5. "fmt"
  6. "go-common/app/interface/main/creative/conf"
  7. arcMdl "go-common/app/interface/main/creative/model/archive"
  8. archive "go-common/app/service/main/archive/api/gorpc"
  9. "go-common/library/cache/memcache"
  10. "go-common/library/cache/redis"
  11. "go-common/library/database/sql"
  12. bm "go-common/library/net/http/blademaster"
  13. "go-common/library/sync/pipeline/fanout"
  14. )
  15. // Dao is archive dao.
  16. type Dao struct {
  17. // config
  18. c *conf.Config
  19. // rpc
  20. arc *archive.Service2
  21. // select
  22. client *bm.Client
  23. // db
  24. db *sql.DB
  25. // mc
  26. mc *memcache.Pool
  27. mcExpire int32
  28. //cache tool
  29. cache *fanout.Fanout
  30. // redis
  31. redis *redis.Pool
  32. redisExpire int32
  33. // uri
  34. view string
  35. views string
  36. del string
  37. video string
  38. hList string
  39. hView string
  40. flow string
  41. upArchives string
  42. descFormat string
  43. nsMd5 string
  44. simpleVideos string
  45. simpleArchive string
  46. videoJam string
  47. upSpecialURL string
  48. flowJudge string
  49. staffApplies string
  50. staffApply string
  51. staffCheck string
  52. }
  53. // New init api url
  54. func New(c *conf.Config) (d *Dao) {
  55. d = &Dao{
  56. c: c,
  57. arc: archive.New2(c.ArchiveRPC),
  58. // http client
  59. client: bm.NewClient(c.HTTPClient.Normal),
  60. // db
  61. db: sql.NewMySQL(c.DB.Archive),
  62. cache: fanout.New("dao_archive", fanout.Worker(5), fanout.Buffer(10240)),
  63. // mc
  64. mc: memcache.NewPool(c.Memcache.Archive.Config),
  65. mcExpire: 600,
  66. //Fav redis cache
  67. redis: redis.NewPool(c.Redis.Cover.Config),
  68. redisExpire: int32(time.Duration(c.Redis.Cover.Expire) / time.Second),
  69. // uri
  70. view: c.Host.Videoup + _view,
  71. views: c.Host.Videoup + _views,
  72. video: c.Host.Videoup + _video,
  73. del: c.Host.Videoup + _del,
  74. hList: c.Host.Videoup + _hList,
  75. hView: c.Host.Videoup + _hView,
  76. flow: c.Host.Videoup + _flow,
  77. upArchives: c.Host.Videoup + _archives,
  78. descFormat: c.Host.Videoup + _descFormat,
  79. nsMd5: c.Host.Videoup + _nsMd5,
  80. simpleVideos: c.Host.Videoup + _simpleVideos,
  81. simpleArchive: c.Host.Videoup + _simpleArchive,
  82. videoJam: c.Host.Videoup + _videoJam,
  83. upSpecialURL: c.Host.API + _upSpecial,
  84. flowJudge: c.Host.Videoup + _flowjudge,
  85. staffApplies: c.Host.Videoup + _staffApplies,
  86. staffApply: c.Host.Videoup + _staffApply,
  87. staffCheck: c.Host.Videoup + _staffCheck,
  88. }
  89. return
  90. }
  91. // Ping fn
  92. func (d *Dao) Ping(c context.Context) (err error) {
  93. if err = d.pingRedis(c); err != nil {
  94. return
  95. }
  96. return
  97. }
  98. // Close fn
  99. func (d *Dao) Close() (err error) {
  100. if d.redis != nil {
  101. d.redis.Close()
  102. }
  103. if d.mc != nil {
  104. d.mc.Close()
  105. }
  106. return d.db.Close()
  107. }
  108. func staffKey(aid int64) string {
  109. return fmt.Sprintf("staff_aid_%d", aid)
  110. }
  111. func (d *Dao) cacheSFStaffData(aid int64) string {
  112. return fmt.Sprintf("staff_aid_sf_%d", aid)
  113. }
  114. //go:generate $GOPATH/src/go-common/app/tool/cache/gen
  115. type _cache interface {
  116. // cache: -singleflight=true -nullcache=[]*arcMdl.Staff{{ID:-1}} -check_null_code=len($)==1&&$[0].ID==-1
  117. StaffData(c context.Context, aid int64) ([]*arcMdl.Staff, error)
  118. ViewPoint(c context.Context, aid int64, cid int64) (vp *arcMdl.ViewPointRow, err error)
  119. }
  120. //go:generate $GOPATH/src/go-common/app/tool/cache/mc
  121. type _mc interface {
  122. // mc: -key=staffKey
  123. CacheStaffData(c context.Context, key int64) ([]*arcMdl.Staff, error)
  124. // 这里也支持自定义注释 会替换默认的注释
  125. // mc: -key=staffKey -expire=3 -encode=json|gzip
  126. AddCacheStaffData(c context.Context, key int64, value []*arcMdl.Staff) error
  127. // mc: -key=staffKey
  128. DelCacheStaffData(c context.Context, key int64) error
  129. //mc: -key=viewPointCacheKey -expire=_viewPointExp -encode=json
  130. AddCacheViewPoint(c context.Context, aid int64, vp *arcMdl.ViewPointRow, cid int64) (err error)
  131. //mc: -key=viewPointCacheKey
  132. CacheViewPoint(c context.Context, aid int64, cid int64) (vp *arcMdl.ViewPointRow, err error)
  133. }