/* Copyright (C) 2011 de4dot@gmail.com This file is part of de4dot. de4dot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. de4dot is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with de4dot. If not, see . */ using System; using System.Collections.Generic; using System.Reflection; using Mono.Cecil; using de4dot.blocks; namespace AssemblyData.methodsrewriter { class TypeInstanceResolver { Type type; Dictionary> methods; Dictionary> fields; public TypeInstanceResolver(Type type, TypeReference typeReference) { this.type = ResolverUtils.makeInstanceType(type, typeReference); } public FieldInfo resolve(FieldReference fieldReference) { initFields(); List list; if (!fields.TryGetValue(fieldReference.Name, out list)) return null; var git = fieldReference.DeclaringType as GenericInstanceType; if (git != null) fieldReference = FieldReferenceInstance.make(fieldReference, git); foreach (var field in list) { if (ResolverUtils.compareFields(field, fieldReference)) return field; } return null; } void initFields() { if (fields != null) return; fields = new Dictionary>(StringComparer.Ordinal); var flags = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance; foreach (var field in type.GetFields(flags)) { List list; if (!fields.TryGetValue(field.Name, out list)) fields[field.Name] = list = new List(); list.Add(field); } } public MethodBase resolve(MethodReference methodReference) { initMethods(); List list; if (!methods.TryGetValue(methodReference.Name, out list)) return null; var git = methodReference.DeclaringType as GenericInstanceType; if (git != null) methodReference = MethodReferenceInstance.make(methodReference, git); foreach (var method in list) { if (ResolverUtils.compareMethods(method, methodReference)) return method; } return null; } void initMethods() { if (methods != null) return; methods = new Dictionary>(StringComparer.Ordinal); var flags = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance; foreach (var method in ResolverUtils.getMethodBases(type, flags)) { List list; if (!methods.TryGetValue(method.Name, out list)) methods[method.Name] = list = new List(); list.Add(method); } } } }