This is code generator for go-micro
First install protoc. You can do this with either your package manager, or directly by downloading protoc-$VERSION-$PLATFORM.zip
Then install protoc-gen-go
and protoc-gen-micro
.
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install github.com/go-micro/generator/cmd/protoc-gen-micro@latest
Also required:
Define your service as greeter.proto
syntax = "proto3";
package greeter;
option go_package = "/proto;greeter";
service Greeter {
rpc Hello(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}
Generate the code
protoc --proto_path=. --micro_out=. --go_out=. greeter.proto
Your output result should be:
./
greeter.proto # original protobuf file
greeter.pb.go # auto-generated by protoc-gen-go
greeter.micro.go # auto-generated by protoc-gen-micro
The micro generated code includes clients and handlers which reduce boiler plate code
Register the handler with your micro server
type Greeter struct{}
func (g *Greeter) Hello(ctx context.Context, req *proto.Request, rsp *proto.Response) error {
rsp.Msg = "Hello " + req.Name
return nil
}
proto.RegisterGreeterHandler(service.Server(), &Greeter{})
Create a service client with your micro client
client := proto.NewGreeterService("greeter", service.Client())
If you see an error about protoc-gen-micro
not being found or executable, it's likely your environment may not be configured correctly. If you've already installed protoc
, protoc-gen-go
, and protoc-gen-micro
ensure you've included $GOPATH/bin
in your PATH
.
Alternative specify the Go plugin paths as arguments to the protoc
command
protoc --plugin=protoc-gen-go=$GOPATH/bin/protoc-gen-go --plugin=protoc-gen-micro=$GOPATH/bin/protoc-gen-micro --proto_path=. --micro_out=. --go_out=. greeter.proto
protoc-gen-micro is a liberal reuse of protoc-gen-go hence we maintain the original license