Lidarr/NzbDrone.Core/Messaging/MessageAggregator.cs

184 lines
6.3 KiB
C#
Raw Normal View History

2013-09-11 06:33:47 +00:00
using System;
2013-05-13 02:52:55 +00:00
using System.Linq;
using System.Threading.Tasks;
2013-02-23 20:09:44 +00:00
using NLog;
2013-09-11 06:33:47 +00:00
using NzbDrone.Common;
2013-05-13 02:52:55 +00:00
using NzbDrone.Common.EnsureThat;
2013-09-11 06:33:47 +00:00
using NzbDrone.Common.Messaging;
2013-05-13 02:52:55 +00:00
using NzbDrone.Common.Serializer;
2013-07-12 06:10:34 +00:00
using NzbDrone.Common.TPL;
2013-09-11 06:33:47 +00:00
using NzbDrone.Core.Messaging.Commands;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.Messaging.Tracking;
using NzbDrone.Core.ProgressMessaging;
2013-09-11 06:33:47 +00:00
namespace NzbDrone.Core.Messaging
{
public class MessageAggregator : IMessageAggregator
{
2013-02-23 20:09:44 +00:00
private readonly Logger _logger;
private readonly IServiceFactory _serviceFactory;
private readonly ITrackCommands _trackCommands;
private readonly TaskFactory _taskFactory;
public MessageAggregator(Logger logger, IServiceFactory serviceFactory, ITrackCommands trackCommands)
{
2013-09-11 06:33:47 +00:00
var scheduler = new LimitedConcurrencyLevelTaskScheduler(3);
2013-02-23 20:09:44 +00:00
_logger = logger;
_serviceFactory = serviceFactory;
_trackCommands = trackCommands;
_taskFactory = new TaskFactory(scheduler);
}
2013-05-13 02:52:55 +00:00
public void PublishEvent<TEvent>(TEvent @event) where TEvent : class ,IEvent
{
2013-05-13 02:52:55 +00:00
Ensure.That(() => @event).IsNotNull();
2013-05-11 20:06:57 +00:00
var eventName = GetEventName(@event.GetType());
_logger.Trace("Publishing {0}", eventName);
//call synchronous handlers first.
foreach (var handler in _serviceFactory.BuildAll<IHandle<TEvent>>())
{
try
{
2013-09-11 06:33:47 +00:00
_logger.Trace("{0} -> {1}", eventName, handler.GetType().Name);
handler.Handle(@event);
2013-09-11 06:33:47 +00:00
_logger.Trace("{0} <- {1}", eventName, handler.GetType().Name);
}
catch (Exception e)
{
2013-05-11 20:06:57 +00:00
_logger.ErrorException(string.Format("{0} failed while processing [{1}]", handler.GetType().Name, eventName), e);
}
}
foreach (var handler in _serviceFactory.BuildAll<IHandleAsync<TEvent>>())
{
var handlerLocal = handler;
_taskFactory.StartNew(() =>
{
2013-09-11 06:33:47 +00:00
_logger.Trace("{0} ~> {1}", eventName, handlerLocal.GetType().Name);
handlerLocal.HandleAsync(@event);
2013-09-11 06:33:47 +00:00
_logger.Trace("{0} <~ {1}", eventName, handlerLocal.GetType().Name);
2013-07-12 06:10:34 +00:00
}, TaskCreationOptions.PreferFairness)
.LogExceptions();
}
}
2013-05-11 20:06:57 +00:00
private static string GetEventName(Type eventType)
{
if (!eventType.IsGenericType)
{
return eventType.Name;
}
return string.Format("{0}<{1}>", eventType.Name.Remove(eventType.Name.IndexOf('`')), eventType.GetGenericArguments()[0].Name);
}
2013-09-11 06:33:47 +00:00
public void PublishCommand<TCommand>(TCommand command) where TCommand : Command
{
2013-05-13 02:52:55 +00:00
Ensure.That(() => command).IsNotNull();
_logger.Trace("Publishing {0}", command.GetType().Name);
2013-09-11 06:33:47 +00:00
if (_trackCommands.FindExisting(command) != null)
{
2013-09-11 06:33:47 +00:00
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
return;
}
2013-09-11 06:33:47 +00:00
_trackCommands.Store(command);
ExecuteCommand<TCommand>(command);
}
public void PublishCommand(string commandTypeName)
{
dynamic command = GetCommand(commandTypeName);
PublishCommand(command);
}
2013-09-11 06:33:47 +00:00
public Command PublishCommandAsync<TCommand>(TCommand command) where TCommand : Command
{
Ensure.That(() => command).IsNotNull();
_logger.Trace("Publishing {0}", command.GetType().Name);
2013-09-11 06:33:47 +00:00
var existingCommand = _trackCommands.FindExisting(command);
2013-09-11 06:33:47 +00:00
if (existingCommand != null)
{
2013-09-11 06:33:47 +00:00
_logger.Debug("Command is already in progress: {0}", command.GetType().Name);
return existingCommand;
}
2013-09-11 06:33:47 +00:00
_trackCommands.Store(command);
_taskFactory.StartNew(() => ExecuteCommand<TCommand>(command)
, TaskCreationOptions.PreferFairness)
.LogExceptions();
2013-09-11 06:33:47 +00:00
return command;
}
2013-09-11 06:33:47 +00:00
public Command PublishCommandAsync(string commandTypeName)
{
dynamic command = GetCommand(commandTypeName);
return PublishCommandAsync(command);
}
private dynamic GetCommand(string commandTypeName)
{
2013-09-11 06:33:47 +00:00
var commandType = _serviceFactory.GetImplementations(typeof(Command))
.Single(c => c.FullName.Equals(commandTypeName, StringComparison.InvariantCultureIgnoreCase));
return Json.Deserialize("{}", commandType);
}
2013-09-11 06:33:47 +00:00
private void ExecuteCommand<TCommand>(Command command) where TCommand : Command
{
var handlerContract = typeof(IExecute<>).MakeGenericType(command.GetType());
2013-05-21 02:49:08 +00:00
var handler = (IExecute<TCommand>)_serviceFactory.Build(handlerContract);
2013-09-11 06:33:47 +00:00
_logger.Trace("{0} -> {1}", command.GetType().Name, handler.GetType().Name);
try
{
2013-09-11 06:33:47 +00:00
_trackCommands.Start(command);
PublishEvent(new CommandUpdatedEvent(command));
if (!MappedDiagnosticsContext.Contains("CommandId") && command.SendUpdatesToClient)
{
2013-09-11 06:33:47 +00:00
MappedDiagnosticsContext.Set("CommandId", command.Id.ToString());
}
2013-08-30 16:18:12 +00:00
2013-09-11 06:33:47 +00:00
handler.Execute((TCommand)command);
_trackCommands.Completed(command);
PublishEvent(new CommandUpdatedEvent(command));
}
2013-05-21 02:49:08 +00:00
catch (Exception e)
{
2013-09-11 06:33:47 +00:00
_trackCommands.Failed(command, e);
PublishEvent(new CommandUpdatedEvent(command));
throw;
}
finally
{
if (MappedDiagnosticsContext.Get("CommandId") == command.Id.ToString())
{
MappedDiagnosticsContext.Remove("CommandId");
}
}
2013-09-11 06:33:47 +00:00
PublishEvent(new CommandExecutedEvent(command));
PublishEvent(new CommandUpdatedEvent(command));
_logger.Trace("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, command.Runtime.ToString(""));
}
}
}