using Newtonsoft.Json; using Tranga.Connectors; namespace Tranga; /// /// Manages all TrangaTasks. /// Provides a Threaded environment to execute Tasks, and still manage the Task-Collection /// public class TaskManager { private readonly Dictionary> _chapterCollection; private readonly HashSet _allTasks; private bool _continueRunning = true; private readonly Connector[] connectors; private readonly string folderPath; /// /// /// /// Local path to save data (Manga) to public TaskManager(string folderPath) { this.folderPath = folderPath; this.connectors = new Connector[]{ new MangaDex(folderPath) }; _chapterCollection = new(); _allTasks = ImportTasks(Directory.GetCurrentDirectory()); Thread taskChecker = new(TaskCheckerThread); taskChecker.Start(); } private void TaskCheckerThread() { while (_continueRunning) { foreach (TrangaTask task in _allTasks) { if(task.ShouldExecute()) TaskExecutor.Execute(this.connectors, task, this._chapterCollection); } Thread.Sleep(1000); } } /// /// Forces the execution of a given task /// /// Task to execute public void ExecuteTaskNow(TrangaTask task) { if (!this._allTasks.Contains(task)) return; Task t = new Task(() => { TaskExecutor.Execute(this.connectors, task, this._chapterCollection); }); t.Start(); } /// /// Creates and adds a new Task to the task-Collection /// /// TrangaTask.Task to later execute /// Name of the connector to use /// Publication to execute Task on, can be null in case of unrelated Task /// Time-Interval between Executions /// language, should Task require parameter. Can be empty /// Is thrown when connectorName is not a available Connector public void AddTask(TrangaTask.Task task, string connectorName, Publication? publication, TimeSpan reoccurrence, string language = "") { Connector? connector = connectors.FirstOrDefault(c => c.name == connectorName); if (connector is null) throw new ArgumentException($"Connector {connectorName} is not a known connector."); if (!_allTasks.Any(trangaTask => trangaTask.task != task && trangaTask.connectorName != connector.name && trangaTask.publication?.downloadUrl != publication?.downloadUrl)) { if(task != TrangaTask.Task.UpdatePublications) _chapterCollection.Add((Publication)publication!, new List()); _allTasks.Add(new TrangaTask(connector.name, task, publication, reoccurrence, language)); ExportTasks(Directory.GetCurrentDirectory()); } } /// /// Removes Task from task-collection /// /// TrangaTask.Task type /// Name of Connector that was used /// Publication that was used public void RemoveTask(TrangaTask.Task task, string connectorName, Publication? publication) { _allTasks.RemoveWhere(trangaTask => trangaTask.task == task && trangaTask.connectorName == connectorName && trangaTask.publication?.downloadUrl == publication?.downloadUrl); ExportTasks(Directory.GetCurrentDirectory()); } /// /// /// /// All available Connectors public Dictionary GetAvailableConnectors() { return this.connectors.ToDictionary(connector => connector.name, connector => connector); } /// /// /// /// All TrangaTasks in task-collection public TrangaTask[] GetAllTasks() { TrangaTask[] ret = new TrangaTask[_allTasks.Count]; _allTasks.CopyTo(ret); return ret; } /// /// /// /// All added Publications public Publication[] GetAllPublications() { return this._chapterCollection.Keys.ToArray(); } /// /// Shuts down the taskManager. /// /// If force is true, tasks are aborted. public void Shutdown(bool force = false) { _continueRunning = false; ExportTasks(Directory.GetCurrentDirectory()); if(force) Environment.Exit(_allTasks.Count(task => task.isBeingExecuted)); //Wait for tasks to finish while(_allTasks.Any(task => task.isBeingExecuted)) Thread.Sleep(10); } private HashSet ImportTasks(string importFolderPath) { string filePath = Path.Join(importFolderPath, "tasks.json"); if (!File.Exists(filePath)) return new HashSet(); string toRead = File.ReadAllText(filePath); TrangaTask[] importTasks = JsonConvert.DeserializeObject(toRead)!; foreach(TrangaTask task in importTasks.Where(task => task.publication is not null)) this._chapterCollection.Add((Publication)task.publication!, new List()); return importTasks.ToHashSet(); } private void ExportTasks(string exportFolderPath) { string filePath = Path.Join(exportFolderPath, "tasks.json"); string toWrite = JsonConvert.SerializeObject(_allTasks.ToArray()); File.WriteAllText(filePath,toWrite); } }