2013-09-10 18:56:00 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Validators
|
|
|
|
|
{
|
|
|
|
|
class GameGenresValidator
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _library manager
|
|
|
|
|
/// </summary>
|
2013-09-17 02:08:18 +00:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _user manager
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _logger
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
2013-09-17 02:08:18 +00:00
|
|
|
|
public GameGenresValidator(ILibraryManager libraryManager, IUserManager userManager, ILogger logger)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
|
|
|
|
_libraryManager = libraryManager;
|
|
|
|
|
_userManager = userManager;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Runs the specified progress.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="progress">The progress.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
public async Task Run(IProgress<double> progress, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
var items = _libraryManager.RootFolder.RecursiveChildren.Where(i => (i is Game))
|
|
|
|
|
.SelectMany(i => i.Genres)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
progress.Report(2);
|
|
|
|
|
var numComplete = 0;
|
2014-03-09 22:14:44 +00:00
|
|
|
|
var count = items.Count;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
2014-03-09 22:14:44 +00:00
|
|
|
|
foreach (var name in items)
|
2013-09-10 18:56:00 +00:00
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
var itemByName = _libraryManager.GetGameGenre(name);
|
|
|
|
|
|
|
|
|
|
await itemByName.RefreshMetadata(cancellationToken).ConfigureAwait(false);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2013-09-24 21:06:21 +00:00
|
|
|
|
catch (OperationCanceledException)
|
|
|
|
|
{
|
|
|
|
|
// Don't clutter the log
|
2013-10-18 19:08:48 +00:00
|
|
|
|
break;
|
2013-09-24 21:06:21 +00:00
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2014-03-09 22:14:44 +00:00
|
|
|
|
_logger.ErrorException("Error refreshing {0}", ex, name);
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
numComplete++;
|
|
|
|
|
double percent = numComplete;
|
2013-09-11 17:54:59 +00:00
|
|
|
|
percent /= count;
|
2013-09-10 18:56:00 +00:00
|
|
|
|
percent *= 90;
|
|
|
|
|
|
|
|
|
|
progress.Report(percent + 10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
progress.Report(100);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|