Go to file
Mike Bierlee 84bf261c5b Build with latest LDC beta
And latest patched previous minor
2016-11-23 00:25:04 +01:00
example Fix minor details 2016-09-03 18:36:26 +02:00
source/poodinis Fix injection of dependencies from foreign modules 2016-09-05 19:37:53 +02:00
test/poodinis Fix injection of dependencies from foreign modules 2016-09-05 19:37:53 +02:00
.gitignore Add registerOnResolveExample to .gitignore 2016-06-26 21:45:48 -06:00
.travis.yml Build with latest LDC beta 2016-11-23 00:25:04 +01:00
CHANGES.md Fix injection of dependencies from foreign modules 2016-09-05 19:37:53 +02:00
dub.json Add example on constructor injection 2016-08-25 21:17:47 +02:00
LICENSE.txt Update copyrights 2016-01-06 20:18:35 +01:00
README.md Fix injection of dependencies from foreign modules 2016-09-05 19:37:53 +02:00
TUTORIAL.md Fix minor details 2016-09-03 18:36:26 +02:00

Poodinis Dependency Injection Framework

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

Master: Build Status - Dev: 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 or constructors.

Requires at least a D 2.068.0 compatible compiler
Uses the Phobos standard library
Can be built with DUB 0.9.24 or higher

Features

  • Member injection: Injection of dependencies in class members of any visibility (public, private, etc.)
  • Constructor injection: Automatic injection of dependencies in class constructors on creation.
  • Type qualifiers: Inject concrete types into members defined only by abstract types.
  • Application contexts: Control the creation of dependencies manually through factory methods.
  • Multi-threadable: Dependency containers return the same dependencies across all threads.
  • Minimal set-up: Creation and injection of conventional classes requires almost no manual dependency configuration.
  • Well-tested: Developed test-driven, a great number of scenarios are tested as part of the test suite.

See the TUTORIAL.md and examples for a complete walkthrough of all features.

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;

class Driver {}

interface Database {};

class RelationalDatabase : Database {
	private Driver driver;

	this(Driver driver) { // Automatically injected on creation by container
		this.driver = driver;
	}
}

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

void main() {
	auto dependencies = new shared DependencyContainer();
	dependencies.register!Driver;
	dependencies.register!DataWriter;
	dependencies.register!(Database, RelationalDatabase);

	auto writer = dependencies.resolve!DataWriter;
}

Dependency set-up can further be reduced by enabling "Register on resolve". For more details and examples, see the examples directory.

Documentation

You can generate Public API documentation from the source code using DUB:

dub build --build=ddox

The documentation can then be found in docs/

History

For a full overview of changes, see CHANGES.md

Future Work

  • Component scan (auto-registration)
  • Phobos collections autowiring
  • Named qualifiers
  • Value type injection

Contributing

Any and all pull requests are welcome! If you (only) want discuss changes before making them, feel free to open an Issue on github. Please develop your changes on (a branch based on) the develop branch. Continuous integration is preferred so feature branches are not neccessary.