jellyfin/MediaBrowser.Controller/ScheduledTasks/PluginUpdateTask.cs

121 lines
3.9 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.ScheduledTasks;
2013-02-23 08:57:11 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Net;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.ScheduledTasks
{
/// <summary>
/// Plugin Update Task
/// </summary>
public class PluginUpdateTask : BaseScheduledTask<Kernel>
{
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="PluginUpdateTask" /> class.
/// </summary>
/// <param name="kernel">The kernel.</param>
/// <param name="logger"></param>
public PluginUpdateTask(Kernel kernel, ITaskManager taskManager, ILogger logger)
: base(kernel, taskManager, logger)
{
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Creates the triggers that define when the task will run
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
2013-02-24 22:53:54 +01:00
public override IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
2013-02-24 22:53:54 +01:00
return new ITaskTrigger[] {
2013-02-21 02:33:05 +01:00
// 1:30am
new DailyTrigger { TimeOfDay = TimeSpan.FromHours(1.5) },
new IntervalTrigger { Interval = TimeSpan.FromHours(2)}
};
}
/// <summary>
/// Update installed plugins
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
2013-02-22 05:23:06 +01:00
protected override async Task ExecuteInternal(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
2013-02-22 05:23:06 +01:00
progress.Report(0);
2013-02-21 02:33:05 +01:00
var packagesToInstall = (await Kernel.InstallationManager.GetAvailablePluginUpdates(true, cancellationToken).ConfigureAwait(false)).ToList();
2013-02-22 05:23:06 +01:00
progress.Report(10);
2013-02-21 02:33:05 +01:00
var numComplete = 0;
// Create tasks for each one
var tasks = packagesToInstall.Select(i => Task.Run(async () =>
{
cancellationToken.ThrowIfCancellationRequested();
try
{
await Kernel.InstallationManager.InstallPackage(i, new Progress<double> { }, cancellationToken).ConfigureAwait(false);
}
catch (OperationCanceledException)
{
// InstallPackage has it's own inner cancellation token, so only throw this if it's ours
if (cancellationToken.IsCancellationRequested)
{
throw;
}
}
catch (HttpException ex)
{
Logger.ErrorException("Error downloading {0}", ex, i.name);
}
catch (IOException ex)
{
Logger.ErrorException("Error updating {0}", ex, i.name);
}
// Update progress
lock (progress)
{
numComplete++;
double percent = numComplete;
percent /= packagesToInstall.Count;
2013-02-22 05:23:06 +01:00
progress.Report((90 * percent) + 10);
2013-02-21 02:33:05 +01:00
}
}));
cancellationToken.ThrowIfCancellationRequested();
await Task.WhenAll(tasks).ConfigureAwait(false);
2013-02-22 05:23:06 +01:00
progress.Report(100);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the name of the task
/// </summary>
/// <value>The name.</value>
public override string Name
{
get { return "Check for plugin updates"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public override string Description
{
get { return "Downloads and installs updates for plugins that are configured to update automatically."; }
}
}
}