| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 | using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using Jellyfin.Data.Events;using MediaBrowser.Common.Configuration;using MediaBrowser.Model.Tasks;using Microsoft.Extensions.Logging;namespace Emby.Server.Implementations.ScheduledTasks;/// <summary>/// Class TaskManager./// </summary>public class TaskManager : ITaskManager{    /// <summary>    /// The _task queue.    /// </summary>    private readonly ConcurrentQueue<Tuple<Type, TaskOptions>> _taskQueue =        new ConcurrentQueue<Tuple<Type, TaskOptions>>();    private readonly IApplicationPaths _applicationPaths;    private readonly ILogger<TaskManager> _logger;    /// <summary>    /// Initializes a new instance of the <see cref="TaskManager" /> class.    /// </summary>    /// <param name="applicationPaths">The application paths.</param>    /// <param name="logger">The logger.</param>    public TaskManager(        IApplicationPaths applicationPaths,        ILogger<TaskManager> logger)    {        _applicationPaths = applicationPaths;        _logger = logger;        ScheduledTasks = [];    }    /// <inheritdoc />    public event EventHandler<GenericEventArgs<IScheduledTaskWorker>>? TaskExecuting;    /// <inheritdoc />    public event EventHandler<TaskCompletionEventArgs>? TaskCompleted;    /// <inheritdoc />    public IReadOnlyList<IScheduledTaskWorker> ScheduledTasks { get; private set; }    /// <inheritdoc />    public void CancelIfRunningAndQueue<T>(TaskOptions options)        where T : IScheduledTask    {        var task = ScheduledTasks.First(t => t.ScheduledTask.GetType() == typeof(T));        ((ScheduledTaskWorker)task).CancelIfRunning();        QueueScheduledTask<T>(options);    }    /// <inheritdoc />    public void CancelIfRunningAndQueue<T>()            where T : IScheduledTask    {        CancelIfRunningAndQueue<T>(new TaskOptions());    }    /// <inheritdoc />    public void CancelIfRunning<T>()                where T : IScheduledTask    {        var task = ScheduledTasks.First(t => t.ScheduledTask.GetType() == typeof(T));        ((ScheduledTaskWorker)task).CancelIfRunning();    }    /// <inheritdoc />    public void QueueScheduledTask<T>(TaskOptions options)        where T : IScheduledTask    {        var scheduledTask = ScheduledTasks.FirstOrDefault(t => t.ScheduledTask.GetType() == typeof(T));        if (scheduledTask is null)        {            _logger.LogError("Unable to find scheduled task of type {Type} in QueueScheduledTask.", typeof(T).Name);        }        else        {            QueueScheduledTask(scheduledTask, options);        }    }    /// <inheritdoc />    public void QueueScheduledTask<T>()        where T : IScheduledTask    {        QueueScheduledTask<T>(new TaskOptions());    }    /// <inheritdoc />    public void QueueIfNotRunning<T>()        where T : IScheduledTask    {        var task = ScheduledTasks.First(t => t.ScheduledTask.GetType() == typeof(T));        if (task.State != TaskState.Running)        {            QueueScheduledTask<T>(new TaskOptions());        }    }    /// <inheritdoc />    public void Execute<T>()        where T : IScheduledTask    {        var scheduledTask = ScheduledTasks.FirstOrDefault(t => t.ScheduledTask.GetType() == typeof(T));        if (scheduledTask is null)        {            _logger.LogError("Unable to find scheduled task of type {Type} in Execute.", typeof(T).Name);        }        else        {            var type = scheduledTask.ScheduledTask.GetType();            _logger.LogDebug("Queuing task {Name}", type.Name);            lock (_taskQueue)            {                if (scheduledTask.State == TaskState.Idle)                {                    Execute(scheduledTask, new TaskOptions());                }            }        }    }    /// <inheritdoc />    public void QueueScheduledTask(IScheduledTask task, TaskOptions options)    {        var scheduledTask = ScheduledTasks.FirstOrDefault(t => t.ScheduledTask.GetType() == task.GetType());        if (scheduledTask is null)        {            _logger.LogError("Unable to find scheduled task of type {Type} in QueueScheduledTask.", task.GetType().Name);        }        else        {            QueueScheduledTask(scheduledTask, options);        }    }    /// <summary>    /// Queues the scheduled task.    /// </summary>    /// <param name="task">The task.</param>    /// <param name="options">The task options.</param>    private void QueueScheduledTask(IScheduledTaskWorker task, TaskOptions options)    {        var type = task.ScheduledTask.GetType();        _logger.LogDebug("Queuing task {Name}", type.Name);        lock (_taskQueue)        {            if (task.State == TaskState.Idle)            {                Execute(task, options);                return;            }            _taskQueue.Enqueue(new Tuple<Type, TaskOptions>(type, options));        }    }    /// <inheritdoc />    public void AddTasks(IEnumerable<IScheduledTask> tasks)    {        var list = tasks.Select(t => new ScheduledTaskWorker(t, _applicationPaths, this, _logger));        ScheduledTasks = ScheduledTasks.Concat(list).ToArray();    }    /// <inheritdoc />    public void Dispose()    {        Dispose(true);        GC.SuppressFinalize(this);    }    /// <summary>    /// Releases unmanaged and - optionally - managed resources.    /// </summary>    /// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>    protected virtual void Dispose(bool dispose)    {        foreach (var task in ScheduledTasks)        {            task.Dispose();        }    }    /// <inheritdoc />    public void Cancel(IScheduledTaskWorker task)    {        ((ScheduledTaskWorker)task).Cancel();    }    /// <inheritdoc />    public Task Execute(IScheduledTaskWorker task, TaskOptions options)    {        return ((ScheduledTaskWorker)task).Execute(options);    }    /// <summary>    /// Called when [task executing].    /// </summary>    /// <param name="task">The task.</param>    internal void OnTaskExecuting(IScheduledTaskWorker task)    {        TaskExecuting?.Invoke(this, new GenericEventArgs<IScheduledTaskWorker>(task));    }    /// <summary>    /// Called when [task completed].    /// </summary>    /// <param name="task">The task.</param>    /// <param name="result">The result.</param>    internal void OnTaskCompleted(IScheduledTaskWorker task, TaskResult result)    {        TaskCompleted?.Invoke(task, new TaskCompletionEventArgs(task, result));        ExecuteQueuedTasks();    }    /// <summary>    /// Executes the queued tasks.    /// </summary>    private void ExecuteQueuedTasks()    {        lock (_taskQueue)        {            var list = new List<Tuple<Type, TaskOptions>>();            while (_taskQueue.TryDequeue(out var item))            {                if (list.All(i => i.Item1 != item.Item1))                {                    list.Add(item);                }            }            foreach (var enqueuedType in list)            {                var scheduledTask = ScheduledTasks.First(t => t.ScheduledTask.GetType() == enqueuedType.Item1);                if (scheduledTask.State == TaskState.Idle)                {                    Execute(scheduledTask, enqueuedType.Item2);                }            }        }    }}
 |