I'm a newbie with Castle Windsor. Let's say I have the following classes:

public class LowLevelComponent
{
}

public class HighLevelComponent
{
    readonly LowLevelComponent LowLevelComponent;

    public HighLevelComponent(LowLevelComponent lowLevelComponent)
    {
        LowLevelComponent = lowLevelComponent;
    }
}

public class ComponentBeingResolved
{
    readonly LowLevelComponent LowLevelComponent;
    readonly HighLevelComponent HighLevelComponent;

    public ComponentBeingResolved(LowLevelComponent lowLevelComponent,
                                  HighLevelComponent highLevelComponent)
    {
        LowLevelComponent = lowLevelComponent;
        HighLevelComponent = highLevelComponent;
    }
}

Registered in the easiest possible way:

container.Register(Component.For<LowLevelComponent>());
container.Register(Component.For<HighLevelComponent>());
container.Register(Component.For<ComponentBeingResolved>());

I'd like to get the same instance of LowLevelComponent used in all dependencies each time I call Resolve.

So, after these calls:

var instance1 = container.Resolve<ComponentBeingResolved>();
var instance2 = container.Resolve<ComponentBeingResolved>();

The following assertions should be true:

instance1.LowLevelComponent == instance1.HighLevelComponent.LowLevelComponent
instance1.LowLevelComponent != instance2.LowLevelComponent
instance1.HighLevelComponent != instance2.HighLevelComponent

I'll also take "you're doing everything wrong, this is what you should do instead" as an answer :-)

link|improve this question

1  
1  
Same problem as that question, check out Germán's contextual lifestyle: blog.schuager.com/2010/11/contextual-lifestyle-reloaded.html – Mauricio Scheffer Mar 8 '11 at 1:44
@MauricioScheffer: Looks exactly like what I need! But is there a way to avoid creating the scopes manually? For example, if I use the typed factory facility... – Diego Mijelshon Mar 8 '11 at 2:09
feedback

2 Answers

You must've heard people recommending to only call Resolve once for your app entry point (Main, Controller, etc.). Castle documentation has good guidelines on this.

link|improve this answer
Yes, I've read that article, and I guess I could use typed factories to obtain ComponentBeingResolved, but that doesn't solve the problem, does it? – Diego Mijelshon Mar 8 '11 at 1:38
feedback
up vote 0 down vote accepted

Based on Mauricio's link, I got it working using factories:

public interface IComponentFactory
{
    T Get<T>();
}

var container = new WindsorContainer();
container.AddFacility<TypedFactoryFacility>();
container.Register(Component.For<LowLevelComponent>()
         .LifeStyle.Custom<ContextualLifestyle>());
container.Register(Component.For<HighLevelComponent>()
         .LifeStyle.Custom<ContextualLifestyle>());
container.Register(Component.For<IComponentFactory>().AsFactory());
//Register the "context-root" component in a child container
var subContainer = new WindsorContainer();
subContainer.Register(Component.For<ComponentBeingResolved>()
            .LifeStyle.Transient);
container.AddChildContainer(subContainer);
container.Register(
    Component.For<ComponentBeingResolved>()
        .LifeStyle.Transient
        //Here's the magic
        .UsingFactoryMethod(
            () =>
                {
                    using (new ContainerContext(container))
                        return subContainer.Resolve<ComponentBeingResolved>();
                }));

Usage:

var factory = container.Resolve<IComponentFactory>();
var instance1 = factory.Get<ComponentBeingResolved>();
var instance2 = factory.Get<ComponentBeingResolved>();

Not sure if this is a good hack or an ugly one, but it works wonderfully.

link|improve this answer
is the child container necessary? – Mauricio Scheffer Mar 9 '11 at 2:17
@MauricioScheffer: It's the way I found to avoid a stack overflow if I call Resolve directly on the Kernel/Container – Diego Mijelshon Mar 9 '11 at 2:36
feedback

Your Answer

 
or
required, but never shown

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