service.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package service
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/answer/conf"
  6. "go-common/app/interface/main/answer/dao"
  7. accountDao "go-common/app/interface/main/answer/dao/account"
  8. geetestDao "go-common/app/interface/main/answer/dao/geetest"
  9. "go-common/app/interface/main/answer/model"
  10. accoutCli "go-common/app/service/main/account/api"
  11. memrpc "go-common/app/service/main/member/api/gorpc"
  12. "go-common/library/log"
  13. "go-common/library/log/anticheat"
  14. "go-common/library/queue/databus/report"
  15. "go-common/library/stat/prom"
  16. "go-common/library/sync/pipeline/fanout"
  17. )
  18. // Service struct of service.
  19. type Service struct {
  20. c *conf.Config
  21. answerDao *dao.Dao
  22. geetestDao *geetestDao.Dao
  23. accountDao *accountDao.Dao
  24. accountSvc accoutCli.AccountClient
  25. memRPC *memrpc.Service
  26. missch *fanout.Fanout
  27. beformalch chan *model.Formal
  28. questionTypeCache map[int64]*model.TypeInfo
  29. rankCache []*model.RankInfo
  30. mRankCache []*model.RankInfo
  31. tcQestTick time.Duration
  32. rankQuestTick time.Duration
  33. promBeFormal *prom.Prom
  34. infoc2 *anticheat.AntiCheat
  35. }
  36. // New create service instance and return.
  37. func New(c *conf.Config) (s *Service) {
  38. s = &Service{
  39. c: c,
  40. answerDao: dao.New(c),
  41. geetestDao: geetestDao.New(c),
  42. accountDao: accountDao.New(c),
  43. memRPC: memrpc.New(c.RPCClient.Member),
  44. missch: fanout.New("cache", fanout.Worker(1), fanout.Buffer(1024)),
  45. beformalch: make(chan *model.Formal, 1024),
  46. questionTypeCache: map[int64]*model.TypeInfo{},
  47. rankCache: []*model.RankInfo{},
  48. mRankCache: []*model.RankInfo{},
  49. tcQestTick: time.Duration(c.Question.TcQestTick),
  50. rankQuestTick: time.Duration(c.Question.RankQestTick),
  51. promBeFormal: prom.New().WithCounter("answer_beformal_count", []string{"name"}),
  52. }
  53. accountSvc, err := accoutCli.NewClient(c.AccountRPC)
  54. if err != nil {
  55. panic(err)
  56. }
  57. s.accountSvc = accountSvc
  58. s.loadQidsCache()
  59. s.loadExtraQidsCache()
  60. s.loadtypes()
  61. go s.rankcacheproc()
  62. go s.beformalproc()
  63. if c.Infoc2 != nil {
  64. s.infoc2 = anticheat.New(c.Infoc2)
  65. }
  66. return
  67. }
  68. func (s *Service) addRetryBeFormal(msg *model.Formal) {
  69. select {
  70. case s.beformalch <- msg:
  71. default:
  72. log.Warn("beformalch chan full")
  73. }
  74. }
  75. func (s *Service) beformalproc() {
  76. var (
  77. err error
  78. c = context.Background()
  79. msg *model.Formal
  80. )
  81. for {
  82. msg = <-s.beformalch
  83. for retries := 0; retries < s.c.Answer.MaxRetries; retries++ {
  84. if err = s.accountDao.BeFormal(c, msg.Mid, msg.IP); err != nil {
  85. sleep := s.c.Backoff.Backoff(retries)
  86. log.Error("beFormal fail(%d) sleep(%d) err(%+v)", msg.Mid, sleep, err)
  87. time.Sleep(sleep * time.Second)
  88. continue
  89. }
  90. break
  91. }
  92. }
  93. }
  94. // Close dao.
  95. func (s *Service) Close() {
  96. s.answerDao.Close()
  97. }
  98. func (s *Service) rankcacheproc() {
  99. for {
  100. time.Sleep(s.tcQestTick)
  101. s.loadtypes()
  102. s.loadQidsCache()
  103. s.loadExtraQidsCache()
  104. }
  105. }
  106. func (s *Service) userActionLog(mid int64, typ string, ah *model.AnswerHistory) {
  107. report.User(&report.UserInfo{
  108. Mid: mid,
  109. Business: model.AnswerLogID,
  110. Action: model.AnswerUpdate,
  111. Ctime: time.Now(),
  112. Content: map[string]interface{}{
  113. typ: ah,
  114. },
  115. })
  116. }