aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Binder.cs
blob: 23f1ba213a041d246381df8829d846dbcedbaff5 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// 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.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Reflection;
    using WixToolset.Data;
    using WixToolset.Data.Bind;
    using WixToolset.Data.Tuples;
    using WixToolset.Extensibility;
    using WixToolset.Extensibility.Data;
    using WixToolset.Extensibility.Services;

    /// <summary>
    /// Binder of the WiX toolset.
    /// </summary>
    public sealed class Binder
    {
        public Binder(IServiceProvider serviceProvider)
        {
            this.ServiceProvider = serviceProvider;
        }

        public int CabbingThreadCount { get; set; }

        public string CabCachePath { get; set; }

        public int Codepage { get; set; }

        public CompressionLevel? DefaultCompressionLevel { get; set; }

        public IEnumerable<IDelayedField> DelayedFields { get; set; }

        public IEnumerable<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; }

        public IEnumerable<string> Ices { get; set; }

        public string IntermediateFolder { get; set; }

        public Intermediate IntermediateRepresentation { get; set; }

        public string OutputPath { get; set; }

        public string OutputPdbPath { get; set; }

        public IEnumerable<string> SuppressIces { get; set; }

        public bool SuppressValidation { get; set; }

        public bool DeltaBinaryPatch { get; set; }

        public IServiceProvider ServiceProvider { get; }

        public BindResult Execute()
        {
            var context = this.ServiceProvider.GetService<IBindContext>();
            context.CabbingThreadCount = this.CabbingThreadCount;
            context.CabCachePath = this.CabCachePath;
            context.Codepage = this.Codepage;
            context.DefaultCompressionLevel = this.DefaultCompressionLevel;
            context.DelayedFields = this.DelayedFields;
            context.ExpectedEmbeddedFiles = this.ExpectedEmbeddedFiles;
            context.Extensions = this.ServiceProvider.GetService<IExtensionManager>().Create<IBinderExtension>();
            context.Ices = this.Ices;
            context.IntermediateFolder = this.IntermediateFolder;
            context.IntermediateRepresentation = this.IntermediateRepresentation;
            context.OutputPath = this.OutputPath;
            context.OutputPdbPath = this.OutputPdbPath;
            context.SuppressIces = this.SuppressIces;
            context.SuppressValidation = this.SuppressValidation;

            // Prebind.
            //
            foreach (var extension in context.Extensions)
            {
                extension.PreBind(context);
            }

            // Bind.
            //
            this.WriteBuildInfoTable(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 BindResult 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, null, 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 WriteBuildInfoTable(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);
        }
    }
}