Go to file
2016-08-23 21:41:46 +02:00
example Deprecate singleton factory method 2016-08-08 22:17:17 +02:00
source/poodinis Add constructor injection 2016-08-23 00:11:29 +02:00
test/poodinis Add extra testcase 2016-08-23 21:20:54 +02:00
.gitignore Add registerOnResolveExample to .gitignore 2016-06-26 21:45:48 -06:00
.travis.yml Build with latest DMD beta 2016-08-09 21:36:35 +02:00
CHANGES.md Add constructor injection to documentation 2016-08-23 21:10:31 +02:00
dub.json Add example for detailing how registration on resolve works 2016-02-09 21:30:51 +01:00
LICENSE.txt Update copyrights 2016-01-06 20:18:35 +01:00
README.md Add constructor injection to documentation 2016-08-23 21:10:31 +02:00
TUTORIAL.md Rewrite sentence 2016-08-23 21:41:46 +02:00

Poodinis Dependency Injection Framework

Version 7.0.0
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

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;

interface Database{};
class RelationalDatabase : Database {}

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

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

	auto writer = dependencies.resolve!DataWriter;
}

For more examples, see the examples directory.

###Tutorial For an extended tutorial walking you through all functionality offered by Poodinis, see TUTORIAL.md

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/

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.