128 lines
4.2 KiB
Go
128 lines
4.2 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||
// versions:
|
||
// - protoc-gen-go-grpc v1.5.1
|
||
// - protoc (unknown)
|
||
// source: auth.proto
|
||
|
||
package mcs
|
||
|
||
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 (
|
||
Auth_Register_FullMethodName = "/mcs.Auth/Register"
|
||
)
|
||
|
||
// AuthClient is the client API for Auth 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.
|
||
//
|
||
// im auth service
|
||
type AuthClient interface {
|
||
// 将用户注册进IM系统,系统会自动分配它预链接的WS服务器
|
||
Register(ctx context.Context, in *McsRegisterRequest, opts ...grpc.CallOption) (*McsRegisterReply, error)
|
||
}
|
||
|
||
type authClient struct {
|
||
cc grpc.ClientConnInterface
|
||
}
|
||
|
||
func NewAuthClient(cc grpc.ClientConnInterface) AuthClient {
|
||
return &authClient{cc}
|
||
}
|
||
|
||
func (c *authClient) Register(ctx context.Context, in *McsRegisterRequest, opts ...grpc.CallOption) (*McsRegisterReply, error) {
|
||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||
out := new(McsRegisterReply)
|
||
err := c.cc.Invoke(ctx, Auth_Register_FullMethodName, in, out, cOpts...)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
return out, nil
|
||
}
|
||
|
||
// AuthServer is the server API for Auth service.
|
||
// All implementations must embed UnimplementedAuthServer
|
||
// for forward compatibility.
|
||
//
|
||
// im auth service
|
||
type AuthServer interface {
|
||
// 将用户注册进IM系统,系统会自动分配它预链接的WS服务器
|
||
Register(context.Context, *McsRegisterRequest) (*McsRegisterReply, error)
|
||
mustEmbedUnimplementedAuthServer()
|
||
}
|
||
|
||
// UnimplementedAuthServer 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 UnimplementedAuthServer struct{}
|
||
|
||
func (UnimplementedAuthServer) Register(context.Context, *McsRegisterRequest) (*McsRegisterReply, error) {
|
||
return nil, status.Errorf(codes.Unimplemented, "method Register not implemented")
|
||
}
|
||
func (UnimplementedAuthServer) mustEmbedUnimplementedAuthServer() {}
|
||
func (UnimplementedAuthServer) testEmbeddedByValue() {}
|
||
|
||
// UnsafeAuthServer may be embedded to opt out of forward compatibility for this service.
|
||
// Use of this interface is not recommended, as added methods to AuthServer will
|
||
// result in compilation errors.
|
||
type UnsafeAuthServer interface {
|
||
mustEmbedUnimplementedAuthServer()
|
||
}
|
||
|
||
func RegisterAuthServer(s grpc.ServiceRegistrar, srv AuthServer) {
|
||
// If the following call pancis, it indicates UnimplementedAuthServer 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(&Auth_ServiceDesc, srv)
|
||
}
|
||
|
||
func _Auth_Register_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
in := new(McsRegisterRequest)
|
||
if err := dec(in); err != nil {
|
||
return nil, err
|
||
}
|
||
if interceptor == nil {
|
||
return srv.(AuthServer).Register(ctx, in)
|
||
}
|
||
info := &grpc.UnaryServerInfo{
|
||
Server: srv,
|
||
FullMethod: Auth_Register_FullMethodName,
|
||
}
|
||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
return srv.(AuthServer).Register(ctx, req.(*McsRegisterRequest))
|
||
}
|
||
return interceptor(ctx, in, info, handler)
|
||
}
|
||
|
||
// Auth_ServiceDesc is the grpc.ServiceDesc for Auth service.
|
||
// It's only intended for direct use with grpc.RegisterService,
|
||
// and not to be introspected or modified (even as a copy)
|
||
var Auth_ServiceDesc = grpc.ServiceDesc{
|
||
ServiceName: "mcs.Auth",
|
||
HandlerType: (*AuthServer)(nil),
|
||
Methods: []grpc.MethodDesc{
|
||
{
|
||
MethodName: "Register",
|
||
Handler: _Auth_Register_Handler,
|
||
},
|
||
},
|
||
Streams: []grpc.StreamDesc{},
|
||
Metadata: "auth.proto",
|
||
}
|