import {Map, List, MapWrapper, ListWrapper} from 'angular2/src/facade/collection'; import {ResolvedBinding, Binding, BindingBuilder, bind} from './binding'; import {ProviderError, NoProviderError, AsyncBindingError, CyclicDependencyError, InstantiationError, InvalidBindingError} from './exceptions'; import {FunctionWrapper, Type, isPresent, isBlank} from 'angular2/src/facade/lang'; import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; import {Key} from './key'; var _constructing = new Object(); var _notFound = new Object(); class _Waiting { promise:Promise; constructor(promise:Promise) { this.promise = promise; } } function _isWaiting(obj):boolean { return obj instanceof _Waiting; } export class Injector { _bindings:List; _instances:List; _parent:Injector; _defaultBindings:boolean; _asyncStrategy: _AsyncInjectorStrategy; _syncStrategy:_SyncInjectorStrategy; /** * Creates/looks up factory functions and dependencies from binding * declarations and flattens bindings into a single [List]. * * The returned list is sparse, indexed by [Key.id]. It is generally not * useful to application code other than for passing it to [Injector] * functions that require resolved binding lists, such as * [fromResolvedBindings] and [createChildFromResolved]. */ static resolve(bindings:List/**/):List { var resolvedBindings = _resolveBindings(bindings); var flatten = _flattenBindings(resolvedBindings, MapWrapper.create()); return _createListOfBindings(flatten); } /** * Resolves bindings and creates an injector based on those bindings. This function is slower than the * corresponding [fromResolvedBindings] because it needs to resolve bindings. Prefer [fromResolvedBindings] * in performance-critical code that creates lots of injectors. */ static resolveAndCreate(bindings:List/**/, {defaultBindings=false}={}) { return new Injector(Injector.resolve(bindings), null, defaultBindings); } /** * Creates an injector from previously resolved bindings. This bypasses a lot * of computation and is the recommended way to construct injectors in * performance-sensitive parts. */ static fromResolvedBindings(bindings:List, {defaultBindings=false}={}) { return new Injector(bindings, null, defaultBindings); } constructor(bindings:List, parent:Injector, defaultBindings:boolean) { this._bindings = bindings; this._instances = this._createInstances(); this._parent = parent; this._defaultBindings = defaultBindings; this._asyncStrategy = new _AsyncInjectorStrategy(this); this._syncStrategy = new _SyncInjectorStrategy(this); } get(token) { return this._getByKey(Key.get(token), false, false, false); } getOptional(token) { return this._getByKey(Key.get(token), false, false, true); } asyncGet(token) { return this._getByKey(Key.get(token), true, false, false); } resolveAndCreateChild(bindings:List/**/):Injector { return new Injector(Injector.resolve(bindings), this, false); } createChildFromResolved(bindings:List):Injector { return new Injector(bindings, this, false); } _createInstances():List { return ListWrapper.createFixedSize(Key.numberOfKeys + 1); } _getByKey(key:Key, returnPromise:boolean, returnLazy:boolean, optional:boolean) { if (returnLazy) { return () => this._getByKey(key, returnPromise, false, optional); } var strategy = returnPromise ? this._asyncStrategy : this._syncStrategy; var instance = strategy.readFromCache(key); if (instance !== _notFound) return instance; instance = strategy.instantiate(key); if (instance !== _notFound) return instance; if (isPresent(this._parent)) { return this._parent._getByKey(key, returnPromise, returnLazy, optional); } if (optional) { return null; } else { throw new NoProviderError(key); } } _resolveDependencies(key:Key, binding:ResolvedBinding, forceAsync:boolean):List { try { var getDependency = d => this._getByKey(d.key, forceAsync || d.asPromise, d.lazy, d.optional); return ListWrapper.map(binding.dependencies, getDependency); } catch (e) { this._clear(key); if (e instanceof ProviderError) e.addKey(key); throw e; } } _getInstance(key:Key) { if (this._instances.length <= key.id) return null; return ListWrapper.get(this._instances, key.id); } _setInstance(key:Key, obj) { ListWrapper.set(this._instances, key.id, obj); } _getBinding(key:Key) { var binding = this._bindings.length <= key.id ? null : ListWrapper.get(this._bindings, key.id); if (isBlank(binding) && this._defaultBindings) { return bind(key.token).toClass(key.token).resolve(); } else { return binding; } } _markAsConstructing(key:Key) { this._setInstance(key, _constructing); } _clear(key:Key) { this._setInstance(key, null); } } class _SyncInjectorStrategy { injector:Injector; constructor(injector:Injector) { this.injector = injector; } readFromCache(key:Key) { if (key.token === Injector) { return this.injector; } var instance = this.injector._getInstance(key); if (instance === _constructing) { throw new CyclicDependencyError(key); } else if (isPresent(instance) && !_isWaiting(instance)) { return instance; } else { return _notFound; } } instantiate(key:Key) { var binding = this.injector._getBinding(key); if (isBlank(binding)) return _notFound; if (binding.providedAsPromise) throw new AsyncBindingError(key); //add a marker so we can detect cyclic dependencies this.injector._markAsConstructing(key); var deps = this.injector._resolveDependencies(key, binding, false); return this._createInstance(key, binding, deps); } _createInstance(key:Key, binding:ResolvedBinding, deps:List) { try { var instance = FunctionWrapper.apply(binding.factory, deps); this.injector._setInstance(key, instance); return instance; } catch (e) { this.injector._clear(key); throw new InstantiationError(e, key); } } } class _AsyncInjectorStrategy { injector:Injector; constructor(injector:Injector) { this.injector = injector; } readFromCache(key:Key) { if (key.token === Injector) { return PromiseWrapper.resolve(this.injector); } var instance = this.injector._getInstance(key); if (instance === _constructing) { throw new CyclicDependencyError(key); } else if (_isWaiting(instance)) { return instance.promise; } else if (isPresent(instance)) { return PromiseWrapper.resolve(instance); } else { return _notFound; } } instantiate(key:Key) { var binding = this.injector._getBinding(key); if (isBlank(binding)) return _notFound; //add a marker so we can detect cyclic dependencies this.injector._markAsConstructing(key); var deps = this.injector._resolveDependencies(key, binding, true); var depsPromise = PromiseWrapper.all(deps); var promise = PromiseWrapper .then(depsPromise, null, (e) => this._errorHandler(key, e)) .then(deps => this._findOrCreate(key, binding, deps)) .then(instance => this._cacheInstance(key, instance)); this.injector._setInstance(key, new _Waiting(promise)); return promise; } _errorHandler(key:Key, e):Promise { if (e instanceof ProviderError) e.addKey(key); return PromiseWrapper.reject(e); } _findOrCreate(key:Key, binding:ResolvedBinding, deps:List) { try { var instance = this.injector._getInstance(key); if (!_isWaiting(instance)) return instance; return FunctionWrapper.apply(binding.factory, deps); } catch (e) { this.injector._clear(key); throw new InstantiationError(e, key); } } _cacheInstance(key, instance) { this.injector._setInstance(key, instance); return instance } } function _resolveBindings(bindings:List): List { var resolvedList = ListWrapper.createFixedSize(bindings.length); for (var i = 0; i < bindings.length; i++) { var unresolved = bindings[i]; var resolved; if (unresolved instanceof ResolvedBinding) { resolved = unresolved; // ha-ha! I'm easily amused } else if (unresolved instanceof Type) { resolved = bind(unresolved).toClass(unresolved).resolve(); } else if (unresolved instanceof Binding) { resolved = unresolved.resolve(); } else if (unresolved instanceof List) { resolved = _resolveBindings(unresolved); } else if (unresolved instanceof BindingBuilder) { throw new InvalidBindingError(unresolved.token); } else { throw new InvalidBindingError(unresolved); } resolvedList[i] = resolved; } return resolvedList; } function _createListOfBindings(flattenedBindings):List { var bindings = ListWrapper.createFixedSize(Key.numberOfKeys + 1); MapWrapper.forEach(flattenedBindings, (v, keyId) => bindings[keyId] = v); return bindings; } function _flattenBindings(bindings:List, res:Map) { ListWrapper.forEach(bindings, function (b) { if (b instanceof ResolvedBinding) { MapWrapper.set(res, b.key.id, b); } else if (b instanceof List) { _flattenBindings(b, res); } }); return res; }