mirror of
				https://github.com/langhuihui/monibuca.git
				synced 2025-10-31 05:26:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			238 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			238 lines
		
	
	
		
			8.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 | |
| // versions:
 | |
| // - protoc-gen-go-grpc v1.5.1
 | |
| // - protoc             v3.21.12
 | |
| // source: transcode.proto
 | |
| 
 | |
| package pb
 | |
| 
 | |
| import (
 | |
| 	context "context"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| 	codes "google.golang.org/grpc/codes"
 | |
| 	status "google.golang.org/grpc/status"
 | |
| 	emptypb "google.golang.org/protobuf/types/known/emptypb"
 | |
| 	pb "m7s.live/v5/pb"
 | |
| )
 | |
| 
 | |
| // 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 (
 | |
| 	Api_Launch_FullMethodName = "/transcode.api/launch"
 | |
| 	Api_Close_FullMethodName  = "/transcode.api/close"
 | |
| 	Api_List_FullMethodName   = "/transcode.api/list"
 | |
| 	Api_Exist_FullMethodName  = "/transcode.api/exist"
 | |
| )
 | |
| 
 | |
| // ApiClient is the client API for Api 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 ApiClient interface {
 | |
| 	Launch(ctx context.Context, in *TransRequest, opts ...grpc.CallOption) (*pb.SuccessResponse, error)
 | |
| 	Close(ctx context.Context, in *TransTwin, opts ...grpc.CallOption) (*pb.SuccessResponse, error)
 | |
| 	List(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*TransListResponse, error)
 | |
| 	Exist(ctx context.Context, in *TransTwin, opts ...grpc.CallOption) (*pb.SuccessResponse, error)
 | |
| }
 | |
| 
 | |
| type apiClient struct {
 | |
| 	cc grpc.ClientConnInterface
 | |
| }
 | |
| 
 | |
| func NewApiClient(cc grpc.ClientConnInterface) ApiClient {
 | |
| 	return &apiClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *apiClient) Launch(ctx context.Context, in *TransRequest, opts ...grpc.CallOption) (*pb.SuccessResponse, error) {
 | |
| 	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | |
| 	out := new(pb.SuccessResponse)
 | |
| 	err := c.cc.Invoke(ctx, Api_Launch_FullMethodName, in, out, cOpts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *apiClient) Close(ctx context.Context, in *TransTwin, opts ...grpc.CallOption) (*pb.SuccessResponse, error) {
 | |
| 	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | |
| 	out := new(pb.SuccessResponse)
 | |
| 	err := c.cc.Invoke(ctx, Api_Close_FullMethodName, in, out, cOpts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *apiClient) List(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*TransListResponse, error) {
 | |
| 	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | |
| 	out := new(TransListResponse)
 | |
| 	err := c.cc.Invoke(ctx, Api_List_FullMethodName, in, out, cOpts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *apiClient) Exist(ctx context.Context, in *TransTwin, opts ...grpc.CallOption) (*pb.SuccessResponse, error) {
 | |
| 	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
 | |
| 	out := new(pb.SuccessResponse)
 | |
| 	err := c.cc.Invoke(ctx, Api_Exist_FullMethodName, in, out, cOpts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // ApiServer is the server API for Api service.
 | |
| // All implementations must embed UnimplementedApiServer
 | |
| // for forward compatibility.
 | |
| type ApiServer interface {
 | |
| 	Launch(context.Context, *TransRequest) (*pb.SuccessResponse, error)
 | |
| 	Close(context.Context, *TransTwin) (*pb.SuccessResponse, error)
 | |
| 	List(context.Context, *emptypb.Empty) (*TransListResponse, error)
 | |
| 	Exist(context.Context, *TransTwin) (*pb.SuccessResponse, error)
 | |
| 	mustEmbedUnimplementedApiServer()
 | |
| }
 | |
| 
 | |
| // UnimplementedApiServer 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 UnimplementedApiServer struct{}
 | |
| 
 | |
| func (UnimplementedApiServer) Launch(context.Context, *TransRequest) (*pb.SuccessResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method Launch not implemented")
 | |
| }
 | |
| func (UnimplementedApiServer) Close(context.Context, *TransTwin) (*pb.SuccessResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method Close not implemented")
 | |
| }
 | |
| func (UnimplementedApiServer) List(context.Context, *emptypb.Empty) (*TransListResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method List not implemented")
 | |
| }
 | |
| func (UnimplementedApiServer) Exist(context.Context, *TransTwin) (*pb.SuccessResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method Exist not implemented")
 | |
| }
 | |
| func (UnimplementedApiServer) mustEmbedUnimplementedApiServer() {}
 | |
| func (UnimplementedApiServer) testEmbeddedByValue()             {}
 | |
| 
 | |
| // UnsafeApiServer may be embedded to opt out of forward compatibility for this service.
 | |
| // Use of this interface is not recommended, as added methods to ApiServer will
 | |
| // result in compilation errors.
 | |
| type UnsafeApiServer interface {
 | |
| 	mustEmbedUnimplementedApiServer()
 | |
| }
 | |
| 
 | |
| func RegisterApiServer(s grpc.ServiceRegistrar, srv ApiServer) {
 | |
| 	// If the following call pancis, it indicates UnimplementedApiServer 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(&Api_ServiceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _Api_Launch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(TransRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ApiServer).Launch(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: Api_Launch_FullMethodName,
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ApiServer).Launch(ctx, req.(*TransRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Api_Close_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(TransTwin)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ApiServer).Close(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: Api_Close_FullMethodName,
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ApiServer).Close(ctx, req.(*TransTwin))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Api_List_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(emptypb.Empty)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ApiServer).List(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: Api_List_FullMethodName,
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ApiServer).List(ctx, req.(*emptypb.Empty))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Api_Exist_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(TransTwin)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(ApiServer).Exist(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: Api_Exist_FullMethodName,
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(ApiServer).Exist(ctx, req.(*TransTwin))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| // Api_ServiceDesc is the grpc.ServiceDesc for Api service.
 | |
| // It's only intended for direct use with grpc.RegisterService,
 | |
| // and not to be introspected or modified (even as a copy)
 | |
| var Api_ServiceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "transcode.api",
 | |
| 	HandlerType: (*ApiServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "launch",
 | |
| 			Handler:    _Api_Launch_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "close",
 | |
| 			Handler:    _Api_Close_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "list",
 | |
| 			Handler:    _Api_List_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "exist",
 | |
| 			Handler:    _Api_Exist_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams:  []grpc.StreamDesc{},
 | |
| 	Metadata: "transcode.proto",
 | |
| }
 | 
