protoc-gen-go-micro/examples/js-grpc/templates/{{.File.Package}}/{{.File.Package}}_grpc_js.js.tmpl

58 lines
2.2 KiB
Cheetah
Raw Normal View History

2017-01-05 20:06:24 +03:00
// @flow
2016-12-13 21:10:02 +03:00
// GENERATED CODE -- DO NOT EDIT!
2016-12-16 18:24:05 +03:00
{{$Package:=.File.Package}}
2017-01-05 20:06:24 +03:00
import grpc from 'grpc'
import pbFile from './pbFile.js'
2017-01-05 20:26:35 +03:00
{{range .File.EnumType}}type {{.Name}} = {{range .Value}}
2017-01-05 20:06:24 +03:00
| '{{.Name}}'{{end}}
;{{end}}
{{range .File.MessageType}}
2017-01-05 20:26:35 +03:00
type {{.Name}} = {|{{range .Field}}
2017-01-05 20:06:24 +03:00
{{.Name}}?: {{. | jsType}};{{end}}{{range .EnumType}}
{{.Name}}?:{{range .Value}}
| '{{.Name}}'{{end}}
;{{end}}
|};
{{end}}
{{range .File.Service}}{{range .Method}}
2017-01-05 20:06:24 +03:00
function serialize_{{$Package}}_{{.InputType | shortType}}(arg: {{.InputType | shortType}}) {
if (!(arg instanceof pbFile.{{.InputType | shortType}})) {
throw new Error('Expected argument of type {{.InputType | shortType}}')
}
2017-01-05 20:06:24 +03:00
return new Buffer(arg.serializeBinary())
2016-12-13 21:10:02 +03:00
}
2017-01-05 20:06:24 +03:00
function deserialize_{{$Package}}_{{.InputType | shortType}}(buffer_arg: Array<number>) {
return pbFile.{{.InputType | shortType}}.deserializeBinary(new Uint8Array(buffer_arg))
2016-12-13 21:10:02 +03:00
}
2017-01-05 20:06:24 +03:00
function serialize_{{$Package}}_{{.OutputType | shortType}}(arg: {{.OutputType | shortType}}) {
if (!(arg instanceof pbFile.{{.OutputType | shortType}})) {
throw new Error('Expected argument of type {{.OutputType | shortType}}')
}
2017-01-05 20:06:24 +03:00
return new Buffer(arg.serializeBinary())
2016-12-13 21:10:02 +03:00
}
2017-01-05 20:06:24 +03:00
function deserialize_{{$Package}}_{{.OutputType | shortType}}(buffer_arg: Array<number>) {
return pbFile.{{.OutputType | shortType}}.deserializeBinary(new Uint8Array(buffer_arg))
2016-12-20 13:31:46 +03:00
}
{{end}}{{end}}
{{range .File.Service}}
2017-01-05 20:06:24 +03:00
export const {{.Name}}Service = {
2016-12-20 13:31:46 +03:00
{{$serviceName:=.Name}}
{{range .Method}}{{.Name | lowerCamelCase}}: {
path: '/{{$Package}}.{{$serviceName}}/{{.Name}}',
requestStream: {{.ClientStreaming | default "false"}},
responseStream: {{.ServerStreaming | default "false"}},
2017-01-05 20:06:24 +03:00
requestType: pbFile.{{.InputType | shortType}},
responseType: pbFile.{{.OutputType | shortType}},
requestSerialize: serialize_{{$Package}}_{{.InputType | shortType}},
requestDeserialize: deserialize_{{$Package}}_{{.InputType | shortType}},
responseSerialize: serialize_{{$Package}}_{{.OutputType | shortType}},
responseDeserialize: deserialize_{{$Package}}_{{.OutputType | shortType}},
2016-12-20 13:31:46 +03:00
},
{{end}}
}
2017-01-05 20:06:24 +03:00
export const {{.Name}}Client = grpc.makeGenericClientConstructor({{.Name}}Service){{end}}