2023-06-05 00:35:57 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Logging;
|
2023-05-31 22:32:37 +02:00
|
|
|
|
using Newtonsoft.Json;
|
2023-05-31 21:43:07 +02:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
using Tranga.TrangaTasks;
|
2023-06-05 00:35:57 +02:00
|
|
|
|
using JsonConverter = Newtonsoft.Json.JsonConverter;
|
2023-05-19 19:20:06 +02:00
|
|
|
|
|
|
|
|
|
namespace Tranga;
|
2023-05-18 21:08:09 +02:00
|
|
|
|
|
2023-05-19 20:03:17 +02:00
|
|
|
|
/// <summary>
|
2023-05-31 21:44:16 +02:00
|
|
|
|
/// Stores information on Task, when implementing new Tasks also update the serializer
|
2023-05-19 20:03:17 +02:00
|
|
|
|
/// </summary>
|
2023-06-05 00:35:57 +02:00
|
|
|
|
[JsonDerivedType(typeof(DownloadNewChaptersTask), 2)]
|
|
|
|
|
[JsonDerivedType(typeof(UpdateLibrariesTask), 3)]
|
|
|
|
|
[JsonDerivedType(typeof(DownloadChapterTask), 4)]
|
2023-05-31 21:15:32 +02:00
|
|
|
|
public abstract class TrangaTask
|
2023-05-19 14:00:30 +02:00
|
|
|
|
{
|
2023-05-20 12:53:54 +02:00
|
|
|
|
// ReSharper disable once CommentTypo ...Tell me why!
|
2023-05-20 01:06:12 +02:00
|
|
|
|
// ReSharper disable once MemberCanBePrivate.Global I want it thaaat way
|
2023-05-19 16:23:37 +02:00
|
|
|
|
public TimeSpan reoccurrence { get; }
|
|
|
|
|
public DateTime lastExecuted { get; set; }
|
|
|
|
|
public Task task { get; }
|
2023-06-05 00:35:57 +02:00
|
|
|
|
[Newtonsoft.Json.JsonIgnore]public ExecutionState state { get; set; }
|
2023-06-06 20:54:21 +02:00
|
|
|
|
[Newtonsoft.Json.JsonIgnore]public float progress { get; protected set; }
|
2023-06-05 00:35:57 +02:00
|
|
|
|
[Newtonsoft.Json.JsonIgnore]public DateTime nextExecution => lastExecuted.Add(reoccurrence);
|
2023-06-07 00:27:53 +02:00
|
|
|
|
[Newtonsoft.Json.JsonIgnore]public DateTime executionStarted { get; private set; }
|
2023-06-06 21:19:30 +02:00
|
|
|
|
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
public DateTime executionApproximatelyFinished => this.progress != 0
|
|
|
|
|
? this.executionStarted.Add(DateTime.Now.Subtract(this.executionStarted) / this.progress)
|
|
|
|
|
: DateTime.MaxValue;
|
|
|
|
|
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
|
|
|
public TimeSpan executionApproximatelyRemaining => this.executionApproximatelyFinished.Subtract(DateTime.Now);
|
2023-06-07 00:27:53 +02:00
|
|
|
|
|
|
|
|
|
[Newtonsoft.Json.JsonIgnore]public DateTime lastChange { get; protected set; }
|
2023-05-20 14:50:48 +02:00
|
|
|
|
|
|
|
|
|
public enum ExecutionState
|
|
|
|
|
{
|
|
|
|
|
Waiting,
|
|
|
|
|
Enqueued,
|
|
|
|
|
Running
|
|
|
|
|
};
|
2023-05-19 14:00:30 +02:00
|
|
|
|
|
2023-06-05 00:35:57 +02:00
|
|
|
|
protected TrangaTask(Task task, TimeSpan reoccurrence)
|
2023-05-17 23:23:01 +02:00
|
|
|
|
{
|
2023-05-18 21:08:09 +02:00
|
|
|
|
this.reoccurrence = reoccurrence;
|
2023-05-19 14:00:30 +02:00
|
|
|
|
this.lastExecuted = DateTime.Now.Subtract(reoccurrence);
|
|
|
|
|
this.task = task;
|
2023-06-05 00:35:57 +02:00
|
|
|
|
this.progress = 0f;
|
2023-06-06 21:19:30 +02:00
|
|
|
|
this.executionStarted = DateTime.Now;
|
2023-06-07 00:27:53 +02:00
|
|
|
|
this.lastChange = DateTime.Now;
|
2023-05-18 21:08:09 +02:00
|
|
|
|
}
|
2023-06-06 20:54:21 +02:00
|
|
|
|
|
|
|
|
|
public float IncrementProgress(float amount)
|
|
|
|
|
{
|
|
|
|
|
this.progress += amount;
|
2023-06-07 00:27:53 +02:00
|
|
|
|
this.lastChange = DateTime.Now;
|
2023-06-06 20:54:21 +02:00
|
|
|
|
return this.progress;
|
|
|
|
|
}
|
2023-06-01 10:35:23 +02:00
|
|
|
|
|
2023-05-31 21:40:00 +02:00
|
|
|
|
/// <summary>
|
2023-06-01 10:35:23 +02:00
|
|
|
|
/// BL for concrete Tasks
|
2023-05-31 21:40:00 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskManager"></param>
|
2023-05-31 22:32:37 +02:00
|
|
|
|
/// <param name="logger"></param>
|
2023-06-01 10:35:23 +02:00
|
|
|
|
protected abstract void ExecuteTask(TaskManager taskManager, Logger? logger);
|
2023-05-17 23:23:01 +02:00
|
|
|
|
|
2023-06-01 10:35:23 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Execute the task
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="taskManager">Should be the parent taskManager</param>
|
|
|
|
|
/// <param name="logger"></param>
|
|
|
|
|
public void Execute(TaskManager taskManager, Logger? logger)
|
2023-05-31 22:32:37 +02:00
|
|
|
|
{
|
|
|
|
|
logger?.WriteLine(this.GetType().ToString(), $"Executing Task {this}");
|
|
|
|
|
this.state = ExecutionState.Running;
|
2023-06-06 21:19:30 +02:00
|
|
|
|
this.executionStarted = DateTime.Now;
|
2023-06-01 10:35:23 +02:00
|
|
|
|
ExecuteTask(taskManager, logger);
|
|
|
|
|
this.lastExecuted = DateTime.Now;
|
|
|
|
|
this.state = ExecutionState.Waiting;
|
|
|
|
|
logger?.WriteLine(this.GetType().ToString(), $"Finished Executing Task {this}");
|
2023-05-31 22:32:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 10:35:23 +02:00
|
|
|
|
/// <returns>True if elapsed time since last execution is greater than set interval</returns>
|
|
|
|
|
public bool ShouldExecute()
|
2023-05-31 22:32:37 +02:00
|
|
|
|
{
|
2023-06-05 00:35:57 +02:00
|
|
|
|
return nextExecution < DateTime.Now && state is ExecutionState.Waiting;
|
2023-05-31 22:32:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2023-05-31 22:26:53 +02:00
|
|
|
|
public enum Task : byte
|
2023-05-17 23:23:01 +02:00
|
|
|
|
{
|
2023-05-31 22:26:53 +02:00
|
|
|
|
DownloadNewChapters = 2,
|
2023-06-05 00:35:57 +02:00
|
|
|
|
UpdateLibraries = 3,
|
|
|
|
|
DownloadChapter = 4
|
2023-05-17 23:23:01 +02:00
|
|
|
|
}
|
2023-05-20 00:37:31 +02:00
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2023-06-06 21:19:30 +02:00
|
|
|
|
return $"{task}, {lastExecuted}, {reoccurrence}, {state}, {progress:P2}, {executionApproximatelyFinished}, {executionApproximatelyRemaining}";
|
2023-05-20 00:37:31 +02:00
|
|
|
|
}
|
2023-05-31 21:43:07 +02:00
|
|
|
|
|
|
|
|
|
public class TrangaTaskJsonConverter : JsonConverter
|
|
|
|
|
{
|
|
|
|
|
public override bool CanConvert(Type objectType)
|
|
|
|
|
{
|
|
|
|
|
return (objectType == typeof(TrangaTask));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override object ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
|
|
|
|
|
{
|
|
|
|
|
JObject jo = JObject.Load(reader);
|
|
|
|
|
if (jo["task"]!.Value<Int64>() == (Int64)Task.DownloadNewChapters)
|
|
|
|
|
return jo.ToObject<DownloadNewChaptersTask>(serializer)!;
|
|
|
|
|
|
2023-06-03 15:17:08 +02:00
|
|
|
|
if (jo["task"]!.Value<Int64>() == (Int64)Task.UpdateLibraries)
|
|
|
|
|
return jo.ToObject<UpdateLibrariesTask>(serializer)!;
|
2023-06-05 00:35:57 +02:00
|
|
|
|
|
|
|
|
|
if (jo["task"]!.Value<Int64>() == (Int64)Task.DownloadChapter)
|
|
|
|
|
return jo.ToObject<DownloadChapterTask>(serializer)!;
|
2023-05-31 21:43:07 +02:00
|
|
|
|
|
|
|
|
|
throw new Exception();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool CanWrite => false;
|
|
|
|
|
|
2023-05-31 21:44:16 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Don't call this
|
|
|
|
|
/// </summary>
|
2023-05-31 21:43:07 +02:00
|
|
|
|
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Dont call this");
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-05-17 23:23:01 +02:00
|
|
|
|
}
|