155 lines
5.4 KiB
Go
155 lines
5.4 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.5.1
|
|
// - protoc v5.28.3
|
|
// source: test.proto
|
|
|
|
package helloworld
|
|
|
|
import (
|
|
context "context"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.64.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion9
|
|
|
|
const (
|
|
Test_Call_FullMethodName = "/helloworld.Test/Call"
|
|
Test_Stream_FullMethodName = "/helloworld.Test/Stream"
|
|
)
|
|
|
|
// TestClient is the client API for Test 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 TestClient interface {
|
|
Call(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
|
|
Stream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Request, Response], error)
|
|
}
|
|
|
|
type testClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewTestClient(cc grpc.ClientConnInterface) TestClient {
|
|
return &testClient{cc}
|
|
}
|
|
|
|
func (c *testClient) Call(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(Response)
|
|
err := c.cc.Invoke(ctx, Test_Call_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *testClient) Stream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Request, Response], error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
stream, err := c.cc.NewStream(ctx, &Test_ServiceDesc.Streams[0], Test_Stream_FullMethodName, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &grpc.GenericClientStream[Request, Response]{ClientStream: stream}
|
|
return x, nil
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type Test_StreamClient = grpc.BidiStreamingClient[Request, Response]
|
|
|
|
// TestServer is the server API for Test service.
|
|
// All implementations must embed UnimplementedTestServer
|
|
// for forward compatibility.
|
|
type TestServer interface {
|
|
Call(context.Context, *Request) (*Response, error)
|
|
Stream(grpc.BidiStreamingServer[Request, Response]) error
|
|
mustEmbedUnimplementedTestServer()
|
|
}
|
|
|
|
// UnimplementedTestServer must be embedded to have
|
|
// forward compatible implementations.
|
|
//
|
|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
// pointer dereference when methods are called.
|
|
type UnimplementedTestServer struct{}
|
|
|
|
func (UnimplementedTestServer) Call(context.Context, *Request) (*Response, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Call not implemented")
|
|
}
|
|
func (UnimplementedTestServer) Stream(grpc.BidiStreamingServer[Request, Response]) error {
|
|
return status.Errorf(codes.Unimplemented, "method Stream not implemented")
|
|
}
|
|
func (UnimplementedTestServer) mustEmbedUnimplementedTestServer() {}
|
|
func (UnimplementedTestServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeTestServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to TestServer will
|
|
// result in compilation errors.
|
|
type UnsafeTestServer interface {
|
|
mustEmbedUnimplementedTestServer()
|
|
}
|
|
|
|
func RegisterTestServer(s grpc.ServiceRegistrar, srv TestServer) {
|
|
// If the following call pancis, it indicates UnimplementedTestServer was
|
|
// embedded by pointer and is nil. This will cause panics if an
|
|
// unimplemented method is ever invoked, so we test this at initialization
|
|
// time to prevent it from happening at runtime later due to I/O.
|
|
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
t.testEmbeddedByValue()
|
|
}
|
|
s.RegisterService(&Test_ServiceDesc, srv)
|
|
}
|
|
|
|
func _Test_Call_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(Request)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(TestServer).Call(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Test_Call_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(TestServer).Call(ctx, req.(*Request))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Test_Stream_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(TestServer).Stream(&grpc.GenericServerStream[Request, Response]{ServerStream: stream})
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type Test_StreamServer = grpc.BidiStreamingServer[Request, Response]
|
|
|
|
// Test_ServiceDesc is the grpc.ServiceDesc for Test service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var Test_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "helloworld.Test",
|
|
HandlerType: (*TestServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Call",
|
|
Handler: _Test_Call_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Stream",
|
|
Handler: _Test_Stream_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "test.proto",
|
|
}
|