Documentation ¶
Overview ¶
Package protopath provides functionality for representing a sequence of protobuf reflection operations on a message.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Path ¶
type Path []Step
Path is a sequence of protobuf reflection steps applied to some root protobuf message value to arrive at the current value. The first step must be a Root step.
type Step ¶
type Step struct {
// contains filtered or unexported fields
}
Step is a union where only one step operation may be specified at a time. The different kinds of steps are specified by the constants defined for the StepKind type.
func AnyExpand ¶
func AnyExpand(md protoreflect.MessageDescriptor) Step
AnyExpand describes expansion of a google.protobuf.Any message into a structured representation of the underlying message.
Within the context of Values, the type of the previous step value is always a google.protobuf.Any message, and the type of the current step value is always a message.
func FieldAccess ¶
func FieldAccess(fd protoreflect.FieldDescriptor) Step
FieldAccess describes access of a field within a message. Extension field accesses are also represented using a FieldAccess and must be provided with a protoreflect.FieldDescriptor
Within the context of Values, the type of the previous step value is always a message, and the type of the current step value is determined by the field descriptor.
func ListIndex ¶
ListIndex describes index of an element within a list.
Within the context of Values, the type of the previous, previous step value is always a message, the type of the previous step value is always a list, and the type of the current step value is determined by the field descriptor.
func MapIndex ¶
func MapIndex(k protoreflect.MapKey) Step
MapIndex describes index of an entry within a map. The key type is determined by field descriptor that the map belongs to.
Within the context of Values, the type of the previous previous step value is always a message, the type of the previous step value is always a map, and the type of the current step value is determined by the field descriptor.
func Root ¶
func Root(md protoreflect.MessageDescriptor) Step
Root indicates the root message that a path is relative to. It should always (and only ever) be the first step in a path.
func UnknownAccess ¶
func UnknownAccess() Step
UnknownAccess describes access to the unknown fields within a message.
Within the context of Values, the type of the previous step value is always a message, and the type of the current step value is always a bytes type.
func (Step) FieldDescriptor ¶
func (s Step) FieldDescriptor() protoreflect.FieldDescriptor
FieldDescriptor returns the field descriptor for FieldAccess steps, otherwise it returns nil.
func (Step) ListIndex ¶
ListIndex returns the list index for ListIndex steps, otherwise it returns 0.
func (Step) MapIndex ¶
func (s Step) MapIndex() protoreflect.MapKey
MapIndex returns the map key for MapIndex steps, otherwise it returns an invalid map key.
func (Step) MessageDescriptor ¶
func (s Step) MessageDescriptor() protoreflect.MessageDescriptor
MessageDescriptor returns the message descriptor for Root or AnyExpand steps, otherwise it returns nil.
type StepKind ¶
type StepKind int
StepKind identifies the kind of step operation. Each kind of step corresponds with some protobuf reflection operation.
const ( // RootStep identifies a step as the Root step operation. RootStep StepKind // FieldAccessStep identifies a step as the FieldAccess step operation. FieldAccessStep // UnknownAccessStep identifies a step as the UnknownAccess step operation. UnknownAccessStep // ListIndexStep identifies a step as the ListIndex step operation. ListIndexStep // MapIndexStep identifies a step as the MapIndex step operation. MapIndexStep // AnyExpandStep identifies a step as the AnyExpand step operation. AnyExpandStep )
type Values ¶
type Values struct { Path Path Values []protoreflect.Value }
Values is a Path paired with a sequence of values at each step. The lengths of Path and Values must be identical. The first step must be a Root step and the first value must be a concrete message value.
func (Values) Index ¶
func (p Values) Index(i int) (out struct { Step Step Value protoreflect.Value })
Index returns the ith step and value and supports negative indexing. A negative index starts counting from the tail of the Values such that -1 refers to the last pair, -2 refers to the second-to-last pair, and so on.