jellyfin/Emby.Server.Implementations/Library/Validators/MusicGenresValidator.cs

82 lines
2.5 KiB
C#
Raw Normal View History

using System;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller.Library;
2016-08-19 07:58:35 +02:00
using MediaBrowser.Controller.Persistence;
using Microsoft.Extensions.Logging;
namespace Emby.Server.Implementations.Library.Validators
{
2019-11-01 18:38:54 +01:00
/// <summary>
/// Class MusicGenresValidator.
/// </summary>
public class MusicGenresValidator
{
/// <summary>
/// The library manager.
/// </summary>
private readonly ILibraryManager _libraryManager;
/// <summary>
/// The logger.
/// </summary>
2020-06-06 02:15:56 +02:00
private readonly ILogger<MusicGenresValidator> _logger;
2016-08-19 07:58:35 +02:00
private readonly IItemRepository _itemRepo;
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="MusicGenresValidator" /> class.
/// </summary>
/// <param name="libraryManager">The library manager.</param>
/// <param name="logger">The logger.</param>
/// <param name="itemRepo">The item repository.</param>
2020-06-06 02:15:56 +02:00
public MusicGenresValidator(ILibraryManager libraryManager, ILogger<MusicGenresValidator> logger, IItemRepository itemRepo)
{
_libraryManager = libraryManager;
_logger = logger;
2016-08-19 07:58:35 +02:00
_itemRepo = itemRepo;
}
/// <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)
{
2016-08-19 07:58:35 +02:00
var names = _itemRepo.GetMusicGenreNames();
var numComplete = 0;
2016-08-19 07:58:35 +02:00
var count = names.Count;
2016-08-19 07:58:35 +02:00
foreach (var name in names)
{
try
{
2016-08-19 07:58:35 +02:00
var item = _libraryManager.GetMusicGenre(name);
2016-08-06 06:38:01 +02:00
await item.RefreshMetadata(cancellationToken).ConfigureAwait(false);
}
2013-09-24 23:06:21 +02:00
catch (OperationCanceledException)
{
// Don't clutter the log
2017-05-10 21:12:03 +02:00
throw;
2013-09-24 23:06:21 +02:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error refreshing {GenreName}", name);
}
numComplete++;
double percent = numComplete;
2013-09-11 19:54:59 +02:00
percent /= count;
2015-01-17 19:15:09 +01:00
percent *= 100;
2015-01-17 19:15:09 +01:00
progress.Report(percent);
}
progress.Report(100);
}
}
}