2018-09-17 15:11:24 -07:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: import_public/sub/b.proto
|
|
|
|
|
|
|
|
package sub
|
|
|
|
|
|
|
|
import (
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
cmd/protoc-gen-go: add support for protobuf reflection
Implement support in protoc-gen-go for generating messages and enums
that satisfy the v2 protobuf reflection interfaces. Specifically, the following
are added:
* top-level variable representing the file descriptor
* ProtoReflect method on enums (to implement protoV2.Enum)
* ProtoReflect method on messages (to implement protoV2.Message)
The following are not supported yet:
* resolving transitive dependencies for file imports
* Extension descriptors
* Service descriptors
The implementation approach creates a single array for all the message and enum
declarations and references sections of that array to complete dependencies.
Since protobuf declarations can form a graph (a message may depend on itself),
it is difficult to construct a graph as a single literal. One way is to use
placeholder descriptors, but that is not efficient as it requires encoding
the full name of each dependent enum and message and then later resolving it;
thus, both expanding the binary size and also increasing initialization cost.
Instead, we add a prototype.{Enum,Message}.Reference method to obtain a
descriptor reference for the purposes for satisfying dependencies.
As such, nested declarations and dependencies are populated in an init function.
Other changes to support the implementation:
* Added a protoimpl package to expose the MessageType type and also the
MessageTypeOf and EnumTypeOf helper functions.
* Added a protogen.File.GoIdent field to provide a suggested variable name
for the file descriptor.
* Added prototype.{Enum,Message}.Reference that provides a descriptor reference
for the purposes for satisfying cyclic dependencies.
* Added protoreflect.{Syntax,Cardinality,Kind}.GoString to obtain a Go source
identifier that represents the given constant.
Change-Id: I9455764882dee6ad10f251901e7d419091e8bf1d
Reviewed-on: https://go-review.googlesource.com/c/150074
Reviewed-by: Damien Neil <dneil@google.com>
2018-11-15 14:44:37 -08:00
|
|
|
protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
|
|
|
|
prototype "github.com/golang/protobuf/v2/reflect/prototype"
|
|
|
|
protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
|
2018-09-17 15:11:24 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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.
|
2018-11-26 12:57:27 -08:00
|
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
2018-09-17 15:11:24 -07:00
|
|
|
|
|
|
|
type M2 struct {
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
cmd/protoc-gen-go: add support for protobuf reflection
Implement support in protoc-gen-go for generating messages and enums
that satisfy the v2 protobuf reflection interfaces. Specifically, the following
are added:
* top-level variable representing the file descriptor
* ProtoReflect method on enums (to implement protoV2.Enum)
* ProtoReflect method on messages (to implement protoV2.Message)
The following are not supported yet:
* resolving transitive dependencies for file imports
* Extension descriptors
* Service descriptors
The implementation approach creates a single array for all the message and enum
declarations and references sections of that array to complete dependencies.
Since protobuf declarations can form a graph (a message may depend on itself),
it is difficult to construct a graph as a single literal. One way is to use
placeholder descriptors, but that is not efficient as it requires encoding
the full name of each dependent enum and message and then later resolving it;
thus, both expanding the binary size and also increasing initialization cost.
Instead, we add a prototype.{Enum,Message}.Reference method to obtain a
descriptor reference for the purposes for satisfying dependencies.
As such, nested declarations and dependencies are populated in an init function.
Other changes to support the implementation:
* Added a protoimpl package to expose the MessageType type and also the
MessageTypeOf and EnumTypeOf helper functions.
* Added a protogen.File.GoIdent field to provide a suggested variable name
for the file descriptor.
* Added prototype.{Enum,Message}.Reference that provides a descriptor reference
for the purposes for satisfying cyclic dependencies.
* Added protoreflect.{Syntax,Cardinality,Kind}.GoString to obtain a Go source
identifier that represents the given constant.
Change-Id: I9455764882dee6ad10f251901e7d419091e8bf1d
Reviewed-on: https://go-review.googlesource.com/c/150074
Reviewed-by: Damien Neil <dneil@google.com>
2018-11-15 14:44:37 -08:00
|
|
|
type xxx_M2 struct{ m *M2 }
|
|
|
|
|
|
|
|
func (m *M2) ProtoReflect() protoreflect.Message {
|
|
|
|
return xxx_M2{m}
|
|
|
|
}
|
|
|
|
func (m xxx_M2) Type() protoreflect.MessageType {
|
|
|
|
return xxx_B_ProtoFile_MessageTypes[0].Type
|
|
|
|
}
|
|
|
|
func (m xxx_M2) KnownFields() protoreflect.KnownFields {
|
|
|
|
return xxx_B_ProtoFile_MessageTypes[0].KnownFieldsOf(m.m)
|
|
|
|
}
|
|
|
|
func (m xxx_M2) UnknownFields() protoreflect.UnknownFields {
|
|
|
|
return xxx_B_ProtoFile_MessageTypes[0].UnknownFieldsOf(m.m)
|
|
|
|
}
|
|
|
|
func (m xxx_M2) Interface() protoreflect.ProtoMessage {
|
|
|
|
return m.m
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:11:24 -07:00
|
|
|
func (m *M2) Reset() { *m = M2{} }
|
|
|
|
func (m *M2) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*M2) ProtoMessage() {}
|
|
|
|
func (*M2) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_fc66afda3d7c2232, []int{0}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *M2) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_M2.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *M2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_M2.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *M2) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_M2.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *M2) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_M2.Size(m)
|
|
|
|
}
|
|
|
|
func (m *M2) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_M2.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_M2 proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func init() {
|
2018-12-05 15:42:52 -08:00
|
|
|
proto.RegisterFile("import_public/sub/b.proto", fileDescriptor_fc66afda3d7c2232)
|
2018-09-17 15:11:24 -07:00
|
|
|
proto.RegisterType((*M2)(nil), "goproto.protoc.import_public.sub.M2")
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileDescriptor_fc66afda3d7c2232 = []byte{
|
2018-10-09 12:49:13 -07:00
|
|
|
// 129 bytes of a gzipped FileDescriptorProto
|
2018-09-17 15:11:24 -07:00
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcc, 0xcc, 0x2d, 0xc8,
|
|
|
|
0x2f, 0x2a, 0x89, 0x2f, 0x28, 0x4d, 0xca, 0xc9, 0x4c, 0xd6, 0x2f, 0x2e, 0x4d, 0xd2, 0x4f, 0xd2,
|
|
|
|
0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, 0x48, 0xcf, 0x07, 0x33, 0x20, 0xdc, 0x64, 0x3d, 0x14,
|
2018-09-19 13:21:58 -07:00
|
|
|
0x95, 0x7a, 0xc5, 0xa5, 0x49, 0x4a, 0x2c, 0x5c, 0x4c, 0xbe, 0x46, 0x4e, 0x3e, 0x51, 0x5e, 0xe9,
|
|
|
|
0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xe9, 0xf9, 0x39, 0x89, 0x79, 0xe9,
|
|
|
|
0xfa, 0x60, 0x3d, 0x49, 0xa5, 0x69, 0xfa, 0x65, 0x46, 0xfa, 0xc9, 0xb9, 0x29, 0x10, 0x7e, 0xb2,
|
|
|
|
0x6e, 0x7a, 0x6a, 0x9e, 0x6e, 0x7a, 0xbe, 0x7e, 0x49, 0x6a, 0x71, 0x49, 0x4a, 0x62, 0x49, 0xa2,
|
2018-10-09 12:49:13 -07:00
|
|
|
0x3e, 0x86, 0xed, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x2d, 0x0b, 0x52, 0x91, 0x00, 0x00,
|
|
|
|
0x00,
|
2018-09-17 15:11:24 -07:00
|
|
|
}
|
cmd/protoc-gen-go: add support for protobuf reflection
Implement support in protoc-gen-go for generating messages and enums
that satisfy the v2 protobuf reflection interfaces. Specifically, the following
are added:
* top-level variable representing the file descriptor
* ProtoReflect method on enums (to implement protoV2.Enum)
* ProtoReflect method on messages (to implement protoV2.Message)
The following are not supported yet:
* resolving transitive dependencies for file imports
* Extension descriptors
* Service descriptors
The implementation approach creates a single array for all the message and enum
declarations and references sections of that array to complete dependencies.
Since protobuf declarations can form a graph (a message may depend on itself),
it is difficult to construct a graph as a single literal. One way is to use
placeholder descriptors, but that is not efficient as it requires encoding
the full name of each dependent enum and message and then later resolving it;
thus, both expanding the binary size and also increasing initialization cost.
Instead, we add a prototype.{Enum,Message}.Reference method to obtain a
descriptor reference for the purposes for satisfying dependencies.
As such, nested declarations and dependencies are populated in an init function.
Other changes to support the implementation:
* Added a protoimpl package to expose the MessageType type and also the
MessageTypeOf and EnumTypeOf helper functions.
* Added a protogen.File.GoIdent field to provide a suggested variable name
for the file descriptor.
* Added prototype.{Enum,Message}.Reference that provides a descriptor reference
for the purposes for satisfying cyclic dependencies.
* Added protoreflect.{Syntax,Cardinality,Kind}.GoString to obtain a Go source
identifier that represents the given constant.
Change-Id: I9455764882dee6ad10f251901e7d419091e8bf1d
Reviewed-on: https://go-review.googlesource.com/c/150074
Reviewed-by: Damien Neil <dneil@google.com>
2018-11-15 14:44:37 -08:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
xxx_B_ProtoFile_FileDesc.Messages = xxx_B_ProtoFile_MessageDescs[0:1]
|
|
|
|
var err error
|
|
|
|
B_ProtoFile, err = prototype.NewFile(&xxx_B_ProtoFile_FileDesc)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
|
|
|
|
|
|
|
|
var B_ProtoFile protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var xxx_B_ProtoFile_FileDesc = prototype.File{
|
|
|
|
Syntax: protoreflect.Proto2,
|
|
|
|
Path: "import_public/sub/b.proto",
|
|
|
|
Package: "goproto.protoc.import_public.sub",
|
|
|
|
}
|
|
|
|
var xxx_B_ProtoFile_MessageTypes = [1]protoimpl.MessageType{
|
|
|
|
{Type: prototype.GoMessage(
|
|
|
|
xxx_B_ProtoFile_MessageDescs[0].Reference(),
|
|
|
|
func(protoreflect.MessageType) protoreflect.ProtoMessage {
|
|
|
|
return new(M2)
|
|
|
|
},
|
|
|
|
)},
|
|
|
|
}
|
|
|
|
var xxx_B_ProtoFile_MessageDescs = [1]prototype.Message{
|
|
|
|
{
|
|
|
|
Name: "M2",
|
|
|
|
},
|
|
|
|
}
|