jellyfin/Emby.Server.Implementations/ScheduledTasks/ChapterImagesTask.cs

193 lines
5.9 KiB
C#
Raw Normal View History

2014-02-20 17:37:41 +01:00
using MediaBrowser.Common.Configuration;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2014-02-20 17:37:41 +01:00
using MediaBrowser.Controller.MediaEncoding;
2013-06-18 21:16:27 +02:00
using MediaBrowser.Controller.Persistence;
2013-02-23 08:57:11 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
2013-02-21 02:33:05 +01:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.IO;
using MediaBrowser.Model.IO;
2016-05-09 06:56:41 +02:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Tasks;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
2013-02-23 08:57:11 +01:00
/// <summary>
/// Class ChapterImagesTask
/// </summary>
class ChapterImagesTask : IScheduledTask
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// The _logger
/// </summary>
private readonly ILogger _logger;
/// <summary>
/// The _library manager
/// </summary>
private readonly ILibraryManager _libraryManager;
2013-06-18 21:16:27 +02:00
private readonly IItemRepository _itemRepo;
2014-02-20 17:37:41 +01:00
private readonly IApplicationPaths _appPaths;
private readonly IEncodingManager _encodingManager;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
2014-02-20 17:37:41 +01:00
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ChapterImagesTask" /> class.
/// </summary>
2015-09-14 01:07:54 +02:00
public ChapterImagesTask(ILogManager logManager, ILibraryManager libraryManager, IItemRepository itemRepo, IApplicationPaths appPaths, IEncodingManager encodingManager, IFileSystem fileSystem)
2013-02-23 08:57:11 +01:00
{
_logger = logManager.GetLogger(GetType().Name);
_libraryManager = libraryManager;
2013-06-18 21:16:27 +02:00
_itemRepo = itemRepo;
2014-02-20 17:37:41 +01:00
_appPaths = appPaths;
_encodingManager = encodingManager;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Creates the triggers that define when the task will run
/// </summary>
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
return new[] {
new TaskTriggerInfo
2013-02-21 02:33:05 +01:00
{
Type = TaskTriggerInfo.TriggerDaily,
TimeOfDayTicks = TimeSpan.FromHours(1).Ticks,
MaxRuntimeMs = Convert.ToInt32(TimeSpan.FromHours(4).TotalMilliseconds)
}
};
}
public string Key
{
get { return "RefreshChapterImages"; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Returns the task to be executed
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
2013-04-15 20:45:58 +02:00
public async Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
2016-05-09 06:56:41 +02:00
var videos = _libraryManager.GetItemList(new InternalItemsQuery
{
MediaTypes = new[] { MediaType.Video },
IsFolder = false,
Recursive = true
})
.OfType<Video>()
2013-04-15 20:45:58 +02:00
.ToList();
2013-02-21 02:33:05 +01:00
var numComplete = 0;
2014-02-20 17:37:41 +01:00
var failHistoryPath = Path.Combine(_appPaths.CachePath, "chapter-failures.txt");
List<string> previouslyFailedImages;
try
{
2016-05-09 06:56:41 +02:00
previouslyFailedImages = _fileSystem.ReadAllText(failHistoryPath)
.Split(new[] { '|' }, StringSplitOptions.RemoveEmptyEntries)
.ToList();
}
catch (FileNotFoundException)
{
previouslyFailedImages = new List<string>();
}
catch (IOException)
2013-09-25 17:11:23 +02:00
{
previouslyFailedImages = new List<string>();
}
2013-04-15 20:45:58 +02:00
foreach (var video in videos)
2013-02-21 02:33:05 +01:00
{
2013-04-15 20:45:58 +02:00
cancellationToken.ThrowIfCancellationRequested();
var key = video.Path + video.DateModified.Ticks;
var extract = !previouslyFailedImages.Contains(key, StringComparer.OrdinalIgnoreCase);
2016-03-17 17:39:39 +01:00
try
2014-02-20 17:37:41 +01:00
{
2016-03-17 17:39:39 +01:00
var chapters = _itemRepo.GetChapters(video.Id).ToList();
2014-02-20 17:37:41 +01:00
2016-03-17 17:39:39 +01:00
var success = await _encodingManager.RefreshChapterImages(new ChapterImageRefreshOptions
{
SaveChapters = true,
ExtractImages = extract,
Video = video,
Chapters = chapters
2016-03-17 17:39:39 +01:00
}, CancellationToken.None);
2013-06-04 04:02:49 +02:00
2016-03-17 17:39:39 +01:00
if (!success)
{
previouslyFailedImages.Add(key);
2013-06-04 04:02:49 +02:00
2016-03-17 17:39:39 +01:00
var parentPath = Path.GetDirectoryName(failHistoryPath);
2013-06-04 04:02:49 +02:00
2016-03-17 17:39:39 +01:00
_fileSystem.CreateDirectory(parentPath);
2013-02-21 02:33:05 +01:00
2016-03-17 17:39:39 +01:00
_fileSystem.WriteAllText(failHistoryPath, string.Join("|", previouslyFailedImages.ToArray()));
}
numComplete++;
double percent = numComplete;
percent /= videos.Count;
2013-02-21 02:33:05 +01:00
2016-03-17 17:39:39 +01:00
progress.Report(100 * percent);
}
catch (ObjectDisposedException)
{
break;
}
2013-04-15 20:45:58 +02:00
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the name of the task
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 02:33:05 +01:00
{
2013-09-05 19:05:39 +02:00
get
{
return "Chapter image extraction";
}
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 02:33:05 +01:00
{
get { return "Creates thumbnails for videos that have chapters."; }
}
/// <summary>
/// Gets the category.
/// </summary>
/// <value>The category.</value>
public string Category
2013-02-21 02:33:05 +01:00
{
get
{
return "Library";
}
}
}
}