mirror of https://github.com/icsharpcode/ILSpy.git
7 changed files with 339 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00 |
||||||
|
# Visual Studio 15 |
||||||
|
VisualStudioVersion = 15.0.26730.12 |
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1 |
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Decompiler.Console", "ICSharpCode.Decompiler.Console\ICSharpCode.Decompiler.Console.csproj", "{7B33DCB1-C05B-47DD-B310-4C388991476B}" |
||||||
|
EndProject |
||||||
|
Global |
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
||||||
|
Debug|Any CPU = Debug|Any CPU |
||||||
|
Release|Any CPU = Release|Any CPU |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution |
||||||
|
{7B33DCB1-C05B-47DD-B310-4C388991476B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU |
||||||
|
{7B33DCB1-C05B-47DD-B310-4C388991476B}.Debug|Any CPU.Build.0 = Debug|Any CPU |
||||||
|
{7B33DCB1-C05B-47DD-B310-4C388991476B}.Release|Any CPU.ActiveCfg = Release|Any CPU |
||||||
|
{7B33DCB1-C05B-47DD-B310-4C388991476B}.Release|Any CPU.Build.0 = Release|Any CPU |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(SolutionProperties) = preSolution |
||||||
|
HideSolutionNode = FALSE |
||||||
|
EndGlobalSection |
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution |
||||||
|
SolutionGuid = {74334161-26AC-42FB-B800-593771ED9939} |
||||||
|
EndGlobalSection |
||||||
|
EndGlobal |
||||||
@ -0,0 +1,82 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.IO; |
||||||
|
using Mono.Cecil; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.Console |
||||||
|
{ |
||||||
|
class CustomAssemblyResolver : DefaultAssemblyResolver |
||||||
|
{ |
||||||
|
DotNetCorePathFinder dotNetCorePathFinder; |
||||||
|
readonly string assemblyFileName; |
||||||
|
readonly Dictionary<string, UnresolvedAssemblyNameReference> loadedAssemblyReferences; |
||||||
|
|
||||||
|
public string TargetFramework { get; set; } |
||||||
|
|
||||||
|
public CustomAssemblyResolver(string fileName) |
||||||
|
{ |
||||||
|
this.assemblyFileName = fileName; |
||||||
|
this.loadedAssemblyReferences = new Dictionary<string, UnresolvedAssemblyNameReference>(); |
||||||
|
AddSearchDirectory(Path.GetDirectoryName(fileName)); |
||||||
|
RemoveSearchDirectory("."); |
||||||
|
} |
||||||
|
|
||||||
|
public override AssemblyDefinition Resolve(AssemblyNameReference name) |
||||||
|
{ |
||||||
|
var targetFramework = TargetFramework.Split(new[] { ",Version=v" }, StringSplitOptions.None); |
||||||
|
string file = null; |
||||||
|
switch (targetFramework[0]) { |
||||||
|
case ".NETCoreApp": |
||||||
|
case ".NETStandard": |
||||||
|
if (targetFramework.Length != 2) goto default; |
||||||
|
if (dotNetCorePathFinder == null) { |
||||||
|
var version = targetFramework[1].Length == 3 ? targetFramework[1] + ".0" : targetFramework[1]; |
||||||
|
dotNetCorePathFinder = new DotNetCorePathFinder(assemblyFileName, TargetFramework, version, this.loadedAssemblyReferences); |
||||||
|
} |
||||||
|
file = dotNetCorePathFinder.TryResolveDotNetCore(name); |
||||||
|
if (file == null) { |
||||||
|
string dir = Path.GetDirectoryName(assemblyFileName); |
||||||
|
if (File.Exists(Path.Combine(dir, name.Name + ".dll"))) |
||||||
|
file = Path.Combine(dir, name.Name + ".dll"); |
||||||
|
else if (File.Exists(Path.Combine(dir, name.Name + ".exe"))) |
||||||
|
file = Path.Combine(dir, name.Name + ".exe"); |
||||||
|
} |
||||||
|
if (file == null) |
||||||
|
return base.Resolve(name); |
||||||
|
else |
||||||
|
return ModuleDefinition.ReadModule(file, new ReaderParameters() { AssemblyResolver = this }).Assembly; |
||||||
|
default: |
||||||
|
return base.Resolve(name); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public override AssemblyDefinition Resolve(AssemblyNameReference name, ReaderParameters parameters) |
||||||
|
{ |
||||||
|
var targetFramework = TargetFramework.Split(new[] { ",Version=v" }, StringSplitOptions.None); |
||||||
|
string file = null; |
||||||
|
switch (targetFramework[0]) { |
||||||
|
case ".NETCoreApp": |
||||||
|
case ".NETStandard": |
||||||
|
if (targetFramework.Length != 2) goto default; |
||||||
|
if (dotNetCorePathFinder == null) { |
||||||
|
var version = targetFramework[1].Length == 3 ? targetFramework[1] + ".0" : targetFramework[1]; |
||||||
|
dotNetCorePathFinder = new DotNetCorePathFinder(assemblyFileName, TargetFramework, version, this.loadedAssemblyReferences); |
||||||
|
} |
||||||
|
file = dotNetCorePathFinder.TryResolveDotNetCore(name); |
||||||
|
if (file == null) { |
||||||
|
string dir = Path.GetDirectoryName(assemblyFileName); |
||||||
|
if (File.Exists(Path.Combine(dir, name.Name + ".dll"))) |
||||||
|
file = Path.Combine(dir, name.Name + ".dll"); |
||||||
|
else if (File.Exists(Path.Combine(dir, name.Name + ".exe"))) |
||||||
|
file = Path.Combine(dir, name.Name + ".exe"); |
||||||
|
} |
||||||
|
if (file == null) |
||||||
|
return base.Resolve(name, parameters); |
||||||
|
else |
||||||
|
return ModuleDefinition.ReadModule(file, parameters).Assembly; |
||||||
|
default: |
||||||
|
return base.Resolve(name, parameters); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,15 @@ |
|||||||
|
<Project Sdk="Microsoft.NET.Sdk"> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>Exe</OutputType> |
||||||
|
<TargetFramework>netcoreapp2.0</TargetFramework> |
||||||
|
<RuntimeIdentifiers>win10-x64;osx-x64</RuntimeIdentifiers> |
||||||
|
<AssemblyName>ilspycmd</AssemblyName> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<ItemGroup> |
||||||
|
<PackageReference Include="ICSharpCode.Decompiler" Version="3.0.0-alpha2" /> |
||||||
|
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.0.0-rc" /> |
||||||
|
</ItemGroup> |
||||||
|
|
||||||
|
</Project> |
||||||
@ -0,0 +1,21 @@ |
|||||||
|
MIT License |
||||||
|
|
||||||
|
Copyright (c) 2017 Christoph Wille |
||||||
|
|
||||||
|
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. |
||||||
@ -0,0 +1,173 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.IO; |
||||||
|
using System.Linq; |
||||||
|
using ICSharpCode.Decompiler.CSharp; |
||||||
|
using ICSharpCode.Decompiler.CSharp.OutputVisitor; |
||||||
|
using ICSharpCode.Decompiler.CSharp.Syntax; |
||||||
|
using ICSharpCode.Decompiler.CSharp.Transforms; |
||||||
|
using ICSharpCode.Decompiler.TypeSystem; |
||||||
|
using McMaster.Extensions.CommandLineUtils; |
||||||
|
using Mono.Cecil; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.Console |
||||||
|
{ |
||||||
|
class Program |
||||||
|
{ |
||||||
|
static int Main(string[] args) |
||||||
|
{ |
||||||
|
// https://github.com/natemcmaster/CommandLineUtils/
|
||||||
|
// Older cmd line clients (for options reference): https://github.com/aerror2/ILSpy-For-MacOSX and https://github.com/andreif/ILSpyMono
|
||||||
|
var app = new CommandLineApplication(); |
||||||
|
|
||||||
|
app.HelpOption("-h|--help"); |
||||||
|
var inputAssemblyFileName = app.Argument("Assembly filename name", "The assembly that is being decompiled. This argument is mandatory."); |
||||||
|
var projectOption = app.Option("-p|--project", "Decompile assembly as compilable project. This requires the output directory option.", CommandOptionType.NoValue); |
||||||
|
var outputOption = app.Option("-o|--outputdir <directory>", "The output directory, if omitted decompiler output is written to standard out.", CommandOptionType.SingleValue); |
||||||
|
var typeOption = app.Option("-t|--type <type-name>", "The FQN of the type to decompile.", CommandOptionType.SingleValue); |
||||||
|
var listOption = app.Option("-l|--list <entity-type(s)>", "Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), d(elegate), e(num)", CommandOptionType.MultipleValue); |
||||||
|
app.ExtendedHelpText = Environment.NewLine + "-o is valid with every option and required when using -p."; |
||||||
|
|
||||||
|
app.ThrowOnUnexpectedArgument = false; // Ignore invalid arguments / options
|
||||||
|
|
||||||
|
app.OnExecute(() => { |
||||||
|
// HACK : the CommandLineUtils package does not allow us to specify an argument as mandatory.
|
||||||
|
// Therefore we're implementing it as simple as possible.
|
||||||
|
if (inputAssemblyFileName.Value == null) { |
||||||
|
app.ShowHint(); |
||||||
|
return -1; |
||||||
|
} |
||||||
|
if (!File.Exists(inputAssemblyFileName.Value)) { |
||||||
|
app.Error.WriteLine($"ERROR: Input file not found."); |
||||||
|
return -1; |
||||||
|
} |
||||||
|
if (!outputOption.HasValue() && projectOption.HasValue()) { |
||||||
|
app.Error.WriteLine($"ERROR: Output directory not speciified."); |
||||||
|
return -1; |
||||||
|
} |
||||||
|
if (outputOption.HasValue() && !Directory.Exists(outputOption.Value())) { |
||||||
|
app.Error.WriteLine($"ERROR: Output directory '{outputOption.Value()}' does not exist."); |
||||||
|
return -1; |
||||||
|
} |
||||||
|
if (projectOption.HasValue()) { |
||||||
|
DecompileAsProject(inputAssemblyFileName.Value, outputOption.Value()); |
||||||
|
} else if (listOption.HasValue()) { |
||||||
|
var values = listOption.Values.SelectMany(v => v.Split(',', ';')).ToArray(); |
||||||
|
HashSet<TypeKind> kinds = ParseSelection(values); |
||||||
|
TextWriter output = System.Console.Out; |
||||||
|
if (outputOption.HasValue()) { |
||||||
|
string directory = outputOption.Value(); |
||||||
|
string outputName = Path.GetFileNameWithoutExtension(inputAssemblyFileName.Value); |
||||||
|
output = File.CreateText(Path.Combine(directory, outputName) + ".list.txt"); |
||||||
|
} |
||||||
|
ListContent(inputAssemblyFileName.Value, output, kinds); |
||||||
|
} else { |
||||||
|
TextWriter output = System.Console.Out; |
||||||
|
if (outputOption.HasValue()) { |
||||||
|
string directory = outputOption.Value(); |
||||||
|
string outputName = Path.GetFileNameWithoutExtension(inputAssemblyFileName.Value); |
||||||
|
output = File.CreateText(Path.Combine(directory, (typeOption.Value() ?? outputName) + ".decompiled.cs")); |
||||||
|
} |
||||||
|
Decompile(inputAssemblyFileName.Value, output); |
||||||
|
} |
||||||
|
return 0; |
||||||
|
}); |
||||||
|
|
||||||
|
return app.Execute(args); |
||||||
|
} |
||||||
|
|
||||||
|
static void ListContent(string assemblyFileName, TextWriter output, ISet<TypeKind> kinds) |
||||||
|
{ |
||||||
|
DefaultAssemblyResolver resolver = new DefaultAssemblyResolver(); |
||||||
|
resolver.AddSearchDirectory(Path.GetDirectoryName(assemblyFileName)); |
||||||
|
resolver.RemoveSearchDirectory("."); |
||||||
|
|
||||||
|
var module = ModuleDefinition.ReadModule(assemblyFileName, new ReaderParameters { |
||||||
|
AssemblyResolver = resolver, |
||||||
|
InMemory = true |
||||||
|
}); |
||||||
|
|
||||||
|
var typeSystem = new DecompilerTypeSystem(module); |
||||||
|
|
||||||
|
foreach (var type in typeSystem.MainAssembly.GetAllTypeDefinitions()) { |
||||||
|
if (!kinds.Contains(type.Kind)) |
||||||
|
continue; |
||||||
|
output.WriteLine($"{type.Kind} {type.FullName}"); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
static void DecompileAsProject(string assemblyFileName, string outputDirectory) |
||||||
|
{ |
||||||
|
ModuleDefinition module = LoadModule(assemblyFileName); |
||||||
|
WholeProjectDecompiler decompiler = new WholeProjectDecompiler(); |
||||||
|
decompiler.DecompileProject(module, outputDirectory); |
||||||
|
} |
||||||
|
|
||||||
|
static void Decompile(string assemblyFileName, TextWriter output, string typeName = null) |
||||||
|
{ |
||||||
|
ModuleDefinition module = LoadModule(assemblyFileName); |
||||||
|
var typeSystem = new DecompilerTypeSystem(module); |
||||||
|
CSharpDecompiler decompiler = new CSharpDecompiler(typeSystem, new DecompilerSettings()); |
||||||
|
|
||||||
|
decompiler.AstTransforms.Add(new EscapeInvalidIdentifiers()); |
||||||
|
SyntaxTree syntaxTree; |
||||||
|
if (typeName == null) |
||||||
|
syntaxTree = decompiler.DecompileWholeModuleAsSingleFile(); |
||||||
|
else |
||||||
|
syntaxTree = decompiler.DecompileTypes(module.GetTypes().Where(td => string.Equals(td.FullName, typeName, StringComparison.OrdinalIgnoreCase))); |
||||||
|
|
||||||
|
var visitor = new CSharpOutputVisitor(output, FormattingOptionsFactory.CreateSharpDevelop()); |
||||||
|
syntaxTree.AcceptVisitor(visitor); |
||||||
|
} |
||||||
|
|
||||||
|
static HashSet<TypeKind> ParseSelection(string[] values) |
||||||
|
{ |
||||||
|
var possibleValues = new Dictionary<string, TypeKind>(StringComparer.OrdinalIgnoreCase) { ["class"] = TypeKind.Class, ["struct"] = TypeKind.Struct, ["interface"] = TypeKind.Interface, ["enum"] = TypeKind.Enum, ["delegate"] = TypeKind.Delegate }; |
||||||
|
HashSet<TypeKind> kinds = new HashSet<TypeKind>(); |
||||||
|
if (values.Length == 1 && !possibleValues.Keys.Any(v => values[0].StartsWith(v, StringComparison.OrdinalIgnoreCase))) { |
||||||
|
foreach (char ch in values[0]) { |
||||||
|
switch (ch) { |
||||||
|
case 'c': |
||||||
|
kinds.Add(TypeKind.Class); |
||||||
|
break; |
||||||
|
case 'i': |
||||||
|
kinds.Add(TypeKind.Interface); |
||||||
|
break; |
||||||
|
case 's': |
||||||
|
kinds.Add(TypeKind.Struct); |
||||||
|
break; |
||||||
|
case 'd': |
||||||
|
kinds.Add(TypeKind.Delegate); |
||||||
|
break; |
||||||
|
case 'e': |
||||||
|
kinds.Add(TypeKind.Enum); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
} else { |
||||||
|
foreach (var value in values) { |
||||||
|
string v = value; |
||||||
|
while (v.Length > 0 && !possibleValues.ContainsKey(v)) |
||||||
|
v = v.Remove(v.Length - 1); |
||||||
|
if (possibleValues.TryGetValue(v, out var kind)) |
||||||
|
kinds.Add(kind); |
||||||
|
} |
||||||
|
} |
||||||
|
return kinds; |
||||||
|
} |
||||||
|
|
||||||
|
static ModuleDefinition LoadModule(string assemblyFileName) |
||||||
|
{ |
||||||
|
var resolver = new CustomAssemblyResolver(assemblyFileName); |
||||||
|
|
||||||
|
var module = ModuleDefinition.ReadModule(assemblyFileName, new ReaderParameters { |
||||||
|
AssemblyResolver = resolver, |
||||||
|
InMemory = true |
||||||
|
}); |
||||||
|
|
||||||
|
resolver.TargetFramework = module.Assembly.DetectTargetFrameworkId(); |
||||||
|
|
||||||
|
return module; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,23 @@ |
|||||||
|
# ICSharpCode.Decompiler.Console |
||||||
|
netcoreapp 2.0 console application using ICSharpCode.Decompiler nuget |
||||||
|
|
||||||
|
``` |
||||||
|
./ilspycmd -h |
||||||
|
|
||||||
|
Usage: [arguments] [options] |
||||||
|
|
||||||
|
Arguments: |
||||||
|
Assembly filename name The assembly that is being decompiled. This argument is mandatory. |
||||||
|
|
||||||
|
Options: |
||||||
|
-h|--help Show help information |
||||||
|
-p|--project Decompile assembly as compilable project. This requires the output directory option. |
||||||
|
-o|--outputdir <directory> The output directory, if omitted decompiler output is written to standard out. |
||||||
|
-t|--type <type-name> The FQN of the type to decompile. |
||||||
|
-l|--list <entity-type(s)> Lists all entities of the specified type(s). Valid types: c(lass), i(interface), s(truct), |
||||||
|
d(elegate), e(num) |
||||||
|
|
||||||
|
-o is valid with every option and required when using -p. |
||||||
|
``` |
||||||
|
|
||||||
|
 |
||||||
|
After Width: | Height: | Size: 200 KiB |
Loading…
Reference in new issue