| | 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 GenresPostScanTask. |
| | 12 | | /// </summary> |
| | 13 | | public class GenresPostScanTask : ILibraryPostScanTask |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// The _library manager. |
| | 17 | | /// </summary> |
| | 18 | | private readonly ILibraryManager _libraryManager; |
| | 19 | | private readonly ILogger<GenresValidator> _logger; |
| | 20 | | private readonly IItemRepository _itemRepo; |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Initializes a new instance of the <see cref="GenresPostScanTask" /> class. |
| | 24 | | /// </summary> |
| | 25 | | /// <param name="libraryManager">The library manager.</param> |
| | 26 | | /// <param name="logger">The logger.</param> |
| | 27 | | /// <param name="itemRepo">The item repository.</param> |
| | 28 | | public GenresPostScanTask( |
| | 29 | | ILibraryManager libraryManager, |
| | 30 | | ILogger<GenresValidator> logger, |
| | 31 | | IItemRepository itemRepo) |
| | 32 | | { |
| 21 | 33 | | _libraryManager = libraryManager; |
| 21 | 34 | | _logger = logger; |
| 21 | 35 | | _itemRepo = itemRepo; |
| 21 | 36 | | } |
| | 37 | |
|
| | 38 | | /// <summary> |
| | 39 | | /// Runs the specified progress. |
| | 40 | | /// </summary> |
| | 41 | | /// <param name="progress">The progress.</param> |
| | 42 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 43 | | /// <returns>Task.</returns> |
| | 44 | | public Task Run(IProgress<double> progress, CancellationToken cancellationToken) |
| | 45 | | { |
| 10 | 46 | | return new GenresValidator(_libraryManager, _logger, _itemRepo).Run(progress, cancellationToken); |
| | 47 | | } |
| | 48 | | } |
| | 49 | | } |