mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 05:34:16 -04:00
Remove ImageFetcherPostScanTask
This commit is contained in:
parent
9e601ba731
commit
3c5bbeb80c
@ -1,130 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.Globalization;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Jellyfin.Data.Events;
|
|
||||||
using MediaBrowser.Controller.Entities;
|
|
||||||
using MediaBrowser.Controller.Library;
|
|
||||||
using MediaBrowser.Controller.Providers;
|
|
||||||
using MediaBrowser.Model.Net;
|
|
||||||
using Microsoft.Extensions.Logging;
|
|
||||||
|
|
||||||
namespace Emby.Server.Implementations.Library
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// A library post scan/refresh task for pre-fetching remote images.
|
|
||||||
/// </summary>
|
|
||||||
public class ImageFetcherPostScanTask : ILibraryPostScanTask
|
|
||||||
{
|
|
||||||
private readonly ILibraryManager _libraryManager;
|
|
||||||
private readonly IProviderManager _providerManager;
|
|
||||||
private readonly ILogger<ImageFetcherPostScanTask> _logger;
|
|
||||||
private readonly SemaphoreSlim _imageFetcherLock;
|
|
||||||
|
|
||||||
private ConcurrentDictionary<Guid, (BaseItem item, ItemUpdateType updateReason)> _queuedItems;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Initializes a new instance of the <see cref="ImageFetcherPostScanTask"/> class.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="libraryManager">An instance of <see cref="ILibraryManager"/>.</param>
|
|
||||||
/// <param name="providerManager">An instance of <see cref="IProviderManager"/>.</param>
|
|
||||||
/// <param name="logger">An instance of <see cref="ILogger{ImageFetcherPostScanTask}"/>.</param>
|
|
||||||
public ImageFetcherPostScanTask(
|
|
||||||
ILibraryManager libraryManager,
|
|
||||||
IProviderManager providerManager,
|
|
||||||
ILogger<ImageFetcherPostScanTask> logger)
|
|
||||||
{
|
|
||||||
_libraryManager = libraryManager;
|
|
||||||
_providerManager = providerManager;
|
|
||||||
_logger = logger;
|
|
||||||
_queuedItems = new ConcurrentDictionary<Guid, (BaseItem item, ItemUpdateType updateReason)>();
|
|
||||||
_imageFetcherLock = new SemaphoreSlim(1, 1);
|
|
||||||
_libraryManager.ItemAdded += OnLibraryManagerItemAddedOrUpdated;
|
|
||||||
_libraryManager.ItemUpdated += OnLibraryManagerItemAddedOrUpdated;
|
|
||||||
_providerManager.RefreshCompleted += OnProviderManagerRefreshCompleted;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public async Task Run(IProgress<double> progress, CancellationToken cancellationToken)
|
|
||||||
{
|
|
||||||
// Sometimes a library scan will cause this to run twice if there's an item refresh going on.
|
|
||||||
await _imageFetcherLock.WaitAsync(cancellationToken).ConfigureAwait(false);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var now = DateTime.UtcNow;
|
|
||||||
var itemGuids = _queuedItems.Keys.ToList();
|
|
||||||
|
|
||||||
for (var i = 0; i < itemGuids.Count; i++)
|
|
||||||
{
|
|
||||||
if (!_queuedItems.TryGetValue(itemGuids[i], out var queuedItem))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var itemId = queuedItem.item.Id.ToString("N", CultureInfo.InvariantCulture);
|
|
||||||
var itemType = queuedItem.item.GetType();
|
|
||||||
_logger.LogDebug(
|
|
||||||
"Updating remote images for item {ItemId} with media type {ItemMediaType}",
|
|
||||||
itemId,
|
|
||||||
itemType);
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await _libraryManager.UpdateImagesAsync(queuedItem.item, queuedItem.updateReason >= ItemUpdateType.ImageUpdate).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.LogError(ex, "Failed to fetch images for {Type} item with id {ItemId}", itemType, itemId);
|
|
||||||
}
|
|
||||||
|
|
||||||
_queuedItems.TryRemove(queuedItem.item.Id, out _);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (itemGuids.Count > 0)
|
|
||||||
{
|
|
||||||
_logger.LogInformation(
|
|
||||||
"Finished updating/pre-fetching {NumberOfImages} images. Elapsed time: {TimeElapsed}s.",
|
|
||||||
itemGuids.Count.ToString(CultureInfo.InvariantCulture),
|
|
||||||
(DateTime.UtcNow - now).TotalSeconds.ToString(CultureInfo.InvariantCulture));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_logger.LogDebug("No images were updated.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
_imageFetcherLock.Release();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnLibraryManagerItemAddedOrUpdated(object sender, ItemChangeEventArgs itemChangeEventArgs)
|
|
||||||
{
|
|
||||||
if (!_queuedItems.ContainsKey(itemChangeEventArgs.Item.Id) && itemChangeEventArgs.Item.ImageInfos.Length > 0)
|
|
||||||
{
|
|
||||||
_queuedItems.AddOrUpdate(
|
|
||||||
itemChangeEventArgs.Item.Id,
|
|
||||||
(itemChangeEventArgs.Item, itemChangeEventArgs.UpdateReason),
|
|
||||||
(key, existingValue) => existingValue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnProviderManagerRefreshCompleted(object sender, GenericEventArgs<BaseItem> e)
|
|
||||||
{
|
|
||||||
if (!_queuedItems.ContainsKey(e.Argument.Id) && e.Argument.ImageInfos.Length > 0)
|
|
||||||
{
|
|
||||||
_queuedItems.AddOrUpdate(
|
|
||||||
e.Argument.Id,
|
|
||||||
(e.Argument, ItemUpdateType.None),
|
|
||||||
(key, existingValue) => existingValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
// The RefreshCompleted event is a bit awkward in that it seems to _only_ be fired on
|
|
||||||
// the item that was refreshed regardless of children refreshes. So we take it as a signal
|
|
||||||
// that the refresh is entirely completed.
|
|
||||||
Run(null, CancellationToken.None).GetAwaiter().GetResult();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1955,9 +1955,9 @@ namespace Emby.Server.Implementations.Library
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public Task UpdateItemsAsync(IReadOnlyList<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
|
public async Task UpdateItemsAsync(IReadOnlyList<BaseItem> items, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
RunMetadataSavers(items, updateReason);
|
await RunMetadataSavers(items, updateReason).ConfigureAwait(false);
|
||||||
|
|
||||||
_itemRepository.SaveItems(items, cancellationToken);
|
_itemRepository.SaveItems(items, cancellationToken);
|
||||||
|
|
||||||
@ -1988,15 +1988,13 @@ namespace Emby.Server.Implementations.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public Task UpdateItemAsync(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
|
public Task UpdateItemAsync(BaseItem item, BaseItem parent, ItemUpdateType updateReason, CancellationToken cancellationToken)
|
||||||
=> UpdateItemsAsync(new[] { item }, parent, updateReason, cancellationToken);
|
=> UpdateItemsAsync(new[] { item }, parent, updateReason, cancellationToken);
|
||||||
|
|
||||||
public void RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason)
|
public async Task RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason)
|
||||||
{
|
{
|
||||||
foreach (var item in items)
|
foreach (var item in items)
|
||||||
{
|
{
|
||||||
@ -2006,6 +2004,8 @@ namespace Emby.Server.Implementations.Library
|
|||||||
}
|
}
|
||||||
|
|
||||||
item.DateLastSaved = DateTime.UtcNow;
|
item.DateLastSaved = DateTime.UtcNow;
|
||||||
|
|
||||||
|
await UpdateImagesAsync(item, updateReason >= ItemUpdateType.ImageUpdate).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -571,7 +571,7 @@ namespace MediaBrowser.Controller.Library
|
|||||||
string videoPath,
|
string videoPath,
|
||||||
string[] files);
|
string[] files);
|
||||||
|
|
||||||
void RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason);
|
Task RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason);
|
||||||
|
|
||||||
BaseItem GetParentItem(string parentId, Guid? userId);
|
BaseItem GetParentItem(string parentId, Guid? userId);
|
||||||
|
|
||||||
|
@ -232,6 +232,7 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
private Task SavePeopleMetadataAsync(List<PersonInfo> people, LibraryOptions libraryOptions, CancellationToken cancellationToken)
|
private Task SavePeopleMetadataAsync(List<PersonInfo> people, LibraryOptions libraryOptions, CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
var personsToSave = new List<BaseItem>();
|
var personsToSave = new List<BaseItem>();
|
||||||
|
var personsToSaveWithImages = new List<BaseItem>();
|
||||||
|
|
||||||
foreach (var person in people)
|
foreach (var person in people)
|
||||||
{
|
{
|
||||||
@ -239,14 +240,13 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
|
|
||||||
if (person.ProviderIds.Count > 0 || !string.IsNullOrWhiteSpace(person.ImageUrl))
|
if (person.ProviderIds.Count > 0 || !string.IsNullOrWhiteSpace(person.ImageUrl))
|
||||||
{
|
{
|
||||||
var saveEntity = false;
|
|
||||||
var personEntity = LibraryManager.GetPerson(person.Name);
|
var personEntity = LibraryManager.GetPerson(person.Name);
|
||||||
foreach (var id in person.ProviderIds)
|
foreach (var id in person.ProviderIds)
|
||||||
{
|
{
|
||||||
if (!string.Equals(personEntity.GetProviderId(id.Key), id.Value, StringComparison.OrdinalIgnoreCase))
|
if (!string.Equals(personEntity.GetProviderId(id.Key), id.Value, StringComparison.OrdinalIgnoreCase))
|
||||||
{
|
{
|
||||||
personEntity.SetProviderId(id.Key, id.Value);
|
personEntity.SetProviderId(id.Key, id.Value);
|
||||||
saveEntity = true;
|
personsToSave.Add(personEntity);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,18 +260,17 @@ namespace MediaBrowser.Providers.Manager
|
|||||||
},
|
},
|
||||||
0);
|
0);
|
||||||
|
|
||||||
saveEntity = true;
|
personsToSaveWithImages.Add(personEntity);
|
||||||
}
|
|
||||||
|
|
||||||
if (saveEntity)
|
|
||||||
{
|
|
||||||
personsToSave.Add(personEntity);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is a little ugly, but it saves a lot of I/O with the db by doing this in bulk.
|
||||||
|
// To avoid updating images for no reason, we differentiate between the two item update types.
|
||||||
LibraryManager.RunMetadataSavers(personsToSave, ItemUpdateType.MetadataDownload);
|
LibraryManager.RunMetadataSavers(personsToSave, ItemUpdateType.MetadataDownload);
|
||||||
LibraryManager.CreateItems(personsToSave, null, CancellationToken.None);
|
LibraryManager.RunMetadataSavers(personsToSaveWithImages, ItemUpdateType.ImageUpdate);
|
||||||
|
|
||||||
|
LibraryManager.CreateItems(personsToSave.Concat(personsToSaveWithImages).ToList(), null, CancellationToken.None);
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user