client.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package client
  2. import (
  3. "context"
  4. "go-common/app/interface/main/history/model"
  5. "go-common/library/net/rpc"
  6. )
  7. const (
  8. _progress = "RPC.Progress"
  9. _position = "RPC.Position"
  10. _add = "RPC.Add"
  11. _delete = "RPC.Delete"
  12. _history = "RPC.History"
  13. _historyCursor = "RPC.HistoryCursor"
  14. _clear = "RPC.Clear"
  15. )
  16. var (
  17. _noRes = &struct{}{}
  18. )
  19. // Service struct info.
  20. type Service struct {
  21. client *rpc.Client2
  22. }
  23. const (
  24. _appid = "community.service.history"
  25. )
  26. // New create instance of service and return.
  27. func New(c *rpc.ClientConfig) (s *Service) {
  28. s = &Service{}
  29. s.client = rpc.NewDiscoveryCli(_appid, c)
  30. return
  31. }
  32. // Progress return map[mid]*history.
  33. func (s *Service) Progress(c context.Context, arg *model.ArgPro) (res map[int64]*model.History, err error) {
  34. res = make(map[int64]*model.History)
  35. err = s.client.Call(c, _progress, arg, &res)
  36. return
  37. }
  38. // Position return map[mid]*history.
  39. func (s *Service) Position(c context.Context, arg *model.ArgPos) (res *model.History, err error) {
  40. res = &model.History{}
  41. err = s.client.Call(c, _position, arg, res)
  42. return
  43. }
  44. // Add add history .
  45. func (s *Service) Add(c context.Context, arg *model.ArgHistory) (err error) {
  46. err = s.client.Call(c, _add, arg, _noRes)
  47. return
  48. }
  49. // Delete add history .
  50. func (s *Service) Delete(c context.Context, arg *model.ArgDelete) (err error) {
  51. err = s.client.Call(c, _delete, arg, _noRes)
  52. return
  53. }
  54. // History return all histories .
  55. func (s *Service) History(c context.Context, arg *model.ArgHistories) (res []*model.Resource, err error) {
  56. err = s.client.Call(c, _history, arg, &res)
  57. return
  58. }
  59. // HistoryCursor return all histories .
  60. func (s *Service) HistoryCursor(c context.Context, arg *model.ArgCursor) (res []*model.Resource, err error) {
  61. err = s.client.Call(c, _historyCursor, arg, &res)
  62. return
  63. }
  64. // Clear clear history
  65. func (s *Service) Clear(c context.Context, arg *model.ArgClear) (err error) {
  66. err = s.client.Call(c, _clear, arg, _noRes)
  67. return
  68. }