Go to file
2015-02-28 16:26:57 +01:00
example Escape chevrons 2015-02-21 17:55:14 +01:00
source/poodinis Get member from instance instead 2015-02-28 16:26:57 +01:00
test/poodinis Add test that asserts whether autowiring a class that depends on itself works. 2015-02-23 20:01:44 +01:00
.buildpath Add registration of concrete classes 2014-05-06 01:32:22 +02:00
.gitignore Add example where qualifiers are used 2015-02-21 17:48:55 +01:00
.project Add registration of concrete classes 2014-05-06 01:32:22 +02:00
.travis.yml Add example where qualifiers are used 2015-02-21 17:48:55 +01:00
CHANGES.md Prepare development of version 1.0.0 2015-02-15 14:49:13 +01:00
DDOCSINDEX.md Add ddocs.org friendly index page 2015-02-28 14:52:13 +01:00
dub.json Add example where qualifiers are used 2015-02-21 17:48:55 +01:00
hmod.cfg Add ddocs.org friendly index page 2015-02-28 14:52:13 +01:00
LICENSE.txt Update copyrights 2015-01-25 21:55:02 +01:00
README.md Link to issue tracker in README 2015-02-27 23:03:35 +01:00

Poodinis Dependency Injection Framework

Version 1.0.0
Copyright 2014-2015 Mike Bierlee
Licensed under the terms of the MIT license - See LICENSE.txt

Build Status

Poodinis is a dependency injection framework for the D programming language. It is inspired by the Spring Framework and Hypodermic IoC container for C++. Poodinis supports registering and resolving classes either by concrete type or interface. Automatic injection of dependencies is supported through the use of UDAs (Referred to as autowiring).

Developed for D 2.066.1
Uses the Phobos standard library.
Can be built with DUB 0.9.22.

You can find the Public API Documentation on ddocs.org

History

For a full overview of changes, see CHANGES.md

Getting started

###DUB Dependency See the Poodinis DUB project page for instructions on how to include Poodinis into your project.

###Quickstart The following example shows the typical usage of Poodinis:

import poodinis.dependency;

interface Database{};
class RelationalDatabase : Database {}

class DataWriter {
	@Autowire
	public Database database; // Automatically injected when class is resolved
}

void main() {
	auto container = DependencyContainer.getInstance();
	container.register!DataWriter;
	container.register!(Database, RelationalDatabase);

	auto writer = container.resolve!DataWriter;
}

For more examples, see the examples directory.

The container

To register a class, a new dependency container must be instantiated:

// Register a private container
auto container = new DependencyContainer();
// Or use the singleton container
container = DependencyContainer.getInstance();

###Registering dependencies To make dependencies available, they have to be registered:

// Register concrete class
container.register!ExampleClass;
// Register by interface
container.register!(ExampleInterface, ExampleClass);

In the above example, dependencies on the concrete class and interface will resolve an instance of class ExampleClass. Registering a class by interface does not automatically register by concrete type.

###Resolving dependencies To manually resolve a dependency, all you have to do is resolve the dependency's type using the container in which it is registered:

auto exampleClassInstance = container.resolve!ExampleClass;

If the class is registered by interface and not by concrete type, you cannot resolve the class by concrete type. Registration of both a concrete type and interface type will resolve different registrations, returning different instances:

auto exampleClassInstance = container.resolve!ExampleClass;
auto exampleClassInstance2 = container.resolve!ExampleInterface;
assert(exampleClassInstance !is exampleClassInstance2);

###Dependency scopes With dependency scopes, you can control how a dependency is resolved. The scope determines which instance is returned, be it the same each time or a new one. The following scopes are available:

  • Resolve a dependency using a single instance (default):
container.register!(ExampleClass).singleInstance();
  • Resolve a dependency with a new instance each time it is resolved:
container.register!(ExampleClass).newInstance();
  • Resolve a dependency using a pre-existing instance
auto preExistingInstance = new ExampleClass();
container.register!(ExampleClass).existingInstance(preExistingInstance);

###Autowiring The real value of any dependency injection framework comes from its ability to autowire dependencies. Poodinis supports autowiring by simply applying the @Autowire UDA to a member of a class:

class ExampleClassA {}

class ExampleClassB {
	@Autowire
	public ExampleClassA dependency;
}

container.register!ExampleClassA;
auto exampleInstance = new ExampleClassB();
container.autowire(exampleInstance);
assert(exampleInstance.dependency !is null);

At the moment, it is only possible to autowire public members or properties.

Dependencies are automatically autowired when a class is resolved. So when you register ExampleClassB, its member, dependency, is automatically autowired:

container.register!ExampleClassA;
container.register!ExampleClassB;
auto instance = container.resolve!ExampleClassB;
assert(instance.dependency !is null);

If an interface is to be autowired, you must register a concrete class by interface. Any class registered by concrete type can only be injected when a dependency on a concrete type is autowired.

###Circular dependencies Poodinis can autowire circular dependencies when they are registered with singleInstance or existingInstance registration scopes. Circular dependencies in registrations with newInstance scopes will not be autowired, as this would cause an endless loop.

###Registering and resolving using qualifiers You can register multiple concrete types to a super type. When doing so, you will need to specify a qualifier when resolving that type:

// Color is an interface, Blue and Red are classes implementing that interface
container.register!(Color, Blue);
container.register!(Color, Red);
auto blueInstance = container.resolve!(Color, Blue);

If you want to autowire a type registered to multiple concrete types, specify a qualified type as template argument:

class BluePaint {
	@Autowire!Blue
	public Color color;
}

If you registered multiple concrete types to the same supertype and you do not resolve using a qualifier, a ResolveException is thrown stating that there are multiple candidates for the type to be resolved.

Known issues

None! Found one? Let us know on the Github issue tracker.

Future Work

  • Thread safety
  • Component scan (auto-registration)