mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
189 lines
5.9 KiB
Go
189 lines
5.9 KiB
Go
// protoc --gofast_out=plugins=grpc:. \
|
|
// protocol/user/*.proto \
|
|
// -I/Users/john/Workspace/Go/GOPATH/src
|
|
|
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.3.0
|
|
// - protoc v3.21.12
|
|
// source: user.proto
|
|
|
|
package user
|
|
|
|
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.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
const (
|
|
User_Insert_FullMethodName = "/user.User/Insert"
|
|
User_Query_FullMethodName = "/user.User/Query"
|
|
User_Delete_FullMethodName = "/user.User/Delete"
|
|
)
|
|
|
|
// UserClient is the client API for User 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 UserClient interface {
|
|
Insert(ctx context.Context, in *InsertReq, opts ...grpc.CallOption) (*InsertRes, error)
|
|
Query(ctx context.Context, in *QueryReq, opts ...grpc.CallOption) (*QueryRes, error)
|
|
Delete(ctx context.Context, in *DeleteReq, opts ...grpc.CallOption) (*DeleteRes, error)
|
|
}
|
|
|
|
type userClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewUserClient(cc grpc.ClientConnInterface) UserClient {
|
|
return &userClient{cc}
|
|
}
|
|
|
|
func (c *userClient) Insert(ctx context.Context, in *InsertReq, opts ...grpc.CallOption) (*InsertRes, error) {
|
|
out := new(InsertRes)
|
|
err := c.cc.Invoke(ctx, User_Insert_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *userClient) Query(ctx context.Context, in *QueryReq, opts ...grpc.CallOption) (*QueryRes, error) {
|
|
out := new(QueryRes)
|
|
err := c.cc.Invoke(ctx, User_Query_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *userClient) Delete(ctx context.Context, in *DeleteReq, opts ...grpc.CallOption) (*DeleteRes, error) {
|
|
out := new(DeleteRes)
|
|
err := c.cc.Invoke(ctx, User_Delete_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// UserServer is the server API for User service.
|
|
// All implementations must embed UnimplementedUserServer
|
|
// for forward compatibility
|
|
type UserServer interface {
|
|
Insert(context.Context, *InsertReq) (*InsertRes, error)
|
|
Query(context.Context, *QueryReq) (*QueryRes, error)
|
|
Delete(context.Context, *DeleteReq) (*DeleteRes, error)
|
|
mustEmbedUnimplementedUserServer()
|
|
}
|
|
|
|
// UnimplementedUserServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedUserServer struct {
|
|
}
|
|
|
|
func (UnimplementedUserServer) Insert(context.Context, *InsertReq) (*InsertRes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Insert not implemented")
|
|
}
|
|
func (UnimplementedUserServer) Query(context.Context, *QueryReq) (*QueryRes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Query not implemented")
|
|
}
|
|
func (UnimplementedUserServer) Delete(context.Context, *DeleteReq) (*DeleteRes, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Delete not implemented")
|
|
}
|
|
func (UnimplementedUserServer) mustEmbedUnimplementedUserServer() {}
|
|
|
|
// UnsafeUserServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to UserServer will
|
|
// result in compilation errors.
|
|
type UnsafeUserServer interface {
|
|
mustEmbedUnimplementedUserServer()
|
|
}
|
|
|
|
func RegisterUserServer(s grpc.ServiceRegistrar, srv UserServer) {
|
|
s.RegisterService(&User_ServiceDesc, srv)
|
|
}
|
|
|
|
func _User_Insert_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(InsertReq)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(UserServer).Insert(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: User_Insert_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(UserServer).Insert(ctx, req.(*InsertReq))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _User_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(QueryReq)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(UserServer).Query(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: User_Query_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(UserServer).Query(ctx, req.(*QueryReq))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _User_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DeleteReq)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(UserServer).Delete(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: User_Delete_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(UserServer).Delete(ctx, req.(*DeleteReq))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// User_ServiceDesc is the grpc.ServiceDesc for User service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var User_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "user.User",
|
|
HandlerType: (*UserServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Insert",
|
|
Handler: _User_Insert_Handler,
|
|
},
|
|
{
|
|
MethodName: "Query",
|
|
Handler: _User_Query_Handler,
|
|
},
|
|
{
|
|
MethodName: "Delete",
|
|
Handler: _User_Delete_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "user.proto",
|
|
}
|