blob: c0ca200b6f4d040485f5f35baf32036011197d72 (
plain)
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
|
// 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
{
using System;
using WixToolset.Extensibility;
using WixToolset.Extensibility.Data;
using WixToolset.Extensibility.Services;
/// <summary>
/// Decompiler of the WiX toolset.
/// </summary>
internal class Decompiler : IDecompiler
{
internal Decompiler(IServiceProvider serviceProvider)
{
this.ServiceProvider = serviceProvider;
}
public IServiceProvider ServiceProvider { get; }
public IDecompileResult Decompile(IDecompileContext context)
{
// Pre-decompile.
//
foreach (var extension in context.Extensions)
{
extension.PreDecompile(context);
}
// Decompile.
//
var result = this.BackendDecompile(context);
if (result != null)
{
// Post-decompile.
//
foreach (var extension in context.Extensions)
{
extension.PostDecompile(result);
}
}
return result;
}
private IDecompileResult BackendDecompile(IDecompileContext context)
{
var extensionManager = context.ServiceProvider.GetService<IExtensionManager>();
var backendFactories = extensionManager.Create<IBackendFactory>();
foreach (var factory in backendFactories)
{
if (factory.TryCreateBackend(context.DecompileType.ToString(), context.OutputPath, out var backend))
{
var result = backend.Decompile(context);
return result;
}
}
// TODO: messaging that a backend could not be found to decompile the decompile type?
return null;
}
}
}
|