forked from stackb/rules_proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotoc-gen-grpc-gateway.go
56 lines (48 loc) · 1.42 KB
/
protoc-gen-grpc-gateway.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
package grpcgateway
import (
"path"
"github.com/bazelbuild/bazel-gazelle/label"
"github.com/stackb/rules_proto/pkg/protoc"
)
func init() {
protoc.Plugins().MustRegisterPlugin(&protocGenGrpcGatewayPlugin{})
}
// protocGenGrpcGatewayPlugin implements Plugin for protoc-gen-grpc-gateway.
type protocGenGrpcGatewayPlugin struct{}
// Name implements part of the Plugin interface.
func (p *protocGenGrpcGatewayPlugin) Name() string {
return "grpc-ecosystem:grpc-gateway:protoc-gen-grpc-gateway"
}
// Configure implements part of the Plugin interface.
func (p *protocGenGrpcGatewayPlugin) Configure(ctx *protoc.PluginContext) *protoc.PluginConfiguration {
if !p.shouldApply(ctx.ProtoLibrary) {
return nil
}
return &protoc.PluginConfiguration{
Label: label.New("build_stack_rules_proto", "plugin/grpc-ecosystem/grpc-gateway", "protoc-gen-grpc-gateway"),
Outputs: p.outputs(ctx.Rel, ctx.ProtoLibrary),
Options: ctx.PluginConfig.GetOptions(),
}
}
func (p *protocGenGrpcGatewayPlugin) shouldApply(lib protoc.ProtoLibrary) bool {
for _, f := range lib.Files() {
if f.HasServices() {
return true
}
}
return false
}
func (p *protocGenGrpcGatewayPlugin) outputs(rel string, lib protoc.ProtoLibrary) []string {
srcs := make([]string, 0)
for _, f := range lib.Files() {
if !f.HasServices() {
continue
}
base := f.Name
if rel != "" {
base = path.Join(rel, base)
}
srcs = append(srcs, base+".pb.gw.go")
}
return srcs
}