123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.28.1-devel
- // protoc v3.21.9
- // source: proto/mesh.proto
- package api
- import (
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- type MeshData struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- // Types that are assignable to Message:
- //
- // *MeshData_NodeInfo
- Message isMeshData_Message `protobuf_oneof:"Message"`
- }
- func (x *MeshData) Reset() {
- *x = MeshData{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_mesh_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MeshData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MeshData) ProtoMessage() {}
- func (x *MeshData) ProtoReflect() protoreflect.Message {
- mi := &file_proto_mesh_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MeshData.ProtoReflect.Descriptor instead.
- func (*MeshData) Descriptor() ([]byte, []int) {
- return file_proto_mesh_proto_rawDescGZIP(), []int{0}
- }
- func (m *MeshData) GetMessage() isMeshData_Message {
- if m != nil {
- return m.Message
- }
- return nil
- }
- func (x *MeshData) GetNodeInfo() *NodeInfo {
- if x, ok := x.GetMessage().(*MeshData_NodeInfo); ok {
- return x.NodeInfo
- }
- return nil
- }
- type isMeshData_Message interface {
- isMeshData_Message()
- }
- type MeshData_NodeInfo struct {
- NodeInfo *NodeInfo `protobuf:"bytes,1,opt,name=NodeInfo,proto3,oneof"`
- }
- func (*MeshData_NodeInfo) isMeshData_Message() {}
- type NodeInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NodeID int64 `protobuf:"varint,1,opt,name=NodeID,proto3" json:"NodeID,omitempty"`
- NodeName string `protobuf:"bytes,2,opt,name=NodeName,proto3" json:"NodeName,omitempty"`
- StartTime int64 `protobuf:"varint,3,opt,name=StartTime,proto3" json:"StartTime,omitempty"`
- Address []string `protobuf:"bytes,4,rep,name=Address,proto3" json:"Address,omitempty"`
- DC []string `protobuf:"bytes,5,rep,name=DC,proto3" json:"DC,omitempty"`
- Group []string `protobuf:"bytes,6,rep,name=Group,proto3" json:"Group,omitempty"`
- Service []string `protobuf:"bytes,7,rep,name=Service,proto3" json:"Service,omitempty"`
- PeerIDs []int64 `protobuf:"varint,8,rep,packed,name=PeerIDs,proto3" json:"PeerIDs,omitempty"`
- }
- func (x *NodeInfo) Reset() {
- *x = NodeInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_proto_mesh_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *NodeInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*NodeInfo) ProtoMessage() {}
- func (x *NodeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_proto_mesh_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use NodeInfo.ProtoReflect.Descriptor instead.
- func (*NodeInfo) Descriptor() ([]byte, []int) {
- return file_proto_mesh_proto_rawDescGZIP(), []int{1}
- }
- func (x *NodeInfo) GetNodeID() int64 {
- if x != nil {
- return x.NodeID
- }
- return 0
- }
- func (x *NodeInfo) GetNodeName() string {
- if x != nil {
- return x.NodeName
- }
- return ""
- }
- func (x *NodeInfo) GetStartTime() int64 {
- if x != nil {
- return x.StartTime
- }
- return 0
- }
- func (x *NodeInfo) GetAddress() []string {
- if x != nil {
- return x.Address
- }
- return nil
- }
- func (x *NodeInfo) GetDC() []string {
- if x != nil {
- return x.DC
- }
- return nil
- }
- func (x *NodeInfo) GetGroup() []string {
- if x != nil {
- return x.Group
- }
- return nil
- }
- func (x *NodeInfo) GetService() []string {
- if x != nil {
- return x.Service
- }
- return nil
- }
- func (x *NodeInfo) GetPeerIDs() []int64 {
- if x != nil {
- return x.PeerIDs
- }
- return nil
- }
- var File_proto_mesh_proto protoreflect.FileDescriptor
- var file_proto_mesh_proto_rawDesc = []byte{
- 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x6d, 0x65, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x12, 0x05, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x44, 0x0a, 0x08, 0x4d, 0x65, 0x73,
- 0x68, 0x44, 0x61, 0x74, 0x61, 0x12, 0x2d, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66,
- 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x2e,
- 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x4e, 0x6f, 0x64, 0x65,
- 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x09, 0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22,
- 0xd0, 0x01, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
- 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x4e, 0x6f,
- 0x64, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18,
- 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x44, 0x43, 0x18, 0x05,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x02, 0x44, 0x43, 0x12, 0x14, 0x0a, 0x05, 0x47, 0x72, 0x6f, 0x75,
- 0x70, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x18,
- 0x0a, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x50, 0x65, 0x65, 0x72,
- 0x49, 0x44, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x50, 0x65, 0x65, 0x72, 0x49,
- 0x44, 0x73, 0x32, 0x6e, 0x0a, 0x04, 0x4d, 0x65, 0x73, 0x68, 0x12, 0x33, 0x0a, 0x09, 0x42, 0x72,
- 0x6f, 0x61, 0x64, 0x63, 0x61, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67, 0x2e,
- 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x0f, 0x2e, 0x6d, 0x72, 0x69, 0x6e, 0x67,
- 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x12,
- 0x31, 0x0a, 0x07, 0x55, 0x6e, 0x69, 0x63, 0x61, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x6d, 0x72, 0x69,
- 0x6e, 0x67, 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x0f, 0x2e, 0x6d, 0x72,
- 0x69, 0x6e, 0x67, 0x2e, 0x4d, 0x65, 0x73, 0x68, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x28, 0x01,
- 0x30, 0x01, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_proto_mesh_proto_rawDescOnce sync.Once
- file_proto_mesh_proto_rawDescData = file_proto_mesh_proto_rawDesc
- )
- func file_proto_mesh_proto_rawDescGZIP() []byte {
- file_proto_mesh_proto_rawDescOnce.Do(func() {
- file_proto_mesh_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_mesh_proto_rawDescData)
- })
- return file_proto_mesh_proto_rawDescData
- }
- var file_proto_mesh_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
- var file_proto_mesh_proto_goTypes = []interface{}{
- (*MeshData)(nil), // 0: mring.MeshData
- (*NodeInfo)(nil), // 1: mring.NodeInfo
- }
- var file_proto_mesh_proto_depIdxs = []int32{
- 1, // 0: mring.MeshData.NodeInfo:type_name -> mring.NodeInfo
- 0, // 1: mring.Mesh.Broadcast:input_type -> mring.MeshData
- 0, // 2: mring.Mesh.Unicast:input_type -> mring.MeshData
- 0, // 3: mring.Mesh.Broadcast:output_type -> mring.MeshData
- 0, // 4: mring.Mesh.Unicast:output_type -> mring.MeshData
- 3, // [3:5] is the sub-list for method output_type
- 1, // [1:3] is the sub-list for method input_type
- 1, // [1:1] is the sub-list for extension type_name
- 1, // [1:1] is the sub-list for extension extendee
- 0, // [0:1] is the sub-list for field type_name
- }
- func init() { file_proto_mesh_proto_init() }
- func file_proto_mesh_proto_init() {
- if File_proto_mesh_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_proto_mesh_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MeshData); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_proto_mesh_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*NodeInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- file_proto_mesh_proto_msgTypes[0].OneofWrappers = []interface{}{
- (*MeshData_NodeInfo)(nil),
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_proto_mesh_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 2,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_proto_mesh_proto_goTypes,
- DependencyIndexes: file_proto_mesh_proto_depIdxs,
- MessageInfos: file_proto_mesh_proto_msgTypes,
- }.Build()
- File_proto_mesh_proto = out.File
- file_proto_mesh_proto_rawDesc = nil
- file_proto_mesh_proto_goTypes = nil
- file_proto_mesh_proto_depIdxs = nil
- }
|