Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thanks for looking. I'm kind of new to Ninject and like it so far. I get the part where you bind one thing in debug mode and bind another in release mode. Those are global bindings where you have to declare that every Samurai will have a sword or a dagger, using Ninjects example code. It's not either/or, it's one or the other.

How do I do something where I can have one Samurai with a sword, and another with a dagger where they could even switch weapons if they like. Is there another way other than creating a bunch of kernels with different binding modules?

Here is the example code from Ninject. If you drop it in a console app it should run:

using System;
using Ninject;

namespace NinjectConsole
{
class Program
{

    //here is where we have to choose which weapon ever samurai must use...
    public class BindModule : Ninject.Modules.NinjectModule
    {
        public override void Load()
        {
            //Bind<IWeapon>().To<Sword>();
            Bind<IWeapon>().To<Shuriken>();
        }
    }

    class Shuriken : IWeapon
    {
        public void Hit(string target)
        {
            Console.WriteLine("Pierced {0}'s armor", target);
        }
    }

    class Sword : IWeapon
    {
        public void Hit(string target)
        {
            Console.WriteLine("Chopped {0} clean in half", target);
        }
    }

    interface IWeapon
    {
        void Hit(string target);
    }

    class Samurai
    {
        readonly IWeapon weapon;

        [Inject]
        public Samurai(IWeapon weapon)
        {
            if (weapon == null)
                throw new ArgumentNullException("weapon");

            this.weapon = weapon;
        }

        public void Attack(string target)
        {
            this.weapon.Hit(target);
        }
    }

    static void Main(string[] args)
    {

        //here is where we bind...
        Ninject.IKernel kernel = new StandardKernel(new BindModule());

        var samurai = kernel.Get<Samurai>();
        samurai.Attack("your enemy");

        //here is I would like to do, but with DI and no local newing up...
        var warrior1 = new Samurai(new Shuriken());
        var warrior2 = new Samurai(new Sword());
        warrior1.Attack("the evildoers");
        warrior2.Attack("the evildoers");
        Console.ReadKey();
    }
}
}

EDIT

Thanks for the replays and suggestions.

I figured out how to get pretty much what I wanted. Okay, so here is what I did:

  1. Set the default/initial binding to the weakest weapon. Sort of like a new-b would do.
  2. Added another weapon (Dagger)
  3. Expanded IWeapon to include a WeaponHitPoints value to rate the weapons value.
  4. Expanded Samurai to include an add and drop weapon method so the Samurai can gain or lose weapons.
  5. Modified the Attack method to use the best weapon.
  6. Modified the program to make use of the added features.
  7. TODO: add try/catch and null checks...

Create a Console project called NinjectConsole, install Ninject and you should be able to just drop this in and run it.

Here is the new code:

using System;
using System.Collections.Generic;
using System.Linq;
using Ninject;

namespace NinjectConsole
{
class Program
{
    public class BindModule : Ninject.Modules.NinjectModule
    {
        // default bind to weakest weapon 
        public override void Load()
        {
            Bind<IWeapon>().To<Dagger>();
        }
    }

    class Dagger : IWeapon
    {
        public int WeaponHitPoints { get { return 5; } }
        public string Hit(string target)
        {
            return String.Format("Stab {0} to death", target);
        }
    }

    class Shuriken : IWeapon
    {
        public int WeaponHitPoints { get { return 9; } }

        public string Hit(string target)
        {
            return String.Format("Pierced {0}'s armor", target);
        }
    }

    class Sword : IWeapon
    {
        public int WeaponHitPoints { get { return 11; } }

        public string Hit(string target)
        {
            return string.Format("Chopped {0} clean in half", target);
        }
    }

    interface IWeapon
    {
        int WeaponHitPoints { get; }
        string Hit(string target);
    }

    private class Samurai
    {
        private IEnumerable<IWeapon> _allWeapons;

        public Samurai(IWeapon[] allWeapons)
        {
            if (!allWeapons.Any())
                throw new ArgumentException("Samurai");

            _allWeapons = allWeapons;
        }

        public void AddWeapon(IWeapon weapon)
        {  //TODO: check for nulls...
            _allWeapons = _allWeapons.Concat(new[] {weapon});
        }

        public void DropWeapon(IWeapon weapon)
        {  //TODO: check for nulls...
            Console.WriteLine("A Samurai got rid of a " + weapon.WeaponName);

            _allWeapons = _allWeapons.Where(x => x.WeaponName != weapon.WeaponName);
        }

        public void Attack(string target)
        {
            int points = 0;

            try {
                 points = _allWeapons.Max(x => x.WeaponHitPoints);
            }
            catch()
            {
                 Console.WriteLine("You just punched " + target + " on the nose!");
            }

            var attackWeapon = _allWeapons.FirstOrDefault(i => i.WeaponHitPoints == points);

            //TODO: check for nulls... 
            Console.WriteLine(attackWeapon.Hit(target));
        }
    }

    static void Main(string[] args)
    {
        Ninject.IKernel kernel = new StandardKernel(new BindModule());

        var samurai1 = kernel.Get<Samurai>();
        var samurai2 = kernel.Get<Samurai>();

        Console.WriteLine("Samurai #1");
        samurai1.Attack("your enemy");            

        samurai2.AddWeapon(new Shuriken());

        Console.WriteLine("\nSamurai #2 selects best weapon for attack");
        samurai2.Attack("your enemy");

        Console.WriteLine("\nSamurai #1 gets new weapon!");
        samurai1.AddWeapon(new Sword());

        Console.WriteLine("Samurai #1 selects best weapon for attack");
        samurai1.Attack("your enemy");

        Console.ReadKey();
    }
}
}
share|improve this question
Why would you use IoC to achieve this? Seems like muteable classes with plain old dependency injection is more appropriate to this task. – P.Brian.Mackey Feb 6 at 20:22
@P.Brian.Mackey Clearly, he is trying to learn and understand the samples on the Ninject website. – hawkke Feb 6 at 21:35
From the description he already understands how ninject works. Polymorphic behavior is off the rocker. – P.Brian.Mackey Feb 6 at 22:15
@P.Brian.Mackey, hawkke: Thanks to you both for contributing. I want IoC because my shop does all TDD and we are required to have all constructors use DI and Ninject. I'm more familiar with Autofac from my old shop, but we don't use it here. I am trying to attain a more expert level of Ninject, so I'm studying their example and wondering how to do things. I did find a solution for what I was looking for and will post it shortly. – Jim Ballard Feb 7 at 16:10

2 Answers

up vote 3 down vote accepted

Generally speaking, you can't achieve this with an IOC container unless you specify some condition, which should be met to choose the right implementation (weapon). The container needs to know which one implementation to choose under current circumstances.

I suggest, you are looking for some sort of Contextual binding.

There are plenty of conditional binding methods in Ninject (see them all on the link above). I have chosen Named binding, as it is very straightforward for an example.

Named binding

Dependencies are resolved according to configured names.

kernel.Bind<Samurai>().ToSelf().Named("SwordMaster");
kernel.Bind<Samurai>().ToSelf().Named("ShurikenMaster");

kernel.Bind<IWeapon>().To<Sword>().WhenParentNamed("SwordMaster");
kernel.Bind<IWeapon>().To<Shuriken>().WhenParentNamed("ShurikenMaster");

warrior1 = kernel.Get<Samurai>("SwordMaster");
warrior2 = kernel.Get<Samurai>("ShurikenMaster");

Multi injection

If you want your Samurai to be able to handle multiple weapons, you can declare multiple bindings for IWeapon and those could be injected into Samurai as a collection.

public Samurai(IEnumerable<IWeapon> weapons)
{
     this.AllMyWeapons = weapons;
}
share|improve this answer
thanks for the answer. I think Contextual Binding is what I'm looking for. I think the other things I want, like picking up a new weapon after the constructor is just stuff I can do with code. I'm trying it now and if I get it working I'll post the code. – Jim Ballard Feb 7 at 15:08

Unfortunately although the Ninject documentation makes it easy to understand the syntax of the container, it can also give the wrong impression of when you should be using an IoC container.

The idea is that your services are registered and resolved from the IoC container - but a Samurai isn't really a service, it's a domain object. These should be constructed by (for example) a SamuraiFactory (Now there's a scary thought...)

When resolving a service, it is expected that you will only need to inject your components once, during initialization. This is the only time when the IoC container is used - ideally you should call .Resolve() just once, in order to spin up your network of dependencies. When you have your composition root, you have your entry point to the program - from then on, you do not reference the IoC container and your program executes as normal.

share|improve this answer
great point. I think I'm trying to use the wrong tool. I'm trying to work through a project to get better chops for working with Ninject and got carried away! – Jim Ballard Feb 7 at 18:39
@Alex G: Does not matter, how much it could look strange, Samurai is definitely not a domain object. It contains no information. It is service providing a method how to attack with provided weapon. You can imagine it e.g. like: Àttack is some method to log attack action. IWeapon contains method Hit, which actually is doing the logging, based on its implementation. So there could be FileWeapon logging it into file and DbWeapon logging the action into some database. – mipe34 Feb 7 at 20:00
@mipe34 In the example given in the question, the container is being used as a factory. Either way it is an incorrect usage and a normal factory should be used. – Alex G Feb 8 at 9:19
@Alex G Yes, I agree with the rest of your answer. Hovever, look in Ninject doc how the Samurai is defined (as a service). – mipe34 Feb 8 at 9:25
@mipe34 Can you point out where it says that? I can't find it... "let’s create a class to represent our warriors themselves. In order to attack its foes, the warrior will need an Attack() method. When this method is called, it should use its Sword to strike its opponent" - this seems to indicate that a warrior is a domain object (not an anemic domain object but rather a standard entity) - it certainly isn't indicative of a service responsibility – Alex G Feb 8 at 9:58
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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