service.go 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package share
  2. import (
  3. "context"
  4. "go-common/app/interface/main/web-goblin/conf"
  5. "go-common/app/interface/main/web-goblin/dao/share"
  6. accrpc "go-common/app/service/main/account/rpc/client"
  7. suitrpc "go-common/app/service/main/usersuit/rpc/client"
  8. "go-common/library/cache"
  9. "go-common/library/log"
  10. )
  11. // Service service struct.
  12. type Service struct {
  13. c *conf.Config
  14. dao *share.Dao
  15. // cache proc
  16. cache *cache.Cache
  17. suit *suitrpc.Service2
  18. accRPC *accrpc.Service3
  19. Pendants map[int64]int64
  20. }
  21. // New new service.
  22. func New(c *conf.Config) *Service {
  23. s := &Service{
  24. c: c,
  25. dao: share.New(c),
  26. cache: cache.New(1, 1024),
  27. suit: suitrpc.New(c.SuitRPC),
  28. accRPC: accrpc.New3(c.AccountRPC),
  29. Pendants: make(map[int64]int64),
  30. }
  31. s.loadPendant()
  32. return s
  33. }
  34. // Ping ping service.
  35. func (s *Service) Ping(c context.Context) (err error) {
  36. if err = s.dao.Ping(c); err != nil {
  37. log.Error("s.dao.Ping error(%v)", err)
  38. }
  39. return
  40. }