Browse Source

Refactor IlspyCmdProgram to use non-static methods.

pull/1740/head
Siegfried Pammer 6 years ago
parent
commit
2dc1dd4efc
  1. 40
      ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

40
ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

@ -61,11 +61,11 @@ Remarks:
private int OnExecute(CommandLineApplication app) private int OnExecute(CommandLineApplication app)
{ {
TextWriter output = System.Console.Out; TextWriter output = System.Console.Out;
bool outputDirectorySpecified = !String.IsNullOrEmpty(OutputDirectory); bool outputDirectorySpecified = !string.IsNullOrEmpty(OutputDirectory);
try { try {
if (CreateCompilableProjectFlag) { if (CreateCompilableProjectFlag) {
DecompileAsProject(InputAssemblyName, OutputDirectory, ReferencePaths); return DecompileAsProject(InputAssemblyName, OutputDirectory);
} else if (EntityTypes.Any()) { } else if (EntityTypes.Any()) {
var values = EntityTypes.SelectMany(v => v.Split(',', ';')).ToArray(); var values = EntityTypes.SelectMany(v => v.Split(',', ';')).ToArray();
HashSet<TypeKind> kinds = TypesParser.ParseSelection(values); HashSet<TypeKind> kinds = TypesParser.ParseSelection(values);
@ -74,14 +74,14 @@ Remarks:
output = File.CreateText(Path.Combine(OutputDirectory, outputName) + ".list.txt"); output = File.CreateText(Path.Combine(OutputDirectory, outputName) + ".list.txt");
} }
ListContent(InputAssemblyName, output, kinds, ReferencePaths); return ListContent(InputAssemblyName, output, kinds);
} else if (ShowILCodeFlag) { } else if (ShowILCodeFlag) {
if (outputDirectorySpecified) { if (outputDirectorySpecified) {
string outputName = Path.GetFileNameWithoutExtension(InputAssemblyName); string outputName = Path.GetFileNameWithoutExtension(InputAssemblyName);
output = File.CreateText(Path.Combine(OutputDirectory, outputName) + ".il"); output = File.CreateText(Path.Combine(OutputDirectory, outputName) + ".il");
} }
ShowIL(InputAssemblyName, output, ReferencePaths); return ShowIL(InputAssemblyName, output);
} else if (CreateDebugInfoFlag) { } else if (CreateDebugInfoFlag) {
string pdbFileName = null; string pdbFileName = null;
if (outputDirectorySpecified) { if (outputDirectorySpecified) {
@ -91,7 +91,7 @@ Remarks:
pdbFileName = Path.ChangeExtension(InputAssemblyName, ".pdb"); pdbFileName = Path.ChangeExtension(InputAssemblyName, ".pdb");
} }
return GeneratePdbForAssembly(InputAssemblyName, pdbFileName, ReferencePaths, app); return GeneratePdbForAssembly(InputAssemblyName, pdbFileName, app);
} else if (ShowVersion) { } else if (ShowVersion) {
string vInfo = "ilspycmd: " + typeof(ILSpyCmdProgram).Assembly.GetName().Version.ToString() + string vInfo = "ilspycmd: " + typeof(ILSpyCmdProgram).Assembly.GetName().Version.ToString() +
Environment.NewLine Environment.NewLine
@ -102,10 +102,10 @@ Remarks:
if (outputDirectorySpecified) { if (outputDirectorySpecified) {
string outputName = Path.GetFileNameWithoutExtension(InputAssemblyName); string outputName = Path.GetFileNameWithoutExtension(InputAssemblyName);
output = File.CreateText(Path.Combine(OutputDirectory, output = File.CreateText(Path.Combine(OutputDirectory,
(String.IsNullOrEmpty(TypeName) ? outputName : TypeName) + ".decompiled.cs")); (string.IsNullOrEmpty(TypeName) ? outputName : TypeName) + ".decompiled.cs"));
} }
Decompile(InputAssemblyName, output, ReferencePaths, TypeName); return Decompile(InputAssemblyName, output, TypeName);
} }
} catch (Exception ex) { } catch (Exception ex) {
app.Error.WriteLine(ex.ToString()); app.Error.WriteLine(ex.ToString());
@ -117,28 +117,29 @@ Remarks:
return 0; return 0;
} }
static CSharpDecompiler GetDecompiler(string assemblyFileName, string[] referencePaths) CSharpDecompiler GetDecompiler(string assemblyFileName)
{ {
var module = new PEFile(assemblyFileName); var module = new PEFile(assemblyFileName);
var resolver = new UniversalAssemblyResolver(assemblyFileName, false, module.Reader.DetectTargetFrameworkId()); var resolver = new UniversalAssemblyResolver(assemblyFileName, false, module.Reader.DetectTargetFrameworkId());
foreach (var path in referencePaths) { foreach (var path in ReferencePaths) {
resolver.AddSearchDirectory(path); resolver.AddSearchDirectory(path);
} }
return new CSharpDecompiler(assemblyFileName, resolver, new DecompilerSettings()); return new CSharpDecompiler(assemblyFileName, resolver, new DecompilerSettings());
} }
static void ListContent(string assemblyFileName, TextWriter output, ISet<TypeKind> kinds, string[] referencePaths) int ListContent(string assemblyFileName, TextWriter output, ISet<TypeKind> kinds)
{ {
CSharpDecompiler decompiler = GetDecompiler(assemblyFileName, referencePaths); CSharpDecompiler decompiler = GetDecompiler(assemblyFileName);
foreach (var type in decompiler.TypeSystem.MainModule.TypeDefinitions) { foreach (var type in decompiler.TypeSystem.MainModule.TypeDefinitions) {
if (!kinds.Contains(type.Kind)) if (!kinds.Contains(type.Kind))
continue; continue;
output.WriteLine($"{type.Kind} {type.FullName}"); output.WriteLine($"{type.Kind} {type.FullName}");
} }
return 0;
} }
static void ShowIL(string assemblyFileName, TextWriter output, string[] referencePaths) int ShowIL(string assemblyFileName, TextWriter output)
{ {
CSharpDecompiler decompiler = GetDecompiler(assemblyFileName, referencePaths); CSharpDecompiler decompiler = GetDecompiler(assemblyFileName, referencePaths);
ITextOutput textOutput = new PlainTextOutput(); ITextOutput textOutput = new PlainTextOutput();
@ -150,23 +151,25 @@ Remarks:
output.WriteLine($"// IL code: {decompiler.TypeSystem.MainModule.AssemblyName}"); output.WriteLine($"// IL code: {decompiler.TypeSystem.MainModule.AssemblyName}");
output.WriteLine(textOutput.ToString()); output.WriteLine(textOutput.ToString());
return 0;
} }
static void DecompileAsProject(string assemblyFileName, string outputDirectory, string[] referencePaths) int DecompileAsProject(string assemblyFileName, string outputDirectory)
{ {
var decompiler = new WholeProjectDecompiler(); var decompiler = new WholeProjectDecompiler();
var module = new PEFile(assemblyFileName); var module = new PEFile(assemblyFileName);
var resolver = new UniversalAssemblyResolver(assemblyFileName, false, module.Reader.DetectTargetFrameworkId()); var resolver = new UniversalAssemblyResolver(assemblyFileName, false, module.Reader.DetectTargetFrameworkId());
foreach (var path in referencePaths) { foreach (var path in ReferencePaths) {
resolver.AddSearchDirectory(path); resolver.AddSearchDirectory(path);
} }
decompiler.AssemblyResolver = resolver; decompiler.AssemblyResolver = resolver;
decompiler.DecompileProject(module, outputDirectory); decompiler.DecompileProject(module, outputDirectory);
return 0;
} }
static void Decompile(string assemblyFileName, TextWriter output, string[] referencePaths, string typeName = null) int Decompile(string assemblyFileName, TextWriter output, string typeName = null)
{ {
CSharpDecompiler decompiler = GetDecompiler(assemblyFileName, referencePaths); CSharpDecompiler decompiler = GetDecompiler(assemblyFileName);
if (typeName == null) { if (typeName == null) {
output.Write(decompiler.DecompileWholeModuleAsString()); output.Write(decompiler.DecompileWholeModuleAsString());
@ -174,9 +177,10 @@ Remarks:
var name = new FullTypeName(typeName); var name = new FullTypeName(typeName);
output.Write(decompiler.DecompileTypeAsString(name)); output.Write(decompiler.DecompileTypeAsString(name));
} }
return 0;
} }
static int GeneratePdbForAssembly(string assemblyFileName, string pdbFileName, string[] referencePaths, CommandLineApplication app) int GeneratePdbForAssembly(string assemblyFileName, string pdbFileName, CommandLineApplication app)
{ {
var module = new PEFile(assemblyFileName, var module = new PEFile(assemblyFileName,
new FileStream(assemblyFileName, FileMode.Open, FileAccess.Read), new FileStream(assemblyFileName, FileMode.Open, FileAccess.Read),
@ -189,7 +193,7 @@ Remarks:
} }
using (FileStream stream = new FileStream(pdbFileName, FileMode.OpenOrCreate, FileAccess.Write)) { using (FileStream stream = new FileStream(pdbFileName, FileMode.OpenOrCreate, FileAccess.Write)) {
var decompiler = GetDecompiler(assemblyFileName, referencePaths); var decompiler = GetDecompiler(assemblyFileName);
PortablePdbWriter.WritePdb(module, decompiler, new DecompilerSettings() { ThrowOnAssemblyResolveErrors = false }, stream); PortablePdbWriter.WritePdb(module, decompiler, new DecompilerSettings() { ThrowOnAssemblyResolveErrors = false }, stream);
} }

Loading…
Cancel
Save