-
Notifications
You must be signed in to change notification settings - Fork 9
/
lookup.go
68 lines (54 loc) · 1.34 KB
/
lookup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package protos
import (
dpb "github.com/golang/protobuf/protoc-gen-go/descriptor"
"google.golang.org/protobuf/reflect/protoreflect"
)
func LookupDescriptorProto(src *FileDescriptorSetAndDeps, typename string) (*dpb.FileDescriptorProto, *dpb.DescriptorProto) {
if len(typename) == 0 {
return nil, nil
}
if typename[0] == '.' {
typename = typename[1:]
}
t := protoreflect.FullName(typename)
parent := t.Parent()
name := t.Name()
for _, p := range src.File {
if p.GetPackage() != string(parent) {
continue
}
for _, msg := range p.GetMessageType() {
if msg.GetName() != string(name) {
continue
}
return p, msg
}
}
return nil, nil
}
func LookupEnumDescriptorProto(src *FileDescriptorSetAndDeps, typename string) *dpb.EnumDescriptorProto {
if len(typename) == 0 {
return nil
}
if typename[0] == '.' {
typename = typename[1:]
}
t := protoreflect.FullName(typename)
parent := t.Parent()
name := t.Name()
for _, p := range src.File {
if p.GetPackage() != string(parent) {
continue
}
for _, msg := range p.GetEnumType() {
if msg.GetName() != string(name) {
continue
}
return msg
}
}
return nil
}