jellyfin/Emby.Drawing/ImageProcessor.cs

783 lines
28 KiB
C#
Raw Normal View History

using System;
2013-09-19 11:12:28 -04:00
using System.Collections.Generic;
using System.Globalization;
2013-09-18 14:49:06 -04:00
using System.IO;
2013-09-19 11:12:28 -04:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2019-01-13 14:17:02 -05:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Entities;
2015-10-16 13:06:31 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.MediaEncoding;
2019-01-13 14:17:02 -05:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Drawing;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
2015-11-09 13:18:37 -05:00
using MediaBrowser.Model.Net;
2019-01-13 14:17:02 -05:00
using Microsoft.Extensions.Logging;
2013-02-20 20:33:05 -05:00
2015-04-08 10:38:02 -04:00
namespace Emby.Drawing
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Class ImageProcessor.
2013-02-20 20:33:05 -05:00
/// </summary>
public class ImageProcessor : IImageProcessor, IDisposable
2013-02-20 20:33:05 -05:00
{
// Increment this when there's a change requiring caches to be invalidated
private const string Version = "3";
2013-02-20 20:33:05 -05:00
private static readonly HashSet<string> _transparentImageTypes
= new HashSet<string>(StringComparer.OrdinalIgnoreCase) { ".png", ".webp", ".gif" };
2013-02-20 20:33:05 -05:00
2013-02-21 16:39:53 -05:00
/// <summary>
/// The _logger
/// </summary>
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
private readonly IServerApplicationPaths _appPaths;
2017-05-12 14:09:42 -04:00
private IImageEncoder _imageEncoder;
2015-10-16 13:06:31 -04:00
private readonly Func<ILibraryManager> _libraryManager;
private readonly Func<IMediaEncoder> _mediaEncoder;
2013-09-18 14:49:06 -04:00
private readonly Dictionary<string, LockInfo> _locks = new Dictionary<string, LockInfo>();
private bool _disposed = false;
/// <summary>
///
/// </summary>
/// <param name="logger"></param>
/// <param name="appPaths"></param>
/// <param name="fileSystem"></param>
/// <param name="imageEncoder"></param>
/// <param name="libraryManager"></param>
/// <param name="mediaEncoder"></param>
2019-01-12 08:46:17 -05:00
public ImageProcessor(
ILogger<ImageProcessor> logger,
2015-04-29 13:39:23 -04:00
IServerApplicationPaths appPaths,
IFileSystem fileSystem,
IImageEncoder imageEncoder,
2019-01-12 08:46:17 -05:00
Func<ILibraryManager> libraryManager,
Func<IMediaEncoder> mediaEncoder)
2013-02-20 20:33:05 -05:00
{
_logger = logger;
_fileSystem = fileSystem;
2015-04-08 10:38:02 -04:00
_imageEncoder = imageEncoder;
2015-10-16 13:06:31 -04:00
_libraryManager = libraryManager;
_mediaEncoder = mediaEncoder;
2019-01-20 20:46:40 -05:00
_appPaths = appPaths;
2019-01-12 08:46:17 -05:00
ImageEnhancers = Array.Empty<IImageEnhancer>();
2017-05-17 14:18:18 -04:00
ImageHelper.ImageProcessor = this;
2015-04-08 10:38:02 -04:00
}
2014-10-26 23:06:01 -04:00
private string ResizedImageCachePath => Path.Combine(_appPaths.ImageCachePath, "resized-images");
2017-05-12 14:09:42 -04:00
private string EnhancedImageCachePath => Path.Combine(_appPaths.ImageCachePath, "enhanced-images");
2017-05-12 14:09:42 -04:00
/// <inheritdoc />
2019-02-06 15:31:41 -05:00
public IReadOnlyCollection<string> SupportedInputFormats =>
new HashSet<string>(StringComparer.OrdinalIgnoreCase)
2013-12-14 20:17:57 -05:00
{
"tiff",
"tif",
"jpeg",
"jpg",
"png",
"aiff",
"cr2",
"crw",
// Remove until supported
//"nef",
"orf",
"pef",
"arw",
"webp",
"gif",
"bmp",
"erf",
"raf",
"rw2",
"nrw",
"dng",
"ico",
"astc",
"ktx",
"pkm",
"wbmp"
};
/// <inheritdoc />
public IReadOnlyCollection<IImageEnhancer> ImageEnhancers { get; set; }
/// <inheritdoc />
public bool SupportsImageCollageCreation => _imageEncoder.SupportsImageCollageCreation;
/// <inheritdoc />
public IImageEncoder ImageEncoder
2013-09-18 14:49:06 -04:00
{
get => _imageEncoder;
set => _imageEncoder = value ?? throw new ArgumentNullException(nameof(value));
2013-02-20 20:33:05 -05:00
}
/// <inheritdoc />
2013-09-19 11:12:28 -04:00
public async Task ProcessImage(ImageProcessingOptions options, Stream toStream)
2013-02-20 20:33:05 -05:00
{
2014-07-17 18:21:35 -04:00
var file = await ProcessImage(options).ConfigureAwait(false);
2020-01-08 11:52:50 -05:00
using (var fileStream = new FileStream(file.Item1, FileMode.Open, FileAccess.Read, FileShare.Read, IODefaults.FileStreamBufferSize, true))
2013-02-20 20:33:05 -05:00
{
2014-07-17 18:21:35 -04:00
await fileStream.CopyToAsync(toStream).ConfigureAwait(false);
2013-02-20 20:33:05 -05:00
}
2014-07-17 18:21:35 -04:00
}
2013-02-20 20:33:05 -05:00
/// <inheritdoc />
2019-02-06 15:31:41 -05:00
public IReadOnlyCollection<ImageFormat> GetSupportedImageOutputFormats()
=> _imageEncoder.SupportedOutputFormats;
/// <inheritdoc />
2017-09-07 14:17:18 -04:00
public bool SupportsTransparency(string path)
=> _transparentImageTypes.Contains(Path.GetExtension(path));
2017-07-25 14:32:03 -04:00
/// <inheritdoc />
2019-01-12 08:46:17 -05:00
public async Task<(string path, string mimeType, DateTime dateModified)> ProcessImage(ImageProcessingOptions options)
2014-07-17 18:21:35 -04:00
{
if (options == null)
2013-02-20 20:33:05 -05:00
{
throw new ArgumentNullException(nameof(options));
2013-02-20 20:33:05 -05:00
}
2019-01-12 08:46:17 -05:00
ItemImageInfo originalImage = options.Image;
BaseItem item = options.Item;
2015-10-16 13:06:31 -04:00
if (!originalImage.IsLocalFile)
{
2017-05-21 03:25:49 -04:00
if (item == null)
{
item = _libraryManager().GetItemById(options.ItemId);
}
originalImage = await _libraryManager().ConvertImageToLocal(item, originalImage, options.ImageIndex).ConfigureAwait(false);
2015-10-16 13:06:31 -04:00
}
2019-01-12 08:46:17 -05:00
string originalImagePath = originalImage.Path;
DateTime dateModified = originalImage.DateModified;
ImageDimensions? originalImageSize = null;
2019-01-12 08:46:17 -05:00
if (originalImage.Width > 0 && originalImage.Height > 0)
{
originalImageSize = new ImageDimensions(originalImage.Width, originalImage.Height);
2019-01-12 08:46:17 -05:00
}
2015-10-26 01:29:32 -04:00
if (!_imageEncoder.SupportsImageEncoding)
{
2019-01-12 08:46:17 -05:00
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
}
var supportedImageInfo = await GetSupportedImage(originalImagePath, dateModified).ConfigureAwait(false);
2019-01-12 08:46:17 -05:00
originalImagePath = supportedImageInfo.path;
if (!File.Exists(originalImagePath))
{
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
}
2019-01-12 08:46:17 -05:00
dateModified = supportedImageInfo.dateModified;
bool requiresTransparency = _transparentImageTypes.Contains(Path.GetExtension(originalImagePath));
if (options.Enhancers.Count > 0)
2013-02-20 20:33:05 -05:00
{
2017-05-21 03:25:49 -04:00
if (item == null)
{
item = _libraryManager().GetItemById(options.ItemId);
}
var tuple = await GetEnhancedImage(new ItemImageInfo
{
DateModified = dateModified,
2015-10-16 13:06:31 -04:00
Type = originalImage.Type,
Path = originalImagePath
2017-12-01 12:04:32 -05:00
}, requiresTransparency, item, options.ImageIndex, options.Enhancers, CancellationToken.None).ConfigureAwait(false);
2013-06-02 12:45:32 -04:00
2019-01-12 08:46:17 -05:00
originalImagePath = tuple.path;
dateModified = tuple.dateModified;
requiresTransparency = tuple.transparent;
2018-09-12 13:26:21 -04:00
// TODO: Get this info
originalImageSize = null;
2013-02-20 20:33:05 -05:00
}
2019-01-12 08:46:17 -05:00
bool autoOrient = false;
2017-06-09 15:24:31 -04:00
ImageOrientation? orientation = null;
2019-01-12 08:46:17 -05:00
if (item is Photo photo)
2017-06-09 15:24:31 -04:00
{
2018-09-12 13:26:21 -04:00
if (photo.Orientation.HasValue)
{
if (photo.Orientation.Value != ImageOrientation.TopLeft)
{
autoOrient = true;
orientation = photo.Orientation;
}
}
else
{
// Orientation unknown, so do it
autoOrient = true;
orientation = photo.Orientation;
}
2017-06-09 15:24:31 -04:00
}
2018-09-12 13:26:21 -04:00
if (options.HasDefaultOptions(originalImagePath, originalImageSize) && (!autoOrient || !options.RequiresAutoOrientation))
2015-11-09 13:18:37 -05:00
{
// Just spit out the original file if all the options are default
2019-01-12 08:46:17 -05:00
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
2015-11-09 13:18:37 -05:00
}
2013-02-20 20:33:05 -05:00
ImageDimensions newSize = ImageHelper.GetNewImageSize(options, null);
2019-01-12 08:46:17 -05:00
int quality = options.Quality;
2013-02-20 20:33:05 -05:00
2019-01-12 08:46:17 -05:00
ImageFormat outputFormat = GetOutputFormat(options.SupportedOutputFormats, requiresTransparency);
string cacheFilePath = GetCacheFilePath(originalImagePath, newSize, quality, dateModified, outputFormat, options.AddPlayedIndicator, options.PercentPlayed, options.UnplayedCount, options.Blur, options.BackgroundColor, options.ForegroundLayer);
2013-02-20 20:33:05 -05:00
2017-12-01 12:04:32 -05:00
CheckDisposed();
2019-01-12 08:46:17 -05:00
LockInfo lockInfo = GetLock(cacheFilePath);
2017-12-01 12:04:32 -05:00
await lockInfo.Lock.WaitAsync().ConfigureAwait(false);
2013-04-02 22:59:27 -04:00
try
2013-02-20 20:33:05 -05:00
{
if (!File.Exists(cacheFilePath))
2015-03-27 00:17:04 -04:00
{
2017-07-25 14:32:03 -04:00
if (options.CropWhiteSpace && !SupportsTransparency(originalImagePath))
{
options.CropWhiteSpace = false;
}
2019-01-12 08:46:17 -05:00
string resultPath = _imageEncoder.EncodeImage(originalImagePath, dateModified, cacheFilePath, autoOrient, orientation, quality, options, outputFormat);
2017-05-17 14:18:18 -04:00
if (string.Equals(resultPath, originalImagePath, StringComparison.OrdinalIgnoreCase))
{
2019-01-12 08:46:17 -05:00
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
2017-05-17 14:18:18 -04:00
}
2013-02-20 20:33:05 -05:00
}
2015-11-11 09:56:31 -05:00
2019-01-12 08:46:17 -05:00
return (cacheFilePath, GetMimeType(outputFormat, cacheFilePath), _fileSystem.GetLastWriteTimeUtc(cacheFilePath));
2015-11-11 09:56:31 -05:00
}
catch (Exception ex)
{
// If it fails for whatever reason, return the original image
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error encoding image");
2019-01-12 08:46:17 -05:00
return (originalImagePath, MimeTypes.GetMimeType(originalImagePath), dateModified);
2013-02-20 20:33:05 -05:00
}
2017-12-01 12:04:32 -05:00
finally
{
ReleaseLock(cacheFilePath, lockInfo);
}
2016-07-17 12:59:40 -04:00
}
private ImageFormat GetOutputFormat(IReadOnlyCollection<ImageFormat> clientSupportedFormats, bool requiresTransparency)
2017-09-07 14:17:18 -04:00
{
var serverFormats = GetSupportedImageOutputFormats();
// Client doesn't care about format, so start with webp if supported
if (serverFormats.Contains(ImageFormat.Webp) && clientSupportedFormats.Contains(ImageFormat.Webp))
{
return ImageFormat.Webp;
}
// If transparency is needed and webp isn't supported, than png is the only option
2018-09-12 13:26:21 -04:00
if (requiresTransparency && clientSupportedFormats.Contains(ImageFormat.Png))
2017-09-07 14:17:18 -04:00
{
return ImageFormat.Png;
}
foreach (var format in clientSupportedFormats)
{
if (serverFormats.Contains(format))
{
return format;
}
}
// We should never actually get here
return ImageFormat.Jpg;
}
2015-11-09 13:18:37 -05:00
private string GetMimeType(ImageFormat format, string path)
2015-10-27 22:30:19 -04:00
{
2019-01-12 08:46:17 -05:00
switch(format)
2015-11-09 13:18:37 -05:00
{
2019-01-12 08:46:17 -05:00
case ImageFormat.Bmp: return MimeTypes.GetMimeType("i.bmp");
case ImageFormat.Gif: return MimeTypes.GetMimeType("i.gif");
case ImageFormat.Jpg: return MimeTypes.GetMimeType("i.jpg");
case ImageFormat.Png: return MimeTypes.GetMimeType("i.png");
case ImageFormat.Webp: return MimeTypes.GetMimeType("i.webp");
default: return MimeTypes.GetMimeType(path);
2015-11-09 13:18:37 -05:00
}
}
2015-10-27 22:30:19 -04:00
2013-02-20 20:33:05 -05:00
/// <summary>
/// Gets the cache file path based on a set of parameters
/// </summary>
private string GetCacheFilePath(string originalPath, ImageDimensions outputSize, int quality, DateTime dateModified, ImageFormat format, bool addPlayedIndicator, double percentPlayed, int? unwatchedCount, int? blur, string backgroundColor, string foregroundLayer)
2013-02-20 20:33:05 -05:00
{
2019-01-12 08:46:17 -05:00
var filename = originalPath
+ "width=" + outputSize.Width
+ "height=" + outputSize.Height
+ "quality=" + quality
+ "datemodified=" + dateModified.Ticks
+ "f=" + format;
2013-09-19 11:12:28 -04:00
if (addPlayedIndicator)
{
filename += "pl=true";
}
if (percentPlayed > 0)
{
filename += "p=" + percentPlayed;
2013-09-21 11:06:00 -04:00
}
if (unwatchedCount.HasValue)
{
filename += "p=" + unwatchedCount.Value;
}
2014-03-27 23:32:43 -04:00
2016-12-03 02:58:48 -05:00
if (blur.HasValue)
{
filename += "blur=" + blur.Value;
}
2013-09-21 11:06:00 -04:00
if (!string.IsNullOrEmpty(backgroundColor))
{
filename += "b=" + backgroundColor;
}
2016-02-23 14:48:58 -05:00
if (!string.IsNullOrEmpty(foregroundLayer))
{
filename += "fl=" + foregroundLayer;
}
2015-03-02 00:16:29 -05:00
filename += "v=" + Version;
2019-01-27 06:03:43 -05:00
return GetCachePath(ResizedImageCachePath, filename, "." + format.ToString().ToLowerInvariant());
2013-02-20 20:33:05 -05:00
}
/// <inheritdoc />
public ImageDimensions GetImageDimensions(BaseItem item, ItemImageInfo info)
=> GetImageDimensions(item, info, true);
2017-06-24 14:29:23 -04:00
/// <inheritdoc />
public ImageDimensions GetImageDimensions(BaseItem item, ItemImageInfo info, bool updateItem)
2015-02-28 08:42:47 -05:00
{
2019-01-12 08:46:17 -05:00
int width = info.Width;
int height = info.Height;
2015-02-28 08:42:47 -05:00
2017-10-22 02:22:43 -04:00
if (height > 0 && width > 0)
{
return new ImageDimensions(width, height);
2017-10-22 02:22:43 -04:00
}
2019-01-12 08:46:17 -05:00
string path = info.Path;
_logger.LogInformation("Getting image size for item {ItemType} {Path}", item.GetType().Name, path);
2017-10-22 02:22:43 -04:00
ImageDimensions size = GetImageDimensions(path);
info.Width = size.Width;
info.Height = size.Height;
2017-10-22 02:22:43 -04:00
if (updateItem)
{
_libraryManager().UpdateImages(item);
}
return size;
2015-10-16 15:25:19 -04:00
}
/// <inheritdoc />
public ImageDimensions GetImageDimensions(string path)
=> _imageEncoder.GetImageSize(path);
2013-06-03 22:02:49 -04:00
/// <inheritdoc />
2018-09-12 13:26:21 -04:00
public string GetImageCacheTag(BaseItem item, ItemImageInfo image)
2013-02-20 20:33:05 -05:00
{
var supportedEnhancers = GetSupportedEnhancers(item, image.Type).ToArray();
2018-09-12 13:26:21 -04:00
return GetImageCacheTag(item, image, supportedEnhancers);
}
/// <inheritdoc />
2018-09-12 13:26:21 -04:00
public string GetImageCacheTag(BaseItem item, ChapterInfo chapter)
{
try
2013-02-20 20:33:05 -05:00
{
2018-09-12 13:26:21 -04:00
return GetImageCacheTag(item, new ItemImageInfo
{
Path = chapter.ImagePath,
Type = ImageType.Chapter,
DateModified = chapter.ImageDateModified
});
2013-02-20 20:33:05 -05:00
}
2018-09-12 13:26:21 -04:00
catch
2013-02-20 20:33:05 -05:00
{
2018-09-12 13:26:21 -04:00
return null;
2013-02-20 20:33:05 -05:00
}
}
/// <inheritdoc />
public string GetImageCacheTag(BaseItem item, ItemImageInfo image, IReadOnlyCollection<IImageEnhancer> imageEnhancers)
2013-02-20 20:33:05 -05:00
{
2019-01-12 08:46:17 -05:00
string originalImagePath = image.Path;
DateTime dateModified = image.DateModified;
ImageType imageType = image.Type;
2014-06-18 11:12:20 -04:00
2013-11-08 16:22:02 -05:00
// Optimization
if (imageEnhancers.Count == 0)
2013-11-08 16:22:02 -05:00
{
return (originalImagePath + dateModified.Ticks).GetMD5().ToString("N", CultureInfo.InvariantCulture);
2013-11-08 16:22:02 -05:00
}
2013-09-18 14:49:06 -04:00
// Cache name is created with supported enhancers combined with the last config change so we pick up new config changes
var cacheKeys = imageEnhancers.Select(i => i.GetConfigurationCacheKey(item, imageType)).ToList();
2015-04-19 15:17:17 -04:00
cacheKeys.Add(originalImagePath + dateModified.Ticks);
2013-04-02 22:59:27 -04:00
return string.Join("|", cacheKeys).GetMD5().ToString("N", CultureInfo.InvariantCulture);
2013-03-18 16:40:15 -04:00
}
2019-01-12 08:46:17 -05:00
private async Task<(string path, DateTime dateModified)> GetSupportedImage(string originalImagePath, DateTime dateModified)
{
2019-01-12 08:46:17 -05:00
var inputFormat = Path.GetExtension(originalImagePath)
.TrimStart('.')
.Replace("jpeg", "jpg", StringComparison.OrdinalIgnoreCase);
// These are just jpg files renamed as tbn
if (string.Equals(inputFormat, "tbn", StringComparison.OrdinalIgnoreCase))
{
2019-01-12 08:46:17 -05:00
return (originalImagePath, dateModified);
}
2019-02-06 15:31:41 -05:00
if (!_imageEncoder.SupportedInputFormats.Contains(inputFormat))
{
try
{
string filename = (originalImagePath + dateModified.Ticks.ToString(CultureInfo.InvariantCulture)).GetMD5().ToString("N", CultureInfo.InvariantCulture);
2019-01-12 08:46:17 -05:00
string cacheExtension = _mediaEncoder().SupportsEncoder("libwebp") ? ".webp" : ".png";
2017-09-18 13:07:50 -04:00
var outputPath = Path.Combine(_appPaths.ImageCachePath, "converted-images", filename + cacheExtension);
var file = _fileSystem.GetFileInfo(outputPath);
if (!file.Exists)
{
await _mediaEncoder().ConvertImage(originalImagePath, outputPath).ConfigureAwait(false);
dateModified = _fileSystem.GetLastWriteTimeUtc(outputPath);
}
else
{
dateModified = file.LastWriteTimeUtc;
}
originalImagePath = outputPath;
}
catch (Exception ex)
{
2019-01-12 08:46:17 -05:00
_logger.LogError(ex, "Image conversion failed for {Path}", originalImagePath);
}
}
2019-01-12 08:46:17 -05:00
return (originalImagePath, dateModified);
}
/// <inheritdoc />
2018-09-12 13:26:21 -04:00
public async Task<string> GetEnhancedImage(BaseItem item, ImageType imageType, int imageIndex)
{
var enhancers = GetSupportedEnhancers(item, imageType).ToArray();
2019-01-12 08:46:17 -05:00
ItemImageInfo imageInfo = item.GetImageInfo(imageType, imageIndex);
2019-01-12 08:46:17 -05:00
bool inputImageSupportsTransparency = SupportsTransparency(imageInfo.Path);
2017-09-07 14:17:18 -04:00
2017-12-01 12:04:32 -05:00
var result = await GetEnhancedImage(imageInfo, inputImageSupportsTransparency, item, imageIndex, enhancers, CancellationToken.None);
2019-01-12 08:46:17 -05:00
return result.path;
}
2019-01-12 08:46:17 -05:00
private async Task<(string path, DateTime dateModified, bool transparent)> GetEnhancedImage(
ItemImageInfo image,
2017-09-07 14:17:18 -04:00
bool inputImageSupportsTransparency,
2018-09-12 13:26:21 -04:00
BaseItem item,
2014-06-18 11:12:20 -04:00
int imageIndex,
IReadOnlyCollection<IImageEnhancer> enhancers,
2017-12-01 12:04:32 -05:00
CancellationToken cancellationToken)
2013-06-04 12:53:36 -04:00
{
2014-06-18 11:12:20 -04:00
var originalImagePath = image.Path;
var dateModified = image.DateModified;
var imageType = image.Type;
2014-10-26 23:06:01 -04:00
2013-09-19 11:12:28 -04:00
try
2013-06-04 12:53:36 -04:00
{
2014-06-18 11:12:20 -04:00
var cacheGuid = GetImageCacheTag(item, image, enhancers);
2013-09-19 11:12:28 -04:00
// Enhance if we have enhancers
2018-12-20 07:39:58 -05:00
var enhancedImageInfo = await GetEnhancedImageInternal(originalImagePath, item, imageType, imageIndex, enhancers, cacheGuid, cancellationToken).ConfigureAwait(false);
2017-09-07 14:17:18 -04:00
2019-01-12 08:46:17 -05:00
string enhancedImagePath = enhancedImageInfo.path;
2013-06-04 12:53:36 -04:00
2013-09-19 11:12:28 -04:00
// If the path changed update dateModified
2018-12-20 07:39:58 -05:00
if (!string.Equals(enhancedImagePath, originalImagePath, StringComparison.OrdinalIgnoreCase))
2013-06-04 12:53:36 -04:00
{
2019-01-12 08:46:17 -05:00
var treatmentRequiresTransparency = enhancedImageInfo.transparent;
2017-09-07 14:17:18 -04:00
2019-01-12 08:46:17 -05:00
return (enhancedImagePath, _fileSystem.GetLastWriteTimeUtc(enhancedImagePath), treatmentRequiresTransparency);
2013-06-04 12:53:36 -04:00
}
2013-09-19 11:12:28 -04:00
}
catch (Exception ex)
{
2018-12-20 07:11:26 -05:00
_logger.LogError(ex, "Error enhancing image");
2013-09-19 11:12:28 -04:00
}
2013-06-04 12:53:36 -04:00
2019-01-12 08:46:17 -05:00
return (originalImagePath, dateModified, inputImageSupportsTransparency);
2013-06-04 12:53:36 -04:00
}
2013-09-16 22:44:06 -04:00
2013-02-20 20:33:05 -05:00
/// <summary>
/// Gets the enhanced image internal.
2013-02-20 20:33:05 -05:00
/// </summary>
/// <param name="originalImagePath">The original image path.</param>
/// <param name="item">The item.</param>
/// <param name="imageType">Type of the image.</param>
/// <param name="imageIndex">Index of the image.</param>
2013-06-02 12:45:32 -04:00
/// <param name="supportedEnhancers">The supported enhancers.</param>
2014-06-18 11:12:20 -04:00
/// <param name="cacheGuid">The cache unique identifier.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task&lt;System.String&gt;.</returns>
/// <exception cref="ArgumentNullException">
/// originalImagePath
/// or
/// item
/// </exception>
2019-01-12 08:46:17 -05:00
private async Task<(string path, bool transparent)> GetEnhancedImageInternal(
string originalImagePath,
2018-09-12 13:26:21 -04:00
BaseItem item,
2014-10-26 23:06:01 -04:00
ImageType imageType,
int imageIndex,
IReadOnlyCollection<IImageEnhancer> supportedEnhancers,
2017-12-01 12:04:32 -05:00
string cacheGuid,
CancellationToken cancellationToken = default)
2013-02-20 20:33:05 -05:00
{
if (string.IsNullOrEmpty(originalImagePath))
{
throw new ArgumentNullException(nameof(originalImagePath));
2013-02-20 20:33:05 -05:00
}
if (item == null)
{
throw new ArgumentNullException(nameof(item));
2013-02-20 20:33:05 -05:00
}
2017-09-07 14:17:18 -04:00
var treatmentRequiresTransparency = false;
foreach (var enhancer in supportedEnhancers)
{
if (!treatmentRequiresTransparency)
{
treatmentRequiresTransparency = enhancer.GetEnhancedImageInfo(item, originalImagePath, imageType, imageIndex).RequiresTransparency;
}
}
2013-02-20 20:33:05 -05:00
// All enhanced images are saved as png to allow transparency
2019-01-12 08:46:17 -05:00
string cacheExtension = _imageEncoder.SupportedOutputFormats.Contains(ImageFormat.Webp) ?
2018-09-12 13:26:21 -04:00
".webp" :
2017-09-07 14:17:18 -04:00
(treatmentRequiresTransparency ? ".png" : ".jpg");
2019-01-12 08:46:17 -05:00
string enhancedImagePath = GetCachePath(EnhancedImageCachePath, cacheGuid + cacheExtension);
2013-02-20 20:33:05 -05:00
2019-01-12 08:46:17 -05:00
LockInfo lockInfo = GetLock(enhancedImagePath);
2013-04-02 22:59:27 -04:00
2017-12-01 12:04:32 -05:00
await lockInfo.Lock.WaitAsync(cancellationToken).ConfigureAwait(false);
2016-10-31 00:28:23 -04:00
try
{
2017-12-01 12:04:32 -05:00
// Check again in case of contention
if (File.Exists(enhancedImagePath))
2017-12-01 12:04:32 -05:00
{
2019-01-12 08:46:17 -05:00
return (enhancedImagePath, treatmentRequiresTransparency);
2017-12-01 12:04:32 -05:00
}
Directory.CreateDirectory(Path.GetDirectoryName(enhancedImagePath));
2017-12-01 12:04:32 -05:00
await ExecuteImageEnhancers(supportedEnhancers, originalImagePath, enhancedImagePath, item, imageType, imageIndex).ConfigureAwait(false);
2019-01-12 08:46:17 -05:00
return (enhancedImagePath, treatmentRequiresTransparency);
2013-02-20 20:33:05 -05:00
}
2017-12-01 12:04:32 -05:00
finally
2013-04-02 22:59:27 -04:00
{
2017-12-01 12:04:32 -05:00
ReleaseLock(enhancedImagePath, lockInfo);
2013-04-02 22:59:27 -04:00
}
2013-02-20 20:33:05 -05:00
}
/// <summary>
/// Executes the image enhancers.
/// </summary>
/// <param name="imageEnhancers">The image enhancers.</param>
/// <param name="inputPath">The input path.</param>
/// <param name="outputPath">The output path.</param>
2013-02-20 20:33:05 -05:00
/// <param name="item">The item.</param>
/// <param name="imageType">Type of the image.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <returns>Task{EnhancedImage}.</returns>
2019-01-20 08:39:05 -05:00
private static async Task ExecuteImageEnhancers(IEnumerable<IImageEnhancer> imageEnhancers, string inputPath, string outputPath, BaseItem item, ImageType imageType, int imageIndex)
2013-02-20 20:33:05 -05:00
{
// Run the enhancers sequentially in order of priority
foreach (var enhancer in imageEnhancers)
{
2016-10-07 11:08:13 -04:00
await enhancer.EnhanceImageAsync(item, inputPath, outputPath, imageType, imageIndex).ConfigureAwait(false);
2013-02-20 20:33:05 -05:00
// Feed the output into the next enhancer as input
inputPath = outputPath;
}
2013-02-20 20:33:05 -05:00
}
2013-09-18 14:49:06 -04:00
/// <summary>
/// Gets the cache path.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="uniqueName">Name of the unique.</param>
/// <param name="fileExtension">The file extension.</param>
/// <returns>System.String.</returns>
2019-01-13 15:37:13 -05:00
/// <exception cref="ArgumentNullException">
2013-09-18 14:49:06 -04:00
/// path
/// or
/// uniqueName
/// or
/// fileExtension
/// </exception>
public string GetCachePath(string path, string uniqueName, string fileExtension)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
2013-09-18 14:49:06 -04:00
}
2013-09-18 14:49:06 -04:00
if (string.IsNullOrEmpty(uniqueName))
{
throw new ArgumentNullException(nameof(uniqueName));
2013-09-18 14:49:06 -04:00
}
if (string.IsNullOrEmpty(fileExtension))
{
throw new ArgumentNullException(nameof(fileExtension));
2013-09-18 14:49:06 -04:00
}
var filename = uniqueName.GetMD5() + fileExtension;
return GetCachePath(path, filename);
}
/// <summary>
/// Gets the cache path.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="filename">The filename.</param>
/// <returns>System.String.</returns>
2019-01-13 15:37:13 -05:00
/// <exception cref="ArgumentNullException">
2013-09-18 14:49:06 -04:00
/// path
/// or
/// filename
/// </exception>
public string GetCachePath(string path, string filename)
{
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException(nameof(path));
2013-09-18 14:49:06 -04:00
}
if (string.IsNullOrEmpty(filename))
{
throw new ArgumentNullException(nameof(filename));
2013-09-18 14:49:06 -04:00
}
var prefix = filename.Substring(0, 1);
2019-01-12 08:46:17 -05:00
return Path.Combine(path, prefix, filename);
2013-09-18 14:49:06 -04:00
}
/// <inheritdoc />
2017-05-19 13:09:37 -04:00
public void CreateImageCollage(ImageCollageOptions options)
2015-04-08 10:38:02 -04:00
{
2019-01-12 08:46:17 -05:00
_logger.LogInformation("Creating image collage and saving to {Path}", options.OutputPath);
2016-12-02 15:10:35 -05:00
_imageEncoder.CreateImageCollage(options);
2015-05-11 12:32:15 -04:00
2019-01-12 08:46:17 -05:00
_logger.LogInformation("Completed creation of image collage and saved to {Path}", options.OutputPath);
2015-04-08 10:38:02 -04:00
}
/// <inheritdoc />
public IEnumerable<IImageEnhancer> GetSupportedEnhancers(BaseItem item, ImageType imageType)
2013-09-18 14:49:06 -04:00
{
2017-08-24 15:52:19 -04:00
foreach (var i in ImageEnhancers)
2013-09-18 14:49:06 -04:00
{
if (i.Supports(item, imageType))
2013-09-18 14:49:06 -04:00
{
yield return i;
2013-09-18 14:49:06 -04:00
}
2017-08-24 15:52:19 -04:00
}
2013-04-02 22:59:27 -04:00
}
2017-12-01 12:04:32 -05:00
private class LockInfo
{
public SemaphoreSlim Lock = new SemaphoreSlim(1, 1);
public int Count = 1;
}
2017-12-01 12:04:32 -05:00
private LockInfo GetLock(string key)
{
lock (_locks)
{
if (_locks.TryGetValue(key, out LockInfo info))
2017-12-01 12:04:32 -05:00
{
info.Count++;
}
else
{
info = new LockInfo();
_locks[key] = info;
}
return info;
}
}
private void ReleaseLock(string key, LockInfo info)
{
info.Lock.Release();
lock (_locks)
{
info.Count--;
if (info.Count <= 0)
{
_locks.Remove(key);
info.Lock.Dispose();
}
}
}
/// <inheritdoc />
public void Dispose()
{
_disposed = true;
2017-09-05 15:49:02 -04:00
var disposable = _imageEncoder as IDisposable;
if (disposable != null)
{
disposable.Dispose();
}
}
private void CheckDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(GetType().Name);
}
}
2013-02-20 20:33:05 -05:00
}
2018-12-28 10:48:26 -05:00
}