Generate typesafe typescript and go clients, examples (#194)

This commit is contained in:
Janos Dobronszki
2021-09-09 13:28:12 +01:00
committed by GitHub
parent 5626af3a45
commit 528b1e1c69
28 changed files with 1806 additions and 191 deletions

View File

@@ -10,7 +10,7 @@ import (
type Sentiment struct{}
func (e *Sentiment) Analyze(ctx context.Context, req *pb.Request, rsp *pb.Response) error {
func (e *Sentiment) Analyze(ctx context.Context, req *pb.AnalyzeRequest, rsp *pb.AnalyzeResponse) error {
if len(req.Text) == 0 {
return errors.BadRequest("sentiment.analyze", "text is blank")
}

View File

@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.15.6
// protoc v3.6.1
// source: proto/sentiment.proto
package sentiment
@@ -21,7 +21,7 @@ const (
)
// Analyze and score a piece of text
type Request struct {
type AnalyzeRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -32,8 +32,8 @@ type Request struct {
Lang string `protobuf:"bytes,2,opt,name=lang,proto3" json:"lang,omitempty"`
}
func (x *Request) Reset() {
*x = Request{}
func (x *AnalyzeRequest) Reset() {
*x = AnalyzeRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_sentiment_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -41,13 +41,13 @@ func (x *Request) Reset() {
}
}
func (x *Request) String() string {
func (x *AnalyzeRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Request) ProtoMessage() {}
func (*AnalyzeRequest) ProtoMessage() {}
func (x *Request) ProtoReflect() protoreflect.Message {
func (x *AnalyzeRequest) ProtoReflect() protoreflect.Message {
mi := &file_proto_sentiment_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -59,36 +59,36 @@ func (x *Request) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
// Deprecated: Use Request.ProtoReflect.Descriptor instead.
func (*Request) Descriptor() ([]byte, []int) {
// Deprecated: Use AnalyzeRequest.ProtoReflect.Descriptor instead.
func (*AnalyzeRequest) Descriptor() ([]byte, []int) {
return file_proto_sentiment_proto_rawDescGZIP(), []int{0}
}
func (x *Request) GetText() string {
func (x *AnalyzeRequest) GetText() string {
if x != nil {
return x.Text
}
return ""
}
func (x *Request) GetLang() string {
func (x *AnalyzeRequest) GetLang() string {
if x != nil {
return x.Lang
}
return ""
}
type Response struct {
type AnalyzeResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// The score of the text
// The score of the text {positive is 1, negative is 0}
Score float64 `protobuf:"fixed64,1,opt,name=score,proto3" json:"score,omitempty"`
}
func (x *Response) Reset() {
*x = Response{}
func (x *AnalyzeResponse) Reset() {
*x = AnalyzeResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_proto_sentiment_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -96,13 +96,13 @@ func (x *Response) Reset() {
}
}
func (x *Response) String() string {
func (x *AnalyzeResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Response) ProtoMessage() {}
func (*AnalyzeResponse) ProtoMessage() {}
func (x *Response) ProtoReflect() protoreflect.Message {
func (x *AnalyzeResponse) ProtoReflect() protoreflect.Message {
mi := &file_proto_sentiment_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
@@ -114,12 +114,12 @@ func (x *Response) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
// Deprecated: Use Response.ProtoReflect.Descriptor instead.
func (*Response) Descriptor() ([]byte, []int) {
// Deprecated: Use AnalyzeResponse.ProtoReflect.Descriptor instead.
func (*AnalyzeResponse) Descriptor() ([]byte, []int) {
return file_proto_sentiment_proto_rawDescGZIP(), []int{1}
}
func (x *Response) GetScore() float64 {
func (x *AnalyzeResponse) GetScore() float64 {
if x != nil {
return x.Score
}
@@ -131,18 +131,20 @@ var File_proto_sentiment_proto protoreflect.FileDescriptor
var file_proto_sentiment_proto_rawDesc = []byte{
0x0a, 0x15, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e,
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65,
0x6e, 0x74, 0x22, 0x31, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78,
0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x6e, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x04, 0x6c, 0x61, 0x6e, 0x67, 0x22, 0x20, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01,
0x52, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x41, 0x0a, 0x09, 0x53, 0x65, 0x6e, 0x74, 0x69,
0x6d, 0x65, 0x6e, 0x74, 0x12, 0x34, 0x0a, 0x07, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x12,
0x12, 0x2e, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x13, 0x5a, 0x11, 0x2e, 0x2f,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x3b, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
0x6e, 0x74, 0x22, 0x38, 0x0a, 0x0e, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x52, 0x65, 0x71,
0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x6e, 0x67,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x61, 0x6e, 0x67, 0x22, 0x27, 0x0a, 0x0f,
0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05,
0x73, 0x63, 0x6f, 0x72, 0x65, 0x32, 0x4f, 0x0a, 0x09, 0x53, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65,
0x6e, 0x74, 0x12, 0x42, 0x0a, 0x07, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x12, 0x19, 0x2e,
0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a,
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x73, 0x65, 0x6e, 0x74, 0x69,
0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x13, 0x5a, 0x11, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x3b, 0x73, 0x65, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
@@ -159,12 +161,12 @@ func file_proto_sentiment_proto_rawDescGZIP() []byte {
var file_proto_sentiment_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_proto_sentiment_proto_goTypes = []interface{}{
(*Request)(nil), // 0: sentiment.Request
(*Response)(nil), // 1: sentiment.Response
(*AnalyzeRequest)(nil), // 0: sentiment.AnalyzeRequest
(*AnalyzeResponse)(nil), // 1: sentiment.AnalyzeResponse
}
var file_proto_sentiment_proto_depIdxs = []int32{
0, // 0: sentiment.Sentiment.Analyze:input_type -> sentiment.Request
1, // 1: sentiment.Sentiment.Analyze:output_type -> sentiment.Response
0, // 0: sentiment.Sentiment.Analyze:input_type -> sentiment.AnalyzeRequest
1, // 1: sentiment.Sentiment.Analyze:output_type -> sentiment.AnalyzeResponse
1, // [1:2] is the sub-list for method output_type
0, // [0:1] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -179,7 +181,7 @@ func file_proto_sentiment_proto_init() {
}
if !protoimpl.UnsafeEnabled {
file_proto_sentiment_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Request); i {
switch v := v.(*AnalyzeRequest); i {
case 0:
return &v.state
case 1:
@@ -191,7 +193,7 @@ func file_proto_sentiment_proto_init() {
}
}
file_proto_sentiment_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Response); i {
switch v := v.(*AnalyzeResponse); i {
case 0:
return &v.state
case 1:

View File

@@ -42,7 +42,7 @@ func NewSentimentEndpoints() []*api.Endpoint {
// Client API for Sentiment service
type SentimentService interface {
Analyze(ctx context.Context, in *Request, opts ...client.CallOption) (*Response, error)
Analyze(ctx context.Context, in *AnalyzeRequest, opts ...client.CallOption) (*AnalyzeResponse, error)
}
type sentimentService struct {
@@ -57,9 +57,9 @@ func NewSentimentService(name string, c client.Client) SentimentService {
}
}
func (c *sentimentService) Analyze(ctx context.Context, in *Request, opts ...client.CallOption) (*Response, error) {
func (c *sentimentService) Analyze(ctx context.Context, in *AnalyzeRequest, opts ...client.CallOption) (*AnalyzeResponse, error) {
req := c.c.NewRequest(c.name, "Sentiment.Analyze", in)
out := new(Response)
out := new(AnalyzeResponse)
err := c.c.Call(ctx, req, out, opts...)
if err != nil {
return nil, err
@@ -70,12 +70,12 @@ func (c *sentimentService) Analyze(ctx context.Context, in *Request, opts ...cli
// Server API for Sentiment service
type SentimentHandler interface {
Analyze(context.Context, *Request, *Response) error
Analyze(context.Context, *AnalyzeRequest, *AnalyzeResponse) error
}
func RegisterSentimentHandler(s server.Server, hdlr SentimentHandler, opts ...server.HandlerOption) error {
type sentiment interface {
Analyze(ctx context.Context, in *Request, out *Response) error
Analyze(ctx context.Context, in *AnalyzeRequest, out *AnalyzeResponse) error
}
type Sentiment struct {
sentiment
@@ -88,6 +88,6 @@ type sentimentHandler struct {
SentimentHandler
}
func (h *sentimentHandler) Analyze(ctx context.Context, in *Request, out *Response) error {
func (h *sentimentHandler) Analyze(ctx context.Context, in *AnalyzeRequest, out *AnalyzeResponse) error {
return h.SentimentHandler.Analyze(ctx, in, out)
}

View File

@@ -5,18 +5,18 @@ package sentiment;
option go_package = "./proto;sentiment";
service Sentiment {
rpc Analyze(Request) returns (Response) {};
rpc Analyze(AnalyzeRequest) returns (AnalyzeResponse) {};
}
// Analyze and score a piece of text
message Request {
message AnalyzeRequest {
// The text to analyze
string text = 1;
// The language. Defaults to english.
string lang = 2;
}
message Response {
message AnalyzeResponse {
// The score of the text {positive is 1, negative is 0}
double score = 1;
}