tools/dubbogo-cli/generator/application/api.go (462 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package application const ( apiProtoFile = `// EDIT IT, change to your package, service and message syntax = "proto3"; package api; option go_package = "./;api"; // The greeting service definition. service Greeter { // Sends a greeting rpc SayHello (HelloRequest) returns (User) {} // Sends a greeting via stream rpc SayHelloStream (stream HelloRequest) returns (stream User) {} } // The request message containing the user's name. message HelloRequest { string name = 1; } // The response message containing the greetings message User { string name = 1; string id = 2; int32 age = 3; }` apiPBGoFile = `// EDIT IT, change to your package, service and message // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.26.0 // protoc v3.14.0 // source: api/api.proto package api import ( reflect "reflect" sync "sync" ) import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) // The request message containing the user's name. type HelloRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Name string ` + "`" + `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + "`" + ` } func (x *HelloRequest) Reset() { *x = HelloRequest{} if protoimpl.UnsafeEnabled { mi := &file_api_api_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *HelloRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*HelloRequest) ProtoMessage() {} func (x *HelloRequest) ProtoReflect() protoreflect.Message { mi := &file_api_api_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use HelloRequest.ProtoReflect.Descriptor instead. func (*HelloRequest) Descriptor() ([]byte, []int) { return file_api_api_proto_rawDescGZIP(), []int{0} } func (x *HelloRequest) GetName() string { if x != nil { return x.Name } return "" } // The response message containing the greetings type User struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Name string ` + "`" + `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + "`" + ` Id string ` + "`" + `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + "`" + ` Age int32 ` + "`" + `protobuf:"varint,3,opt,name=age,proto3" json:"age,omitempty"` + "`" + ` } func (x *User) Reset() { *x = User{} if protoimpl.UnsafeEnabled { mi := &file_api_api_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *User) String() string { return protoimpl.X.MessageStringOf(x) } func (*User) ProtoMessage() {} func (x *User) ProtoReflect() protoreflect.Message { mi := &file_api_api_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use User.ProtoReflect.Descriptor instead. func (*User) Descriptor() ([]byte, []int) { return file_api_api_proto_rawDescGZIP(), []int{1} } func (x *User) GetName() string { if x != nil { return x.Name } return "" } func (x *User) GetId() string { if x != nil { return x.Id } return "" } func (x *User) GetAge() int32 { if x != nil { return x.Age } return 0 } var File_api_api_proto protoreflect.FileDescriptor var file_api_api_proto_rawDesc = []byte{ 0x0a, 0x0d, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x03, 0x61, 0x70, 0x69, 0x22, 0x22, 0x0a, 0x0c, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3c, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x32, 0x6b, 0x0a, 0x07, 0x47, 0x72, 0x65, 0x65, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x08, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x12, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x09, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x00, 0x12, 0x34, 0x0a, 0x0e, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x09, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_api_api_proto_rawDescOnce sync.Once file_api_api_proto_rawDescData = file_api_api_proto_rawDesc ) func file_api_api_proto_rawDescGZIP() []byte { file_api_api_proto_rawDescOnce.Do(func() { file_api_api_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_api_proto_rawDescData) }) return file_api_api_proto_rawDescData } var file_api_api_proto_msgTypes = make([]protoimpl.MessageInfo, 2) var file_api_api_proto_goTypes = []any{ (*HelloRequest)(nil), // 0: api.HelloRequest (*User)(nil), // 1: api.User } var file_api_api_proto_depIdxs = []int32{ 0, // 0: api.Greeter.SayHello:input_type -> api.HelloRequest 0, // 1: api.Greeter.SayHelloStream:input_type -> api.HelloRequest 1, // 2: api.Greeter.SayHello:output_type -> api.User 1, // 3: api.Greeter.SayHelloStream:output_type -> api.User 2, // [2:4] is the sub-list for method output_type 0, // [0:2] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name 0, // [0:0] is the sub-list for extension extendee 0, // [0:0] is the sub-list for field type_name } func init() { file_api_api_proto_init() } func file_api_api_proto_init() { if File_api_api_proto != nil { return } if !protoimpl.UnsafeEnabled { file_api_api_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*HelloRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_api_api_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*User); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_api_api_proto_rawDesc, NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, GoTypes: file_api_api_proto_goTypes, DependencyIndexes: file_api_api_proto_depIdxs, MessageInfos: file_api_api_proto_msgTypes, }.Build() File_api_api_proto = out.File file_api_api_proto_rawDesc = nil file_api_api_proto_goTypes = nil file_api_api_proto_depIdxs = nil } ` apiTriplePBGoFile = `// Code generated by protoc-gen-go-triple. DO NOT EDIT. // versions: // - protoc-gen-go-triple v1.0.8 // - protoc v3.14.0 // source: api/api.proto package api import ( context "context" fmt "fmt" ) import ( constant1 "dubbo.apache.org/dubbo-go/v3/common/constant" protocol "dubbo.apache.org/dubbo-go/v3/protocol" dubbo3 "dubbo.apache.org/dubbo-go/v3/protocol/dubbo3" invocation "dubbo.apache.org/dubbo-go/v3/protocol/invocation" grpc_go "github.com/dubbogo/grpc-go" codes "github.com/dubbogo/grpc-go/codes" metadata "github.com/dubbogo/grpc-go/metadata" status "github.com/dubbogo/grpc-go/status" common "github.com/dubbogo/triple/pkg/common" constant "github.com/dubbogo/triple/pkg/common/constant" triple "github.com/dubbogo/triple/pkg/triple" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. const _ = grpc_go.SupportPackageIsVersion7 // GreeterClient is the client API for Greeter service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. type GreeterClient interface { // Sends a greeting SayHello(ctx context.Context, in *HelloRequest, opts ...grpc_go.CallOption) (*User, common.ErrorWithAttachment) // Sends a greeting via stream SayHelloStream(ctx context.Context, opts ...grpc_go.CallOption) (Greeter_SayHelloStreamClient, error) } type greeterClient struct { cc *triple.TripleConn } type GreeterClientImpl struct { SayHello func(ctx context.Context, in *HelloRequest) (*User, error) SayHelloStream func(ctx context.Context) (Greeter_SayHelloStreamClient, error) } func (c *GreeterClientImpl) GetDubboStub(cc *triple.TripleConn) GreeterClient { return NewGreeterClient(cc) } func (c *GreeterClientImpl) XXX_InterfaceName() string { return "api.Greeter" } func NewGreeterClient(cc *triple.TripleConn) GreeterClient { return &greeterClient{cc} } func (c *greeterClient) SayHello(ctx context.Context, in *HelloRequest, opts ...grpc_go.CallOption) (*User, common.ErrorWithAttachment) { out := new(User) interfaceKey := ctx.Value(constant.InterfaceKey).(string) return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/SayHello", in, out) } func (c *greeterClient) SayHelloStream(ctx context.Context, opts ...grpc_go.CallOption) (Greeter_SayHelloStreamClient, error) { interfaceKey := ctx.Value(constant.InterfaceKey).(string) stream, err := c.cc.NewStream(ctx, "/"+interfaceKey+"/SayHelloStream", opts...) if err != nil { return nil, err } x := &greeterSayHelloStreamClient{stream} return x, nil } type Greeter_SayHelloStreamClient interface { Send(*HelloRequest) error Recv() (*User, error) grpc_go.ClientStream } type greeterSayHelloStreamClient struct { grpc_go.ClientStream } func (x *greeterSayHelloStreamClient) Send(m *HelloRequest) error { return x.ClientStream.SendMsg(m) } func (x *greeterSayHelloStreamClient) Recv() (*User, error) { m := new(User) if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err } return m, nil } // GreeterServer is the server API for Greeter service. // All implementations must embed UnimplementedGreeterServer // for forward compatibility type GreeterServer interface { // Sends a greeting SayHello(context.Context, *HelloRequest) (*User, error) // Sends a greeting via stream SayHelloStream(Greeter_SayHelloStreamServer) error mustEmbedUnimplementedGreeterServer() } // UnimplementedGreeterServer must be embedded to have forward compatible implementations. type UnimplementedGreeterServer struct { proxyImpl protocol.Invoker } func (UnimplementedGreeterServer) SayHello(context.Context, *HelloRequest) (*User, error) { return nil, status.Errorf(codes.Unimplemented, "method SayHello not implemented") } func (UnimplementedGreeterServer) SayHelloStream(Greeter_SayHelloStreamServer) error { return status.Errorf(codes.Unimplemented, "method SayHelloStream not implemented") } func (s *UnimplementedGreeterServer) XXX_SetProxyImpl(impl protocol.Invoker) { s.proxyImpl = impl } func (s *UnimplementedGreeterServer) XXX_GetProxyImpl() protocol.Invoker { return s.proxyImpl } func (s *UnimplementedGreeterServer) XXX_ServiceDesc() *grpc_go.ServiceDesc { return &Greeter_ServiceDesc } func (s *UnimplementedGreeterServer) XXX_InterfaceName() string { return "api.Greeter" } func (UnimplementedGreeterServer) mustEmbedUnimplementedGreeterServer() {} // UnsafeGreeterServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to GreeterServer will // result in compilation errors. type UnsafeGreeterServer interface { mustEmbedUnimplementedGreeterServer() } func RegisterGreeterServer(s grpc_go.ServiceRegistrar, srv GreeterServer) { s.RegisterService(&Greeter_ServiceDesc, srv) } func _Greeter_SayHello_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc_go.UnaryServerInterceptor) (any, error) { in := new(HelloRequest) if err := dec(in); err != nil { return nil, err } base := srv.(dubbo3.Dubbo3GrpcService) args := []any{} args = append(args, in) md, _ := metadata.FromIncomingContext(ctx) invAttachment := make(map[string]any, len(md)) for k, v := range md { invAttachment[k] = v } invo := invocation.NewRPCInvocation("SayHello", args, invAttachment) if interceptor == nil { result := base.XXX_GetProxyImpl().Invoke(ctx, invo) return result, result.Error() } info := &grpc_go.UnaryServerInfo{ Server: srv, FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string), } handler := func(ctx context.Context, req any) (any, error) { result := base.XXX_GetProxyImpl().Invoke(ctx, invo) return result, result.Error() } return interceptor(ctx, in, info, handler) } func _Greeter_SayHelloStream_Handler(srv any, stream grpc_go.ServerStream) error { _, ok := srv.(dubbo3.Dubbo3GrpcService) ctx := stream.Context() md, _ := metadata.FromIncomingContext(ctx) invAttachment := make(map[string]any, len(md)) for k, v := range md { invAttachment[k] = v } stream.(grpc_go.CtxSetterStream).SetContext(context.WithValue(ctx, constant1.AttachmentKey, invAttachment)) invo := invocation.NewRPCInvocation("SayHelloStream", nil, nil) if !ok { fmt.Println(invo) return nil } return srv.(GreeterServer).SayHelloStream(&greeterSayHelloStreamServer{stream}) } type Greeter_SayHelloStreamServer interface { Send(*User) error Recv() (*HelloRequest, error) grpc_go.ServerStream } type greeterSayHelloStreamServer struct { grpc_go.ServerStream } func (x *greeterSayHelloStreamServer) Send(m *User) error { return x.ServerStream.SendMsg(m) } func (x *greeterSayHelloStreamServer) Recv() (*HelloRequest, error) { m := new(HelloRequest) if err := x.ServerStream.RecvMsg(m); err != nil { return nil, err } return m, nil } // Greeter_ServiceDesc is the grpc_go.ServiceDesc for Greeter service. // It's only intended for direct use with grpc_go.RegisterService, // and not to be introspected or modified (even as a copy) var Greeter_ServiceDesc = grpc_go.ServiceDesc{ ServiceName: "api.Greeter", HandlerType: (*GreeterServer)(nil), Methods: []grpc_go.MethodDesc{ { MethodName: "SayHello", Handler: _Greeter_SayHello_Handler, }, }, Streams: []grpc_go.StreamDesc{ { StreamName: "SayHelloStream", Handler: _Greeter_SayHelloStream_Handler, ServerStreams: true, ClientStreams: true, }, }, Metadata: "api/api.proto", } ` ) func init() { fileMap["apiProtoFile"] = &fileGenerator{ path: "./api", file: "api.proto", context: apiProtoFile, } fileMap["apiPBGoFile"] = &fileGenerator{ path: "./api", file: "api.pb.go", context: apiPBGoFile, } fileMap["apiTriplePBGoFile"] = &fileGenerator{ path: "./api", file: "api_triple.pb.go", context: apiTriplePBGoFile, } }