mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.RateLimiter;
|
|
|
|
public class Job<T> : IJob, IDisposable
|
|
{
|
|
public ulong ID { get; internal init; }
|
|
public string Description { get; internal init; }
|
|
public bool Started { get; internal set; }
|
|
public IResource<T> Resource { get; init; }
|
|
|
|
private bool _isFinished = false;
|
|
|
|
public void Dispose()
|
|
{
|
|
if (_isFinished) return;
|
|
_isFinished = true;
|
|
Resource.Finish(this);
|
|
}
|
|
|
|
public long Current { get; internal set; }
|
|
public long? Size { get; set; }
|
|
|
|
public async ValueTask Report(int processedSize, CancellationToken token)
|
|
{
|
|
await Resource.Report(this, processedSize, token);
|
|
Current += processedSize;
|
|
OnUpdate?.Invoke(this, (Percent.FactoryPutInRange(Current, Size ?? 1), Current));
|
|
}
|
|
|
|
public void ReportNoWait(int processedSize)
|
|
{
|
|
Resource.ReportNoWait(this, processedSize);
|
|
OnUpdate?.Invoke(this, (Percent.FactoryPutInRange(Current, Size ?? 1), Current));
|
|
}
|
|
|
|
public event EventHandler<(Percent Progress, long Processed)> OnUpdate;
|
|
} |