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.
266 lines
9.0 KiB
266 lines
9.0 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.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
using ICSharpCode.Decompiler;
|
|
using ICSharpCode.Decompiler.Solution;
|
|
using ICSharpCode.Decompiler.Util;
|
|
using ICSharpCode.ILSpy.TextView;
|
|
using ICSharpCode.ILSpy.ViewModels;
|
|
using ICSharpCode.ILSpyX;
|
|
|
|
namespace ICSharpCode.ILSpy
|
|
{
|
|
/// <summary>
|
|
/// An utility class that creates a Visual Studio solution containing projects for the
|
|
/// decompiled assemblies.
|
|
/// </summary>
|
|
internal class SolutionWriter
|
|
{
|
|
/// <summary>
|
|
/// Creates a Visual Studio solution that contains projects with decompiled code
|
|
/// of the specified <paramref name="assemblies"/>. The solution file will be saved
|
|
/// to the <paramref name="solutionFilePath"/>. The directory of this file must either
|
|
/// be empty or not exist.
|
|
/// </summary>
|
|
/// <param name="tabPage"></param>
|
|
/// <param name="textView">A reference to the <see cref="DecompilerTextView"/> instance.</param>
|
|
/// <param name="solutionFilePath">The target file path of the solution file.</param>
|
|
/// <param name="language"></param>
|
|
/// <param name="assemblies">The assembly nodes to decompile.</param>
|
|
/// <exception cref="ArgumentException">Thrown when <paramref name="solutionFilePath"/> is null,
|
|
/// an empty or a whitespace string.</exception>
|
|
/// <exception cref="ArgumentNullException">Thrown when <paramref name="textView"/>> or
|
|
/// <paramref name="assemblies"/> is null.</exception>
|
|
public static void CreateSolution(TabPageModel tabPage, DecompilerTextView textView, string solutionFilePath,
|
|
Language language, List<LoadedAssembly> assemblies)
|
|
{
|
|
if (textView == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(textView));
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(solutionFilePath))
|
|
{
|
|
throw new ArgumentException("The solution file path cannot be null or empty.", nameof(solutionFilePath));
|
|
}
|
|
|
|
if (assemblies == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(assemblies));
|
|
}
|
|
|
|
var writer = new SolutionWriter(solutionFilePath);
|
|
|
|
textView
|
|
.RunWithCancellation(ct => writer.CreateSolution(tabPage, assemblies, language, ct))
|
|
.Then(textView.ShowText)
|
|
.HandleExceptions();
|
|
}
|
|
|
|
readonly string solutionFilePath;
|
|
readonly string solutionDirectory;
|
|
readonly ConcurrentBag<ProjectItem> projects;
|
|
readonly ConcurrentBag<string> statusOutput;
|
|
|
|
SolutionWriter(string solutionFilePath)
|
|
{
|
|
this.solutionFilePath = solutionFilePath;
|
|
solutionDirectory = Path.GetDirectoryName(solutionFilePath);
|
|
statusOutput = new ConcurrentBag<string>();
|
|
projects = new ConcurrentBag<ProjectItem>();
|
|
}
|
|
|
|
async Task<AvalonEditTextOutput> CreateSolution(TabPageModel tabPage, List<LoadedAssembly> allAssemblies, Language language, CancellationToken ct)
|
|
{
|
|
var result = new AvalonEditTextOutput();
|
|
|
|
var assembliesByShortName = allAssemblies.GroupBy(_ => _.ShortName).ToDictionary(_ => _.Key, _ => _.ToList());
|
|
bool first = true;
|
|
bool abort = false;
|
|
|
|
foreach (var (shortName, assemblies) in assembliesByShortName)
|
|
{
|
|
if (assemblies.Count == 1)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (first)
|
|
{
|
|
result.WriteLine("Duplicate assembly names selected, cannot generate a solution:");
|
|
abort = true;
|
|
first = false;
|
|
}
|
|
|
|
result.WriteLine("- " + assemblies[0].Text + " conflicts with " + string.Join(", ", assemblies.Skip(1)));
|
|
}
|
|
|
|
if (abort)
|
|
return result;
|
|
|
|
Stopwatch stopwatch = Stopwatch.StartNew();
|
|
|
|
try
|
|
{
|
|
// Explicitly create an enumerable partitioner here to avoid Parallel.ForEach's special cases for lists,
|
|
// as those seem to use static partitioning which is inefficient if assemblies take differently
|
|
// long to decompile.
|
|
await Task.Run(() => Parallel.ForEach(Partitioner.Create(allAssemblies),
|
|
new ParallelOptions { MaxDegreeOfParallelism = Environment.ProcessorCount, CancellationToken = ct },
|
|
item => WriteProject(tabPage, item, language, solutionDirectory, ct)))
|
|
.ConfigureAwait(false);
|
|
|
|
if (projects.Count == 0)
|
|
{
|
|
result.WriteLine();
|
|
result.WriteLine("Solution could not be created, because none of the selected assemblies could be decompiled into a project.");
|
|
}
|
|
else
|
|
{
|
|
await Task.Run(() => SolutionCreator.WriteSolutionFile(solutionFilePath, projects.ToList()), ct)
|
|
.ConfigureAwait(false);
|
|
}
|
|
}
|
|
catch (AggregateException ae)
|
|
{
|
|
if (ae.Flatten().InnerExceptions.All(e => e is OperationCanceledException))
|
|
{
|
|
result.WriteLine();
|
|
result.WriteLine("Generation was cancelled.");
|
|
return result;
|
|
}
|
|
|
|
result.WriteLine();
|
|
result.WriteLine("Failed to generate the Visual Studio Solution. Errors:");
|
|
ae.Handle(e => {
|
|
result.WriteLine(e.Message);
|
|
return true;
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
foreach (var item in statusOutput)
|
|
{
|
|
result.WriteLine(item);
|
|
}
|
|
|
|
if (statusOutput.Count == 0)
|
|
{
|
|
result.WriteLine("Successfully decompiled the following assemblies into Visual Studio projects:");
|
|
foreach (var n in allAssemblies)
|
|
{
|
|
result.WriteLine(n.Text.ToString());
|
|
}
|
|
|
|
result.WriteLine();
|
|
|
|
if (allAssemblies.Count == projects.Count)
|
|
{
|
|
result.WriteLine("Created the Visual Studio Solution file.");
|
|
}
|
|
|
|
result.WriteLine();
|
|
result.WriteLine("Elapsed time: " + stopwatch.Elapsed.TotalSeconds.ToString("F1") + " seconds.");
|
|
result.WriteLine();
|
|
result.AddButton(null, "Open Explorer", delegate { Process.Start("explorer", "/select,\"" + solutionFilePath + "\""); });
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void WriteProject(TabPageModel tabPage, LoadedAssembly loadedAssembly, Language language, string targetDirectory, CancellationToken ct)
|
|
{
|
|
targetDirectory = Path.Combine(targetDirectory, loadedAssembly.ShortName);
|
|
|
|
if (language.ProjectFileExtension == null)
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add($"Language '{language.Name}' does not support exporting assemblies as projects!");
|
|
return;
|
|
}
|
|
|
|
string projectFileName = Path.Combine(targetDirectory, loadedAssembly.ShortName + language.ProjectFileExtension);
|
|
|
|
if (File.Exists(targetDirectory))
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add($"Failed to create a directory '{targetDirectory}':{Environment.NewLine}A file with the same name already exists!");
|
|
return;
|
|
}
|
|
|
|
if (!Directory.Exists(targetDirectory))
|
|
{
|
|
try
|
|
{
|
|
Directory.CreateDirectory(targetDirectory);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add($"Failed to create a directory '{targetDirectory}':{Environment.NewLine}{e}");
|
|
return;
|
|
}
|
|
}
|
|
|
|
try
|
|
{
|
|
using (var projectFileWriter = new StreamWriter(projectFileName))
|
|
{
|
|
var projectFileOutput = new PlainTextOutput(projectFileWriter);
|
|
var options = tabPage.CreateDecompilationOptions();
|
|
options.FullDecompilation = true;
|
|
options.CancellationToken = ct;
|
|
options.SaveAsProjectDirectory = targetDirectory;
|
|
|
|
var projectInfo = language.DecompileAssembly(loadedAssembly, projectFileOutput, options);
|
|
if (projectInfo != null)
|
|
{
|
|
projects.Add(new ProjectItem(projectFileName, projectInfo.PlatformName, projectInfo.Guid, projectInfo.TypeGuid));
|
|
}
|
|
}
|
|
}
|
|
catch (NotSupportedException e)
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add($"Failed to decompile the assembly '{loadedAssembly.FileName}':{Environment.NewLine}{e.Message}");
|
|
}
|
|
catch (PathTooLongException e)
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add(string.Format(Properties.Resources.ProjectExportPathTooLong, loadedAssembly.FileName)
|
|
+ Environment.NewLine + Environment.NewLine
|
|
+ e.ToString());
|
|
}
|
|
catch (Exception e) when (!(e is OperationCanceledException))
|
|
{
|
|
statusOutput.Add("-------------");
|
|
statusOutput.Add($"Failed to decompile the assembly '{loadedAssembly.FileName}':{Environment.NewLine}{e}");
|
|
}
|
|
}
|
|
}
|
|
}
|