mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-04 02:38:50 +00:00
97e7f57dbb
Remove the Mutable methods from KnownFields, List, and Map, replacing them with methods which return a new, empty message value without adding that value to the collection. The new API is simpler, since it clearly applies only to message values, and more orthogonal, since it provides a way to create a value without mutating the collection. This latter point is particularly useful in map deserialization, where the key may be unknown at the time the value is deserialized. Drop the Mutable interface, since it is no longer necessary. Change-Id: Ic5f3d06a2aa331a5d5cd2b4e670a3dba4a74f77c Reviewed-on: https://go-review.googlesource.com/c/153278 Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
220 lines
6.4 KiB
Go
220 lines
6.4 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: nopackage/nopackage.proto
|
|
|
|
package nopackage
|
|
|
|
import (
|
|
proto "github.com/golang/protobuf/proto"
|
|
protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
|
|
prototype "github.com/golang/protobuf/v2/reflect/prototype"
|
|
protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type Enum int32
|
|
|
|
const (
|
|
Enum_ZERO Enum = 0
|
|
)
|
|
|
|
type xxx_Enum Enum
|
|
|
|
func (e Enum) ProtoReflect() protoreflect.Enum {
|
|
return (xxx_Enum)(e)
|
|
}
|
|
func (e xxx_Enum) Type() protoreflect.EnumType {
|
|
return xxx_Nopackage_ProtoFile_EnumTypes[0]
|
|
}
|
|
func (e xxx_Enum) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(e)
|
|
}
|
|
|
|
var Enum_name = map[int32]string{
|
|
0: "ZERO",
|
|
}
|
|
|
|
var Enum_value = map[string]int32{
|
|
"ZERO": 0,
|
|
}
|
|
|
|
func (x Enum) Enum() *Enum {
|
|
p := new(Enum)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x Enum) String() string {
|
|
return proto.EnumName(Enum_name, int32(x))
|
|
}
|
|
|
|
func (x *Enum) UnmarshalJSON(data []byte) error {
|
|
value, err := proto.UnmarshalJSONEnum(Enum_value, data, "Enum")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*x = Enum(value)
|
|
return nil
|
|
}
|
|
|
|
func (Enum) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_f33a1d5d178c43c9, []int{0}
|
|
}
|
|
|
|
type Message struct {
|
|
StringField *string `protobuf:"bytes,1,opt,name=string_field,json=stringField" json:"string_field,omitempty"`
|
|
EnumField *Enum `protobuf:"varint,2,opt,name=enum_field,json=enumField,enum=Enum,def=0" json:"enum_field,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
type xxx_Message struct{ m *Message }
|
|
|
|
func (m *Message) ProtoReflect() protoreflect.Message {
|
|
return xxx_Message{m}
|
|
}
|
|
func (m xxx_Message) Type() protoreflect.MessageType {
|
|
return xxx_Nopackage_ProtoFile_MessageTypes[0].Type
|
|
}
|
|
func (m xxx_Message) KnownFields() protoreflect.KnownFields {
|
|
return xxx_Nopackage_ProtoFile_MessageTypes[0].KnownFieldsOf(m.m)
|
|
}
|
|
func (m xxx_Message) UnknownFields() protoreflect.UnknownFields {
|
|
return xxx_Nopackage_ProtoFile_MessageTypes[0].UnknownFieldsOf(m.m)
|
|
}
|
|
func (m xxx_Message) Interface() protoreflect.ProtoMessage {
|
|
return m.m
|
|
}
|
|
|
|
func (m *Message) Reset() { *m = Message{} }
|
|
func (m *Message) String() string { return proto.CompactTextString(m) }
|
|
func (*Message) ProtoMessage() {}
|
|
func (*Message) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_f33a1d5d178c43c9, []int{0}
|
|
}
|
|
|
|
func (m *Message) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Message.Unmarshal(m, b)
|
|
}
|
|
func (m *Message) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Message.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Message) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Message.Merge(m, src)
|
|
}
|
|
func (m *Message) XXX_Size() int {
|
|
return xxx_messageInfo_Message.Size(m)
|
|
}
|
|
func (m *Message) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Message.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Message proto.InternalMessageInfo
|
|
|
|
const Default_Message_EnumField Enum = Enum_ZERO
|
|
|
|
func (m *Message) GetStringField() string {
|
|
if m != nil && m.StringField != nil {
|
|
return *m.StringField
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Message) GetEnumField() Enum {
|
|
if m != nil && m.EnumField != nil {
|
|
return *m.EnumField
|
|
}
|
|
return Default_Message_EnumField
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("nopackage/nopackage.proto", fileDescriptor_f33a1d5d178c43c9)
|
|
proto.RegisterEnum("Enum", Enum_name, Enum_value)
|
|
proto.RegisterType((*Message)(nil), "Message")
|
|
}
|
|
|
|
var fileDescriptor_f33a1d5d178c43c9 = []byte{
|
|
// 130 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcc, 0xcb, 0x2f, 0x48,
|
|
0x4c, 0xce, 0x4e, 0x4c, 0x4f, 0xd5, 0x87, 0xb3, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x95, 0x22,
|
|
0xb8, 0xd8, 0x7d, 0x53, 0x8b, 0x8b, 0x13, 0xd3, 0x53, 0x85, 0x14, 0xb9, 0x78, 0x8a, 0x4b, 0x8a,
|
|
0x32, 0xf3, 0xd2, 0xe3, 0xd3, 0x32, 0x53, 0x73, 0x52, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83,
|
|
0xb8, 0x21, 0x62, 0x6e, 0x20, 0x21, 0x21, 0x2d, 0x2e, 0xae, 0xd4, 0xbc, 0xd2, 0x5c, 0xa8, 0x02,
|
|
0x26, 0x05, 0x46, 0x0d, 0x3e, 0x23, 0x56, 0x3d, 0xd7, 0xbc, 0xd2, 0x5c, 0x2b, 0x96, 0x28, 0xd7,
|
|
0x20, 0xff, 0x20, 0x4e, 0x90, 0x34, 0x58, 0xad, 0x96, 0x00, 0x17, 0x0b, 0x48, 0x42, 0x88, 0x83,
|
|
0x0b, 0x2c, 0x25, 0xc0, 0x00, 0x08, 0x00, 0x00, 0xff, 0xff, 0x31, 0x29, 0xe4, 0xb2, 0x87, 0x00,
|
|
0x00, 0x00,
|
|
}
|
|
|
|
func init() {
|
|
xxx_Nopackage_ProtoFile_FileDesc.Enums = xxx_Nopackage_ProtoFile_EnumDescs[0:1]
|
|
xxx_Nopackage_ProtoFile_FileDesc.Messages = xxx_Nopackage_ProtoFile_MessageDescs[0:1]
|
|
xxx_Nopackage_ProtoFile_MessageDescs[0].Fields[1].EnumType = xxx_Nopackage_ProtoFile_EnumTypes[0]
|
|
var err error
|
|
Nopackage_ProtoFile, err = prototype.NewFile(&xxx_Nopackage_ProtoFile_FileDesc)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
|
|
|
|
var Nopackage_ProtoFile protoreflect.FileDescriptor
|
|
|
|
var xxx_Nopackage_ProtoFile_FileDesc = prototype.File{
|
|
Syntax: protoreflect.Proto2,
|
|
Path: "nopackage/nopackage.proto",
|
|
Package: "",
|
|
}
|
|
var xxx_Nopackage_ProtoFile_EnumTypes = [1]protoreflect.EnumType{
|
|
prototype.GoEnum(
|
|
xxx_Nopackage_ProtoFile_EnumDescs[0].Reference(),
|
|
func(_ protoreflect.EnumType, n protoreflect.EnumNumber) protoreflect.ProtoEnum {
|
|
return Enum(n)
|
|
},
|
|
),
|
|
}
|
|
var xxx_Nopackage_ProtoFile_EnumDescs = [1]prototype.Enum{
|
|
{
|
|
Name: "Enum",
|
|
Values: []prototype.EnumValue{
|
|
{Name: "ZERO", Number: 0},
|
|
},
|
|
},
|
|
}
|
|
var xxx_Nopackage_ProtoFile_MessageTypes = [1]protoimpl.MessageType{
|
|
{Type: prototype.GoMessage(
|
|
xxx_Nopackage_ProtoFile_MessageDescs[0].Reference(),
|
|
func(protoreflect.MessageType) protoreflect.ProtoMessage {
|
|
return new(Message)
|
|
},
|
|
)},
|
|
}
|
|
var xxx_Nopackage_ProtoFile_MessageDescs = [1]prototype.Message{
|
|
{
|
|
Name: "Message",
|
|
Fields: []prototype.Field{
|
|
{
|
|
Name: "string_field",
|
|
Number: 1,
|
|
Cardinality: protoreflect.Optional,
|
|
Kind: protoreflect.StringKind,
|
|
JSONName: "stringField",
|
|
},
|
|
{
|
|
Name: "enum_field",
|
|
Number: 2,
|
|
Cardinality: protoreflect.Optional,
|
|
Kind: protoreflect.EnumKind,
|
|
JSONName: "enumField",
|
|
Default: protoreflect.ValueOf(string("ZERO")),
|
|
},
|
|
},
|
|
},
|
|
}
|