using System; using System.Collections.Generic; using System.Linq; using NLog; using NzbDrone.Core.Backup; using NzbDrone.Core.Configuration; using NzbDrone.Core.Configuration.Events; using NzbDrone.Core.DataAugmentation.Scene; using NzbDrone.Core.Download; using NzbDrone.Core.HealthCheck; using NzbDrone.Core.Housekeeping; using NzbDrone.Core.Indexers; using NzbDrone.Core.Lifecycle; using NzbDrone.Core.MediaFiles.Commands; using NzbDrone.Core.Messaging.Commands; using NzbDrone.Core.Messaging.Events; using NzbDrone.Core.NetImport; using NzbDrone.Core.Tv.Commands; using NzbDrone.Core.Update.Commands; using NzbDrone.Core.MetadataSource.PreDB; namespace NzbDrone.Core.Jobs { public interface ITaskManager { IList GetPending(); List GetAll(); DateTime GetNextExecution(Type type); } public class TaskManager : ITaskManager, IHandle, IHandle, IHandleAsync { private readonly IScheduledTaskRepository _scheduledTaskRepository; private readonly IConfigService _configService; private readonly IConfigFileProvider _configFileProvider; private readonly Logger _logger; public TaskManager(IScheduledTaskRepository scheduledTaskRepository, IConfigService configService, IConfigFileProvider configFileProvider, Logger logger) { _scheduledTaskRepository = scheduledTaskRepository; _configService = configService; _configFileProvider = configFileProvider; _logger = logger; } public IList GetPending() { return _scheduledTaskRepository.All() .Where(c => c.Interval > 0 && c.LastExecution.AddMinutes(c.Interval) < DateTime.UtcNow) .ToList(); } public List GetAll() { return _scheduledTaskRepository.All().ToList(); } public DateTime GetNextExecution(Type type) { var scheduledTask = _scheduledTaskRepository.All().Single(v => v.TypeName == type.FullName); return scheduledTask.LastExecution.AddMinutes(scheduledTask.Interval); } public void Handle(ApplicationStartedEvent message) { float updateInterval = 6 * 60; if (_configFileProvider.Branch == "nightly") { updateInterval = 30; } var defaultTasks = new[] { new ScheduledTask{ Interval = 0.25f, TypeName = typeof(CheckForFinishedDownloadCommand).FullName}, new ScheduledTask{ Interval = 1*60, TypeName = typeof(PreDBSyncCommand).FullName}, new ScheduledTask{ Interval = 5, TypeName = typeof(MessagingCleanupCommand).FullName}, new ScheduledTask{ Interval = updateInterval, TypeName = typeof(ApplicationUpdateCommand).FullName}, // new ScheduledTask{ Interval = 3*60, TypeName = typeof(UpdateSceneMappingCommand).FullName}, new ScheduledTask{ Interval = 6*60, TypeName = typeof(CheckHealthCommand).FullName}, new ScheduledTask{ Interval = 24*60, TypeName = typeof(RefreshMovieCommand).FullName}, new ScheduledTask{ Interval = 24*60, TypeName = typeof(HousekeepingCommand).FullName}, new ScheduledTask{ Interval = 7*24*60, TypeName = typeof(BackupCommand).FullName}, new ScheduledTask { Interval = GetRssSyncInterval(), TypeName = typeof(RssSyncCommand).FullName }, new ScheduledTask { Interval = GetNetImportSyncInterval(), TypeName = typeof(NetImportSyncCommand).FullName }, new ScheduledTask { Interval = _configService.DownloadedMoviesScanInterval, //TypeName = typeof(DownloadedEpisodesScanCommand).FullName TypeName = typeof(DownloadedMoviesScanCommand).FullName }, }; var currentTasks = _scheduledTaskRepository.All().ToList(); _logger.Trace("Initializing jobs. Available: {0} Existing: {1}", defaultTasks.Count(), currentTasks.Count()); foreach (var job in currentTasks) { if (!defaultTasks.Any(c => c.TypeName == job.TypeName)) { _logger.Trace("Removing job from database '{0}'", job.TypeName); _scheduledTaskRepository.Delete(job.Id); } } foreach (var defaultTask in defaultTasks) { var currentDefinition = currentTasks.SingleOrDefault(c => c.TypeName == defaultTask.TypeName) ?? defaultTask; currentDefinition.Interval = defaultTask.Interval; if (currentDefinition.Id == 0) { currentDefinition.LastExecution = DateTime.UtcNow; } _scheduledTaskRepository.Upsert(currentDefinition); } } private int GetRssSyncInterval() { var interval = _configService.RssSyncInterval; if (interval > 0 && interval < 10) { return 10; } if (interval < 0) { return 0; } return interval; } private int GetNetImportSyncInterval() { var interval = _configService.NetImportSyncInterval; if (interval > 0 && interval < 10) { return 10; } if (interval < 0) { return 0; } return interval; } public void Handle(CommandExecutedEvent message) { var scheduledTask = _scheduledTaskRepository.All().SingleOrDefault(c => c.TypeName == message.Command.Body.GetType().FullName); if (scheduledTask != null && message.Command.Body.UpdateScheduledTask) { _logger.Trace("Updating last run time for: {0}", scheduledTask.TypeName); _scheduledTaskRepository.SetLastExecutionTime(scheduledTask.Id, DateTime.UtcNow); } } public void HandleAsync(ConfigSavedEvent message) { var rss = _scheduledTaskRepository.GetDefinition(typeof(RssSyncCommand)); rss.Interval = _configService.RssSyncInterval; var downloadedMovies = _scheduledTaskRepository.GetDefinition(typeof(DownloadedMoviesScanCommand)); downloadedMovies.Interval = _configService.DownloadedMoviesScanInterval; var netImport = _scheduledTaskRepository.GetDefinition(typeof(NetImportSyncCommand)); netImport.Interval = _configService.NetImportSyncInterval; _scheduledTaskRepository.UpdateMany(new List { rss, downloadedMovies, netImport }); } } }