mirror of https://github.com/lidarr/Lidarr
118 lines
3.9 KiB
C#
118 lines
3.9 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using NLog;
|
|
using NzbDrone.Common.EnsureThat;
|
|
using NzbDrone.Common.Serializer;
|
|
using NzbDrone.Common.TPL;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public class MessageAggregator : IMessageAggregator
|
|
{
|
|
private readonly Logger _logger;
|
|
private readonly IServiceFactory _serviceFactory;
|
|
private readonly TaskFactory _taskFactory;
|
|
|
|
public MessageAggregator(Logger logger, IServiceFactory serviceFactory)
|
|
{
|
|
_logger = logger;
|
|
_serviceFactory = serviceFactory;
|
|
var scheduler = new LimitedConcurrencyLevelTaskScheduler(2);
|
|
_taskFactory = new TaskFactory(scheduler);
|
|
}
|
|
|
|
public void PublishEvent<TEvent>(TEvent @event) where TEvent : class ,IEvent
|
|
{
|
|
Ensure.That(() => @event).IsNotNull();
|
|
|
|
var eventName = GetEventName(@event.GetType());
|
|
|
|
_logger.Trace("Publishing {0}", eventName);
|
|
|
|
//call synchronous handlers first.
|
|
foreach (var handler in _serviceFactory.BuildAll<IHandle<TEvent>>())
|
|
{
|
|
try
|
|
{
|
|
_logger.Debug("{0} -> {1}", eventName, handler.GetType().Name);
|
|
handler.Handle(@event);
|
|
_logger.Debug("{0} <- {1}", eventName, handler.GetType().Name);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
_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(() =>
|
|
{
|
|
_logger.Debug("{0} ~> {1}", eventName, handlerLocal.GetType().Name);
|
|
handlerLocal.HandleAsync(@event);
|
|
_logger.Debug("{0} <~ {1}", eventName, handlerLocal.GetType().Name);
|
|
}, TaskCreationOptions.PreferFairness)
|
|
.LogExceptions();
|
|
}
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
public void PublishCommand<TCommand>(TCommand command) where TCommand : class, ICommand
|
|
{
|
|
Ensure.That(() => command).IsNotNull();
|
|
|
|
var handlerContract = typeof(IExecute<>).MakeGenericType(command.GetType());
|
|
|
|
_logger.Trace("Publishing {0}", command.GetType().Name);
|
|
|
|
var handler = (IExecute<TCommand>)_serviceFactory.Build(handlerContract);
|
|
|
|
_logger.Debug("{0} -> {1}", command.GetType().Name, handler.GetType().Name);
|
|
|
|
var sw = Stopwatch.StartNew();
|
|
|
|
try
|
|
{
|
|
handler.Execute(command);
|
|
sw.Stop();
|
|
PublishEvent(new CommandCompletedEvent(command));
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
PublishEvent(new CommandFailedEvent(command, e));
|
|
throw;
|
|
}
|
|
finally
|
|
{
|
|
PublishEvent(new CommandExecutedEvent(command));
|
|
}
|
|
|
|
_logger.Debug("{0} <- {1} [{2}]", command.GetType().Name, handler.GetType().Name, sw.Elapsed.ToString(""));
|
|
}
|
|
|
|
public void PublishCommand(string commandTypeName)
|
|
{
|
|
var commandType = _serviceFactory.GetImplementations(typeof(ICommand))
|
|
.Single(c => c.FullName.Equals(commandTypeName, StringComparison.InvariantCultureIgnoreCase));
|
|
|
|
dynamic command = Json.Deserialize("{}", commandType);
|
|
PublishCommand(command);
|
|
}
|
|
}
|
|
}
|