| | 1 | | using System; |
| | 2 | | using System.Threading; |
| | 3 | | using System.Threading.Tasks; |
| | 4 | | using MediaBrowser.Controller.Library; |
| | 5 | | using MediaBrowser.Controller.Persistence; |
| | 6 | | using Microsoft.Extensions.Logging; |
| | 7 | |
|
| | 8 | | namespace Emby.Server.Implementations.Library.Validators |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Class GenresValidator. |
| | 12 | | /// </summary> |
| | 13 | | public class GenresValidator |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// The library manager. |
| | 17 | | /// </summary> |
| | 18 | | private readonly ILibraryManager _libraryManager; |
| | 19 | | private readonly IItemRepository _itemRepo; |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// The logger. |
| | 23 | | /// </summary> |
| | 24 | | private readonly ILogger<GenresValidator> _logger; |
| | 25 | |
|
| | 26 | | /// <summary> |
| | 27 | | /// Initializes a new instance of the <see cref="GenresValidator"/> class. |
| | 28 | | /// </summary> |
| | 29 | | /// <param name="libraryManager">The library manager.</param> |
| | 30 | | /// <param name="logger">The logger.</param> |
| | 31 | | /// <param name="itemRepo">The item repository.</param> |
| | 32 | | public GenresValidator(ILibraryManager libraryManager, ILogger<GenresValidator> logger, IItemRepository itemRepo |
| | 33 | | { |
| 10 | 34 | | _libraryManager = libraryManager; |
| 10 | 35 | | _logger = logger; |
| 10 | 36 | | _itemRepo = itemRepo; |
| 10 | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> |
| | 40 | | /// Runs the specified progress. |
| | 41 | | /// </summary> |
| | 42 | | /// <param name="progress">The progress.</param> |
| | 43 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 44 | | /// <returns>Task.</returns> |
| | 45 | | public async Task Run(IProgress<double> progress, CancellationToken cancellationToken) |
| | 46 | | { |
| | 47 | | var names = _itemRepo.GetGenreNames(); |
| | 48 | |
|
| | 49 | | var numComplete = 0; |
| | 50 | | var count = names.Count; |
| | 51 | |
|
| | 52 | | foreach (var name in names) |
| | 53 | | { |
| | 54 | | try |
| | 55 | | { |
| | 56 | | var item = _libraryManager.GetGenre(name); |
| | 57 | |
|
| | 58 | | await item.RefreshMetadata(cancellationToken).ConfigureAwait(false); |
| | 59 | | } |
| | 60 | | catch (OperationCanceledException) |
| | 61 | | { |
| | 62 | | // Don't clutter the log |
| | 63 | | throw; |
| | 64 | | } |
| | 65 | | catch (Exception ex) |
| | 66 | | { |
| | 67 | | _logger.LogError(ex, "Error refreshing {GenreName}", name); |
| | 68 | | } |
| | 69 | |
|
| | 70 | | numComplete++; |
| | 71 | | double percent = numComplete; |
| | 72 | | percent /= count; |
| | 73 | | percent *= 100; |
| | 74 | |
|
| | 75 | | progress.Report(percent); |
| | 76 | | } |
| | 77 | |
|
| | 78 | | progress.Report(100); |
| | 79 | | } |
| | 80 | | } |
| | 81 | | } |