poodinis/example/applicationcontext/app.d

76 lines
1.3 KiB
D
Raw Normal View History

2017-02-13 20:20:35 +01:00
/**
* Poodinis Dependency Injection Framework
2022-02-17 22:45:03 +01:00
* Copyright 2014-2022 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 poodinis;
import std.stdio;
class TownSquare
{
2017-02-13 20:20:35 +01:00
@Autowire private MarketStall marketStall;
2017-02-13 20:20:35 +01:00
public void makeSound()
{
2017-02-13 20:20:35 +01:00
marketStall.announceGoodsForSale();
}
}
interface Goods
{
2017-02-13 20:20:35 +01:00
public string getGoodsName();
}
class Fish : Goods
{
public override string getGoodsName()
{
2017-02-13 20:20:35 +01:00
return "Fish";
}
}
class MarketStall
{
2017-02-13 20:20:35 +01:00
private Goods goods;
this(Goods goods)
{
2017-02-13 20:20:35 +01:00
this.goods = goods;
}
public void announceGoodsForSale()
{
2017-02-13 20:20:35 +01:00
writeln(goods.getGoodsName() ~ " for sale!");
}
}
class ExampleApplicationContext : ApplicationContext
{
2017-02-13 20:20:35 +01:00
@Autowire private Goods goods;
2017-02-13 20:20:35 +01:00
public override void registerDependencies(shared(DependencyContainer) container)
{
2017-02-13 20:20:35 +01:00
container.register!(Goods, Fish);
container.register!TownSquare;
}
@Component public MarketStall marketStall()
{
2017-02-13 20:20:35 +01:00
return new MarketStall(goods);
}
}
void main()
{
2017-02-13 20:20:35 +01:00
auto container = new shared DependencyContainer();
container.registerContext!ExampleApplicationContext;
auto townSquare = container.resolve!TownSquare;
townSquare.makeSound();
}