api.proto 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. syntax = "proto3";
  2. package community.service.history;
  3. option go_package = "v1";
  4. message AddHistoryReply {
  5. }
  6. message AddHistoryReq {
  7. int64 mid = 2;
  8. int64 rtime = 3;
  9. ModelHistory h = 4;
  10. }
  11. message ClearHistoryReply {
  12. }
  13. message ClearHistoryReq {
  14. int64 mid = 2;
  15. repeated string businesses = 3;
  16. }
  17. message DeleteReply {
  18. }
  19. message DeleteReq {
  20. int64 mid = 2;
  21. repeated ModelHistory his = 3;
  22. }
  23. message FlushHistoryReply {
  24. }
  25. message FlushHistoryReq {
  26. repeated int64 mids = 2;
  27. int64 stime = 3;
  28. }
  29. message HistoriesReply {
  30. repeated ModelResource res = 1;
  31. }
  32. message HistoriesReq {
  33. int64 mid = 2;
  34. string business = 3;
  35. int32 pn = 4;
  36. int32 ps = 5;
  37. }
  38. message HistoryCursorReply {
  39. repeated ModelResource res = 1;
  40. }
  41. message HistoryCursorReq {
  42. int64 mid = 2;
  43. int64 max = 3;
  44. int64 view_at = 4;
  45. int32 ps = 5;
  46. string business = 6;
  47. repeated string businesses = 7;
  48. string ip = 8;
  49. }
  50. message ModelHistory {
  51. int64 mid = 1;
  52. int64 aid = 2;
  53. int64 sid = 3;
  54. int64 epid = 4;
  55. int32 tp = 5;
  56. string business = 6;
  57. int32 stp = 7;
  58. int64 cid = 8;
  59. int32 dt = 9;
  60. int64 pro = 10;
  61. int64 unix = 11;
  62. }
  63. message ModelResource {
  64. int64 mid = 1;
  65. int64 oid = 2;
  66. int64 sid = 3;
  67. int64 epid = 4;
  68. int32 tp = 5;
  69. int32 stp = 6;
  70. int64 cid = 7;
  71. string business = 8;
  72. int32 dt = 9;
  73. int64 pro = 10;
  74. int64 unix = 11;
  75. }
  76. message PositionReply {
  77. ModelHistory res = 1;
  78. }
  79. message PositionReq {
  80. int64 mid = 2;
  81. int64 aid = 3;
  82. string business = 4;
  83. }
  84. message ProgressReply {
  85. map<int64, ModelHistory> res = 1;
  86. }
  87. message ProgressReq {
  88. int64 mid = 2;
  89. repeated int64 aids = 3;
  90. }
  91. service History {
  92. // AddHistory add hisotry progress into hbase.
  93. rpc AddHistory(AddHistoryReq) returns(AddHistoryReply);
  94. // Progress get view progress from cache/hbase.
  95. rpc Progress(ProgressReq) returns(ProgressReply);
  96. // Position get view progress from cache/hbase.
  97. rpc Position(PositionReq) returns(PositionReply);
  98. // ClearHistory clear user's historys.
  99. rpc ClearHistory(ClearHistoryReq) returns(ClearHistoryReply);
  100. // Histories return the user all av history.
  101. rpc Histories(HistoriesReq) returns(HistoriesReply);
  102. // HistoryCursor return the user all av history.
  103. rpc HistoryCursor(HistoryCursorReq) returns(HistoryCursorReply);
  104. // Delete .
  105. rpc Delete(DeleteReq) returns(DeleteReply);
  106. // FlushHistory flush to hbase from cache.
  107. rpc FlushHistory(FlushHistoryReq) returns(FlushHistoryReply);
  108. }