// // Copyright 2020 The Dragonfly Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.0 // protoc v3.19.4 // source: pkg/rpc/dfdaemon/dfdaemon.proto package dfdaemon import ( context "context" base "d7y.io/dragonfly/v2/pkg/rpc/base" _ "github.com/envoyproxy/protoc-gen-validate/validate" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" 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" ) 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 DownRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Identify one downloading, the framework will fill it automatically. Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"` // Download file from the url, not only for http. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` // Pieces will be written to output path directly, // at the same time, dfdaemon workspace also makes soft link to the output. Output string `protobuf:"bytes,3,opt,name=output,proto3" json:"output,omitempty"` // Timeout duration. Timeout uint64 `protobuf:"varint,4,opt,name=timeout,proto3" json:"timeout,omitempty"` // Rate limit in bytes per second. Limit float64 `protobuf:"fixed64,5,opt,name=limit,proto3" json:"limit,omitempty"` // Disable back-to-source. DisableBackSource bool `protobuf:"varint,6,opt,name=disable_back_source,json=disableBackSource,proto3" json:"disable_back_source,omitempty"` // URL meta info. UrlMeta *base.UrlMeta `protobuf:"bytes,7,opt,name=url_meta,json=urlMeta,proto3" json:"url_meta,omitempty"` // Pattern has p2p/seed-peer/source, default is p2p. Pattern string `protobuf:"bytes,8,opt,name=pattern,proto3" json:"pattern,omitempty"` // Call system. Callsystem string `protobuf:"bytes,9,opt,name=callsystem,proto3" json:"callsystem,omitempty"` // User id. Uid int64 `protobuf:"varint,10,opt,name=uid,proto3" json:"uid,omitempty"` // Group id. Gid int64 `protobuf:"varint,11,opt,name=gid,proto3" json:"gid,omitempty"` // Keep original offset, used for ranged request, only available for hard link, otherwise will failed. KeepOriginalOffset bool `protobuf:"varint,12,opt,name=keep_original_offset,json=keepOriginalOffset,proto3" json:"keep_original_offset,omitempty"` } func (x *DownRequest) Reset() { *x = DownRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *DownRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DownRequest) ProtoMessage() {} func (x *DownRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DownRequest.ProtoReflect.Descriptor instead. func (*DownRequest) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{0} } func (x *DownRequest) GetUuid() string { if x != nil { return x.Uuid } return "" } func (x *DownRequest) GetUrl() string { if x != nil { return x.Url } return "" } func (x *DownRequest) GetOutput() string { if x != nil { return x.Output } return "" } func (x *DownRequest) GetTimeout() uint64 { if x != nil { return x.Timeout } return 0 } func (x *DownRequest) GetLimit() float64 { if x != nil { return x.Limit } return 0 } func (x *DownRequest) GetDisableBackSource() bool { if x != nil { return x.DisableBackSource } return false } func (x *DownRequest) GetUrlMeta() *base.UrlMeta { if x != nil { return x.UrlMeta } return nil } func (x *DownRequest) GetPattern() string { if x != nil { return x.Pattern } return "" } func (x *DownRequest) GetCallsystem() string { if x != nil { return x.Callsystem } return "" } func (x *DownRequest) GetUid() int64 { if x != nil { return x.Uid } return 0 } func (x *DownRequest) GetGid() int64 { if x != nil { return x.Gid } return 0 } func (x *DownRequest) GetKeepOriginalOffset() bool { if x != nil { return x.KeepOriginalOffset } return false } type DownResult struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Task id. TaskId string `protobuf:"bytes,2,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"` // Peer id. PeerId string `protobuf:"bytes,3,opt,name=peer_id,json=peerId,proto3" json:"peer_id,omitempty"` // Task has completed length. CompletedLength uint64 `protobuf:"varint,4,opt,name=completed_length,json=completedLength,proto3" json:"completed_length,omitempty"` // Task has been completed. Done bool `protobuf:"varint,5,opt,name=done,proto3" json:"done,omitempty"` } func (x *DownResult) Reset() { *x = DownResult{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *DownResult) String() string { return protoimpl.X.MessageStringOf(x) } func (*DownResult) ProtoMessage() {} func (x *DownResult) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DownResult.ProtoReflect.Descriptor instead. func (*DownResult) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{1} } func (x *DownResult) GetTaskId() string { if x != nil { return x.TaskId } return "" } func (x *DownResult) GetPeerId() string { if x != nil { return x.PeerId } return "" } func (x *DownResult) GetCompletedLength() uint64 { if x != nil { return x.CompletedLength } return 0 } func (x *DownResult) GetDone() bool { if x != nil { return x.Done } return false } type StatTaskRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Download url. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` // URL meta info. UrlMeta *base.UrlMeta `protobuf:"bytes,2,opt,name=url_meta,json=urlMeta,proto3" json:"url_meta,omitempty"` // Check local cache only. LocalOnly bool `protobuf:"varint,3,opt,name=local_only,json=localOnly,proto3" json:"local_only,omitempty"` } func (x *StatTaskRequest) Reset() { *x = StatTaskRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *StatTaskRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*StatTaskRequest) ProtoMessage() {} func (x *StatTaskRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use StatTaskRequest.ProtoReflect.Descriptor instead. func (*StatTaskRequest) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{2} } func (x *StatTaskRequest) GetUrl() string { if x != nil { return x.Url } return "" } func (x *StatTaskRequest) GetUrlMeta() *base.UrlMeta { if x != nil { return x.UrlMeta } return nil } func (x *StatTaskRequest) GetLocalOnly() bool { if x != nil { return x.LocalOnly } return false } type ImportTaskRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Download url. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` // URL meta info. UrlMeta *base.UrlMeta `protobuf:"bytes,2,opt,name=url_meta,json=urlMeta,proto3" json:"url_meta,omitempty"` // File to be imported. Path string `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"` // Task type. Type base.TaskType `protobuf:"varint,4,opt,name=type,proto3,enum=base.TaskType" json:"type,omitempty"` } func (x *ImportTaskRequest) Reset() { *x = ImportTaskRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ImportTaskRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ImportTaskRequest) ProtoMessage() {} func (x *ImportTaskRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ImportTaskRequest.ProtoReflect.Descriptor instead. func (*ImportTaskRequest) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{3} } func (x *ImportTaskRequest) GetUrl() string { if x != nil { return x.Url } return "" } func (x *ImportTaskRequest) GetUrlMeta() *base.UrlMeta { if x != nil { return x.UrlMeta } return nil } func (x *ImportTaskRequest) GetPath() string { if x != nil { return x.Path } return "" } func (x *ImportTaskRequest) GetType() base.TaskType { if x != nil { return x.Type } return base.TaskType(0) } type ExportTaskRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Download url. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` // Output path of downloaded file. Output string `protobuf:"bytes,2,opt,name=output,proto3" json:"output,omitempty"` // Timeout duration. Timeout uint64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"` // Rate limit in bytes per second. Limit float64 `protobuf:"fixed64,4,opt,name=limit,proto3" json:"limit,omitempty"` // URL meta info. UrlMeta *base.UrlMeta `protobuf:"bytes,5,opt,name=url_meta,json=urlMeta,proto3" json:"url_meta,omitempty"` // Call system. Callsystem string `protobuf:"bytes,6,opt,name=callsystem,proto3" json:"callsystem,omitempty"` // User id. Uid int64 `protobuf:"varint,7,opt,name=uid,proto3" json:"uid,omitempty"` // Group id. Gid int64 `protobuf:"varint,8,opt,name=gid,proto3" json:"gid,omitempty"` // Only export from local storage. LocalOnly bool `protobuf:"varint,9,opt,name=local_only,json=localOnly,proto3" json:"local_only,omitempty"` } func (x *ExportTaskRequest) Reset() { *x = ExportTaskRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ExportTaskRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ExportTaskRequest) ProtoMessage() {} func (x *ExportTaskRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ExportTaskRequest.ProtoReflect.Descriptor instead. func (*ExportTaskRequest) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{4} } func (x *ExportTaskRequest) GetUrl() string { if x != nil { return x.Url } return "" } func (x *ExportTaskRequest) GetOutput() string { if x != nil { return x.Output } return "" } func (x *ExportTaskRequest) GetTimeout() uint64 { if x != nil { return x.Timeout } return 0 } func (x *ExportTaskRequest) GetLimit() float64 { if x != nil { return x.Limit } return 0 } func (x *ExportTaskRequest) GetUrlMeta() *base.UrlMeta { if x != nil { return x.UrlMeta } return nil } func (x *ExportTaskRequest) GetCallsystem() string { if x != nil { return x.Callsystem } return "" } func (x *ExportTaskRequest) GetUid() int64 { if x != nil { return x.Uid } return 0 } func (x *ExportTaskRequest) GetGid() int64 { if x != nil { return x.Gid } return 0 } func (x *ExportTaskRequest) GetLocalOnly() bool { if x != nil { return x.LocalOnly } return false } type DeleteTaskRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Download url. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"` // URL meta info. UrlMeta *base.UrlMeta `protobuf:"bytes,2,opt,name=url_meta,json=urlMeta,proto3" json:"url_meta,omitempty"` } func (x *DeleteTaskRequest) Reset() { *x = DeleteTaskRequest{} if protoimpl.UnsafeEnabled { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *DeleteTaskRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*DeleteTaskRequest) ProtoMessage() {} func (x *DeleteTaskRequest) ProtoReflect() protoreflect.Message { mi := &file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use DeleteTaskRequest.ProtoReflect.Descriptor instead. func (*DeleteTaskRequest) Descriptor() ([]byte, []int) { return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP(), []int{5} } func (x *DeleteTaskRequest) GetUrl() string { if x != nil { return x.Url } return "" } func (x *DeleteTaskRequest) GetUrlMeta() *base.UrlMeta { if x != nil { return x.UrlMeta } return nil } var File_pkg_rpc_dfdaemon_dfdaemon_proto protoreflect.FileDescriptor var file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDesc = []byte{ 0x0a, 0x1f, 0x70, 0x6b, 0x67, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x1a, 0x17, 0x70, 0x6b, 0x67, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbd, 0x03, 0x0a, 0x0b, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0xb0, 0x01, 0x01, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x88, 0x01, 0x01, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x32, 0x02, 0x28, 0x00, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x24, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x42, 0x0e, 0xfa, 0x42, 0x0b, 0x12, 0x09, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x2e, 0x0a, 0x13, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x28, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x3a, 0x0a, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x42, 0x20, 0xfa, 0x42, 0x1d, 0x72, 0x1b, 0x52, 0x03, 0x70, 0x32, 0x70, 0x52, 0x09, 0x73, 0x65, 0x65, 0x64, 0x2d, 0x70, 0x65, 0x65, 0x72, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0xd0, 0x01, 0x01, 0x52, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x67, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x67, 0x69, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x6b, 0x65, 0x65, 0x70, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x22, 0x98, 0x01, 0x0a, 0x0a, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x20, 0x0a, 0x07, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x07, 0x70, 0x65, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x70, 0x65, 0x65, 0x72, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x32, 0x02, 0x28, 0x00, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x64, 0x6f, 0x6e, 0x65, 0x22, 0x75, 0x0a, 0x0f, 0x53, 0x74, 0x61, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x28, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x99, 0x01, 0x0a, 0x11, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x28, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x22, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0xa5, 0x02, 0x0a, 0x11, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x21, 0x0a, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x32, 0x02, 0x28, 0x00, 0x52, 0x07, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x12, 0x24, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x42, 0x0e, 0xfa, 0x42, 0x0b, 0x12, 0x09, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x28, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x67, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x67, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0x58, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x28, 0x0a, 0x08, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x55, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x07, 0x75, 0x72, 0x6c, 0x4d, 0x65, 0x74, 0x61, 0x32, 0x87, 0x04, 0x0a, 0x06, 0x44, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x08, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x15, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x30, 0x01, 0x12, 0x3a, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x50, 0x69, 0x65, 0x63, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x69, 0x65, 0x63, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x69, 0x65, 0x63, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x3d, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x3f, 0x0a, 0x0e, 0x53, 0x79, 0x6e, 0x63, 0x50, 0x69, 0x65, 0x63, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x69, 0x65, 0x63, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x50, 0x69, 0x65, 0x63, 0x65, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x28, 0x01, 0x30, 0x01, 0x12, 0x3d, 0x0a, 0x08, 0x53, 0x74, 0x61, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x19, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0a, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1b, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0a, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1b, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1b, 0x2e, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x42, 0x26, 0x5a, 0x24, 0x64, 0x37, 0x79, 0x2e, 0x69, 0x6f, 0x2f, 0x64, 0x72, 0x61, 0x67, 0x6f, 0x6e, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x64, 0x66, 0x64, 0x61, 0x65, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescOnce sync.Once file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescData = file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDesc ) func file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescGZIP() []byte { file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescOnce.Do(func() { file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescData = protoimpl.X.CompressGZIP(file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescData) }) return file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDescData } var file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes = make([]protoimpl.MessageInfo, 6) var file_pkg_rpc_dfdaemon_dfdaemon_proto_goTypes = []any{ (*DownRequest)(nil), // 0: dfdaemon.DownRequest (*DownResult)(nil), // 1: dfdaemon.DownResult (*StatTaskRequest)(nil), // 2: dfdaemon.StatTaskRequest (*ImportTaskRequest)(nil), // 3: dfdaemon.ImportTaskRequest (*ExportTaskRequest)(nil), // 4: dfdaemon.ExportTaskRequest (*DeleteTaskRequest)(nil), // 5: dfdaemon.DeleteTaskRequest (*base.UrlMeta)(nil), // 6: base.UrlMeta (base.TaskType)(0), // 7: base.TaskType (*base.PieceTaskRequest)(nil), // 8: base.PieceTaskRequest (*emptypb.Empty)(nil), // 9: google.protobuf.Empty (*base.PiecePacket)(nil), // 10: base.PiecePacket } var file_pkg_rpc_dfdaemon_dfdaemon_proto_depIdxs = []int32{ 6, // 0: dfdaemon.DownRequest.url_meta:type_name -> base.UrlMeta 6, // 1: dfdaemon.StatTaskRequest.url_meta:type_name -> base.UrlMeta 6, // 2: dfdaemon.ImportTaskRequest.url_meta:type_name -> base.UrlMeta 7, // 3: dfdaemon.ImportTaskRequest.type:type_name -> base.TaskType 6, // 4: dfdaemon.ExportTaskRequest.url_meta:type_name -> base.UrlMeta 6, // 5: dfdaemon.DeleteTaskRequest.url_meta:type_name -> base.UrlMeta 0, // 6: dfdaemon.Daemon.Download:input_type -> dfdaemon.DownRequest 8, // 7: dfdaemon.Daemon.GetPieceTasks:input_type -> base.PieceTaskRequest 9, // 8: dfdaemon.Daemon.CheckHealth:input_type -> google.protobuf.Empty 8, // 9: dfdaemon.Daemon.SyncPieceTasks:input_type -> base.PieceTaskRequest 2, // 10: dfdaemon.Daemon.StatTask:input_type -> dfdaemon.StatTaskRequest 3, // 11: dfdaemon.Daemon.ImportTask:input_type -> dfdaemon.ImportTaskRequest 4, // 12: dfdaemon.Daemon.ExportTask:input_type -> dfdaemon.ExportTaskRequest 5, // 13: dfdaemon.Daemon.DeleteTask:input_type -> dfdaemon.DeleteTaskRequest 1, // 14: dfdaemon.Daemon.Download:output_type -> dfdaemon.DownResult 10, // 15: dfdaemon.Daemon.GetPieceTasks:output_type -> base.PiecePacket 9, // 16: dfdaemon.Daemon.CheckHealth:output_type -> google.protobuf.Empty 10, // 17: dfdaemon.Daemon.SyncPieceTasks:output_type -> base.PiecePacket 9, // 18: dfdaemon.Daemon.StatTask:output_type -> google.protobuf.Empty 9, // 19: dfdaemon.Daemon.ImportTask:output_type -> google.protobuf.Empty 9, // 20: dfdaemon.Daemon.ExportTask:output_type -> google.protobuf.Empty 9, // 21: dfdaemon.Daemon.DeleteTask:output_type -> google.protobuf.Empty 14, // [14:22] is the sub-list for method output_type 6, // [6:14] is the sub-list for method input_type 6, // [6:6] is the sub-list for extension type_name 6, // [6:6] is the sub-list for extension extendee 0, // [0:6] is the sub-list for field type_name } func init() { file_pkg_rpc_dfdaemon_dfdaemon_proto_init() } func file_pkg_rpc_dfdaemon_dfdaemon_proto_init() { if File_pkg_rpc_dfdaemon_dfdaemon_proto != nil { return } if !protoimpl.UnsafeEnabled { file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DownRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DownResult); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*StatTaskRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ImportTaskRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ExportTaskRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*DeleteTaskRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, GoTypes: file_pkg_rpc_dfdaemon_dfdaemon_proto_goTypes, DependencyIndexes: file_pkg_rpc_dfdaemon_dfdaemon_proto_depIdxs, MessageInfos: file_pkg_rpc_dfdaemon_dfdaemon_proto_msgTypes, }.Build() File_pkg_rpc_dfdaemon_dfdaemon_proto = out.File file_pkg_rpc_dfdaemon_dfdaemon_proto_rawDesc = nil file_pkg_rpc_dfdaemon_dfdaemon_proto_goTypes = nil file_pkg_rpc_dfdaemon_dfdaemon_proto_depIdxs = nil } // Reference imports to suppress errors if they are not otherwise used. var _ context.Context var _ grpc.ClientConnInterface // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. const _ = grpc.SupportPackageIsVersion6 // DaemonClient is the client API for Daemon service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type DaemonClient interface { // Trigger client to download file Download(ctx context.Context, in *DownRequest, opts ...grpc.CallOption) (Daemon_DownloadClient, error) // Get piece tasks from other peers GetPieceTasks(ctx context.Context, in *base.PieceTaskRequest, opts ...grpc.CallOption) (*base.PiecePacket, error) // Check daemon health CheckHealth(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error) // Sync piece tasks with other peers SyncPieceTasks(ctx context.Context, opts ...grpc.CallOption) (Daemon_SyncPieceTasksClient, error) // Check if given task exists in P2P cache system StatTask(ctx context.Context, in *StatTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Import the given file into P2P cache system ImportTask(ctx context.Context, in *ImportTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Export or download file from P2P cache system ExportTask(ctx context.Context, in *ExportTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Delete file from P2P cache system DeleteTask(ctx context.Context, in *DeleteTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) } type daemonClient struct { cc grpc.ClientConnInterface } func NewDaemonClient(cc grpc.ClientConnInterface) DaemonClient { return &daemonClient{cc} } func (c *daemonClient) Download(ctx context.Context, in *DownRequest, opts ...grpc.CallOption) (Daemon_DownloadClient, error) { stream, err := c.cc.NewStream(ctx, &_Daemon_serviceDesc.Streams[0], "/dfdaemon.Daemon/Download", opts...) if err != nil { return nil, err } x := &daemonDownloadClient{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 } type Daemon_DownloadClient interface { Recv() (*DownResult, error) grpc.ClientStream } type daemonDownloadClient struct { grpc.ClientStream } func (x *daemonDownloadClient) Recv() (*DownResult, error) { m := new(DownResult) if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err } return m, nil } func (c *daemonClient) GetPieceTasks(ctx context.Context, in *base.PieceTaskRequest, opts ...grpc.CallOption) (*base.PiecePacket, error) { out := new(base.PiecePacket) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/GetPieceTasks", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *daemonClient) CheckHealth(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error) { out := new(emptypb.Empty) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/CheckHealth", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *daemonClient) SyncPieceTasks(ctx context.Context, opts ...grpc.CallOption) (Daemon_SyncPieceTasksClient, error) { stream, err := c.cc.NewStream(ctx, &_Daemon_serviceDesc.Streams[1], "/dfdaemon.Daemon/SyncPieceTasks", opts...) if err != nil { return nil, err } x := &daemonSyncPieceTasksClient{stream} return x, nil } type Daemon_SyncPieceTasksClient interface { Send(*base.PieceTaskRequest) error Recv() (*base.PiecePacket, error) grpc.ClientStream } type daemonSyncPieceTasksClient struct { grpc.ClientStream } func (x *daemonSyncPieceTasksClient) Send(m *base.PieceTaskRequest) error { return x.ClientStream.SendMsg(m) } func (x *daemonSyncPieceTasksClient) Recv() (*base.PiecePacket, error) { m := new(base.PiecePacket) if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err } return m, nil } func (c *daemonClient) StatTask(ctx context.Context, in *StatTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { out := new(emptypb.Empty) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/StatTask", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *daemonClient) ImportTask(ctx context.Context, in *ImportTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { out := new(emptypb.Empty) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/ImportTask", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *daemonClient) ExportTask(ctx context.Context, in *ExportTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { out := new(emptypb.Empty) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/ExportTask", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *daemonClient) DeleteTask(ctx context.Context, in *DeleteTaskRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { out := new(emptypb.Empty) err := c.cc.Invoke(ctx, "/dfdaemon.Daemon/DeleteTask", in, out, opts...) if err != nil { return nil, err } return out, nil } // DaemonServer is the server API for Daemon service. type DaemonServer interface { // Trigger client to download file Download(*DownRequest, Daemon_DownloadServer) error // Get piece tasks from other peers GetPieceTasks(context.Context, *base.PieceTaskRequest) (*base.PiecePacket, error) // Check daemon health CheckHealth(context.Context, *emptypb.Empty) (*emptypb.Empty, error) // Sync piece tasks with other peers SyncPieceTasks(Daemon_SyncPieceTasksServer) error // Check if given task exists in P2P cache system StatTask(context.Context, *StatTaskRequest) (*emptypb.Empty, error) // Import the given file into P2P cache system ImportTask(context.Context, *ImportTaskRequest) (*emptypb.Empty, error) // Export or download file from P2P cache system ExportTask(context.Context, *ExportTaskRequest) (*emptypb.Empty, error) // Delete file from P2P cache system DeleteTask(context.Context, *DeleteTaskRequest) (*emptypb.Empty, error) } // UnimplementedDaemonServer can be embedded to have forward compatible implementations. type UnimplementedDaemonServer struct { } func (*UnimplementedDaemonServer) Download(*DownRequest, Daemon_DownloadServer) error { return status.Errorf(codes.Unimplemented, "method Download not implemented") } func (*UnimplementedDaemonServer) GetPieceTasks(context.Context, *base.PieceTaskRequest) (*base.PiecePacket, error) { return nil, status.Errorf(codes.Unimplemented, "method GetPieceTasks not implemented") } func (*UnimplementedDaemonServer) CheckHealth(context.Context, *emptypb.Empty) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method CheckHealth not implemented") } func (*UnimplementedDaemonServer) SyncPieceTasks(Daemon_SyncPieceTasksServer) error { return status.Errorf(codes.Unimplemented, "method SyncPieceTasks not implemented") } func (*UnimplementedDaemonServer) StatTask(context.Context, *StatTaskRequest) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method StatTask not implemented") } func (*UnimplementedDaemonServer) ImportTask(context.Context, *ImportTaskRequest) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method ImportTask not implemented") } func (*UnimplementedDaemonServer) ExportTask(context.Context, *ExportTaskRequest) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method ExportTask not implemented") } func (*UnimplementedDaemonServer) DeleteTask(context.Context, *DeleteTaskRequest) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method DeleteTask not implemented") } func RegisterDaemonServer(s *grpc.Server, srv DaemonServer) { s.RegisterService(&_Daemon_serviceDesc, srv) } func _Daemon_Download_Handler(srv any, stream grpc.ServerStream) error { m := new(DownRequest) if err := stream.RecvMsg(m); err != nil { return err } return srv.(DaemonServer).Download(m, &daemonDownloadServer{stream}) } type Daemon_DownloadServer interface { Send(*DownResult) error grpc.ServerStream } type daemonDownloadServer struct { grpc.ServerStream } func (x *daemonDownloadServer) Send(m *DownResult) error { return x.ServerStream.SendMsg(m) } func _Daemon_GetPieceTasks_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(base.PieceTaskRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).GetPieceTasks(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/GetPieceTasks", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).GetPieceTasks(ctx, req.(*base.PieceTaskRequest)) } return interceptor(ctx, in, info, handler) } func _Daemon_CheckHealth_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(emptypb.Empty) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).CheckHealth(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/CheckHealth", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).CheckHealth(ctx, req.(*emptypb.Empty)) } return interceptor(ctx, in, info, handler) } func _Daemon_SyncPieceTasks_Handler(srv any, stream grpc.ServerStream) error { return srv.(DaemonServer).SyncPieceTasks(&daemonSyncPieceTasksServer{stream}) } type Daemon_SyncPieceTasksServer interface { Send(*base.PiecePacket) error Recv() (*base.PieceTaskRequest, error) grpc.ServerStream } type daemonSyncPieceTasksServer struct { grpc.ServerStream } func (x *daemonSyncPieceTasksServer) Send(m *base.PiecePacket) error { return x.ServerStream.SendMsg(m) } func (x *daemonSyncPieceTasksServer) Recv() (*base.PieceTaskRequest, error) { m := new(base.PieceTaskRequest) if err := x.ServerStream.RecvMsg(m); err != nil { return nil, err } return m, nil } func _Daemon_StatTask_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(StatTaskRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).StatTask(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/StatTask", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).StatTask(ctx, req.(*StatTaskRequest)) } return interceptor(ctx, in, info, handler) } func _Daemon_ImportTask_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(ImportTaskRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).ImportTask(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/ImportTask", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).ImportTask(ctx, req.(*ImportTaskRequest)) } return interceptor(ctx, in, info, handler) } func _Daemon_ExportTask_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(ExportTaskRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).ExportTask(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/ExportTask", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).ExportTask(ctx, req.(*ExportTaskRequest)) } return interceptor(ctx, in, info, handler) } func _Daemon_DeleteTask_Handler(srv any, ctx context.Context, dec func(any) error, interceptor grpc.UnaryServerInterceptor) (any, error) { in := new(DeleteTaskRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(DaemonServer).DeleteTask(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/dfdaemon.Daemon/DeleteTask", } handler := func(ctx context.Context, req any) (any, error) { return srv.(DaemonServer).DeleteTask(ctx, req.(*DeleteTaskRequest)) } return interceptor(ctx, in, info, handler) } var _Daemon_serviceDesc = grpc.ServiceDesc{ ServiceName: "dfdaemon.Daemon", HandlerType: (*DaemonServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetPieceTasks", Handler: _Daemon_GetPieceTasks_Handler, }, { MethodName: "CheckHealth", Handler: _Daemon_CheckHealth_Handler, }, { MethodName: "StatTask", Handler: _Daemon_StatTask_Handler, }, { MethodName: "ImportTask", Handler: _Daemon_ImportTask_Handler, }, { MethodName: "ExportTask", Handler: _Daemon_ExportTask_Handler, }, { MethodName: "DeleteTask", Handler: _Daemon_DeleteTask_Handler, }, }, Streams: []grpc.StreamDesc{ { StreamName: "Download", Handler: _Daemon_Download_Handler, ServerStreams: true, }, { StreamName: "SyncPieceTasks", Handler: _Daemon_SyncPieceTasks_Handler, ServerStreams: true, ClientStreams: true, }, }, Metadata: "pkg/rpc/dfdaemon/dfdaemon.proto", }