I have a framework with a DDD data layer which uses the service locator pattern. However, currently I use a global static ServiceLocator class which stores all the references. I would like to refactor this into a correct implementation where classes implement the IServiceProvider interface and where I remove the global static ServiceLocator class.

Now, almost everywhere it isn't issue to extend existing classes with the IServiceProvider interface, except for the entity classes. The problem is that I would think it very strange for the entity classes to have to implement IServiceProvider, but I do need a way to access a service provider to be able to resolve repositories through my IoC container.

What would be the best way to implement the service locator pattern without having to implement IServiceProvider on my entities?

link|improve this question

1  
Can you post a link to the pattern you are referring to? – jgauffin Feb 20 at 12:35
Google has loads of good results: google.com/search?q=service%20locator%20design%20pattern. The series at stefanoricciardi.com/2009/09/25/… goes into a little bit more detail. What I'm specifically trying to get rid of is the singleton pattern. – Pieter Feb 20 at 12:39
Yes, but that makes zero sense. Nothing in this patterns results in every entity exposing IServiceProvider. – TomTom Feb 20 at 12:42
2  
@Pieter Never heard of a service-provider pattern. Only of the service-locator. And that's more of an anti-pattern. And the description in your post doesn't fit the service-locator pattern. You post sounds like you totally misunderstood how DI is supposed to work. – CodeInChaos Feb 20 at 12:43
1  
@Pieter: Microsoft has something they call provider pattern. And there is a Service Locator pattern. But I've never heard of a pattern called Service Provider nor a pattern that forces one to use IServiceProvider on every entity. – jgauffin Feb 20 at 13:20
show 2 more comments
feedback

3 Answers

up vote 2 down vote accepted

Why the heck would an entity (business object) expose IServiceProvider? It is a business object, not a service. And IServiceProvider is not even for services, it is an IOC mechanism to expose service providers.

if anything, your ORM / business object framework / runtime is a service provider, but not the individual entities.

let me return the question: I dont see any sensible programming concept where entities expose IServiceProvider to start with.

---update

Services only should provide a service locator - and you should have one. You can use thread static variables for those cases where defined threads access elements (name: UI for example - UI elements must be accessed by spec by the UI thread) which breaks the global singleton.

link|improve this answer
The reason would be that I have global services (e.g. authorization) that needs to be available everywhere. – Pieter Feb 20 at 14:15
Yes, but those are not entities, those are services. Also tehy would not implement IServiceLocator but would be exposed through a ServiceLocator. You may get away using a dependenciinjector or a different central composition container / service locator (for example per window), but there is no pattern where every entity turns into one. – TomTom Feb 20 at 14:22
But I need them in my business logic. The problem I have is that I need to have a nice way to get access to these services from the business logic. – Pieter Feb 20 at 14:25
feedback

A Service Locator is best used in combination with an Inversion of Control container such as Unity, Castle Windsor or NInject. See http://commonservicelocator.codeplex.com/wikipage?title=Unity%20Adapter&referringTitle=Home&ProjectName=commonservicelocator for an example of a service locator that works with Unity.

And remember that Service Locator can be seen as an antipattern -- it should be used very carefully. It is much better to use constructor or property injection instead. But in cases where the dependencies are very much dependent on the functionality being executed, Service Locator has a place.

link|improve this answer
I do use Castle Windsor. However, I don't think feasible to have all dependencies passed through e.g. constructors all the time. I use the service locator pattern specifically for a number of global services, e.g. authorization. – Pieter Feb 20 at 14:18
Ever come to the idea to use a thread static accessor? Or use post composition to have that in a property - I do that all the time (the later). – TomTom Feb 20 at 14:23
@TomTom: I feel that post composition would mean that I'd still be polluting the entities with stuff that doesn't belong to it. I think that a thread static accessor would be the way to go. If you'll update your answer I'll accept it. – Pieter Feb 20 at 17:23
feedback

You are referring to Service Locator pattern in your comment. Edit your question accordingly.

Most applications today uses the Dependency Injection Principle (D in the SOLID principles) instead of the Service Locator pattern. The easiest way to get started with DIP is to use an inversion of control container like Autofac.

The idea with Service Locator is that you have a class which is used to lookup services. To achieve this you need to have some kind of registration mechanism to register all services.

Typical startup:

serviceLocator.Add(new MyService());

And later usage

serviceLocator.Get<MyService>();

I do recommend that you use DIP instead since it makes it a lot clearer which dependencies a class has.

link|improve this answer
Updated the question. – Pieter Feb 20 at 14:18
feedback

Your Answer

 
or
required, but never shown

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