mirror of https://github.com/icsharpcode/ILSpy.git
6 changed files with 263 additions and 8 deletions
@ -0,0 +1,75 @@
@@ -0,0 +1,75 @@
|
||||
// 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.
|
||||
|
||||
#nullable enable |
||||
|
||||
using System.Reflection.PortableExecutable; |
||||
|
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
using ICSharpCode.ILSpy.ViewModels; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
sealed class CodeViewTreeNode : ILSpyTreeNode |
||||
{ |
||||
readonly CodeViewDebugDirectoryData entry; |
||||
public CodeViewTreeNode(CodeViewDebugDirectoryData entry) |
||||
{ |
||||
this.entry = entry; |
||||
} |
||||
|
||||
override public object Text => nameof(DebugDirectoryEntryType.CodeView); |
||||
|
||||
public override object ToolTip => "Associated PDB file description."; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public override bool View(TabPageModel tabPage) |
||||
{ |
||||
tabPage.Title = Text.ToString(); |
||||
tabPage.SupportsLanguageSwitching = false; |
||||
|
||||
var dataGrid = Helpers.PrepareDataGrid(tabPage, this); |
||||
|
||||
dataGrid.ItemsSource = new[] { entry }; |
||||
|
||||
tabPage.Content = dataGrid; |
||||
|
||||
return true; |
||||
} |
||||
|
||||
sealed class PdbChecksumDebugDirectoryDataEntry |
||||
{ |
||||
readonly CodeViewDebugDirectoryData entry; |
||||
public PdbChecksumDebugDirectoryDataEntry(CodeViewDebugDirectoryData entry) |
||||
{ |
||||
this.entry = entry; |
||||
} |
||||
} |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, Text.ToString()); |
||||
language.WriteCommentLine(output, $"GUID: {entry.Guid}"); |
||||
language.WriteCommentLine(output, $"Age: {entry.Age}"); |
||||
language.WriteCommentLine(output, $"Path: {entry.Path}"); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,62 @@
@@ -0,0 +1,62 @@
|
||||
// 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.
|
||||
|
||||
#nullable enable |
||||
|
||||
using System.Reflection.PortableExecutable; |
||||
|
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
using ICSharpCode.ILSpy.ViewModels; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
sealed class DebugDirectoryEntryTreeNode : ILSpyTreeNode |
||||
{ |
||||
readonly PEFile module; |
||||
readonly PEReader reader; |
||||
readonly DebugDirectoryEntry entry; |
||||
public DebugDirectoryEntryTreeNode(PEFile module, DebugDirectoryEntry entry) |
||||
{ |
||||
this.module = module; |
||||
this.reader = module.Reader; |
||||
this.entry = entry; |
||||
} |
||||
|
||||
override public object Text => $"{entry.Type}"; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, Text.ToString()); |
||||
if (entry.DataSize > 0) |
||||
{ |
||||
language.WriteCommentLine(output, $"Raw Data ({entry.DataSize}):"); |
||||
int dataOffset = module.Reader.IsLoadedImage ? entry.DataRelativeVirtualAddress : entry.DataPointer; |
||||
var data = module.Reader.GetEntireImage().GetContent(dataOffset, entry.DataSize); |
||||
language.WriteCommentLine(output, data.ToHexString(data.Length)); |
||||
} |
||||
else |
||||
{ |
||||
language.WriteCommentLine(output, $"(no data)"); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,83 @@
@@ -0,0 +1,83 @@
|
||||
// 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.
|
||||
|
||||
#nullable enable |
||||
|
||||
using System.Reflection.PortableExecutable; |
||||
|
||||
using ICSharpCode.Decompiler; |
||||
using ICSharpCode.Decompiler.Metadata; |
||||
using ICSharpCode.ILSpy.TreeNodes; |
||||
using ICSharpCode.ILSpy.ViewModels; |
||||
|
||||
namespace ICSharpCode.ILSpy.Metadata |
||||
{ |
||||
sealed class PdbChecksumTreeNode : ILSpyTreeNode |
||||
{ |
||||
readonly PdbChecksumDebugDirectoryData entry; |
||||
public PdbChecksumTreeNode(PdbChecksumDebugDirectoryData entry) |
||||
{ |
||||
this.entry = entry; |
||||
} |
||||
|
||||
override public object Text => nameof(DebugDirectoryEntryType.PdbChecksum); |
||||
|
||||
public override object ToolTip |
||||
=> "The entry stores a crypto hash of the content of the symbol file the PE/COFF\n" |
||||
+ "file was built with. The hash can be used to validate that a given PDB file was\n" |
||||
+ "built with the PE/COFF file and not altered in any way. More than one entry can\n" |
||||
+ "be present if multiple PDBs were produced during the build of the PE/COFF file\n" |
||||
+ "(for example, private and public symbols)."; |
||||
|
||||
public override object Icon => Images.Literal; |
||||
|
||||
public override bool View(TabPageModel tabPage) |
||||
{ |
||||
tabPage.Title = Text.ToString(); |
||||
tabPage.SupportsLanguageSwitching = false; |
||||
|
||||
var dataGrid = Helpers.PrepareDataGrid(tabPage, this); |
||||
|
||||
dataGrid.ItemsSource = new[] { new PdbChecksumDebugDirectoryDataEntry(entry) }; |
||||
|
||||
tabPage.Content = dataGrid; |
||||
|
||||
return true; |
||||
} |
||||
|
||||
sealed class PdbChecksumDebugDirectoryDataEntry |
||||
{ |
||||
readonly PdbChecksumDebugDirectoryData entry; |
||||
public PdbChecksumDebugDirectoryDataEntry(PdbChecksumDebugDirectoryData entry) |
||||
{ |
||||
this.entry = entry; |
||||
} |
||||
|
||||
public string AlgorithmName => entry.AlgorithmName; |
||||
|
||||
public string Checksum => entry.Checksum.ToHexString(entry.Checksum.Length); |
||||
} |
||||
|
||||
public override void Decompile(Language language, ITextOutput output, DecompilationOptions options) |
||||
{ |
||||
language.WriteCommentLine(output, Text.ToString()); |
||||
language.WriteCommentLine(output, $"AlgorithmName: {entry.AlgorithmName}"); |
||||
language.WriteCommentLine(output, $"Checksum: {entry.Checksum.ToHexString(entry.Checksum.Length)}"); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue