160 lines
5.8 KiB
Go
160 lines
5.8 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.6.1
|
|
// - protoc (unknown)
|
|
// source: music_agregator/hello/v1/service.proto
|
|
|
|
package hello
|
|
|
|
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 (
|
|
HelloService_Ping_FullMethodName = "/music_agregator.hello.v1.HelloService/Ping"
|
|
HelloService_Echo_FullMethodName = "/music_agregator.hello.v1.HelloService/Echo"
|
|
)
|
|
|
|
// HelloServiceClient is the client API for HelloService 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 HelloServiceClient interface {
|
|
Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PongResponse, error)
|
|
Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoResponse, error)
|
|
}
|
|
|
|
type helloServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewHelloServiceClient(cc grpc.ClientConnInterface) HelloServiceClient {
|
|
return &helloServiceClient{cc}
|
|
}
|
|
|
|
func (c *helloServiceClient) Ping(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PongResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(PongResponse)
|
|
err := c.cc.Invoke(ctx, HelloService_Ping_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *helloServiceClient) Echo(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoResponse, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(EchoResponse)
|
|
err := c.cc.Invoke(ctx, HelloService_Echo_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// HelloServiceServer is the server API for HelloService service.
|
|
// All implementations must embed UnimplementedHelloServiceServer
|
|
// for forward compatibility.
|
|
type HelloServiceServer interface {
|
|
Ping(context.Context, *PingRequest) (*PongResponse, error)
|
|
Echo(context.Context, *EchoRequest) (*EchoResponse, error)
|
|
mustEmbedUnimplementedHelloServiceServer()
|
|
}
|
|
|
|
// UnimplementedHelloServiceServer 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 UnimplementedHelloServiceServer struct{}
|
|
|
|
func (UnimplementedHelloServiceServer) Ping(context.Context, *PingRequest) (*PongResponse, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Ping not implemented")
|
|
}
|
|
func (UnimplementedHelloServiceServer) Echo(context.Context, *EchoRequest) (*EchoResponse, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Echo not implemented")
|
|
}
|
|
func (UnimplementedHelloServiceServer) mustEmbedUnimplementedHelloServiceServer() {}
|
|
func (UnimplementedHelloServiceServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeHelloServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to HelloServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeHelloServiceServer interface {
|
|
mustEmbedUnimplementedHelloServiceServer()
|
|
}
|
|
|
|
func RegisterHelloServiceServer(s grpc.ServiceRegistrar, srv HelloServiceServer) {
|
|
// If the following call panics, it indicates UnimplementedHelloServiceServer 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(&HelloService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _HelloService_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(PingRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(HelloServiceServer).Ping(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: HelloService_Ping_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(HelloServiceServer).Ping(ctx, req.(*PingRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _HelloService_Echo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EchoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(HelloServiceServer).Echo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: HelloService_Echo_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(HelloServiceServer).Echo(ctx, req.(*EchoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// HelloService_ServiceDesc is the grpc.ServiceDesc for HelloService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var HelloService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "music_agregator.hello.v1.HelloService",
|
|
HandlerType: (*HelloServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Ping",
|
|
Handler: _HelloService_Ping_Handler,
|
|
},
|
|
{
|
|
MethodName: "Echo",
|
|
Handler: _HelloService_Echo_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "music_agregator/hello/v1/service.proto",
|
|
}
|