blob: 542e6e8e2f80c7ce97f54b8056451793455ad7a4 [file] [log] [blame]
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// VM-specific implementation of the dart:mirrors library.
// These values are allowed to be passed directly over the wire.
bool _isSimpleValue(var value) {
return (value == null || value is num || value is String || value is bool);
}
Map _filterMap(Map<Symbol, dynamic> old_map, bool filter(Symbol key, value)) {
Map new_map = new Map<Symbol, dynamic>();
old_map.forEach((key, value) {
if (filter(key, value)) {
new_map[key] = value;
}
});
return new_map;
}
String _n(Symbol symbol) => _symbol_dev.Symbol.getName(symbol);
Symbol _s(String name) {
if (name == null) return null;
return new _symbol_dev.Symbol.unvalidated(name);
}
Symbol _computeQualifiedName(DeclarationMirror owner, Symbol simpleName) {
if (owner == null) return simpleName;
return _s('${_n(owner.qualifiedName)}.${_n(simpleName)}');
}
Map<Symbol, dynamic> _convertStringToSymbolMap(Map<String, dynamic> map) {
if (map == null) return null;
Map<Symbol, dynamic> result = new Map<Symbol, dynamic>();
map.forEach((name, value) => result[_s(name)] = value);
return result;
}
String _makeSignatureString(TypeMirror returnType,
List<ParameterMirror> parameters) {
StringBuffer buf = new StringBuffer();
buf.write(_n(returnType.qualifiedName));
buf.write(' (');
bool found_optional_param = false;
for (int i = 0; i < parameters.length; i++) {
var param = parameters[i];
if (param.isOptional && !found_optional_param) {
buf.write('[');
found_optional_param = true;
}
buf.write(_n(param.type.qualifiedName));
if (i < (parameters.length - 1)) {
buf.write(', ');
}
}
if (found_optional_param) {
buf.write(']');
}
buf.write(')');
return buf.toString();
}
Map<Uri, LibraryMirror> _createLibrariesMap(Map<String, LibraryMirror> map) {
var result = new Map<Uri, LibraryMirror>();
map.forEach((String url, LibraryMirror mirror) {
result[Uri.parse(url)] = mirror;
});
return result;
}
List _metadata(reflectee)
native 'DeclarationMirror_metadata';
// This will verify the argument types, unwrap them, and ensure we have a fixed
// array.
List _unwarpAsyncPositionals(wrappedArgs){
List unwrappedArgs = new List(wrappedArgs.length);
for(int i = 0; i < wrappedArgs.length; i++){
var wrappedArg = wrappedArgs[i];
if(_isSimpleValue(wrappedArg)) {
unwrappedArgs[i] = wrappedArg;
} else if(wrappedArg is InstanceMirror) {
unwrappedArgs[i] = wrappedArg._reflectee;
} else {
throw "positional argument $i ($arg) was not a simple value or InstanceMirror";
}
}
return unwrappedArgs;
}
class _LocalMirrorSystemImpl extends MirrorSystem {
// Change parameter back to "this.libraries" when native code is changed.
_LocalMirrorSystemImpl(Map<String, LibraryMirror> libraries, this.isolate)
: this.libraries = _createLibrariesMap(libraries),
_functionTypes = new Map<String, FunctionTypeMirror>();
final Map<Uri, LibraryMirror> libraries;
final IsolateMirror isolate;
TypeMirror _dynamicType = null;
TypeMirror get dynamicType {
if (_dynamicType == null) {
_dynamicType = new _SpecialTypeMirrorImpl(_s('dynamic'));
}
return _dynamicType;
}
TypeMirror _voidType = null;
TypeMirror get voidType {
if (_voidType == null) {
_voidType = new _SpecialTypeMirrorImpl(_s('void'));
}
return _voidType;
}
final Map<String, FunctionTypeMirror> _functionTypes;
FunctionTypeMirror _lookupFunctionTypeMirror(
TypeMirror returnType,
List<ParameterMirror> parameters) {
var sigString = _makeSignatureString(returnType, parameters);
var mirror = _functionTypes[sigString];
if (mirror == null) {
mirror = new _LocalFunctionTypeMirrorImpl(null,
sigString,
returnType,
parameters);
_functionTypes[sigString] = mirror;
}
return mirror;
}
String toString() => "MirrorSystem for isolate '${isolate.debugName}'";
}
abstract class _LocalMirrorImpl implements Mirror {
int get hashCode {
throw new UnimplementedError('Mirror.hashCode is not implemented');
}
// Local mirrors always return the same MirrorSystem. This field
// is more interesting once we implement remote mirrors.
MirrorSystem get mirrors => _Mirrors.currentMirrorSystem();
}
class _LocalIsolateMirrorImpl extends _LocalMirrorImpl
implements IsolateMirror {
_LocalIsolateMirrorImpl(this.debugName, this._rootLibrary) {}
final String debugName;
final bool isCurrent = true;
var _rootLibrary;
LibraryMirror get rootLibrary {
if (_rootLibrary is _LazyLibraryMirror) {
_rootLibrary = _rootLibrary.resolve(mirrors);
}
return _rootLibrary;
}
String toString() => "IsolateMirror on '$debugName'";
}
abstract class _LocalObjectMirrorImpl extends _LocalMirrorImpl
implements ObjectMirror {
_LocalObjectMirrorImpl(this._reflectee);
final _reflectee; // May be a MirrorReference or an ordinary object.
InstanceMirror invoke(Symbol memberName,
List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
return reflect(this._invoke(_reflectee,
_n(memberName),
positionalArguments.toList(growable:false)));
}
InstanceMirror getField(Symbol memberName) {
return reflect(this._invokeGetter(_reflectee,
_n(memberName)));
}
InstanceMirror setField(Symbol memberName, Object value) {
return reflect(this._invokeSetter(_reflectee,
_n(memberName),
value));
}
Future<InstanceMirror> invokeAsync(Symbol memberName,
List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
try {
var result = this._invoke(_reflectee,
_n(memberName),
_unwarpAsyncPositionals(positionalArguments));
return new Future.value(reflect(result));
} on MirroredError catch(e) {
return new Future.error(e);
}
}
Future<InstanceMirror> getFieldAsync(Symbol memberName) {
try {
var result = this._invokeGetter(_reflectee,
_n(memberName));
return new Future.value(reflect(result));
} on MirroredError catch(e) {
return new Future.error(e);
}
}
Future<InstanceMirror> setFieldAsync(Symbol memberName, Object value) {
try {
var unwrappedValue;
if(_isSimpleValue(value)) {
unwrappedValue = value;
} else if(wrappedArg is InstanceMirror) {
unwrappedValue = value._reflectee;
} else {
throw "setter argument ($value) must be a simple value or InstanceMirror";
}
var result = this._invokeSetter(_reflectee,
_n(memberName),
unwrappedValue);
return new Future.value(reflect(result));
} on MirroredError catch(e) {
return new Future.error(e);
}
}
static _validateArgument(int i, Object arg)
{
if (arg is Mirror) {
if (arg is! InstanceMirror) {
throw new MirrorException(
'positional argument $i ($arg) was not an InstanceMirror');
}
} else if (!_isSimpleValue(arg)) {
throw new MirrorException(
'positional argument $i ($arg) was not a simple value');
}
}
}
class _LocalInstanceMirrorImpl extends _LocalObjectMirrorImpl
implements InstanceMirror {
// TODO(ahe): This is a hack, see delegate below.
static Function _invokeOnClosure;
_LocalInstanceMirrorImpl(this._type,
reflectee) : super(reflectee) {}
var _type;
ClassMirror get type {
if (_type is! Mirror) {
_type = _type.resolve(mirrors);
}
return _type;
}
// LocalInstanceMirrors always reflect local instances
bool hasReflectee = true;
get reflectee => _reflectee;
delegate(Invocation invocation) {
if (_invokeOnClosure == null) {
// TODO(ahe): This is a total hack. We're using the mirror
// system to access a private field in a different library. For
// some reason, that works. On the other hand, calling a
// private method does not work.
_LocalInstanceMirrorImpl mirror =
_Mirrors.makeLocalInstanceMirror(invocation);
_invokeOnClosure =
reflectClass(invocation.runtimeType).getField(const Symbol('_invokeOnClosure')).reflectee;
}
return _invokeOnClosure(reflectee, invocation);
}
String toString() => 'InstanceMirror on ${Error.safeToString(_reflectee)}';
_invoke(reflectee, functionName, positionalArguments)
native 'InstanceMirror_invoke';
_invokeGetter(reflectee, getterName)
native 'InstanceMirror_invokeGetter';
_invokeSetter(reflectee, setterName, value)
native 'InstanceMirror_invokeSetter';
}
class _LocalClosureMirrorImpl extends _LocalInstanceMirrorImpl
implements ClosureMirror {
_LocalClosureMirrorImpl(type,
reflectee,
this.function) : super(type, reflectee) {}
final MethodMirror function;
String get source {
throw new UnimplementedError(
'ClosureMirror.source is not implemented');
}
InstanceMirror apply(List<Object> positionalArguments,
[Map<Symbol, Object> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
// It is tempting to implement this in terms of Function.apply, but then
// lazy compilation errors would be fatal.
return reflect(_apply(_reflectee,
positionalArguments.toList(growable:false)));
}
Future<InstanceMirror> applyAsync(List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
try {
var result = _apply(_reflectee,
_unwarpAsyncPositionals(positionalArguments));
return new Future.value(reflect(result));
} on MirroredError catch(e) {
return new Future.error(e);
}
}
Future<InstanceMirror> findInContext(Symbol name) {
throw new UnimplementedError(
'ClosureMirror.findInContext() is not implemented');
}
static _apply(reflectee, positionalArguments)
native 'ClosureMirror_apply';
String toString() => "ClosureMirror on '${Error.safeToString(_reflectee)}'";
}
class _LazyTypeMirror {
_LazyTypeMirror(String this.libraryUrl, String typeName)
: this.typeName = _s(typeName);
TypeMirror resolve(MirrorSystem mirrors) {
if (libraryUrl == null) {
if (typeName == const Symbol('dynamic')) {
return mirrors.dynamicType;
} else if (typeName == const Symbol('void')) {
return mirrors.voidType;
} else {
throw new UnimplementedError(
"Mirror for type '$typeName' is not implemented");
}
}
var resolved = mirrors.libraries[Uri.parse(libraryUrl)].members[typeName];
if (resolved == null) {
throw new UnimplementedError(
"Mirror for type '$typeName' is not implemented");
}
return resolved;
}
final String libraryUrl;
final Symbol typeName;
}
class _LocalClassMirrorImpl extends _LocalObjectMirrorImpl
implements ClassMirror {
_LocalClassMirrorImpl(reflectee,
String simpleName,
this.isClass,
this._owner,
this._superclass,
this._superinterfaces,
this._defaultFactory,
Map<String, Mirror> members,
Map<String, Mirror> constructors,
Map<String, Mirror> typeVariables)
: this._simpleName = _s(simpleName),
this.members = _convertStringToSymbolMap(members),
this.constructors = _convertStringToSymbolMap(constructors),
this.typeVariables = _convertStringToSymbolMap(typeVariables),
super(reflectee);
Symbol _simpleName;
Symbol get simpleName {
// dynamic, void and the function types have their names set eagerly in the
// constructor.
if(_simpleName == null) {
_simpleName = _s(_name(_reflectee));
}
return _simpleName;
}
Symbol _qualifiedName = null;
Symbol get qualifiedName {
if (_qualifiedName == null) {
_qualifiedName = _computeQualifiedName(owner, simpleName);
}
return _qualifiedName;
}
var _owner;
DeclarationMirror get owner {
if (_owner != null && _owner is! Mirror) {
_owner = _owner.resolve(mirrors);
}
return _owner;
}
bool get isPrivate => _n(simpleName).startsWith('_');
final bool isTopLevel = true;
SourceLocation get location {
throw new UnimplementedError(
'ClassMirror.location is not implemented');
}
final bool isClass;
var _superclass;
ClassMirror get superclass {
if (_superclass is! Mirror) {
_superclass = _superclass.resolve(mirrors);
}
return _superclass;
}
var _superinterfaces;
List<ClassMirror> get superinterfaces {
if (_superinterfaces.length > 0 &&
_superinterfaces[0] is! Mirror) {
List<ClassMirror> resolved = new List<ClassMirror>();
for (int i = 0; i < _superinterfaces.length; i++) {
resolved.add(_superinterfaces[i].resolve(mirrors));
}
_superinterfaces = resolved;
}
return _superinterfaces;
}
var _defaultFactory;
ClassMirror get defaultFactory {
if (_defaultFactory != null && _defaultFactory is! Mirror) {
_defaultFactory = _defaultFactory.resolve(mirrors);
}
return _defaultFactory;
}
final Map<Symbol, Mirror> members;
Map<Symbol, MethodMirror> _methods = null;
Map<Symbol, MethodMirror> _getters = null;
Map<Symbol, MethodMirror> _setters = null;
Map<Symbol, VariableMirror> _variables = null;
Map<Symbol, MethodMirror> get methods {
if (_methods == null) {
_methods = _filterMap(
members,
(key, value) => (value is MethodMirror && value.isRegularMethod));
}
return _methods;
}
Map<Symbol, MethodMirror> get getters {
if (_getters == null) {
_getters = _filterMap(
members,
(key, value) => (value is MethodMirror && value.isGetter));
}
return _getters;
}
Map<Symbol, MethodMirror> get setters {
if (_setters == null) {
_setters = _filterMap(
members,
(key, value) => (value is MethodMirror && value.isSetter));
}
return _setters;
}
Map<Symbol, VariableMirror> get variables {
if (_variables == null) {
_variables = _filterMap(
members,
(key, value) => (value is VariableMirror));
}
return _variables;
}
Map<Symbol, MethodMirror> constructors;
Map<Symbol, TypeVariableMirror> typeVariables;
Map<Symbol, TypeMirror> get typeArguments {
throw new UnimplementedError(
'ClassMirror.typeArguments is not implemented');
}
bool get isOriginalDeclaration {
throw new UnimplementedError(
'ClassMirror.isOriginalDeclaration is not implemented');
}
ClassMirror get genericDeclaration {
throw new UnimplementedError(
'ClassMirror.originalDeclaration is not implemented');
}
String toString() {
String prettyName = isClass ? 'ClassMirror' : 'TypeMirror';
return "$prettyName on '${_n(simpleName)}'";
}
InstanceMirror newInstance(Symbol constructorName,
List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
return reflect(_invokeConstructor(_reflectee,
_n(constructorName),
positionalArguments.toList(growable:false)));
}
Future<InstanceMirror> newInstanceAsync(Symbol constructorName,
List positionalArguments,
[Map<Symbol, dynamic> namedArguments]) {
if (namedArguments != null) {
throw new UnimplementedError(
'named argument support is not implemented');
}
try {
var result = _invokeConstructor(_reflectee,
_n(constructorName),
_unwarpAsyncPositionals(positionalArguments));
return new Future.value(reflect(result));
} on MirroredError catch(e) {
return new Future.error(e);
}
}
List<InstanceMirror> get metadata {
// Get the metadata objects, convert them into InstanceMirrors using
// reflect() and then make them into a Dart list.
return _metadata(_reflectee).map(reflect).toList(growable:false);
}
static _name(reflectee)
native "ClassMirror_name";
_invoke(reflectee, memberName, positionalArguments)
native 'ClassMirror_invoke';
_invokeGetter(reflectee, getterName)
native 'ClassMirror_invokeGetter';
_invokeSetter(reflectee, setterName, value)
native 'ClassMirror_invokeSetter';
static _invokeConstructor(reflectee, constructorName, positionalArguments)
native 'ClassMirror_invokeConstructor';
}
class _LazyFunctionTypeMirror {
_LazyFunctionTypeMirror(this.returnType, this.parameters) {}
ClassMirror resolve(MirrorSystem mirrors) {
return mirrors._lookupFunctionTypeMirror(returnType.resolve(mirrors),
parameters);
}
final returnType;
final List<ParameterMirror> parameters;
}
class _LocalFunctionTypeMirrorImpl extends _LocalClassMirrorImpl
implements FunctionTypeMirror {
_LocalFunctionTypeMirrorImpl(reflectee,
simpleName,
this._returnType,
this.parameters)
: super(reflectee,
simpleName,
true,
null,
new _LazyTypeMirror('dart:core', 'Object'),
[ new _LazyTypeMirror('dart:core', 'Function') ],
null,
const {},
const {},
const {});
var _returnType;
TypeMirror get returnType {
if (_returnType is! Mirror) {
_returnType = _returnType.resolve(mirrors);
}
return _returnType;
}
final List<ParameterMirror> parameters;
String toString() => "FunctionTypeMirror on '${_n(simpleName)}'";
}
abstract class _LocalDeclarationMirrorImpl extends _LocalMirrorImpl
implements DeclarationMirror {
_LocalDeclarationMirrorImpl(this._reflectee);
final _MirrorReference _reflectee;
List<InstanceMirror> get metadata {
// Get the metadata objects, convert them into InstanceMirrors using
// reflect() and then make them into a Dart list.
return _metadata(_reflectee).map(reflect).toList(growable:false);
}
}
class _LazyTypeVariableMirror {
_LazyTypeVariableMirror(String variableName, this._owner)
: this._variableName = _s(variableName);
TypeVariableMirror resolve(MirrorSystem mirrors) {
ClassMirror owner = _owner.resolve(mirrors);
return owner.typeVariables[_variableName];
}
final Symbol _variableName;
final _LazyTypeMirror _owner;
}
class _LocalTypeVariableMirrorImpl extends _LocalDeclarationMirrorImpl
implements TypeVariableMirror {
_LocalTypeVariableMirrorImpl(reflectee,
String simpleName,
this._owner,
this._upperBound)
: this.simpleName = _s(simpleName),
super(reflectee);
final Symbol simpleName;
Symbol _qualifiedName = null;
Symbol get qualifiedName {
if (_qualifiedName == null) {
_qualifiedName = _computeQualifiedName(owner, simpleName);
}
return _qualifiedName;
}
var _owner;
DeclarationMirror get owner {
if (_owner is! Mirror) {
_owner = _owner.resolve(mirrors);
}
return _owner;
}
bool get isPrivate => false;
final bool isTopLevel = false;
SourceLocation get location {
throw new UnimplementedError(
'TypeVariableMirror.location is not implemented');
}
var _upperBound;
TypeMirror get upperBound {
if (_upperBound is! Mirror) {
_upperBound = _upperBound.resolve(mirrors);
}
return _upperBound;
}
List<InstanceMirror> get metadata {
throw new UnimplementedError(
'TypeVariableMirror.metadata is not implemented');
}
String toString() => "TypeVariableMirror on '${_n(simpleName)}'";
}
class _LocalTypedefMirrorImpl extends _LocalDeclarationMirrorImpl
implements TypedefMirror {
_LocalTypedefMirrorImpl(reflectee,
String simpleName,
this._owner,
this._referent)
: this.simpleName = _s(simpleName),
super(reflectee);
final Symbol simpleName;
Symbol _qualifiedName = null;
Symbol get qualifiedName {
if (_qualifiedName == null) {
_qualifiedName = _computeQualifiedName(owner, simpleName);
}
return _qualifiedName;
}
var _owner;
DeclarationMirror get owner {
if (_owner is! Mirror) {
_owner = _owner.resolve(mirrors);
}
return _owner;
}
bool get isPrivate => false;
final bool isTopLevel = true;
SourceLocation get location {
throw new UnimplementedError(
'TypedefMirror.location is not implemented');
}
var _referent;
TypeMirror get referent {
if (_referent is! Mirror) {
_referent = _referent.resolve(mirrors);
}
return _referent;
}
String toString() => "TypedefMirror on '${_n(simpleName)}'";
}
class _LazyLibraryMirror {
_LazyLibraryMirror(String this.libraryUrl);
LibraryMirror resolve(MirrorSystem mirrors) {
return mirrors.libraries[Uri.parse(libraryUrl)];
}
final String libraryUrl;
}
class _LocalLibraryMirrorImpl extends _LocalObjectMirrorImpl
implements LibraryMirror {
_LocalLibraryMirrorImpl(reflectee,
String simpleName,
String url,
Map<String, Mirror> members)
: this.simpleName = _s(simpleName),
this.members = _convertStringToSymbolMap(members),
this.uri = Uri.parse(url),
super(reflectee);
final Symbol simpleName;
// The simple name and the qualified name are the same for a library.
Symbol get qualifiedName => simpleName;
// Always null for libraries.
final DeclarationMirror owner = null;
// Always false for libraries.
final bool isPrivate = false;
// Always false for libraries.
final bool isTopLevel = false;
SourceLocation get location {
throw new UnimplementedError(
'LibraryMirror.location is not implemented');
}
final Uri uri;
final Map<Symbol, Mirror> members;
Map<Symbol, ClassMirror> _classes = null;
Map<Symbol, MethodMirror> _functions = null;
Map<Symbol, MethodMirror> _getters = null;
Map<Symbol, MethodMirror> _setters = null;
Map<Symbol, VariableMirror> _variables = null;
Map<Symbol, ClassMirror> get classes {
if (_classes == null) {
_classes = _filterMap(members,
(key, value) => (value is ClassMirror));
}
return _classes;
}
Map<Symbol, MethodMirror> get functions {
if (_functions == null) {
_functions = _filterMap(members,
(key, value) => (value is MethodMirror));
}
return _functions;
}
Map<Symbol, MethodMirror> get getters {
if (_getters == null) {
_getters = _filterMap(functions,
(key, value) => (value.isGetter));
}
return _getters;
}
Map<Symbol, MethodMirror> get setters {
if (_setters == null) {
_setters = _filterMap(functions,
(key, value) => (value.isSetter));
}
return _setters;
}
Map<Symbol, VariableMirror> get variables {
if (_variables == null) {
_variables = _filterMap(members,
(key, value) => (value is VariableMirror));
}
return _variables;
}
List<InstanceMirror> get metadata {
// Get the metadata objects, convert them into InstanceMirrors using
// reflect() and then make them into a Dart list.
return _metadata(_reflectee).map(reflect).toList(growable:false);
}
String toString() => "LibraryMirror on '${_n(simpleName)}'";
_invoke(reflectee, memberName, positionalArguments)
native 'LibraryMirror_invoke';
_invokeGetter(reflectee, getterName)
native 'LibraryMirror_invokeGetter';
_invokeSetter(reflectee, setterName, value)
native 'LibraryMirror_invokeSetter';
}
class _LocalMethodMirrorImpl extends _LocalDeclarationMirrorImpl
implements MethodMirror {
_LocalMethodMirrorImpl(reflectee,
this._owner,
this.parameters,
this._returnType,
this.isStatic,
this.isAbstract,
this.isGetter,
this.isSetter,
this.isConstructor,
this.isConstConstructor,
this.isGenerativeConstructor,
this.isRedirectingConstructor,
this.isFactoryConstructor) : super(reflectee);
Symbol _simpleName = null;
Symbol get simpleName {
if (_simpleName == null) {
_simpleName = _s(_MethodMirror_name(_reflectee));
}
return _simpleName;
}
Symbol _qualifiedName = null;
Symbol get qualifiedName {
if (_qualifiedName == null) {
_qualifiedName = _computeQualifiedName(owner, simpleName);
}
return _qualifiedName;
}
var _owner;
DeclarationMirror get owner {
// For nested closures it is possible, that the mirror for the owner has not
// been created yet.
if (_owner == null) {
_owner = _MethodMirror_owner(_reflectee);
}
// TODO(11897): This will go away, as soon as lazy mirrors go away.
if (_owner is! Mirror) {
_owner = _owner.resolve(mirrors);
}
return _owner;
}
bool get isPrivate {
return _n(simpleName).startsWith('_') ||
_n(constructorName).startsWith('_');
}
bool get isTopLevel => owner is LibraryMirror;
SourceLocation get location {
throw new UnimplementedError(
'MethodMirror.location is not implemented');
}
var _returnType;
TypeMirror get returnType {
if (_returnType is! Mirror) {
_returnType = _returnType.resolve(mirrors);
}
return _returnType;
}
final List<ParameterMirror> parameters;
final bool isStatic;
final bool isAbstract;
bool get isRegularMethod => !isGetter && !isSetter && !isConstructor;
TypeMirror get isOperator {
throw new UnimplementedError(
'MethodMirror.isOperator is not implemented');
}
final bool isGetter;
final bool isSetter;
final bool isConstructor;
Symbol _constructorName = null;
Symbol get constructorName {
if (_constructorName == null) {
if (!isConstructor) {
_constructorName = _s('');
} else {
var parts = _n(simpleName).split('.');
if (parts.length > 2) {
throw new MirrorException(
'Internal error in MethodMirror.constructorName: '
'malformed name <$simpleName>');
} else if (parts.length == 2) {
_constructorName = _s(parts[1]);
} else {
_constructorName = _s('');
}
}
}
return _constructorName;
}
final bool isConstConstructor;
final bool isGenerativeConstructor;
final bool isRedirectingConstructor;
final bool isFactoryConstructor;
String toString() => "MethodMirror on '${_n(simpleName)}'";
static String _MethodMirror_name(reflectee)
native "MethodMirror_name";
static dynamic _MethodMirror_owner(reflectee)
native "MethodMirror_owner";
}
class _LocalVariableMirrorImpl extends _LocalDeclarationMirrorImpl
implements VariableMirror {
_LocalVariableMirrorImpl(reflectee,
String simpleName,
this._owner,
this._type,
this.isStatic,
this.isFinal)
: this.simpleName = _s(simpleName),
super(reflectee);
final Symbol simpleName;
Symbol _qualifiedName = null;
Symbol get qualifiedName {
if (_qualifiedName == null) {
_qualifiedName = _computeQualifiedName(owner, simpleName);
}
return _qualifiedName;
}
var _owner;
DeclarationMirror get owner {
if (_owner is! Mirror) {
_owner = _owner.resolve(mirrors);
}
return _owner;
}
bool get isPrivate {
return _n(simpleName).startsWith('_');
}
bool get isTopLevel {
return owner is LibraryMirror;
}
SourceLocation get location {
throw new UnimplementedError(
'VariableMirror.location is not implemented');
}
var _type;
TypeMirror get type {
if (_type is! Mirror) {
_type = _type.resolve(mirrors);
}
return _type;
}
final bool isStatic;
final bool isFinal;
String toString() => "VariableMirror on '${_n(simpleName)}'";
}
class _LocalParameterMirrorImpl extends _LocalVariableMirrorImpl
implements ParameterMirror {
_LocalParameterMirrorImpl(type, this.isOptional)
: super(null, '<TODO:unnamed>', null, type, false, false) {}
final bool isOptional;
String get defaultValue {
throw new UnimplementedError(
'ParameterMirror.defaultValue is not implemented');
}
bool get hasDefaultValue {
throw new UnimplementedError(
'ParameterMirror.hasDefaultValue is not implemented');
}
// TODO(11418): Implement.
List<InstanceMirror> get metadata {
throw new UnimplementedError(
'ParameterMirror.metadata is not implemented');
}
}
class _SpecialTypeMirrorImpl extends _LocalMirrorImpl
implements TypeMirror, DeclarationMirror {
_SpecialTypeMirrorImpl(this.simpleName);
final bool isPrivate = false;
final bool isTopLevel = true;
// Fixed length 0, therefore immutable.
final List<InstanceMirror> metadata = new List(0);
final DeclarationMirror owner = null;
final Symbol simpleName;
SourceLocation get location {
throw new UnimplementedError(
'TypeMirror.location is not implemented');
}
Symbol get qualifiedName {
return simpleName;
}
String toString() => "TypeMirror on '${_n(simpleName)}'";
}
class _Mirrors {
// Does a port refer to our local isolate?
static bool isLocalPort(SendPort port) native 'Mirrors_isLocalPort';
static MirrorSystem _currentMirrorSystem = null;
// Creates a new local MirrorSystem.
static MirrorSystem makeLocalMirrorSystem()
native 'Mirrors_makeLocalMirrorSystem';
// The MirrorSystem for the current isolate.
static MirrorSystem currentMirrorSystem() {
if (_currentMirrorSystem == null) {
_currentMirrorSystem = makeLocalMirrorSystem();
}
return _currentMirrorSystem;
}
static Future<MirrorSystem> mirrorSystemOf(SendPort port) {
if (isLocalPort(port)) {
// Make a local mirror system.
try {
return new Future<MirrorSystem>.value(currentMirrorSystem());
} catch (exception) {
return new Future<MirrorSystem>.error(exception);
}
} else {
// Make a remote mirror system
throw new UnimplementedError(
'Remote mirror support is not implemented');
}
}
// Creates a new local InstanceMirror
static InstanceMirror makeLocalInstanceMirror(Object reflectee)
native 'Mirrors_makeLocalInstanceMirror';
// Creates a new local mirror for some Object.
static InstanceMirror reflect(Object reflectee) {
return makeLocalInstanceMirror(reflectee);
}
// Creates a new local ClassMirror.
static ClassMirror makeLocalClassMirror(Type key)
native "Mirrors_makeLocalClassMirror";
static Expando<ClassMirror> _classMirrorCache = new Expando("ClassMirror");
static ClassMirror reflectClass(Type key) {
var classMirror = _classMirrorCache[key];
if (classMirror == null) {
classMirror = makeLocalClassMirror(key);
_classMirrorCache[key] = classMirror;
}
return classMirror;
}
}