poodinis/example/constructorinjection/app.d

66 lines
1.6 KiB
D
Raw Normal View History

2017-02-13 20:20:35 +01:00
/**
* Poodinis Dependency Injection Framework
2024-02-17 13:08:59 +01:00
* Copyright 2014-2024 Mike Bierlee
2017-02-13 20:20:35 +01:00
* This software is licensed under the terms of the MIT license.
* The full terms of the license can be found in the LICENSE file.
*/
import std.stdio;
2021-04-28 23:30:12 +02:00
class Scheduler {
2017-02-13 20:20:35 +01:00
private Calendar calendar;
// All parameters will autmatically be assigned when Scheduler is created.
this(Calendar calendar) {
2017-02-13 20:20:35 +01:00
this.calendar = calendar;
}
void scheduleJob() {
2017-02-13 20:20:35 +01:00
calendar.findOpenDate();
}
}
class Calendar {
2017-02-13 20:20:35 +01:00
private HardwareClock hardwareClock;
// This constructor contains built-in type "int" and thus will not be used.
this(int initialDateTimeStamp, HardwareClock hardwareClock) {
2017-02-13 20:20:35 +01:00
}
// This constructor is chosen instead as candidate for injection when Calendar is created.
this(HardwareClock hardwareClock) {
2017-02-13 20:20:35 +01:00
this.hardwareClock = hardwareClock;
}
void findOpenDate() {
2017-02-13 20:20:35 +01:00
hardwareClock.doThings();
}
}
class HardwareClock {
2017-02-13 20:20:35 +01:00
// Parameterless constructors will halt any further selection of constructors.
this() {
}
2017-02-13 20:20:35 +01:00
// As a result, this constructor will not be used when HardwareClock is created.
this(Calendar calendar) {
2017-02-13 20:20:35 +01:00
throw new Exception("This constructor should not be used by Poodinis");
}
void doThings() {
2017-02-13 20:20:35 +01:00
writeln("Things are being done!");
}
}
void main() {
2017-02-13 20:20:35 +01:00
import poodinis; // Locally imported to emphasize that classes do not depend on Poodinis.
auto dependencies = new shared DependencyContainer();
dependencies.register!Scheduler;
dependencies.register!Calendar;
2021-04-28 23:30:12 +02:00
dependencies.register!HardwareClock;
2017-02-13 20:20:35 +01:00
auto scheduler = dependencies.resolve!Scheduler;
scheduler.scheduleJob();
}