本文整理汇总了Golang中github.com/golang/protobuf/protoc-gen-go/descriptor.FileDescriptorProto.GetService方法的典型用法代码示例。如果您正苦于以下问题:Golang FileDescriptorProto.GetService方法的具体用法?Golang FileDescriptorProto.GetService怎么用?Golang FileDescriptorProto.GetService使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/golang/protobuf/protoc-gen-go/descriptor.FileDescriptorProto
的用法示例。
在下文中一共展示了FileDescriptorProto.GetService方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: fillTreeWithFile
func fillTreeWithFile(tree *tree, file *descriptor.FileDescriptorProto) {
key := fmt.Sprintf(".%s", file.GetPackage())
locs := make(map[string]*descriptor.SourceCodeInfo_Location)
for _, loc := range file.GetSourceCodeInfo().GetLocation() {
if loc.LeadingComments == nil {
continue
}
var p []string
for _, n := range loc.Path {
p = append(p, strconv.Itoa(int(n)))
}
locs[strings.Join(p, ",")] = loc
}
// Messages
for idx, proto := range file.GetMessageType() {
fillTreeWithMessage(tree, key, proto, fmt.Sprintf("4,%d", idx), locs)
}
// Enums
for idx, proto := range file.GetEnumType() {
fillTreeWithEnum(tree, key, proto, fmt.Sprintf("5,%d", idx), locs)
}
// Services
for idx, proto := range file.GetService() {
fillTreeWithService(tree, key, proto, fmt.Sprintf("6,%d", idx), locs)
}
}
示例2: LintProtoFile
// LintProtoFile takes a file name, proto file description, and a file.
// It checks the file for errors and writes them to the output file
func LintProtoFile(
protoFile *descriptor.FileDescriptorProto,
outFile io.WriteCloser,
) (int, error) {
var (
errors = protoBufErrors{}
protoSource = protoFile.GetSourceCodeInfo()
)
for i, v := range protoFile.GetMessageType() {
errors.lintProtoMessage(int32(i), pathMessage, []int32{}, v)
}
for i, v := range protoFile.GetEnumType() {
errors.lintProtoEnumType(int32(i), pathEnumType, []int32{}, v)
}
for i, v := range protoFile.GetService() {
errors.lintProtoService(int32(i), v)
}
for _, v := range errors {
line, col := v.getSourceLineNumber(protoSource)
fmt.Fprintf(
outFile,
"%s:%d:%d: '%s' - %s\n",
*protoFile.Name,
line,
col,
v.errorString,
linterErrors[v.errorCode],
)
}
return len(errors), nil
}