-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
106 lines (84 loc) · 2.09 KB
/
main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package main
import (
"io"
"io/ioutil"
"os"
"strings"
"github.com/CrazyHulk/protoc-gen-swiftwirp/generator"
"github.com/gogo/protobuf/proto"
gogogen "github.com/gogo/protobuf/protoc-gen-gogo/generator"
plugin_go "github.com/gogo/protobuf/protoc-gen-gogo/plugin"
)
func main() {
//bs, err := ioutil.ReadFile("./activty.bs")
//if err != nil {
// return
//}
//req := readRequest(bytes.NewReader(bs))
req := readRequest(os.Stdin)
writeResponse(os.Stdout, generate(req))
}
func readRequest(r io.Reader) *plugin_go.CodeGeneratorRequest {
data, err := ioutil.ReadAll(r)
if err != nil {
panic(err)
}
//ioutil.WriteFile("activty.bs", data, 0644)
req := new(plugin_go.CodeGeneratorRequest)
if err = proto.Unmarshal(data, req); err != nil {
panic(err)
}
if len(req.FileToGenerate) == 0 {
panic(err)
}
return req
}
func generate(in *plugin_go.CodeGeneratorRequest) *plugin_go.CodeGeneratorResponse {
resp := &plugin_go.CodeGeneratorResponse{}
gen := gogogen.New()
gen.Request = in
gen.WrapTypes()
gen.SetPackageNames()
gen.BuildTypeNameMap()
for _, f := range in.GetProtoFile() {
// skip google/protobuf/timestamp, we don't do any special serialization for jsonpb.
if *f.Name == "google/protobuf/timestamp.proto" {
continue
}
// generate service only
if f.Service == nil {
continue
}
cf, err := generator.CreateClientAPI(f, gen)
if err != nil {
resp.Error = proto.String(err.Error())
return resp
}
resp.File = append(resp.File, cf)
}
//resp.File = append(resp.File, generator.RuntimeLibrary())
return resp
}
func writeResponse(w io.Writer, resp *plugin_go.CodeGeneratorResponse) {
data, err := proto.Marshal(resp)
if err != nil {
panic(err)
}
_, err = w.Write(data)
if err != nil {
}
//ioutil.WriteFile("activty.test.swift", data, 0644)
}
type Params map[string]string
func getParameters(in *plugin_go.CodeGeneratorRequest) Params {
params := make(Params)
if in.Parameter == nil {
return params
}
pairs := strings.Split(*in.Parameter, ",")
for _, pair := range pairs {
kv := strings.Split(pair, "=")
params[kv[0]] = kv[1]
}
return params
}