免責事項: 2015年の初めの時点で、Jimmy Bogardの IoCコンテナー機能の優れた比較があります。ここに要約を示します。
比較されるコンテナ:
- Autofac
- Ninject
- シンプルなインジェクター
- StructureMap
- ユニティ
- ウィンザー
シナリオは次のとおりです。インターフェイスIMediatorがあり、単一の要求/応答または通知を複数の受信者に送信できます。
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;
}
次に、リクエスト/レスポンス/通知の基本セットを作成しました。
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 { }
ジェネリックのコンテナーサポートに関して、いくつかの点に興味がありました。
- オープンジェネリックのセットアップ(IRequestHandler <、>を簡単に登録)
- オープンジェネリックの複数登録のセットアップ(2つ以上のINotificationHandlers)
一般的な分散の設定(ベースINotificationのハンドラーの登録/リクエストパイプラインの作成)私のハンドラーは非常に単純で、コンソールに出力するだけです。
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();
- ジェネリックを開く:はい、暗黙的に
- 複数のオープンジェネリック:はい、暗黙的に
- 一般的な逆分散:はい、明示的に
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);
- ジェネリックを開く:はい、暗黙的に
- 複数のオープンジェネリック:はい、暗黙的に
- 一般的な矛盾:はい、ユーザーが作成した拡張機能を使用
シンプルなインジェクター
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);
- ジェネリックを開く:はい、明示的に
- 複数のオープンジェネリック:はい、明示的に
- 一般的な矛盾:はい、暗黙的に(更新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<>));
});
});
- ジェネリックを開く:はい、明示的に
- 複数のオープンジェネリック:はい、明示的に
- 一般的な逆分散:はい、暗黙的に
ユニティ
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;
}
- ジェネリックを開く:はい、暗黙的に
- 複数のオープンジェネリック:はい、ユーザーが作成した拡張機能
- 一般的な反変性:derp
ウィンザー
var container = new WindsorContainer();
container.Register(Classes.FromAssemblyContaining<IMediator>().Pick().WithServiceAllInterfaces());
container.Register(Classes.FromAssemblyContaining<Ping>().Pick().WithServiceAllInterfaces());
container.Kernel.AddHandlersFilter(new ContravariantFilter());
- ジェネリックを開く:はい、暗黙的に
- 複数のオープンジェネリック:はい、暗黙的に
- 一般的な逆分散:はい、ユーザーが作成した拡張機能を使用