wall.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package wall
  2. import (
  3. "context"
  4. "time"
  5. "go-common/app/interface/main/app-wall/conf"
  6. walldao "go-common/app/interface/main/app-wall/dao/wall"
  7. "go-common/app/interface/main/app-wall/model/wall"
  8. log "go-common/library/log"
  9. httpx "go-common/library/net/http/blademaster"
  10. )
  11. type Service struct {
  12. c *conf.Config
  13. client *httpx.Client
  14. dao *walldao.Dao
  15. tick time.Duration
  16. cache []*wall.Wall
  17. testCache []*wall.Wall
  18. }
  19. func New(c *conf.Config) (s *Service) {
  20. s = &Service{
  21. c: c,
  22. client: httpx.NewClient(c.HTTPClient),
  23. dao: walldao.New(c),
  24. tick: time.Duration(c.Tick),
  25. }
  26. s.load()
  27. go s.loadproc()
  28. return
  29. }
  30. // GetWall All
  31. func (s *Service) Wall() (res []*wall.Wall) {
  32. res = s.cache
  33. return
  34. }
  35. // load WallAll
  36. func (s *Service) load() {
  37. res, err := s.dao.WallAll(context.TODO())
  38. if err != nil {
  39. log.Error("s.dao.wallAll error(%v)", err)
  40. return
  41. }
  42. s.cache = res
  43. s.testCache = res
  44. log.Info("loadWallsCache success")
  45. }
  46. // cacheproc load cache
  47. func (s *Service) loadproc() {
  48. for {
  49. time.Sleep(s.tick)
  50. s.load()
  51. }
  52. }