You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.4 KiB
66 lines
2.4 KiB
namespace StabilityMatrix.Core.Models.Progress; |
|
|
|
public record struct ProgressReport |
|
{ |
|
/// <summary> |
|
/// Progress value as percentage between 0 and 1. |
|
/// </summary> |
|
public double? Progress { get; init; } = 0; |
|
/// <summary> |
|
/// Current progress count. |
|
/// </summary> |
|
public ulong? Current { get; init; } = 0; |
|
/// <summary> |
|
/// Total progress count. |
|
/// </summary> |
|
public ulong? Total { get; init; } = 0; |
|
public string? Title { get; init; } |
|
public string? Message { get; init; } |
|
public bool IsIndeterminate { get; init; } = false; |
|
public float Percentage => (float) Math.Ceiling(Math.Clamp(Progress ?? 0, 0, 1) * 100); |
|
public ProgressType Type { get; init; } = ProgressType.Generic; |
|
|
|
public ProgressReport(double progress, string? title = null, string? message = null, bool isIndeterminate = false, ProgressType type = ProgressType.Generic) |
|
{ |
|
Progress = progress; |
|
Title = title; |
|
Message = message; |
|
IsIndeterminate = isIndeterminate; |
|
Type = type; |
|
} |
|
|
|
public ProgressReport(ulong current, ulong total, string? title = null, string? message = null, bool isIndeterminate = false, ProgressType type = ProgressType.Generic) |
|
{ |
|
Current = current; |
|
Total = total; |
|
Progress = (double) current / total; |
|
Title = title; |
|
Message = message; |
|
IsIndeterminate = isIndeterminate; |
|
Type = type; |
|
} |
|
|
|
public ProgressReport(int current, int total, string? title = null, string? message = null, bool isIndeterminate = false, ProgressType type = ProgressType.Generic) |
|
{ |
|
if (current < 0) throw new ArgumentOutOfRangeException(nameof(current), "Current progress cannot negative."); |
|
if (total < 0) throw new ArgumentOutOfRangeException(nameof(total), "Total progress cannot be negative."); |
|
Current = (ulong) current; |
|
Total = (ulong) total; |
|
Progress = (double) current / total; |
|
Title = title; |
|
Message = message; |
|
IsIndeterminate = isIndeterminate; |
|
Type = type; |
|
} |
|
|
|
public ProgressReport(ulong current, string? title = null, string? message = null, ProgressType type = ProgressType.Generic) |
|
{ |
|
Current = current; |
|
Title = title; |
|
Message = message; |
|
IsIndeterminate = true; |
|
Type = type; |
|
} |
|
|
|
// Implicit conversion from action |
|
}
|
|
|