231 lines
6.9 KiB
Go
231 lines
6.9 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// protoc-gen-go v1.23.0
|
||
|
// protoc v3.12.2
|
||
|
// source: message.proto
|
||
|
|
||
|
package message
|
||
|
|
||
|
import (
|
||
|
proto "github.com/golang/protobuf/proto"
|
||
|
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)
|
||
|
)
|
||
|
|
||
|
// This is a compile-time assertion that a sufficiently up-to-date version
|
||
|
// of the legacy proto package is being used.
|
||
|
const _ = proto.ProtoPackageIsVersion4
|
||
|
|
||
|
type Body_EncodingType int32
|
||
|
|
||
|
const (
|
||
|
Body_NONE Body_EncodingType = 0
|
||
|
Body_ERROR Body_EncodingType = 1
|
||
|
Body_PBSERIALIZED Body_EncodingType = 2
|
||
|
Body_GOBSERIALIZED Body_EncodingType = 3
|
||
|
Body_JSONSERIALIZED Body_EncodingType = 4
|
||
|
)
|
||
|
|
||
|
// Enum value maps for Body_EncodingType.
|
||
|
var (
|
||
|
Body_EncodingType_name = map[int32]string{
|
||
|
0: "NONE",
|
||
|
1: "ERROR",
|
||
|
2: "PBSERIALIZED",
|
||
|
3: "GOBSERIALIZED",
|
||
|
4: "JSONSERIALIZED",
|
||
|
}
|
||
|
Body_EncodingType_value = map[string]int32{
|
||
|
"NONE": 0,
|
||
|
"ERROR": 1,
|
||
|
"PBSERIALIZED": 2,
|
||
|
"GOBSERIALIZED": 3,
|
||
|
"JSONSERIALIZED": 4,
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func (x Body_EncodingType) Enum() *Body_EncodingType {
|
||
|
p := new(Body_EncodingType)
|
||
|
*p = x
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
func (x Body_EncodingType) String() string {
|
||
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||
|
}
|
||
|
|
||
|
func (Body_EncodingType) Descriptor() protoreflect.EnumDescriptor {
|
||
|
return file_message_proto_enumTypes[0].Descriptor()
|
||
|
}
|
||
|
|
||
|
func (Body_EncodingType) Type() protoreflect.EnumType {
|
||
|
return &file_message_proto_enumTypes[0]
|
||
|
}
|
||
|
|
||
|
func (x Body_EncodingType) Number() protoreflect.EnumNumber {
|
||
|
return protoreflect.EnumNumber(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use Body_EncodingType.Descriptor instead.
|
||
|
func (Body_EncodingType) EnumDescriptor() ([]byte, []int) {
|
||
|
return file_message_proto_rawDescGZIP(), []int{0, 0}
|
||
|
}
|
||
|
|
||
|
type Body struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Type Body_EncodingType `protobuf:"varint,1,opt,name=type,proto3,enum=message.Body_EncodingType" json:"type,omitempty"`
|
||
|
Key []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
|
||
|
Value []byte `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *Body) Reset() {
|
||
|
*x = Body{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_message_proto_msgTypes[0]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *Body) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*Body) ProtoMessage() {}
|
||
|
|
||
|
func (x *Body) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_message_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 Body.ProtoReflect.Descriptor instead.
|
||
|
func (*Body) Descriptor() ([]byte, []int) {
|
||
|
return file_message_proto_rawDescGZIP(), []int{0}
|
||
|
}
|
||
|
|
||
|
func (x *Body) GetType() Body_EncodingType {
|
||
|
if x != nil {
|
||
|
return x.Type
|
||
|
}
|
||
|
return Body_NONE
|
||
|
}
|
||
|
|
||
|
func (x *Body) GetKey() []byte {
|
||
|
if x != nil {
|
||
|
return x.Key
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (x *Body) GetValue() []byte {
|
||
|
if x != nil {
|
||
|
return x.Value
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
var File_message_proto protoreflect.FileDescriptor
|
||
|
|
||
|
var file_message_proto_rawDesc = []byte{
|
||
|
0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
||
|
0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0xbc, 0x01, 0x0a, 0x04, 0x42, 0x6f, 0x64,
|
||
|
0x79, 0x12, 0x2e, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
||
|
0x1a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x45,
|
||
|
0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
|
||
|
0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03,
|
||
|
0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
|
||
|
0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x5c, 0x0a, 0x0c, 0x45, 0x6e, 0x63,
|
||
|
0x6f, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e,
|
||
|
0x45, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x01, 0x12, 0x10,
|
||
|
0x0a, 0x0c, 0x50, 0x42, 0x53, 0x45, 0x52, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x02,
|
||
|
0x12, 0x11, 0x0a, 0x0d, 0x47, 0x4f, 0x42, 0x53, 0x45, 0x52, 0x49, 0x41, 0x4c, 0x49, 0x5a, 0x45,
|
||
|
0x44, 0x10, 0x03, 0x12, 0x12, 0x0a, 0x0e, 0x4a, 0x53, 0x4f, 0x4e, 0x53, 0x45, 0x52, 0x49, 0x41,
|
||
|
0x4c, 0x49, 0x5a, 0x45, 0x44, 0x10, 0x04, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
file_message_proto_rawDescOnce sync.Once
|
||
|
file_message_proto_rawDescData = file_message_proto_rawDesc
|
||
|
)
|
||
|
|
||
|
func file_message_proto_rawDescGZIP() []byte {
|
||
|
file_message_proto_rawDescOnce.Do(func() {
|
||
|
file_message_proto_rawDescData = protoimpl.X.CompressGZIP(file_message_proto_rawDescData)
|
||
|
})
|
||
|
return file_message_proto_rawDescData
|
||
|
}
|
||
|
|
||
|
var file_message_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||
|
var file_message_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||
|
var file_message_proto_goTypes = []interface{}{
|
||
|
(Body_EncodingType)(0), // 0: message.Body.EncodingType
|
||
|
(*Body)(nil), // 1: message.Body
|
||
|
}
|
||
|
var file_message_proto_depIdxs = []int32{
|
||
|
0, // 0: message.Body.type:type_name -> message.Body.EncodingType
|
||
|
1, // [1:1] is the sub-list for method output_type
|
||
|
1, // [1:1] 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_message_proto_init() }
|
||
|
func file_message_proto_init() {
|
||
|
if File_message_proto != nil {
|
||
|
return
|
||
|
}
|
||
|
if !protoimpl.UnsafeEnabled {
|
||
|
file_message_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*Body); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
type x struct{}
|
||
|
out := protoimpl.TypeBuilder{
|
||
|
File: protoimpl.DescBuilder{
|
||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
|
RawDescriptor: file_message_proto_rawDesc,
|
||
|
NumEnums: 1,
|
||
|
NumMessages: 1,
|
||
|
NumExtensions: 0,
|
||
|
NumServices: 0,
|
||
|
},
|
||
|
GoTypes: file_message_proto_goTypes,
|
||
|
DependencyIndexes: file_message_proto_depIdxs,
|
||
|
EnumInfos: file_message_proto_enumTypes,
|
||
|
MessageInfos: file_message_proto_msgTypes,
|
||
|
}.Build()
|
||
|
File_message_proto = out.File
|
||
|
file_message_proto_rawDesc = nil
|
||
|
file_message_proto_goTypes = nil
|
||
|
file_message_proto_depIdxs = nil
|
||
|
}
|