I've been cracking my head over installing a Windsor container using a custom configuration object. It seems simple, but apparently there's something important I'm just not getting. I'll be grateful if you could help me fill this gap.

I have a configuration class:

class MyConfiguration
{
    int SomeIntValue;
    DateTime SomeDateValue;
    Action<string> SomeActionValue;
}

I want to pass these configuration values as constructor parameters into the registered implementations. I guess the registration should look something like:

public class MyInstaller : IWindsorInstaller
{
   public void Install(IWindsorContainer container, IConfigurationStore store)
   {
      container.Register(Component.For<IFoo>.ImplementedBy<Foo>
        .Parameters(Parameter.ForKey("parameter1").Eq( INSERT VALUE HERE (?) );
   }
}

So how do I take these values and pass them into the installer? Should I use this IConfigurationStore parameter? If so, how do I fill it up and what do I do with it?

Besides, it seems like all the configurations objects can only store string values, so how can I pass values which are not strings (such as DateTime)?

Thanks and have a great weekend.

link|improve this question

If you weren't using Castle Windsor, then where and how would you create an instance of MyConfiguration? – Mark Seemann Mar 24 '11 at 15:47
@Mark, MyConfiguration is a custom class, it has nothing to do with Castle. I just pass it as a parameter from the GUI layer to the initializer of the logic layer. – Ilya Kogan Mar 25 '11 at 16:12
1  
Then it's just a Component like any other. Let the container resolve it. – Mark Seemann Mar 25 '11 at 16:26
@Mark, thank you for this great idea, it may definitely solve half of the problem. As for the other half, I'm sorry, I just realized I mistyped the code in the question - edited it now. What I'm having difficulty with is passing a parameter to the constructor, not with setting a property (setting a property is easy). So if I understood correctly what you're saying, I should write something like Resolve<MyConfiguration>().SomeDateValue - right? And then, how do I take this date value and send it as a parameter to Foo's constructor, given that Parameter ... Eq() only accepts a string? – Ilya Kogan Mar 25 '11 at 16:54
feedback

1 Answer

up vote 3 down vote accepted

In the huge majority of cases you shouldn't have to explicitly register a constructor argument. The auto-wiring feature should be able to take care of that for you automatically. This will make your code less brittle and thus more maintainable.

So, the best you can do is simply to register MyConfiguration with the container. If this there's only a single registration of the type (the normal scenario), the container can unambiguously resolve any request for the type. Thus, if another class takes MyConfiguration as a constructor parameter, Castle Windsor will automatically match them for you. You don't need to specify this explicitly.

However, there are cases where you need to explicitly assign a particular parameter value. For those cases you can use ServiceOverrides. That might look something like this:

container.Register(Component.For<MyConfiguration>().Named("myConfig"));
container.Register(Component
    .For<IFoo>()
    .ImplementedBy<Foo>()
    .ServiceOverrides(new { parameter1 = "myConfig" }));

If you need to assign a specific instance, you can instead use DependsOn:

var myConfig = new MyConfig();
container.Register(Component
    .For<IFoo>()
    .ImplementedBy<Foo>()
    .DependsOn(new { parameter1 = myConfig }));
link|improve this answer
Absolutely brilliant!!! How come hours of searching didn't help me find this? You're my hero. – Ilya Kogan Mar 26 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

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