1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/NzbDrone.Core/Messaging/Commands/CommandExecutor.cs

133 lines
4.6 KiB
C#
Raw Normal View History

2013-09-11 09:33:47 +03:00
using System;
2013-05-13 05:52:55 +03:00
using System.Linq;
using System.Threading.Tasks;
2013-02-23 23:09:44 +03:00
using NLog;
2013-09-11 09:33:47 +03:00
using NzbDrone.Common;
2013-05-13 05:52:55 +03:00
using NzbDrone.Common.EnsureThat;
using NzbDrone.Common.Serializer;
2013-07-12 09:10:34 +03:00
using NzbDrone.Common.TPL;
using NzbDrone.Core.Messaging.Commands.Tracking;
2013-09-11 09:33:47 +03:00
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.ProgressMessaging;
namespace NzbDrone.Core.Messaging.Commands
{
public class CommandExecutor : ICommandExecutor
{
2013-02-23 23:09:44 +03:00
private readonly Logger _logger;
private readonly IServiceFactory _serviceFactory;
private readonly ITrackCommands _trackCommands;
private readonly IEventAggregator _eventAggregator;
private readonly TaskFactory _taskFactory;
public CommandExecutor(Logger logger, IServiceFactory serviceFactory, ITrackCommands trackCommands, IEventAggregator eventAggregator)
{
2013-09-11 09:33:47 +03:00
var scheduler = new LimitedConcurrencyLevelTaskScheduler(3);
2013-02-23 23:09:44 +03:00
_logger = logger;
_serviceFactory = serviceFactory;
_trackCommands = trackCommands;
_eventAggregator = eventAggregator;
_taskFactory = new TaskFactory(scheduler);
}
2013-09-11 09:33:47 +03:00
public void PublishCommand<TCommand>(TCommand command) where TCommand : Command
{
2013-05-13 05:52:55 +03:00
Ensure.That(() => command).IsNotNull();
_logger.Trace("Publishing {0}", command.GetType().Name);
2013-09-11 09:33:47 +03:00
if (_trackCommands.FindExisting(command) != null)
{
2013-09-11 09:33:47 +03:00
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
return;
}
2013-09-11 09:33:47 +03:00
_trackCommands.Store(command);
ExecuteCommand<TCommand>(command);
}
public void PublishCommand(string commandTypeName)
{
dynamic command = GetCommand(commandTypeName);
PublishCommand(command);
}
2013-09-11 09:33:47 +03:00
public Command PublishCommandAsync<TCommand>(TCommand command) where TCommand : Command
{
Ensure.That(() => command).IsNotNull();
_logger.Trace("Publishing {0}", command.GetType().Name);
2013-09-11 09:33:47 +03:00
var existingCommand = _trackCommands.FindExisting(command);
2013-09-11 09:33:47 +03:00
if (existingCommand != null)
{
2013-09-11 09:33:47 +03:00
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
return existingCommand;
}
2013-09-11 09:33:47 +03:00
_trackCommands.Store(command);
_taskFactory.StartNew(() => ExecuteCommand<TCommand>(command)
, TaskCreationOptions.PreferFairness)
.LogExceptions();
2013-09-11 09:33:47 +03:00
return command;
}
2013-09-11 09:33:47 +03:00
public Command PublishCommandAsync(string commandTypeName)
{
dynamic command = GetCommand(commandTypeName);
return PublishCommandAsync(command);
}
private dynamic GetCommand(string commandTypeName)
{
2013-09-11 09:33:47 +03:00
var commandType = _serviceFactory.GetImplementations(typeof(Command))
.Single(c => c.FullName.Equals(commandTypeName, StringComparison.InvariantCultureIgnoreCase));
return Json.Deserialize("{}", commandType);
}
2013-09-11 09:33:47 +03:00
private void ExecuteCommand<TCommand>(Command command) where TCommand : Command
{
var handlerContract = typeof(IExecute<>).MakeGenericType(command.GetType());
2013-05-21 05:49:08 +03:00
var handler = (IExecute<TCommand>)_serviceFactory.Build(handlerContract);
2013-09-11 09:33:47 +03:00
_logger.Trace("{0} -> {1}", command.GetType().Name, handler.GetType().Name);
try
{
2013-09-11 09:33:47 +03:00
_trackCommands.Start(command);
_eventAggregator.PublishEvent(new CommandUpdatedEvent(command));
2013-09-11 09:33:47 +03:00
if (!MappedDiagnosticsContext.Contains("CommandId") && command.SendUpdatesToClient)
{
2013-09-11 09:33:47 +03:00
MappedDiagnosticsContext.Set("CommandId", command.Id.ToString());
}
2013-08-30 19:18:12 +03:00
2013-09-11 09:33:47 +03:00
handler.Execute((TCommand)command);
_trackCommands.Completed(command);
}
2013-05-21 05:49:08 +03:00
catch (Exception e)
{
2013-09-11 09:33:47 +03:00
_trackCommands.Failed(command, e);
throw;
}
finally
{
if (MappedDiagnosticsContext.Get("CommandId") == command.Id.ToString())
{
MappedDiagnosticsContext.Remove("CommandId");
}
_eventAggregator.PublishEvent(new CommandUpdatedEvent(command));
_eventAggregator.PublishEvent(new CommandExecutedEvent(command));
}
2013-09-11 09:33:47 +03:00
_logger.Trace("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, command.Runtime.ToString(""));
}
}
}