Tranga-Website/Tranga/TaskManager.cs
glax d6ec91c896 Moved files
Added DownloadClient to Connector
2023-05-18 12:26:15 +02:00

52 lines
1.2 KiB
C#

namespace Tranga;
public class TaskManager
{
private readonly Dictionary<Publication, TrangaTask> _allTasks;
private bool _continueRunning = true;
public TaskManager()
{
_allTasks = new Dictionary<Publication, TrangaTask>();
Thread taskChecker = new(TaskCheckerThread);
taskChecker.Start();
}
private void TaskCheckerThread()
{
while (_continueRunning)
{
foreach (TrangaTask task in _allTasks.Values.Where(tt => (DateTime.Now - tt.lastExecuted) > tt.reoccurrence))
{
if (!task.lastExecutedSuccessfully)
{
task.Abort();
//Add logging that task has failed
}
task.Execute();
}
Thread.Sleep(1000);
}
}
public bool PublicationAlreadyAdded(Publication publication)
{
throw new NotImplementedException();
//TODO fuzzy check publications
}
public Publication[] GetAddedPublications()
{
return _allTasks.Keys.ToArray();
}
public TrangaTask[] GetTasks()
{
return _allTasks.Values.ToArray();
}
public void Shutdown()
{
_continueRunning = false;
}
}