jellyfin/MediaBrowser.Server.Implementations/Sync/MultiProviderSync.cs

75 lines
2.6 KiB
C#
Raw Normal View History

2015-04-05 17:01:57 +02:00
using MediaBrowser.Common.Configuration;
2015-02-28 14:42:47 +01:00
using MediaBrowser.Common.Progress;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Sync;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Sync;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2015-02-28 14:42:47 +01:00
namespace MediaBrowser.Server.Implementations.Sync
{
public class MultiProviderSync
{
2015-03-08 05:44:31 +01:00
private readonly SyncManager _syncManager;
2015-02-28 14:42:47 +01:00
private readonly IServerApplicationHost _appHost;
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
2015-04-05 17:01:57 +02:00
private readonly IConfigurationManager _config;
2015-02-28 14:42:47 +01:00
2015-04-05 17:01:57 +02:00
public MultiProviderSync(SyncManager syncManager, IServerApplicationHost appHost, ILogger logger, IFileSystem fileSystem, IConfigurationManager config)
2015-02-28 14:42:47 +01:00
{
_syncManager = syncManager;
_appHost = appHost;
_logger = logger;
_fileSystem = fileSystem;
2015-04-05 17:01:57 +02:00
_config = config;
2015-02-28 14:42:47 +01:00
}
public async Task Sync(IEnumerable<IServerSyncProvider> providers, IProgress<double> progress, CancellationToken cancellationToken)
{
var targets = providers
.SelectMany(i => i.GetAllSyncTargets().Select(t => new Tuple<IServerSyncProvider, SyncTarget>(i, t)))
.ToList();
var numComplete = 0;
double startingPercent = 0;
double percentPerItem = 1;
if (targets.Count > 0)
{
percentPerItem /= targets.Count;
}
foreach (var target in targets)
{
cancellationToken.ThrowIfCancellationRequested();
var currentPercent = startingPercent;
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(pct =>
{
var totalProgress = pct * percentPerItem;
totalProgress += currentPercent;
progress.Report(totalProgress);
});
2015-03-08 05:44:31 +01:00
var dataProvider = _syncManager.GetDataProvider(target.Item1, target.Item2);
2015-04-05 17:01:57 +02:00
await new MediaSync(_logger, _syncManager, _appHost, _fileSystem, _config)
2015-03-08 05:44:31 +01:00
.Sync(target.Item1, dataProvider, target.Item2, innerProgress, cancellationToken)
2015-02-28 14:42:47 +01:00
.ConfigureAwait(false);
numComplete++;
startingPercent = numComplete;
startingPercent /= targets.Count;
startingPercent *= 100;
progress.Report(startingPercent);
}
}
}
}