Isenção de responsabilidade: Desde o início de 2015, há uma excelente comparação dos recursos de IoC Container de Jimmy Bogard , aqui está um resumo:
Recipientes comparados:
- Autofac
- Ninject
- Injetor Simples
- StructureMap
- Unidade
- Windsor
O cenário é o seguinte: Eu tenho uma interface, IMediator, na qual posso enviar uma única solicitação / resposta ou uma notificação para vários destinatários:
public interface IMediator
{
TResponse Send<TResponse>(IRequest<TResponse> request);
Task<TResponse> SendAsync<TResponse>(IAsyncRequest<TResponse> request);
void Publish<TNotification>(TNotification notification)
where TNotification : INotification;
Task PublishAsync<TNotification>(TNotification notification)
where TNotification : IAsyncNotification;
}
Criei um conjunto básico de solicitações / respostas / notificações:
public class Ping : IRequest<Pong>
{
public string Message { get; set; }
}
public class Pong
{
public string Message { get; set; }
}
public class PingAsync : IAsyncRequest<Pong>
{
public string Message { get; set; }
}
public class Pinged : INotification { }
public class PingedAsync : IAsyncNotification { }
Eu estava interessado em examinar algumas coisas em relação ao suporte a contêiner para genéricos:
- Configuração para genéricos abertos (registrando IRequestHandler <,> facilmente)
- Configuração para vários registros de genéricos abertos (dois ou mais INotificationHandlers)
Configuração para variação genérica (registrando manipuladores para INotification base / criando pipelines de solicitação) Meus manipuladores são bem diretos, eles apenas enviam para o console:
public class PingHandler : IRequestHandler<Ping, Pong> { /* Impl */ }
public class PingAsyncHandler : IAsyncRequestHandler<PingAsync, Pong> { /* Impl */ }
public class PingedHandler : INotificationHandler<Pinged> { /* Impl */ }
public class PingedAlsoHandler : INotificationHandler<Pinged> { /* Impl */ }
public class GenericHandler : INotificationHandler<INotification> { /* Impl */ }
public class PingedAsyncHandler : IAsyncNotificationHandler<PingedAsync> { /* Impl */ }
public class PingedAlsoAsyncHandler : IAsyncNotificationHandler<PingedAsync> { /* Impl */ }
Autofac
var builder = new ContainerBuilder();
builder.RegisterSource(new ContravariantRegistrationSource());
builder.RegisterAssemblyTypes(typeof (IMediator).Assembly).AsImplementedInterfaces();
builder.RegisterAssemblyTypes(typeof (Ping).Assembly).AsImplementedInterfaces();
- Genéricos abertos: sim, implicitamente
- Vários genéricos abertos: sim, implicitamente
- Contravariância genérica: sim, explicitamente
Ninject
var kernel = new StandardKernel();
kernel.Components.Add<IBindingResolver, ContravariantBindingResolver>();
kernel.Bind(scan => scan.FromAssemblyContaining<IMediator>()
.SelectAllClasses()
.BindDefaultInterface());
kernel.Bind(scan => scan.FromAssemblyContaining<Ping>()
.SelectAllClasses()
.BindAllInterfaces());
kernel.Bind<TextWriter>().ToConstant(Console.Out);
- Genéricos abertos: sim, implicitamente
- Vários genéricos abertos: sim, implicitamente
- Contravariância genérica: sim, com extensões criadas pelo usuário
Injetor Simples
var container = new Container();
var assemblies = GetAssemblies().ToArray();
container.Register<IMediator, Mediator>();
container.Register(typeof(IRequestHandler<,>), assemblies);
container.Register(typeof(IAsyncRequestHandler<,>), assemblies);
container.RegisterCollection(typeof(INotificationHandler<>), assemblies);
container.RegisterCollection(typeof(IAsyncNotificationHandler<>), assemblies);
- Genéricos abertos: sim, explicitamente
- Vários genéricos abertos: sim, explicitamente
- Contravariância genérica: sim, implicitamente (com atualização 3.0)
StructureMap
var container = new Container(cfg =>
{
cfg.Scan(scanner =>
{
scanner.AssemblyContainingType<Ping>();
scanner.AssemblyContainingType<IMediator>();
scanner.WithDefaultConventions();
scanner.AddAllTypesOf(typeof(IRequestHandler<,>));
scanner.AddAllTypesOf(typeof(IAsyncRequestHandler<,>));
scanner.AddAllTypesOf(typeof(INotificationHandler<>));
scanner.AddAllTypesOf(typeof(IAsyncNotificationHandler<>));
});
});
- Genéricos abertos: sim, explicitamente
- Vários genéricos abertos: sim, explicitamente
- Contravariância genérica: sim, implicitamente
Unidade
container.RegisterTypes(AllClasses.FromAssemblies(typeof(Ping).Assembly),
WithMappings.FromAllInterfaces,
GetName,
GetLifetimeManager);
/* later down */
static bool IsNotificationHandler(Type type)
{
return type.GetInterfaces().Any(x => x.IsGenericType && (x.GetGenericTypeDefinition() == typeof(INotificationHandler<>) || x.GetGenericTypeDefinition() == typeof(IAsyncNotificationHandler<>)));
}
static LifetimeManager GetLifetimeManager(Type type)
{
return IsNotificationHandler(type) ? new ContainerControlledLifetimeManager() : null;
}
static string GetName(Type type)
{
return IsNotificationHandler(type) ? string.Format("HandlerFor" + type.Name) : string.Empty;
}
- Genéricos abertos: sim, implicitamente
- Vários genéricos abertos: sim, com extensão criada pelo usuário
- Contravariância genérica: derp
Windsor
var container = new WindsorContainer();
container.Register(Classes.FromAssemblyContaining<IMediator>().Pick().WithServiceAllInterfaces());
container.Register(Classes.FromAssemblyContaining<Ping>().Pick().WithServiceAllInterfaces());
container.Kernel.AddHandlersFilter(new ContravariantFilter());
- Genéricos abertos: sim, implicitamente
- Vários genéricos abertos: sim, implicitamente
- Contravariância genérica: sim, com extensão criada pelo usuário