vote up 7 vote down star
5

I have a question, and I'm going to tag this subjective since that's what I think it evolves into, more of a discussion. I'm hoping for some good ideas or some thought-provokers. I apologize for the long-winded question but you need to know the context.

The question is basically:

  • How do you deal with concrete types in relation to IoC containers? Specifically, who is responsible for disposing them, if they require disposal, and how does that knowledge get propagated out to the calling code?

Do you require them to be IDisposable? If not, is that code future-proof, or is the rule that you cannot use disposable objects? If you enforce IDisposable-requirements on interfaces and concrete types to be future-proof, whose responsibility is objects injected as part of constructor calls?


Edit: I accepted the answer by @Chris Ballard since it's the closest one to the approach we ended up with.

Basically, we always return a type that looks like this:

public interface IService<T> : IDisposable
    where T: class
{
    T Instance { get; }
    Boolean Success { get; }
    String FailureMessage { get; } // in case Success=false
}

We then return an object implementing this interface back from both .Resolve and .TryResolve, so that what we get in the calling code is always the same type.

Now, the object implementing this interface, IService<T> is IDisposable, and should always be disposed of. It's not up to the programmer that resolves a service to decide whether the IService<T> object should be disposed or not.

However, and this is the crucial part, whether the service instance should be disposed or not, that knowledge is baked into the object implementing IService<T>, so if it's a factory-scoped service (ie. each call to Resolve ends up with a new service instance), then the service instance will be disposed when the IService<T> object is disposed.

This also made it possible to support other special scopes, like pooling. We can now say that we want minimum 2 service instances, maximum 15, and typically 5, which means that each call to .Resolve will either retrieve a service instance from a pool of available objects, or construct a new one. And then, when the IService<T> object that holds the pooled service is disposed of, the service instance is released back into its pool.

Sure, this made all code look like this:

using (var service = ServiceContainer.Global.Resolve<ISomeService>())
{
    service.Instance.DoSomething();
}

but it's a clean approach, and it has the same syntax regardless of the type of service or concrete object in use, so we chose that as an acceptable solution.


Original question follows, for posterity


Long-winded question comes here:

We have a IoC container that we use, and recently we discovered what amounts to a problem.

In non-IoC code, when we wanted to use, say, a file, we used a class like this:

using (Stream stream = new FileStream(...))
{
    ...
}

There was no question as to whether this class was something that held a limited resource or not, since we knew that files had to be closed, and the class itself implemented IDisposable. The rule is simply that every class we construct an object of, that implements IDisposable, has to be disposed of. No questions asked. It's not up to the user of this class to decide if calling Dispose is optional or not.

Ok, so on to the first step towards the IoC container. Let's assume we don't want the code to talk directly to the file, but instead go through one lay

flag

3 Answers

vote up 2 vote down check

(Disclaimer: I'm answering this based on java stuff. Although I program C# I haven't proxied anything in C# but I know it's possible. Sorry about the java terminology)

You could let the IoC framework inspect the object being constructed to see if it supports IDisposable. If not, you could use a dynamic proxy to wrap the actual object that the IoC framework provides to the client code. This dynamic proxy could implement IDisposable, so that you'd always deliver a IDisposable to the client. As long as you're working with interfaces that should be fairly simple ?

Then you'd just have the problem of communicating to the developer when the object is an IDisposable. I'm not really sure how this'd be done in a nice manner.

link|flag
Well, this sounds like "always return an IDisposable object from the IoC container" and then the easiest solution would be to make that a criteria for the concrete types. The implementation of that interface could of course be left empty, so there's not much overhead code-wise, just one method. – Lasse V. Karlsen Feb 18 at 8:25
Yes I suppose there's little difference. I suppose the basic problem is that you need to communicate the disposability of the object to the client code, so I think there's little hope ;) – krosenvold Feb 18 at 8:52
I'd go for not supporting disposable objects. – krosenvold Feb 18 at 8:56
vote up 3 vote down

One option might be to go with a factory pattern, so that the objects created directly by the IoC container never need to be disposed themselves, eg

IBinaryDataProviderFactory factory =
    ServiceContainer.Global.Resolve<IBinaryDataProviderFactory>();
using(IBinaryDataProvider provider = factory.CreateProvider())
{
    ...
}

Downside is added complexity, but it does mean that the container never creates anything which the developer is supposed to dispose of - it is always explicit code which does this.

If you really want to make it obvious, the factory method could be named something like CreateDisposableProvider().

link|flag
The whole point of the IoC container is that I later, through configuration, can return a different object. In your example, every such object must implement IDisposable. My question is: is that a criteria for those objects? Can I specify this criteria somewhat, or is it per-interface? Future-proof? – Lasse V. Karlsen Feb 17 at 13:27
In this example I can return different implementations of the factory, but each must create a provider which implements IDisposable. This isn't ideal but at least gives you a clue about the semantics. Perhaps this isn't the question you were asking? – Chris Ballard Feb 17 at 13:53
No, my question is: Should I, through the IoC container, enforce that all such interfaces and concrete types implement IDisposable, or should I leave that as an exercise for the user? – Lasse V. Karlsen Feb 17 at 13:55
I think we have to make the developer responsible - IDisposable is all about telling the runtime that we are done with a resource, and not leaving this to the GC. All we can do is make it clearer that we are creating an object which needs to be explicitly disposed. – Chris Ballard Feb 18 at 13:33
vote up 1 vote down

You actually came up with a very dirty solution: your IService contract violates the SRP, wich is a big no-no.

What I recommend is to distinguish so-called "singleton" services from so-called "prototype" services. Lifetime of "singleton" ones is managed by the container, which may query at runtime whether a particular instance implements IDisposable and invoke Dispose() on shutdown if so.

Managing prototypes, on the other hand, is totally the responsibility of the calling code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.