platform/angel_container/lib/src/container.dart

116 lines
3.1 KiB
Dart
Raw Normal View History

2018-07-10 18:18:10 +00:00
import 'exception.dart';
import 'reflector.dart';
class Container {
final Reflector reflector;
final Map<Type, dynamic> _singletons = {};
2018-08-20 04:40:30 +00:00
final Map<Type, dynamic Function(Container)> _factories = {};
final Container _parent;
2018-07-10 18:18:10 +00:00
2018-08-20 04:40:30 +00:00
Container(this.reflector) : _parent = null;
2018-07-10 18:18:10 +00:00
2018-08-20 04:40:30 +00:00
Container._child(this._parent) : reflector = _parent.reflector;
2018-07-10 18:18:10 +00:00
2018-08-20 04:40:30 +00:00
bool get isRoot => _parent == null;
2018-08-11 19:07:35 +00:00
2018-08-20 04:40:30 +00:00
/// Creates a child [Container] that can define its own singletons and factories.
///
/// Use this to create children of a global "scope."
Container createChild() {
return new Container._child(this);
}
2018-07-10 18:18:10 +00:00
2018-08-26 22:55:21 +00:00
bool has<T>([Type t]) {
var search = this;
t ??= T == dynamic ? t : T;
while (search != null) {
if (search._singletons.containsKey(t)) {
return true;
} else if (search._factories.containsKey(t)) {
return true;
} else {
search = search._parent;
}
}
return false;
}
2018-08-20 04:40:30 +00:00
/// Instantiates an instance of [T].
///
/// In contexts where a static generic type cannot be used, use
/// the [type] argument, instead of [T].
T make<T>([Type type]) {
type ??= T;
2018-07-10 18:18:10 +00:00
2018-08-20 04:40:30 +00:00
var search = this;
2018-07-10 18:18:10 +00:00
2018-08-20 04:40:30 +00:00
while (search != null) {
if (search._singletons.containsKey(type)) {
2018-08-26 22:55:21 +00:00
// Find a singleton, if any.
2018-08-20 04:40:30 +00:00
return search._singletons[type] as T;
2018-08-26 22:55:21 +00:00
} else if (search._factories.containsKey(type)) {
// Find a factory, if any.
2018-08-20 04:40:30 +00:00
return search._factories[type](this) as T;
} else {
search = search._parent;
}
}
var reflectedType = reflector.reflectType(type);
var positional = [];
var named = <String, dynamic>{};
if (reflectedType is ReflectedClass) {
bool isDefault(String name) {
return name.isEmpty || name == reflectedType.name;
2018-07-10 18:18:10 +00:00
}
2018-08-20 04:40:30 +00:00
var constructor = reflectedType.constructors.firstWhere(
(c) => isDefault(c.name),
orElse: () => throw new ReflectionException(
'${reflectedType.name} has no default constructor, and therefore cannot be instantiated.'));
for (var param in constructor.parameters) {
var value = make(param.type.reflectedType);
if (param.isNamed) {
named[param.name] = value;
} else {
positional.add(value);
}
}
return reflectedType.newInstance(
isDefault(constructor.name) ? '' : constructor.name,
positional,
named, []).reflectee;
2018-08-20 04:40:30 +00:00
} else {
throw new ReflectionException(
'$type is not a class, and therefore cannot be instantiated.');
2018-07-10 18:18:10 +00:00
}
}
2018-08-20 04:40:30 +00:00
void registerFactory<T>(T Function(Container) f, {Type as}) {
as ??= T;
if (_factories.containsKey(as)) {
throw new StateError('This container already has a factory for $as.');
}
_factories[as] = f;
}
void registerSingleton<T>(T object, {Type as}) {
as ??= T == dynamic ? as : T;
2018-07-10 18:18:10 +00:00
if (_singletons.containsKey(as ?? object.runtimeType)) {
2018-08-11 19:07:35 +00:00
throw new StateError(
'This container already has a singleton for ${as ?? object.runtimeType}.');
2018-07-10 18:18:10 +00:00
}
_singletons[as ?? object.runtimeType] = object;
}
}