1. 从数据库加载下载任务

dev2.0
陈伟 2025-04-23 09:45:08 +08:00
parent b475c7009c
commit 452b0e0b8a
3 changed files with 42 additions and 12 deletions

View File

@ -37,7 +37,7 @@ public class MinioDownloadTask : NotifyPropertyChangedBase
public string ObjectKey { get; set; }
[SugarColumn(ColumnName = "total_size")]
public long TotalSize { get; private set; }
public long TotalSize { get; set; }
[SugarColumn(ColumnName = "downloaded")]
public long Downloaded { get; set; }
@ -118,10 +118,12 @@ public class MinioDownloadTask : NotifyPropertyChangedBase
RaisePropertyChanged();
}
}
public MinioDownloadTask()
{
StartOrPauseIcon = "\xe76e";
Status = "等待中";
}
public MinioDownloadTask(MinioService minio, string bucket, string objectKey, string downDir, string fileSize)
@ -134,8 +136,8 @@ public class MinioDownloadTask : NotifyPropertyChangedBase
FileName = Path.GetFileName(objectKey);
FilePath = downDir;
CreateTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
//var x = _minio.GetObjectMetadata(bucket, objectKey);
//TotalSize = x.Result.Size;
var x = minio.GetObjectMetadata(bucket, objectKey);
TotalSize = x.Result.Size;
FileSize = fileSize;
Speed = Status;
DownloadInfo = $"0MB/{FileSize}";
@ -181,11 +183,13 @@ public class MinioDownloadTask : NotifyPropertyChangedBase
{
var progress = (double)(downloaded + offset) / total * 100;
Downloaded = downloaded + offset;
/*using (var client = SqlSugarConfig.GetSqlSugarScope())
/* todo
using (var client = SqlSugarConfig.GetSqlSugarScope())
{
updateTask.Downloaded = downloaded;
client.Updateable(updateTask).IgnoreNullColumns().ExecuteCommandAsync();
}*/
}
*/
Application.Current.Dispatcher.Invoke(() =>
{
var remaining = total - downloaded;

View File

@ -2,9 +2,7 @@
using System.IO;
using System.Security.Cryptography;
using System.Threading.Channels;
using FileUploader.Models;
using Hopetry.Provider;
using Hopetry.Util;
using Microsoft.Extensions.Configuration;
using Minio;
using Minio.DataModel.Args;
@ -467,6 +465,7 @@ namespace Hopetry.Services
Downloaded = bytesRead + offset
};
client.Updateable(temp).IgnoreNullColumns().ExecuteCommand();
// todo 这里有bug,有可能变成0
downTask.Downloaded = temp.Downloaded;
fileStream.Close();
}

View File

@ -11,7 +11,6 @@ using HeBianGu.Service.Mvc;
using Hopetry.Models;
using Hopetry.Provider;
using Hopetry.Services;
using Newtonsoft.Json;
using Path = System.IO.Path;
namespace Hopetry.ViewModel.Send;
@ -217,9 +216,11 @@ public class DownViewModel : MvcViewModelBase
{
minioDownloadTask.StopDownTs.Cancel();
}
using var client = SqlSugarConfig.GetSqlSugarScope();
client.Deleteable<MinioDownloadTask>().Where(x => x.TaskId == minioDownloadTask.TaskId).ExecuteCommand();
}
RunningTasks.Clear();
RefreshHeader();
MessageProxy.Snacker.Show("取消下载成功");
@ -252,8 +253,12 @@ public class DownViewModel : MvcViewModelBase
item.StartOrPauseIcon = "\xe748";
// 速度及剩余时间(视图显示信息)
item.Speed = "已暂停";
//暂停下载
item.StopDownTs.Cancel();
// 避免结构函数加载的任务报错
if (item.StopDownTs != null)
{
//暂停下载
item.StopDownTs.Cancel();
}
}
else if (item.Status == "已暂停")
{
@ -285,9 +290,30 @@ public class DownViewModel : MvcViewModelBase
// todo 队列中有几种任务状态 数据库中应该有几种任务状态
//
using var client = SqlSugarConfig.GetSqlSugarScope();
// todo
var data = client.Ado
.SqlQuery<MinioDownloadTask>(
$"select * from download_task where status='下载中' or status='等待中' or status='已暂停' order by task_id desc");
$"select * from download_task where status='下载中' or status='等待中' or status='已暂停' order by task_id desc")
.Select(x => new MinioDownloadTask
{
Status = "已暂停",
TaskId = x.TaskId,
FileName = x.FileName,
Bucket = x.Bucket,
ObjectKey = x.ObjectKey,
TotalSize = x.TotalSize,
Downloaded = x.Downloaded,
FilePath = x.FilePath,
CreateTime = x.CreateTime,
FinishedTime = x.FinishedTime,
FileSize = x.FileSize,
FileETag = x.FileETag,
DownloadInfo =
(x.Downloaded > 1048576 ? $"{x.Downloaded / 1048576:f2}MB" : $"{x.Downloaded / 1024:f2}KB") +
$"/{x.FileSize}",
Speed = "已暂停",
StartOrPauseIcon = "\xe748"
}).ToList();
RunningTasks = new ObservableCollection<MinioDownloadTask>(data);
RunningTaskHeader = $"下载中({RunningTasks.Count}";
}
@ -332,6 +358,7 @@ public class DownViewModel : MvcViewModelBase
{
var task = new MinioDownloadTask(_minioService, bucketName, objectKey, downDir, size);
using var client = SqlSugarConfig.GetSqlSugarScope();
//todo 文件总字节数
client.Insertable(task).ExecuteCommandIdentityIntoEntity();
Application.Current.Dispatcher.Invoke(() =>
{