-
Couldn't load subscription status.
- Fork 1.6k
Description
Should there be a way for protobuf reflection to distinguish proto.Message values that are truly invalid?
Currently, we have protoreflect.Message.IsValid which indicates that the current Go value is functionally a read-only empty message. This implies that the current value has protobuf type information (i.e., Descriptor and Type methods are callable).
However, there are a number of Go types that possess a higher level of "invalid"-ness. For example, the zero value of dynamicpb.Message and ptypes.DynamicAny obviously cannot contain protobuf type information since they are both concrete Go types that may may represent any arbitrary protobuf message type.
The issue today is that a user of protobuf reflection cannot distinguish such messages and risk panicking whenever they call the methods on protoreflect.Message. For example, protocmp.Transform will choke on the zero value of dynamicpb.Message.
Some possibilities (some or all of these may be done) regarding truly invalid values:
- Document that calling
proto.Message.ProtoReflecton returnsnil. - Document that calling
protoreflect.Message.Typeorprotoreflect.Message.Descriptorreturnsnil.
(I define "truly invalid" as a concrete value that has no sensible protobuf message type associated with it at the present moment.)