blob: 73ad7c048cf0b201d925e87d61fe69ad27b2e117 (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// 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 System.Diagnostics;
using System.Linq;
using System.Reflection;
using WixToolset.Data;
using WixToolset.Data.Tuples;
using WixToolset.Extensibility;
using WixToolset.Extensibility.Data;
using WixToolset.Extensibility.Services;
/// <summary>
/// Binder of the WiX toolset.
/// </summary>
internal class Binder : IBinder
{
internal Binder(IServiceProvider serviceProvider)
{
this.ServiceProvider = serviceProvider;
}
public IServiceProvider ServiceProvider { get; }
public IBindResult Bind(IBindContext context)
{
// Prebind.
//
foreach (var extension in context.Extensions)
{
extension.PreBind(context);
}
// Bind.
//
this.WriteBuildInfoTuple(context.IntermediateRepresentation, context.OutputPath, context.OutputPdbPath);
var bindResult = this.BackendBind(context);
if (bindResult != null)
{
// Postbind.
//
foreach (var extension in context.Extensions)
{
extension.PostBind(bindResult);
}
}
return bindResult;
}
private IBindResult BackendBind(IBindContext context)
{
var extensionManager = context.ServiceProvider.GetService<IExtensionManager>();
var backendFactories = extensionManager.Create<IBackendFactory>();
var entrySection = context.IntermediateRepresentation.Sections[0];
foreach (var factory in backendFactories)
{
if (factory.TryCreateBackend(entrySection.Type.ToString(), context.OutputPath, out var backend))
{
var result = backend.Bind(context);
return result;
}
}
// TODO: messaging that a backend could not be found to bind the output type?
return null;
}
private void WriteBuildInfoTuple(Intermediate output, string outputFile, string outputPdbPath)
{
var entrySection = output.Sections.First(s => s.Type != SectionType.Fragment);
var executingAssembly = Assembly.GetExecutingAssembly();
var fileVersion = FileVersionInfo.GetVersionInfo(executingAssembly.Location);
var buildInfoTuple = new WixBuildInfoTuple();
buildInfoTuple.WixVersion = fileVersion.FileVersion;
buildInfoTuple.WixOutputFile = outputFile;
if (!String.IsNullOrEmpty(outputPdbPath))
{
buildInfoTuple.WixPdbFile = outputPdbPath;
}
entrySection.Tuples.Add(buildInfoTuple);
}
}
}
|