diff --git a/proto/task.proto b/proto/task.proto new file mode 100644 index 0000000..bb17f67 --- /dev/null +++ b/proto/task.proto @@ -0,0 +1,41 @@ +syntax = "proto3"; +import "google/protobuf/empty.proto"; + +package taskProcessor; +option go_package = "./taskProcessor"; + + +message Task{ + string merch_uuid = 1; + string origin_surugaya_link = 2; + string origin_mandarake_link = 3; +} + +message Result{ + string merch_uuid = 1; + string origin_name = 2; + uint32 price = 3; +} + +message ProcessorStatusRequest{} + +message ProcessorStatusResponse { + int64 appStart = 1; + int64 lastCheck = 2; + int32 tasksReceived = 3; + int32 tasksInProgress = 4; + int32 tasksFirstTry = 5; + int32 tasksDoneAfterRetry = 6; + int32 tasksFailed = 7; + string workStatus = 8; + int32 numCPUs = 9; + int32 checkPeriod = 10; + int32 retriesCount = 11; + int32 retriesMinutes = 12; +} + +service TaskProcessor { + rpc RequestTask(google.protobuf.Empty) returns (stream Task); + rpc SendResult(stream Result) returns (google.protobuf.Empty); + rpc ProcessorStatus(ProcessorStatusRequest) returns (ProcessorStatusResponse); +} \ No newline at end of file diff --git a/proto/taskProcessor/task.pb.go b/proto/taskProcessor/task.pb.go new file mode 100644 index 0000000..7ff9f0c --- /dev/null +++ b/proto/taskProcessor/task.pb.go @@ -0,0 +1,409 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.36.8 +// protoc v6.32.0 +// source: task.proto + +package taskProcessor + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + emptypb "google.golang.org/protobuf/types/known/emptypb" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +const ( + // Verify that this generated code is sufficiently up-to-date. + _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) + // Verify that runtime/protoimpl is sufficiently up-to-date. + _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) +) + +type Task struct { + state protoimpl.MessageState `protogen:"open.v1"` + MerchUuid string `protobuf:"bytes,1,opt,name=merch_uuid,json=merchUuid,proto3" json:"merch_uuid,omitempty"` + OriginSurugayaLink string `protobuf:"bytes,2,opt,name=origin_surugaya_link,json=originSurugayaLink,proto3" json:"origin_surugaya_link,omitempty"` + OriginMandarakeLink string `protobuf:"bytes,3,opt,name=origin_mandarake_link,json=originMandarakeLink,proto3" json:"origin_mandarake_link,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *Task) Reset() { + *x = Task{} + mi := &file_task_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *Task) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Task) ProtoMessage() {} + +func (x *Task) ProtoReflect() protoreflect.Message { + mi := &file_task_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use Task.ProtoReflect.Descriptor instead. +func (*Task) Descriptor() ([]byte, []int) { + return file_task_proto_rawDescGZIP(), []int{0} +} + +func (x *Task) GetMerchUuid() string { + if x != nil { + return x.MerchUuid + } + return "" +} + +func (x *Task) GetOriginSurugayaLink() string { + if x != nil { + return x.OriginSurugayaLink + } + return "" +} + +func (x *Task) GetOriginMandarakeLink() string { + if x != nil { + return x.OriginMandarakeLink + } + return "" +} + +type Result struct { + state protoimpl.MessageState `protogen:"open.v1"` + MerchUuid string `protobuf:"bytes,1,opt,name=merch_uuid,json=merchUuid,proto3" json:"merch_uuid,omitempty"` + OriginName string `protobuf:"bytes,2,opt,name=origin_name,json=originName,proto3" json:"origin_name,omitempty"` + Price uint32 `protobuf:"varint,3,opt,name=price,proto3" json:"price,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *Result) Reset() { + *x = Result{} + mi := &file_task_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *Result) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Result) ProtoMessage() {} + +func (x *Result) ProtoReflect() protoreflect.Message { + mi := &file_task_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use Result.ProtoReflect.Descriptor instead. +func (*Result) Descriptor() ([]byte, []int) { + return file_task_proto_rawDescGZIP(), []int{1} +} + +func (x *Result) GetMerchUuid() string { + if x != nil { + return x.MerchUuid + } + return "" +} + +func (x *Result) GetOriginName() string { + if x != nil { + return x.OriginName + } + return "" +} + +func (x *Result) GetPrice() uint32 { + if x != nil { + return x.Price + } + return 0 +} + +type ProcessorStatusRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ProcessorStatusRequest) Reset() { + *x = ProcessorStatusRequest{} + mi := &file_task_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ProcessorStatusRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProcessorStatusRequest) ProtoMessage() {} + +func (x *ProcessorStatusRequest) ProtoReflect() protoreflect.Message { + mi := &file_task_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProcessorStatusRequest.ProtoReflect.Descriptor instead. +func (*ProcessorStatusRequest) Descriptor() ([]byte, []int) { + return file_task_proto_rawDescGZIP(), []int{2} +} + +type ProcessorStatusResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + AppStart int64 `protobuf:"varint,1,opt,name=appStart,proto3" json:"appStart,omitempty"` + LastCheck int64 `protobuf:"varint,2,opt,name=lastCheck,proto3" json:"lastCheck,omitempty"` + TasksReceived int32 `protobuf:"varint,3,opt,name=tasksReceived,proto3" json:"tasksReceived,omitempty"` + TasksInProgress int32 `protobuf:"varint,4,opt,name=tasksInProgress,proto3" json:"tasksInProgress,omitempty"` + TasksFirstTry int32 `protobuf:"varint,5,opt,name=tasksFirstTry,proto3" json:"tasksFirstTry,omitempty"` + TasksDoneAfterRetry int32 `protobuf:"varint,6,opt,name=tasksDoneAfterRetry,proto3" json:"tasksDoneAfterRetry,omitempty"` + TasksFailed int32 `protobuf:"varint,7,opt,name=tasksFailed,proto3" json:"tasksFailed,omitempty"` + WorkStatus string `protobuf:"bytes,8,opt,name=workStatus,proto3" json:"workStatus,omitempty"` + NumCPUs int32 `protobuf:"varint,9,opt,name=numCPUs,proto3" json:"numCPUs,omitempty"` + CheckPeriod int32 `protobuf:"varint,10,opt,name=checkPeriod,proto3" json:"checkPeriod,omitempty"` + RetriesCount int32 `protobuf:"varint,11,opt,name=retriesCount,proto3" json:"retriesCount,omitempty"` + RetriesMinutes int32 `protobuf:"varint,12,opt,name=retriesMinutes,proto3" json:"retriesMinutes,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ProcessorStatusResponse) Reset() { + *x = ProcessorStatusResponse{} + mi := &file_task_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ProcessorStatusResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProcessorStatusResponse) ProtoMessage() {} + +func (x *ProcessorStatusResponse) ProtoReflect() protoreflect.Message { + mi := &file_task_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProcessorStatusResponse.ProtoReflect.Descriptor instead. +func (*ProcessorStatusResponse) Descriptor() ([]byte, []int) { + return file_task_proto_rawDescGZIP(), []int{3} +} + +func (x *ProcessorStatusResponse) GetAppStart() int64 { + if x != nil { + return x.AppStart + } + return 0 +} + +func (x *ProcessorStatusResponse) GetLastCheck() int64 { + if x != nil { + return x.LastCheck + } + return 0 +} + +func (x *ProcessorStatusResponse) GetTasksReceived() int32 { + if x != nil { + return x.TasksReceived + } + return 0 +} + +func (x *ProcessorStatusResponse) GetTasksInProgress() int32 { + if x != nil { + return x.TasksInProgress + } + return 0 +} + +func (x *ProcessorStatusResponse) GetTasksFirstTry() int32 { + if x != nil { + return x.TasksFirstTry + } + return 0 +} + +func (x *ProcessorStatusResponse) GetTasksDoneAfterRetry() int32 { + if x != nil { + return x.TasksDoneAfterRetry + } + return 0 +} + +func (x *ProcessorStatusResponse) GetTasksFailed() int32 { + if x != nil { + return x.TasksFailed + } + return 0 +} + +func (x *ProcessorStatusResponse) GetWorkStatus() string { + if x != nil { + return x.WorkStatus + } + return "" +} + +func (x *ProcessorStatusResponse) GetNumCPUs() int32 { + if x != nil { + return x.NumCPUs + } + return 0 +} + +func (x *ProcessorStatusResponse) GetCheckPeriod() int32 { + if x != nil { + return x.CheckPeriod + } + return 0 +} + +func (x *ProcessorStatusResponse) GetRetriesCount() int32 { + if x != nil { + return x.RetriesCount + } + return 0 +} + +func (x *ProcessorStatusResponse) GetRetriesMinutes() int32 { + if x != nil { + return x.RetriesMinutes + } + return 0 +} + +var File_task_proto protoreflect.FileDescriptor + +const file_task_proto_rawDesc = "" + + "\n" + + "\n" + + "task.proto\x12\rtaskProcessor\x1a\x1bgoogle/protobuf/empty.proto\"\x8b\x01\n" + + "\x04Task\x12\x1d\n" + + "\n" + + "merch_uuid\x18\x01 \x01(\tR\tmerchUuid\x120\n" + + "\x14origin_surugaya_link\x18\x02 \x01(\tR\x12originSurugayaLink\x122\n" + + "\x15origin_mandarake_link\x18\x03 \x01(\tR\x13originMandarakeLink\"^\n" + + "\x06Result\x12\x1d\n" + + "\n" + + "merch_uuid\x18\x01 \x01(\tR\tmerchUuid\x12\x1f\n" + + "\vorigin_name\x18\x02 \x01(\tR\n" + + "originName\x12\x14\n" + + "\x05price\x18\x03 \x01(\rR\x05price\"\x18\n" + + "\x16ProcessorStatusRequest\"\xc5\x03\n" + + "\x17ProcessorStatusResponse\x12\x1a\n" + + "\bappStart\x18\x01 \x01(\x03R\bappStart\x12\x1c\n" + + "\tlastCheck\x18\x02 \x01(\x03R\tlastCheck\x12$\n" + + "\rtasksReceived\x18\x03 \x01(\x05R\rtasksReceived\x12(\n" + + "\x0ftasksInProgress\x18\x04 \x01(\x05R\x0ftasksInProgress\x12$\n" + + "\rtasksFirstTry\x18\x05 \x01(\x05R\rtasksFirstTry\x120\n" + + "\x13tasksDoneAfterRetry\x18\x06 \x01(\x05R\x13tasksDoneAfterRetry\x12 \n" + + "\vtasksFailed\x18\a \x01(\x05R\vtasksFailed\x12\x1e\n" + + "\n" + + "workStatus\x18\b \x01(\tR\n" + + "workStatus\x12\x18\n" + + "\anumCPUs\x18\t \x01(\x05R\anumCPUs\x12 \n" + + "\vcheckPeriod\x18\n" + + " \x01(\x05R\vcheckPeriod\x12\"\n" + + "\fretriesCount\x18\v \x01(\x05R\fretriesCount\x12&\n" + + "\x0eretriesMinutes\x18\f \x01(\x05R\x0eretriesMinutes2\xee\x01\n" + + "\rTaskProcessor\x12<\n" + + "\vRequestTask\x12\x16.google.protobuf.Empty\x1a\x13.taskProcessor.Task0\x01\x12=\n" + + "\n" + + "SendResult\x12\x15.taskProcessor.Result\x1a\x16.google.protobuf.Empty(\x01\x12`\n" + + "\x0fProcessorStatus\x12%.taskProcessor.ProcessorStatusRequest\x1a&.taskProcessor.ProcessorStatusResponseB\x11Z\x0f./taskProcessorb\x06proto3" + +var ( + file_task_proto_rawDescOnce sync.Once + file_task_proto_rawDescData []byte +) + +func file_task_proto_rawDescGZIP() []byte { + file_task_proto_rawDescOnce.Do(func() { + file_task_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_task_proto_rawDesc), len(file_task_proto_rawDesc))) + }) + return file_task_proto_rawDescData +} + +var file_task_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_task_proto_goTypes = []any{ + (*Task)(nil), // 0: taskProcessor.Task + (*Result)(nil), // 1: taskProcessor.Result + (*ProcessorStatusRequest)(nil), // 2: taskProcessor.ProcessorStatusRequest + (*ProcessorStatusResponse)(nil), // 3: taskProcessor.ProcessorStatusResponse + (*emptypb.Empty)(nil), // 4: google.protobuf.Empty +} +var file_task_proto_depIdxs = []int32{ + 4, // 0: taskProcessor.TaskProcessor.RequestTask:input_type -> google.protobuf.Empty + 1, // 1: taskProcessor.TaskProcessor.SendResult:input_type -> taskProcessor.Result + 2, // 2: taskProcessor.TaskProcessor.ProcessorStatus:input_type -> taskProcessor.ProcessorStatusRequest + 0, // 3: taskProcessor.TaskProcessor.RequestTask:output_type -> taskProcessor.Task + 4, // 4: taskProcessor.TaskProcessor.SendResult:output_type -> google.protobuf.Empty + 3, // 5: taskProcessor.TaskProcessor.ProcessorStatus:output_type -> taskProcessor.ProcessorStatusResponse + 3, // [3:6] is the sub-list for method output_type + 0, // [0:3] is the sub-list for method input_type + 0, // [0:0] is the sub-list for extension type_name + 0, // [0:0] is the sub-list for extension extendee + 0, // [0:0] is the sub-list for field type_name +} + +func init() { file_task_proto_init() } +func file_task_proto_init() { + if File_task_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_task_proto_rawDesc), len(file_task_proto_rawDesc)), + NumEnums: 0, + NumMessages: 4, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_task_proto_goTypes, + DependencyIndexes: file_task_proto_depIdxs, + MessageInfos: file_task_proto_msgTypes, + }.Build() + File_task_proto = out.File + file_task_proto_goTypes = nil + file_task_proto_depIdxs = nil +} diff --git a/proto/taskProcessor/task_grpc.pb.go b/proto/taskProcessor/task_grpc.pb.go new file mode 100644 index 0000000..487a7d8 --- /dev/null +++ b/proto/taskProcessor/task_grpc.pb.go @@ -0,0 +1,195 @@ +// Code generated by protoc-gen-go-grpc. DO NOT EDIT. +// versions: +// - protoc-gen-go-grpc v1.5.1 +// - protoc v6.32.0 +// source: task.proto + +package taskProcessor + +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" +) + +// 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 ( + TaskProcessor_RequestTask_FullMethodName = "/taskProcessor.TaskProcessor/RequestTask" + TaskProcessor_SendResult_FullMethodName = "/taskProcessor.TaskProcessor/SendResult" + TaskProcessor_ProcessorStatus_FullMethodName = "/taskProcessor.TaskProcessor/ProcessorStatus" +) + +// TaskProcessorClient is the client API for TaskProcessor 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 TaskProcessorClient interface { + RequestTask(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (grpc.ServerStreamingClient[Task], error) + SendResult(ctx context.Context, opts ...grpc.CallOption) (grpc.ClientStreamingClient[Result, emptypb.Empty], error) + ProcessorStatus(ctx context.Context, in *ProcessorStatusRequest, opts ...grpc.CallOption) (*ProcessorStatusResponse, error) +} + +type taskProcessorClient struct { + cc grpc.ClientConnInterface +} + +func NewTaskProcessorClient(cc grpc.ClientConnInterface) TaskProcessorClient { + return &taskProcessorClient{cc} +} + +func (c *taskProcessorClient) RequestTask(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (grpc.ServerStreamingClient[Task], error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + stream, err := c.cc.NewStream(ctx, &TaskProcessor_ServiceDesc.Streams[0], TaskProcessor_RequestTask_FullMethodName, cOpts...) + if err != nil { + return nil, err + } + x := &grpc.GenericClientStream[emptypb.Empty, Task]{ClientStream: stream} + if err := x.ClientStream.SendMsg(in); err != nil { + return nil, err + } + if err := x.ClientStream.CloseSend(); err != nil { + return nil, err + } + 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 TaskProcessor_RequestTaskClient = grpc.ServerStreamingClient[Task] + +func (c *taskProcessorClient) SendResult(ctx context.Context, opts ...grpc.CallOption) (grpc.ClientStreamingClient[Result, emptypb.Empty], error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + stream, err := c.cc.NewStream(ctx, &TaskProcessor_ServiceDesc.Streams[1], TaskProcessor_SendResult_FullMethodName, cOpts...) + if err != nil { + return nil, err + } + x := &grpc.GenericClientStream[Result, emptypb.Empty]{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 TaskProcessor_SendResultClient = grpc.ClientStreamingClient[Result, emptypb.Empty] + +func (c *taskProcessorClient) ProcessorStatus(ctx context.Context, in *ProcessorStatusRequest, opts ...grpc.CallOption) (*ProcessorStatusResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(ProcessorStatusResponse) + err := c.cc.Invoke(ctx, TaskProcessor_ProcessorStatus_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// TaskProcessorServer is the server API for TaskProcessor service. +// All implementations must embed UnimplementedTaskProcessorServer +// for forward compatibility. +type TaskProcessorServer interface { + RequestTask(*emptypb.Empty, grpc.ServerStreamingServer[Task]) error + SendResult(grpc.ClientStreamingServer[Result, emptypb.Empty]) error + ProcessorStatus(context.Context, *ProcessorStatusRequest) (*ProcessorStatusResponse, error) + mustEmbedUnimplementedTaskProcessorServer() +} + +// UnimplementedTaskProcessorServer 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 UnimplementedTaskProcessorServer struct{} + +func (UnimplementedTaskProcessorServer) RequestTask(*emptypb.Empty, grpc.ServerStreamingServer[Task]) error { + return status.Errorf(codes.Unimplemented, "method RequestTask not implemented") +} +func (UnimplementedTaskProcessorServer) SendResult(grpc.ClientStreamingServer[Result, emptypb.Empty]) error { + return status.Errorf(codes.Unimplemented, "method SendResult not implemented") +} +func (UnimplementedTaskProcessorServer) ProcessorStatus(context.Context, *ProcessorStatusRequest) (*ProcessorStatusResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ProcessorStatus not implemented") +} +func (UnimplementedTaskProcessorServer) mustEmbedUnimplementedTaskProcessorServer() {} +func (UnimplementedTaskProcessorServer) testEmbeddedByValue() {} + +// UnsafeTaskProcessorServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to TaskProcessorServer will +// result in compilation errors. +type UnsafeTaskProcessorServer interface { + mustEmbedUnimplementedTaskProcessorServer() +} + +func RegisterTaskProcessorServer(s grpc.ServiceRegistrar, srv TaskProcessorServer) { + // If the following call pancis, it indicates UnimplementedTaskProcessorServer 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(&TaskProcessor_ServiceDesc, srv) +} + +func _TaskProcessor_RequestTask_Handler(srv interface{}, stream grpc.ServerStream) error { + m := new(emptypb.Empty) + if err := stream.RecvMsg(m); err != nil { + return err + } + return srv.(TaskProcessorServer).RequestTask(m, &grpc.GenericServerStream[emptypb.Empty, Task]{ServerStream: stream}) +} + +// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. +type TaskProcessor_RequestTaskServer = grpc.ServerStreamingServer[Task] + +func _TaskProcessor_SendResult_Handler(srv interface{}, stream grpc.ServerStream) error { + return srv.(TaskProcessorServer).SendResult(&grpc.GenericServerStream[Result, emptypb.Empty]{ServerStream: stream}) +} + +// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. +type TaskProcessor_SendResultServer = grpc.ClientStreamingServer[Result, emptypb.Empty] + +func _TaskProcessor_ProcessorStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ProcessorStatusRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(TaskProcessorServer).ProcessorStatus(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: TaskProcessor_ProcessorStatus_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(TaskProcessorServer).ProcessorStatus(ctx, req.(*ProcessorStatusRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// TaskProcessor_ServiceDesc is the grpc.ServiceDesc for TaskProcessor service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var TaskProcessor_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "taskProcessor.TaskProcessor", + HandlerType: (*TaskProcessorServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "ProcessorStatus", + Handler: _TaskProcessor_ProcessorStatus_Handler, + }, + }, + Streams: []grpc.StreamDesc{ + { + StreamName: "RequestTask", + Handler: _TaskProcessor_RequestTask_Handler, + ServerStreams: true, + }, + { + StreamName: "SendResult", + Handler: _TaskProcessor_SendResult_Handler, + ClientStreams: true, + }, + }, + Metadata: "task.proto", +}