中介模式和简单注射器的逆变

时间:2015-01-12 20:04:34

标签: c# simple-injector mediator mediatr

这个问题源于我试图为MediatR创建一个简单的注射器实现:https://github.com/jbogard/MediatR/pull/14

我在尝试解析通用处理程序接口的实现时遇到了麻烦。请考虑以下通知处理程序接口:

public interface INotificationHandler<in TNotification>
    where TNotification : INotification
{
    void Handle(TNotification notification);
}

INotifcation只是一个空标记界面。

我为Pinged(实现INotification)事件定义了以下处理程序:

public class PingedHandler : INotificationHandler<Pinged>
{
    public void Handle(Pinged notification) { }
}

public class PingedHandler2 : INotificationHandler<Pinged>
{
    public void Handle(Pinged notification) { }
}

还有一个通用处理程序(注意这应该处理每个INotification):

public class GenericHandler : INotificationHandler<INotification>
{
    public void Handle(INotification notification) { }
}

通过以下注册:

var container = new Container();

container.RegisterManyForOpenGeneric(
    typeof (INotificationHandler<>),
    (service, impls) => container.RegisterAll(service, impls),
    AppDomain.CurrentDomain.GetAssemblies());

现在我期待:

GetAllInstances<INotificationHandler<Pinged>>();

解决它所做的PingedHandlerPingedHandler2问题。但它并没有解决GenericHandler,因为它实现了INotificationHandler<INotification>而不是INotificationHandler<Pinged>。我想知道是否有办法让Simple Injector搜索整个对象图并解析任何 Pinged

我从史蒂文身上找到了a blog post关于协方差和反差的问题,但我无法让它适合我的榜样。

2 个答案:

答案 0 :(得分:3)

<强>更新

从Simple Injector版本2.7开始this functionality现已成为标准版,您不再需要下面显示的解决方法。


您缺少该文章中描述的MultipleDispatchEventHandler的变体。采用基本逻辑并将其应用于您的抽象确实可以得到您期望的结果:

[Fact]
public void RegisterAll_Contravariant_Succeeds()
{
    var container = new Container();

    container.RegisterManyForOpenGeneric(
        typeof(INotificationHandler<>),
        (service, impls) => container.RegisterAll(service, impls),
        AppDomain.CurrentDomain.GetAssemblies());

    var handlersType = typeof(IEnumerable<INotificationHandler<Pinged>>);

    var handlersCollection = (
        from r in container.GetCurrentRegistrations()
        where handlersType.IsAssignableFrom(r.ServiceType)
        select r.GetInstance())
        .Cast<IEnumerable<INotificationHandler<Pinged>>>()
        .ToArray();

    var result = 
        from handlers in handlersCollection
        from handler in handlers
        select handler;

    Assert.Equal(3, result.Count());
}

但是GenericHandler通用可能更容易:

public class GenericHandler<TNotification> : INotificationHandler<TNotification>
    where TNotification : INotification
{
    public void Handle(TNotification notification) { }
}

提供更简单的注册

[Fact]
public void RegisterAll_WithOpenAndClosedGenerics_Succeeds()
{
    var container = new Container();

    var types = OpenGenericBatchRegistrationExtensions
        .GetTypesToRegister(
            container,
            typeof(INotificationHandler<>),
            AccessibilityOption.AllTypes,
            AppDomain.CurrentDomain.GetAssemblies())
        .ToList();

    types.Add(typeof(GenericHandler<>));

    container.RegisterAll(typeof(INotificationHandler<>), types);

    var result = container.GetAllInstances<INotificationHandler<Pinged>>().ToList();

    Assert.Equal(3, result.Count());
}

答案 1 :(得分:2)

tl; dr:这是Simple Injector v2.6.0中的一个错误/缺点,已在v2.7.0中修复。问题中的配置(如下所示)现在可以正常工作。


总结一下@qujck的回答和@Steven的评论:我能够通过安装具有以下配置的Simple Injector v2.7.0-beta2来实现它(实际上与问题中的相同):

// Simple Injector v3.x
container.RegisterCollection(typeof(INotificationHandler<>),
    AppDomain.CurrentDomain.GetAssemblies());

// Simple Injector v2.x
container.RegisterManyForOpenGeneric(
    typeof(INotificationHandler<>),
    container.RegisterAll,
    AppDomain.CurrentDomain.GetAssemblies());

现在,简单注入者可以在请求时解析PingedHandlerPingedHandler2 GenericHandler

container.GetAllInstances<INotificationHandler<Pinged>>();