import 'exception.dart'; import 'reflector.dart'; class Container { final Reflector reflector; final Map _singletons = {}; final Map _factories = {}; final Map _namedSingletons = {}; final Container _parent; Container(this.reflector) : _parent = null; Container._child(this._parent) : reflector = _parent.reflector; bool get isRoot => _parent == null; /// 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); } bool has([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; } /// Instantiates an instance of [T]. /// /// In contexts where a static generic type cannot be used, use /// the [type] argument, instead of [T]. T make([Type type]) { type ??= T; var search = this; while (search != null) { if (search._singletons.containsKey(type)) { // Find a singleton, if any. return search._singletons[type] as T; } else if (search._factories.containsKey(type)) { // Find a factory, if any. return search._factories[type](this) as T; } else { search = search._parent; } } var reflectedType = reflector.reflectType(type); var positional = []; var named = {}; if (reflectedType is ReflectedClass) { bool isDefault(String name) { return name.isEmpty || name == reflectedType.name; } 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; } else { throw new ReflectionException( '$type is not a class, and therefore cannot be instantiated.'); } } /// Shorthand for registering a factory that injects a singleton when it runs. /// /// In many cases, you might prefer this to [registerFactory]. void registerLazySingleton(T Function(Container) f, {Type as}) { registerFactory( (container) { var r = f(container); container.registerSingleton(r, as: as); return r; }, as: as, ); } void registerFactory(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 object, {Type as}) { as ??= T == dynamic ? as : T; if (_singletons.containsKey(as ?? object.runtimeType)) { throw new StateError( 'This container already has a singleton for ${as ?? object.runtimeType}.'); } _singletons[as ?? object.runtimeType] = object; } /// Finds a named singleton. /// /// In general, prefer using [registerSingleton] and [registerFactory]. /// /// [findByName] is best reserved for internal logic that end users of code should /// not see. T findByName(String name) { if (_namedSingletons.containsKey(name)) { return _namedSingletons[name] as T; } else if (_parent != null) { return _parent.findByName(name); } else { throw new StateError( 'This container does not have a singleton named "$name".'); } } /// Registers a *named* singleton. /// /// Note that this is not related to type-based injections, and exists as a mechanism /// to enable injecting multiple instances of a type within the same container hierarchy. void registerNamedSingleton(String name, T object) { if (_namedSingletons.containsKey(name)) { throw new StateError( 'This container already has a singleton named "$name".'); } _namedSingletons[name] = object; } }