1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Core.WindowsInstaller.Unbind
{
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using WixToolset.Core.Native;
using WixToolset.Data;
using WixToolset.Extensibility;
using WixToolset.Extensibility.Data;
using WixToolset.Extensibility.Services;
using WixToolset.Msi;
internal class DecompileMsiOrMsmCommand
{
public DecompileMsiOrMsmCommand(IDecompileContext context, IEnumerable<IWindowsInstallerBackendDecompilerExtension> backendExtensions)
{
this.Context = context;
this.Extensions = backendExtensions;
this.Messaging = context.ServiceProvider.GetService<IMessaging>();
}
private IDecompileContext Context { get; }
private IEnumerable<IWindowsInstallerBackendDecompilerExtension> Extensions { get; }
private IMessaging Messaging { get; }
public DecompileResult Execute()
{
var result = new DecompileResult();
try
{
using (var database = new Database(this.Context.DecompilePath, OpenDatabase.ReadOnly))
{
var unbindCommand = new UnbindDatabaseCommand(this.Messaging, database, this.Context.DecompilePath, this.Context.DecompileType, this.Context.ExtractFolder, this.Context.IntermediateFolder, this.Context.IsAdminImage, false, skipSummaryInfo: false);
var output = unbindCommand.Execute();
var extractedFilePaths = new List<string>(unbindCommand.ExportedFiles);
var decompiler = new Decompiler(this.Messaging, this.Extensions, this.Context.BaseSourcePath, this.Context.SuppressCustomTables, this.Context.SuppressDroppingEmptyTables, this.Context.SuppressUI, this.Context.TreatProductAsModule);
result.Document = decompiler.Decompile(output);
// extract the files from the cabinets
if (!String.IsNullOrEmpty(this.Context.ExtractFolder) && !this.Context.SuppressExtractCabinets)
{
var fileDirectory = String.IsNullOrEmpty(this.Context.CabinetExtractFolder) ? Path.Combine(this.Context.ExtractFolder, "File") : this.Context.CabinetExtractFolder;
var extractCommand = new ExtractCabinetsCommand(output, database, this.Context.DecompilePath, fileDirectory, this.Context.IntermediateFolder, this.Context.TreatProductAsModule);
extractCommand.Execute();
extractedFilePaths.AddRange(extractCommand.ExtractedFiles);
result.ExtractedFilePaths = extractedFilePaths;
}
else
{
result.ExtractedFilePaths = new string[0];
}
}
}
catch (Win32Exception e)
{
if (0x6E == e.NativeErrorCode) // ERROR_OPEN_FAILED
{
throw new WixException(ErrorMessages.OpenDatabaseFailed(this.Context.DecompilePath));
}
throw;
}
return result;
}
}
}
|