Lidarr/NzbDrone.Core/Jobs/JobTimer.cs

48 lines
1.4 KiB
C#
Raw Normal View History

2013-05-07 00:39:33 +00:00
using System;
using System.Timers;
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Lifecycle;
namespace NzbDrone.Core.Jobs
{
2013-04-19 04:46:18 +00:00
public class JobTimer :
IHandle<ApplicationStartedEvent>,
IHandle<ApplicationShutdownRequested>
{
2013-05-07 00:39:33 +00:00
private readonly IJobRepository _jobRepository;
private readonly IMessageAggregator _messageAggregator;
private readonly Timer _timer;
2013-05-07 00:39:33 +00:00
public JobTimer(IJobRepository jobRepository, IMessageAggregator messageAggregator)
{
2013-05-07 00:39:33 +00:00
_jobRepository = jobRepository;
_messageAggregator = messageAggregator;
_timer = new Timer();
}
public void Handle(ApplicationStartedEvent message)
{
_timer.Interval = 1000 * 30;
2013-05-07 00:39:33 +00:00
_timer.Elapsed += (o, args) => ExecuteCommands();
2013-05-07 04:31:55 +00:00
//_timer.Start();
}
2013-04-19 04:46:18 +00:00
2013-05-07 00:39:33 +00:00
private void ExecuteCommands()
{
var jobs = _jobRepository.GetPendingJobs();
foreach (var jobDefinition in jobs)
{
var commandType = Type.GetType(jobDefinition.Name);
var command = (ICommand)Activator.CreateInstance(commandType);
_messageAggregator.PublishCommand(command);
}
}
2013-04-19 04:46:18 +00:00
public void Handle(ApplicationShutdownRequested message)
{
_timer.Stop();
}
}
}