You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team
|
|
// This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
|
|
|
|
using System;
|
|
using Mono.Cecil;
|
|
using Ricciolo.StylesExplorer.MarkupReflection;
|
|
|
|
namespace ILSpy.BamlDecompiler
|
|
{
|
|
/// <summary>
|
|
/// Description of CecilTypeResolver.
|
|
/// </summary>
|
|
public class CecilTypeResolver : ITypeResolver
|
|
{
|
|
IAssemblyResolver resolver;
|
|
AssemblyDefinition thisAssembly;
|
|
|
|
public CecilTypeResolver(IAssemblyResolver resolver, AssemblyDefinition asm)
|
|
{
|
|
this.resolver = resolver;
|
|
this.thisAssembly = asm;
|
|
}
|
|
|
|
public bool IsLocalAssembly(string name)
|
|
{
|
|
return MakeShort(name) == this.thisAssembly.Name.Name;
|
|
}
|
|
|
|
string MakeShort(string name)
|
|
{
|
|
int endOffset = name.IndexOf(',');
|
|
if (endOffset == -1)
|
|
return name;
|
|
|
|
return name.Substring(0, endOffset);
|
|
}
|
|
|
|
public IType GetTypeByAssemblyQualifiedName(string name)
|
|
{
|
|
int bracket = name.LastIndexOf(']');
|
|
int comma = bracket > -1 ? name.IndexOf(',', bracket) : name.IndexOf(',');
|
|
|
|
if (comma == -1)
|
|
throw new ArgumentException("invalid name");
|
|
|
|
string fullName = bracket > -1 ? name.Substring(0, name.IndexOf('[')) : name.Substring(0, comma);
|
|
string assemblyName = name.Substring(comma + 1).Trim();
|
|
|
|
var type = thisAssembly.MainModule.GetType(fullName);
|
|
|
|
if (type == null) {
|
|
type = TryFindInExportedTypes(fullName, thisAssembly);
|
|
}
|
|
|
|
if (type == null) {
|
|
var otherAssembly = resolver.Resolve(AssemblyNameReference.Parse(assemblyName));
|
|
if (otherAssembly == null)
|
|
return new UnresolvableType(name);
|
|
type = otherAssembly.MainModule.GetType(fullName.Replace('+', '/'));
|
|
|
|
if (type == null) {
|
|
type = TryFindInExportedTypes(fullName, otherAssembly);
|
|
}
|
|
}
|
|
|
|
if (type == null)
|
|
return new UnresolvableType(name);
|
|
|
|
return new CecilType(type);
|
|
}
|
|
|
|
TypeDefinition TryFindInExportedTypes(string fullName, AssemblyDefinition asm)
|
|
{
|
|
foreach (var exportedType in asm.MainModule.ExportedTypes) {
|
|
if (exportedType.IsForwarder && exportedType.FullName == fullName) {
|
|
return exportedType.Resolve();
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public IDependencyPropertyDescriptor GetDependencyPropertyDescriptor(string name, IType ownerType, IType targetType)
|
|
{
|
|
if (ownerType == null)
|
|
throw new ArgumentNullException("ownerType");
|
|
|
|
if (ownerType is CecilType)
|
|
return new CecilDependencyPropertyDescriptor(name, ((CecilType)ownerType).type);
|
|
if (ownerType is UnresolvableType)
|
|
return new UnresolvableDependencyPropertyDescriptor();
|
|
|
|
throw new ArgumentException("Invalid IType: " + ownerType.GetType());
|
|
}
|
|
|
|
public string RuntimeVersion {
|
|
get {
|
|
return thisAssembly.MainModule.Runtime.ToString();
|
|
}
|
|
}
|
|
}
|
|
}
|