tangs b030ce89ca openbilibili | il y a 5 ans | |
---|---|---|
.. | ||
BUILD.bazel | il y a 5 ans | |
LICENSE | il y a 5 ans | |
Makefile | il y a 5 ans | |
README.md | il y a 5 ans | |
comment.go | il y a 5 ans | |
enum.go | il y a 5 ans | |
extensions.go | il y a 5 ans | |
field.go | il y a 5 ans | |
go.mod | il y a 5 ans | |
group.go | il y a 5 ans | |
import.go | il y a 5 ans | |
message.go | il y a 5 ans | |
oneof.go | il y a 5 ans | |
option.go | il y a 5 ans | |
package.go | il y a 5 ans | |
parser.go | il y a 5 ans | |
proto.go | il y a 5 ans | |
range.go | il y a 5 ans | |
reserved.go | il y a 5 ans | |
service.go | il y a 5 ans | |
syntax.go | il y a 5 ans | |
token.go | il y a 5 ans | |
visitor.go | il y a 5 ans | |
walk.go | il y a 5 ans |
Package in Go for parsing Google Protocol Buffers .proto files version 2 + 3
go get -u -v github.com/emicklei/proto
package main
import (
"fmt"
"os"
"github.com/emicklei/proto"
)
func main() {
reader, _ := os.Open("test.proto")
defer reader.Close()
parser := proto.NewParser(reader)
definition, _ := parser.Parse()
proto.Walk(definition,
proto.WithService(handleService),
proto.WithMessage(handleMessage))
}
func handleService(s *proto.Service) {
fmt.Println(s.Name)
}
func handleMessage(m *proto.Message) {
fmt.Println(m.Name)
}
See (https://github.com/emicklei/proto-contrib) for other contributions on top of this package such as protofmt, proto2xsd and proto2gql.
© 2017, ernestmicklei.com. MIT License. Contributions welcome.