angular-cn/modules/angular2/src/reflection/reflection_capabilities.ts

112 lines
4.0 KiB
TypeScript
Raw Normal View History

import {Type, isPresent, global, stringify, BaseException} from 'angular2/src/facade/lang';
2015-04-24 16:17:36 -04:00
import {List, ListWrapper} from 'angular2/src/facade/collection';
import {GetterFn, SetterFn, MethodFn} from './types';
export class ReflectionCapabilities {
private _reflect: any;
constructor(reflect?: any) { this._reflect = isPresent(reflect) ? reflect : global.Reflect; }
factory(t: Type): Function {
switch (t.length) {
2015-04-24 16:17:36 -04:00
case 0:
return function() { return new t(); };
2015-04-24 16:17:36 -04:00
case 1:
return function(a1) { return new t(a1); };
2015-04-24 16:17:36 -04:00
case 2:
return function(a1, a2) { return new t(a1, a2); };
2015-04-24 16:17:36 -04:00
case 3:
return function(a1, a2, a3) { return new t(a1, a2, a3); };
2015-04-24 16:17:36 -04:00
case 4:
return function(a1, a2, a3, a4) { return new t(a1, a2, a3, a4); };
2015-04-24 16:17:36 -04:00
case 5:
return function(a1, a2, a3, a4, a5) { return new t(a1, a2, a3, a4, a5); };
2015-04-24 16:17:36 -04:00
case 6:
return function(a1, a2, a3, a4, a5, a6) { return new t(a1, a2, a3, a4, a5, a6); };
2015-04-24 16:17:36 -04:00
case 7:
return function(a1, a2, a3, a4, a5, a6, a7) { return new t(a1, a2, a3, a4, a5, a6, a7); };
2015-04-24 16:17:36 -04:00
case 8:
return function(a1, a2, a3, a4, a5, a6, a7, a8) {
return new t(a1, a2, a3, a4, a5, a6, a7, a8);
2015-04-24 16:17:36 -04:00
};
case 9:
return function(a1, a2, a3, a4, a5, a6, a7, a8, a9) {
return new t(a1, a2, a3, a4, a5, a6, a7, a8, a9);
2015-04-24 16:17:36 -04:00
};
case 10:
return function(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) {
return new t(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
2015-04-24 16:17:36 -04:00
};
};
throw new Error(
`Cannot create a factory for '${stringify(t)}' because its constructor has more than 10 arguments`);
2015-04-24 16:17:36 -04:00
}
_zipTypesAndAnnotaions(paramTypes, paramAnnotations): List<List<any>> {
var result;
if (typeof paramTypes === 'undefined') {
result = ListWrapper.createFixedSize(paramAnnotations.length);
} else {
result = ListWrapper.createFixedSize(paramTypes.length);
}
for (var i = 0; i < result.length; i++) {
// TS outputs Object for parameters without types, while Traceur omits
// the annotations. For now we preserve the Traceur behavior to aid
// migration, but this can be revisited.
if (typeof paramTypes === 'undefined') {
result[i] = [];
} else if (paramTypes[i] != Object) {
result[i] = [paramTypes[i]];
} else {
result[i] = [];
}
if (isPresent(paramAnnotations) && isPresent(paramAnnotations[i])) {
result[i] = result[i].concat(paramAnnotations[i]);
}
}
return result;
}
2015-04-24 16:17:36 -04:00
parameters(typeOfFunc): List<List<any>> {
// Prefer the direct API.
if (isPresent(typeOfFunc.parameters)) {
return typeOfFunc.parameters;
}
if (isPresent(this._reflect) && isPresent(this._reflect.getMetadata)) {
var paramAnnotations = this._reflect.getMetadata('parameters', typeOfFunc);
var paramTypes = this._reflect.getMetadata('design:paramtypes', typeOfFunc);
if (isPresent(paramTypes) || isPresent(paramAnnotations)) {
return this._zipTypesAndAnnotaions(paramTypes, paramAnnotations);
}
}
return ListWrapper.createFixedSize(typeOfFunc.length);
2015-04-24 16:17:36 -04:00
}
annotations(typeOfFunc): List<any> {
// Prefer the direct API.
if (isPresent(typeOfFunc.annotations)) {
return typeOfFunc.annotations;
}
if (isPresent(this._reflect) && isPresent(this._reflect.getMetadata)) {
var annotations = this._reflect.getMetadata('annotations', typeOfFunc);
if (isPresent(annotations)) return annotations;
}
return [];
2015-04-24 16:17:36 -04:00
}
interfaces(type): List<any> { throw new BaseException("JavaScript does not support interfaces"); }
2015-04-24 16:17:36 -04:00
getter(name: string): GetterFn { return new Function('o', 'return o.' + name + ';'); }
setter(name: string): SetterFn { return new Function('o', 'v', 'return o.' + name + ' = v;'); }
method(name: string): MethodFn {
let functionBody = `if (!o.${name}) throw new Error('"${name}" is undefined');
return o.${name}.apply(o, args);`;
return new Function('o', 'args', functionBody);
}
}