As i started to look at swift, i needed some project to start with, so i picked to implement a dependency injection container.
So, after two weeks the final result was more or less done and can be found here.
The following core features have been implemented
postConstruct
)BeanPostProcessor
’sFactoryBean
’s${property=<default>}
) in xmlTo get a quick impression, what you can do with it, here is some sample code:
let environment = try! Environment(name: "my first environment")
try! environment
// a bar created by the default constructor
.define(environment.bean(Bar.self, factory: Bar.init))
// a foo that depends on bar
.define(environment.bean(Foo.self, factory: {
return Foo(bar: try! environment.getBean(Bar.self))
}).requires(class: Bar.self))
// get goin'
.startup();
let foo = environment.getBean(Foo.self)
While this approach relies on closure functions, it is also possible to make use of reflection, setting specific properties individually.
try! environment
.define(environment.bean(Foo.self)
.property("name", value: "foo")
.property("number", value: 7))
// get goin'
.startup();
This feels more like the Spring approach in java but suffers from the lack of reflection features in swift (e.g. classes must inherit from NSObject
, …).
Is swift fast as always spread? No, why should it? The compiler team has trouble getting close to ObjectiveC speed, so this is clearly a myth.
I liked it since through type inference and syntactical sugar ( no need for ;
) it is pretty compact. On the other hand it does not provide any features that havn’t been around for years.
At least in the version i worked with, a number of features as found for example in Java are either completely missing or only implemented rudimentary.
NSObject
base class).