mirror of https://github.com/icsharpcode/ILSpy.git
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.
101 lines
4.1 KiB
101 lines
4.1 KiB
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using System.Reflection.Metadata; |
|
using System.Reflection.Metadata.Ecma335; |
|
|
|
using ICSharpCode.Decompiler.Metadata; |
|
|
|
namespace ICSharpCode.ILSpy.Metadata |
|
{ |
|
class NestedClassTableTreeNode : MetadataTableTreeNode<NestedClassTableTreeNode.NestedClassEntry> |
|
{ |
|
public NestedClassTableTreeNode(MetadataFile metadataFile) |
|
: base(TableIndex.NestedClass, metadataFile) |
|
{ |
|
} |
|
|
|
protected override IReadOnlyList<NestedClassEntry> LoadTable() |
|
{ |
|
var list = new List<NestedClassEntry>(); |
|
var metadata = metadataFile.Metadata; |
|
var length = metadata.GetTableRowCount(TableIndex.NestedClass); |
|
ReadOnlySpan<byte> ptr = metadata.AsReadOnlySpan(); |
|
int typeDefSize = metadataFile.Metadata.GetTableRowCount(TableIndex.TypeDef) < ushort.MaxValue ? 2 : 4; |
|
for (int rid = 1; rid <= length; rid++) |
|
{ |
|
list.Add(new NestedClassEntry(metadataFile, ptr, rid, typeDefSize)); |
|
} |
|
return list; |
|
} |
|
|
|
readonly struct NestedClass |
|
{ |
|
public readonly TypeDefinitionHandle Nested; |
|
public readonly TypeDefinitionHandle Enclosing; |
|
|
|
public NestedClass(ReadOnlySpan<byte> ptr, int typeDefSize) |
|
{ |
|
Nested = MetadataTokens.TypeDefinitionHandle(Helpers.GetValueLittleEndian(ptr, typeDefSize)); |
|
Enclosing = MetadataTokens.TypeDefinitionHandle(Helpers.GetValueLittleEndian(ptr.Slice(typeDefSize), typeDefSize)); |
|
} |
|
} |
|
|
|
internal struct NestedClassEntry |
|
{ |
|
readonly MetadataFile metadataFile; |
|
readonly NestedClass nestedClass; |
|
|
|
public int RID { get; } |
|
public int Token => 0x29000000 | RID; |
|
public int Offset { get; } |
|
|
|
[ColumnInfo("X8", Kind = ColumnKind.Token)] |
|
public int NestedClass => MetadataTokens.GetToken(nestedClass.Nested); |
|
public void OnNestedClassClick() |
|
{ |
|
MessageBus.Send(this, new NavigateToReferenceEventArgs(new EntityReference(metadataFile, nestedClass.Nested, protocol: "metadata"))); |
|
} |
|
string nestedClassTooltip; |
|
public string NestedClassTooltip => GenerateTooltip(ref nestedClassTooltip, metadataFile, nestedClass.Nested); |
|
|
|
[ColumnInfo("X8", Kind = ColumnKind.Token)] |
|
public int EnclosingClass => MetadataTokens.GetToken(nestedClass.Enclosing); |
|
public void OnEnclosingClassClick() |
|
{ |
|
MessageBus.Send(this, new NavigateToReferenceEventArgs(new EntityReference(metadataFile, nestedClass.Enclosing, protocol: "metadata"))); |
|
} |
|
string enclosingClassTooltip; |
|
public string EnclosingClassTooltip => GenerateTooltip(ref enclosingClassTooltip, metadataFile, nestedClass.Enclosing); |
|
|
|
public NestedClassEntry(MetadataFile metadataFile, ReadOnlySpan<byte> ptr, int row, int typeDefSize) |
|
{ |
|
this.metadataFile = metadataFile; |
|
this.RID = row; |
|
var rowOffset = metadataFile.Metadata.GetTableMetadataOffset(TableIndex.NestedClass) |
|
+ metadataFile.Metadata.GetTableRowSize(TableIndex.NestedClass) * (row - 1); |
|
this.Offset = metadataFile.MetadataOffset + rowOffset; |
|
this.nestedClass = new NestedClass(ptr.Slice(rowOffset), typeDefSize); |
|
this.nestedClassTooltip = null; |
|
this.enclosingClassTooltip = null; |
|
} |
|
} |
|
} |
|
}
|
|
|