mesh.pb.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.9
  5. // source: proto/mesh.proto
  6. package api
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type MeshData struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. // Types that are assignable to Message:
  24. //
  25. // *MeshData_NodeInfo
  26. Message isMeshData_Message `protobuf_oneof:"Message"`
  27. }
  28. func (x *MeshData) Reset() {
  29. *x = MeshData{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_proto_mesh_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *MeshData) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*MeshData) ProtoMessage() {}
  40. func (x *MeshData) ProtoReflect() protoreflect.Message {
  41. mi := &file_proto_mesh_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use MeshData.ProtoReflect.Descriptor instead.
  52. func (*MeshData) Descriptor() ([]byte, []int) {
  53. return file_proto_mesh_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (m *MeshData) GetMessage() isMeshData_Message {
  56. if m != nil {
  57. return m.Message
  58. }
  59. return nil
  60. }
  61. func (x *MeshData) GetNodeInfo() *NodeInfo {
  62. if x, ok := x.GetMessage().(*MeshData_NodeInfo); ok {
  63. return x.NodeInfo
  64. }
  65. return nil
  66. }
  67. type isMeshData_Message interface {
  68. isMeshData_Message()
  69. }
  70. type MeshData_NodeInfo struct {
  71. NodeInfo *NodeInfo `protobuf:"bytes,1,opt,name=NodeInfo,proto3,oneof"`
  72. }
  73. func (*MeshData_NodeInfo) isMeshData_Message() {}
  74. type NodeInfo struct {
  75. state protoimpl.MessageState
  76. sizeCache protoimpl.SizeCache
  77. unknownFields protoimpl.UnknownFields
  78. NodeID int64 `protobuf:"varint,1,opt,name=NodeID,proto3" json:"NodeID,omitempty"`
  79. NodeName string `protobuf:"bytes,2,opt,name=NodeName,proto3" json:"NodeName,omitempty"`
  80. StartTime int64 `protobuf:"varint,3,opt,name=StartTime,proto3" json:"StartTime,omitempty"`
  81. Address []string `protobuf:"bytes,4,rep,name=Address,proto3" json:"Address,omitempty"`
  82. DC []string `protobuf:"bytes,5,rep,name=DC,proto3" json:"DC,omitempty"`
  83. Group []string `protobuf:"bytes,6,rep,name=Group,proto3" json:"Group,omitempty"`
  84. Service []string `protobuf:"bytes,7,rep,name=Service,proto3" json:"Service,omitempty"`
  85. PeerIDs []int64 `protobuf:"varint,8,rep,packed,name=PeerIDs,proto3" json:"PeerIDs,omitempty"`
  86. }
  87. func (x *NodeInfo) Reset() {
  88. *x = NodeInfo{}
  89. if protoimpl.UnsafeEnabled {
  90. mi := &file_proto_mesh_proto_msgTypes[1]
  91. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  92. ms.StoreMessageInfo(mi)
  93. }
  94. }
  95. func (x *NodeInfo) String() string {
  96. return protoimpl.X.MessageStringOf(x)
  97. }
  98. func (*NodeInfo) ProtoMessage() {}
  99. func (x *NodeInfo) ProtoReflect() protoreflect.Message {
  100. mi := &file_proto_mesh_proto_msgTypes[1]
  101. if protoimpl.UnsafeEnabled && x != nil {
  102. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  103. if ms.LoadMessageInfo() == nil {
  104. ms.StoreMessageInfo(mi)
  105. }
  106. return ms
  107. }
  108. return mi.MessageOf(x)
  109. }
  110. // Deprecated: Use NodeInfo.ProtoReflect.Descriptor instead.
  111. func (*NodeInfo) Descriptor() ([]byte, []int) {
  112. return file_proto_mesh_proto_rawDescGZIP(), []int{1}
  113. }
  114. func (x *NodeInfo) GetNodeID() int64 {
  115. if x != nil {
  116. return x.NodeID
  117. }
  118. return 0
  119. }
  120. func (x *NodeInfo) GetNodeName() string {
  121. if x != nil {
  122. return x.NodeName
  123. }
  124. return ""
  125. }
  126. func (x *NodeInfo) GetStartTime() int64 {
  127. if x != nil {
  128. return x.StartTime
  129. }
  130. return 0
  131. }
  132. func (x *NodeInfo) GetAddress() []string {
  133. if x != nil {
  134. return x.Address
  135. }
  136. return nil
  137. }
  138. func (x *NodeInfo) GetDC() []string {
  139. if x != nil {
  140. return x.DC
  141. }
  142. return nil
  143. }
  144. func (x *NodeInfo) GetGroup() []string {
  145. if x != nil {
  146. return x.Group
  147. }
  148. return nil
  149. }
  150. func (x *NodeInfo) GetService() []string {
  151. if x != nil {
  152. return x.Service
  153. }
  154. return nil
  155. }
  156. func (x *NodeInfo) GetPeerIDs() []int64 {
  157. if x != nil {
  158. return x.PeerIDs
  159. }
  160. return nil
  161. }
  162. var File_proto_mesh_proto protoreflect.FileDescriptor
  163. var file_proto_mesh_proto_rawDesc = []byte{
  164. 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x6d, 0x65, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f,
  165. 0x74, 0x6f, 0x12, 0x05, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x44, 0x0a, 0x08, 0x4d, 0x65, 0x73,
  166. 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2d, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66,
  167. 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x2e,
  168. 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x4e, 0x6f, 0x64, 0x65,
  169. 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x09, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22,
  170. 0xd0, 0x01, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
  171. 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x4e, 0x6f,
  172. 0x64, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65,
  173. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65,
  174. 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
  175. 0x01, 0x28, 0x03, 0x52, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18,
  176. 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
  177. 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x44, 0x43, 0x18, 0x05,
  178. 0x20, 0x03, 0x28, 0x09, 0x52, 0x02, 0x44, 0x43, 0x12, 0x14, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75,
  179. 0x70, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x18,
  180. 0x0a, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52,
  181. 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x50, 0x65, 0x65, 0x72,
  182. 0x49, 0x44, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x50, 0x65, 0x65, 0x72, 0x49,
  183. 0x44, 0x73, 0x32, 0x6e, 0x0a, 0x04, 0x4d, 0x65, 0x73, 0x68, 0x12, 0x33, 0x0a, 0x09, 0x42, 0x72,
  184. 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x2e,
  185. 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67,
  186. 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x12,
  187. 0x31, 0x0a, 0x07, 0x55, 0x6e, 0x69, 0x63, 0x61, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x6d, 0x72, 0x69,
  188. 0x6e, 0x67, 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x0f, 0x2e, 0x6d, 0x72,
  189. 0x69, 0x6e, 0x67, 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x28, 0x01,
  190. 0x30, 0x01, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  191. }
  192. var (
  193. file_proto_mesh_proto_rawDescOnce sync.Once
  194. file_proto_mesh_proto_rawDescData = file_proto_mesh_proto_rawDesc
  195. )
  196. func file_proto_mesh_proto_rawDescGZIP() []byte {
  197. file_proto_mesh_proto_rawDescOnce.Do(func() {
  198. file_proto_mesh_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_mesh_proto_rawDescData)
  199. })
  200. return file_proto_mesh_proto_rawDescData
  201. }
  202. var file_proto_mesh_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  203. var file_proto_mesh_proto_goTypes = []interface{}{
  204. (*MeshData)(nil), // 0: mring.MeshData
  205. (*NodeInfo)(nil), // 1: mring.NodeInfo
  206. }
  207. var file_proto_mesh_proto_depIdxs = []int32{
  208. 1, // 0: mring.MeshData.NodeInfo:type_name -> mring.NodeInfo
  209. 0, // 1: mring.Mesh.Broadcast:input_type -> mring.MeshData
  210. 0, // 2: mring.Mesh.Unicast:input_type -> mring.MeshData
  211. 0, // 3: mring.Mesh.Broadcast:output_type -> mring.MeshData
  212. 0, // 4: mring.Mesh.Unicast:output_type -> mring.MeshData
  213. 3, // [3:5] is the sub-list for method output_type
  214. 1, // [1:3] is the sub-list for method input_type
  215. 1, // [1:1] is the sub-list for extension type_name
  216. 1, // [1:1] is the sub-list for extension extendee
  217. 0, // [0:1] is the sub-list for field type_name
  218. }
  219. func init() { file_proto_mesh_proto_init() }
  220. func file_proto_mesh_proto_init() {
  221. if File_proto_mesh_proto != nil {
  222. return
  223. }
  224. if !protoimpl.UnsafeEnabled {
  225. file_proto_mesh_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  226. switch v := v.(*MeshData); i {
  227. case 0:
  228. return &v.state
  229. case 1:
  230. return &v.sizeCache
  231. case 2:
  232. return &v.unknownFields
  233. default:
  234. return nil
  235. }
  236. }
  237. file_proto_mesh_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  238. switch v := v.(*NodeInfo); i {
  239. case 0:
  240. return &v.state
  241. case 1:
  242. return &v.sizeCache
  243. case 2:
  244. return &v.unknownFields
  245. default:
  246. return nil
  247. }
  248. }
  249. }
  250. file_proto_mesh_proto_msgTypes[0].OneofWrappers = []interface{}{
  251. (*MeshData_NodeInfo)(nil),
  252. }
  253. type x struct{}
  254. out := protoimpl.TypeBuilder{
  255. File: protoimpl.DescBuilder{
  256. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  257. RawDescriptor: file_proto_mesh_proto_rawDesc,
  258. NumEnums: 0,
  259. NumMessages: 2,
  260. NumExtensions: 0,
  261. NumServices: 1,
  262. },
  263. GoTypes: file_proto_mesh_proto_goTypes,
  264. DependencyIndexes: file_proto_mesh_proto_depIdxs,
  265. MessageInfos: file_proto_mesh_proto_msgTypes,
  266. }.Build()
  267. File_proto_mesh_proto = out.File
  268. file_proto_mesh_proto_rawDesc = nil
  269. file_proto_mesh_proto_goTypes = nil
  270. file_proto_mesh_proto_depIdxs = nil
  271. }