ca47492b9b
This replaces the jarring effect of resetting the bar halfway through two concurrent scans.
113 lines
3.3 KiB
C#
113 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Model.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace ConfusedPolarBear.Plugin.IntroSkipper;
|
|
|
|
/// <summary>
|
|
/// Analyze all television episodes for introduction sequences.
|
|
/// </summary>
|
|
public class DetectIntrosCreditsTask : IScheduledTask
|
|
{
|
|
private readonly ILoggerFactory _loggerFactory;
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="DetectIntrosCreditsTask"/> class.
|
|
/// </summary>
|
|
/// <param name="loggerFactory">Logger factory.</param>
|
|
/// <param name="libraryManager">Library manager.</param>
|
|
public DetectIntrosCreditsTask(
|
|
ILoggerFactory loggerFactory,
|
|
ILibraryManager libraryManager)
|
|
{
|
|
_loggerFactory = loggerFactory;
|
|
_libraryManager = libraryManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the task name.
|
|
/// </summary>
|
|
public string Name => "Detect Intros and Credits";
|
|
|
|
/// <summary>
|
|
/// Gets the task category.
|
|
/// </summary>
|
|
public string Category => "Intro Skipper";
|
|
|
|
/// <summary>
|
|
/// Gets the task description.
|
|
/// </summary>
|
|
public string Description => "Analyzes media to determine the timestamp and length of intros and credits.";
|
|
|
|
/// <summary>
|
|
/// Gets the task key.
|
|
/// </summary>
|
|
public string Key => "CPBIntroSkipperDetectIntrosCredits";
|
|
|
|
/// <summary>
|
|
/// Analyze all episodes in the queue. Only one instance of this task should be run at a time.
|
|
/// </summary>
|
|
/// <param name="progress">Task progress.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>Task.</returns>
|
|
public Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken)
|
|
{
|
|
if (_libraryManager is null)
|
|
{
|
|
throw new InvalidOperationException("Library manager was null");
|
|
}
|
|
|
|
// abort if analyzer is already running
|
|
if (Plugin.Instance!.AnalyzerTaskIsRunning)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
else
|
|
{
|
|
Plugin.Instance!.AnalyzerTaskIsRunning = true;
|
|
}
|
|
|
|
var baseIntroAnalyzer = new BaseItemAnalyzerTask(
|
|
AnalysisMode.Introduction,
|
|
_loggerFactory.CreateLogger<DetectIntrosCreditsTask>(),
|
|
_loggerFactory,
|
|
_libraryManager);
|
|
|
|
baseIntroAnalyzer.AnalyzeItems(progress, cancellationToken);
|
|
|
|
var baseCreditAnalyzer = new BaseItemAnalyzerTask(
|
|
AnalysisMode.Credits,
|
|
_loggerFactory.CreateLogger<DetectIntrosCreditsTask>(),
|
|
_loggerFactory,
|
|
_libraryManager);
|
|
|
|
baseCreditAnalyzer.AnalyzeItems(progress, cancellationToken);
|
|
|
|
Plugin.Instance!.AnalyzerTaskIsRunning = false;
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get task triggers.
|
|
/// </summary>
|
|
/// <returns>Task triggers.</returns>
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
|
{
|
|
return new[]
|
|
{
|
|
new TaskTriggerInfo
|
|
{
|
|
Type = TaskTriggerInfo.TriggerDaily,
|
|
TimeOfDayTicks = TimeSpan.FromHours(0).Ticks
|
|
}
|
|
};
|
|
}
|
|
}
|