aboutsummaryrefslogtreecommitdiff
path: root/src/mbahost
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-12-21 18:33:23 +1100
committerSean Hall <r.sean.hall@gmail.com>2019-12-22 13:34:07 +1000
commit43fb611edc680a74d229e8f1eeacb30adad8e3c7 (patch)
tree03ccc0606911ad03cc0c3497d4ca3215bb43f0d7 /src/mbahost
parent1ee38ea389f84217d13dd707208e4ec6e332a507 (diff)
downloadwix-43fb611edc680a74d229e8f1eeacb30adad8e3c7.tar.gz
wix-43fb611edc680a74d229e8f1eeacb30adad8e3c7.tar.bz2
wix-43fb611edc680a74d229e8f1eeacb30adad8e3c7.zip
Move the entry point from Mba.Core to Mba.Host.
Diffstat (limited to 'src/mbahost')
-rw-r--r--src/mbahost/mbahost.cpp19
-rw-r--r--src/mbahost/mbahost.vcxproj21
-rw-r--r--src/mbahost/packages.config6
3 files changed, 16 insertions, 30 deletions
diff --git a/src/mbahost/mbahost.cpp b/src/mbahost/mbahost.cpp
index 444a95a8..7916ec9a 100644
--- a/src/mbahost/mbahost.cpp
+++ b/src/mbahost/mbahost.cpp
@@ -1,8 +1,7 @@
1// 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. 1// 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.
2 2
3#include "precomp.h" 3#include "precomp.h"
4#include <WixToolset.Mba.Core.h> // includes the generated assembly name macros. 4#include <WixToolset.Mba.Host.h> // includes the generated assembly name macros.
5#include "BalBaseBootstrapperApplicationProc.h"
6 5
7static const DWORD NET452_RELEASE = 379893; 6static const DWORD NET452_RELEASE = 379893;
8 7
@@ -50,7 +49,6 @@ static HRESULT GetCLRHost(
50 ); 49 );
51static HRESULT CreateManagedBootstrapperApplication( 50static HRESULT CreateManagedBootstrapperApplication(
52 __in _AppDomain* pAppDomain, 51 __in _AppDomain* pAppDomain,
53 __in IBootstrapperEngine* pEngine,
54 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs, 52 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
55 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults 53 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults
56 ); 54 );
@@ -109,7 +107,7 @@ extern "C" HRESULT WINAPI BootstrapperApplicationCreate(
109 { 107 {
110 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Loading managed bootstrapper application."); 108 BalLog(BOOTSTRAPPER_LOG_LEVEL_STANDARD, "Loading managed bootstrapper application.");
111 109
112 hr = CreateManagedBootstrapperApplication(vpAppDomain, pEngine, pArgs, pResults); 110 hr = CreateManagedBootstrapperApplication(vpAppDomain, pArgs, pResults);
113 BalExitOnFailure(hr, "Failed to create the managed bootstrapper application."); 111 BalExitOnFailure(hr, "Failed to create the managed bootstrapper application.");
114 } 112 }
115 else // fallback to the prerequisite BA. 113 else // fallback to the prerequisite BA.
@@ -185,7 +183,7 @@ static HRESULT GetAppDomain(
185 hr = GetAppBase(&sczAppBase); 183 hr = GetAppBase(&sczAppBase);
186 ExitOnFailure(hr, "Failed to get the host base path."); 184 ExitOnFailure(hr, "Failed to get the host base path.");
187 185
188 hr = PathConcat(sczAppBase, L"WixToolset.Mba.Core.config", &sczConfigPath); 186 hr = PathConcat(sczAppBase, MBA_CONFIG_FILE_NAME, &sczConfigPath);
189 ExitOnFailure(hr, "Failed to get the full path to the application configuration file."); 187 ExitOnFailure(hr, "Failed to get the full path to the application configuration file.");
190 188
191 // Check that the supported framework is installed. 189 // Check that the supported framework is installed.
@@ -514,27 +512,20 @@ LExit:
514// Creates the bootstrapper app and returns it for the engine. 512// Creates the bootstrapper app and returns it for the engine.
515static HRESULT CreateManagedBootstrapperApplication( 513static HRESULT CreateManagedBootstrapperApplication(
516 __in _AppDomain* pAppDomain, 514 __in _AppDomain* pAppDomain,
517 __in IBootstrapperEngine* pEngine,
518 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs, 515 __in const BOOTSTRAPPER_CREATE_ARGS* pArgs,
519 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults 516 __inout BOOTSTRAPPER_CREATE_RESULTS* pResults
520 ) 517 )
521{ 518{
522 HRESULT hr = S_OK; 519 HRESULT hr = S_OK;
523 IBootstrapperApplicationFactory* pAppFactory = NULL; 520 IBootstrapperApplicationFactory* pAppFactory = NULL;
524 IBootstrapperApplication* pApp = NULL;
525 521
526 hr = CreateManagedBootstrapperApplicationFactory(pAppDomain, &pAppFactory); 522 hr = CreateManagedBootstrapperApplicationFactory(pAppDomain, &pAppFactory);
527 ExitOnFailure(hr, "Failed to create the factory to create the bootstrapper application."); 523 ExitOnFailure(hr, "Failed to create the factory to create the bootstrapper application.");
528 524
529 hr = pAppFactory->Create(pEngine, pArgs->pCommand, &pApp); 525 hr = pAppFactory->Create(pArgs, pResults);
530 ExitOnFailure(hr, "Failed to create the bootstrapper application."); 526 ExitOnFailure(hr, "Failed to create the bootstrapper application.");
531 527
532 pResults->pfnBootstrapperApplicationProc = BalBaseBootstrapperApplicationProc;
533 pResults->pvBootstrapperApplicationProcContext = pApp;
534 pApp = NULL;
535
536LExit: 528LExit:
537 ReleaseNullObject(pApp);
538 ReleaseNullObject(pAppFactory); 529 ReleaseNullObject(pAppFactory);
539 530
540 return hr; 531 return hr;
@@ -557,7 +548,7 @@ static HRESULT CreateManagedBootstrapperApplicationFactory(
557 bstrAssemblyName = ::SysAllocString(MBA_ASSEMBLY_FULL_NAME); 548 bstrAssemblyName = ::SysAllocString(MBA_ASSEMBLY_FULL_NAME);
558 ExitOnNull(bstrAssemblyName, hr, E_OUTOFMEMORY, "Failed to allocate the full assembly name for the bootstrapper application factory."); 549 ExitOnNull(bstrAssemblyName, hr, E_OUTOFMEMORY, "Failed to allocate the full assembly name for the bootstrapper application factory.");
559 550
560 bstrTypeName = ::SysAllocString(L"WixToolset.Mba.Core.BootstrapperApplicationFactory"); 551 bstrTypeName = ::SysAllocString(MBA_ENTRY_TYPE);
561 ExitOnNull(bstrTypeName, hr, E_OUTOFMEMORY, "Failed to allocate the full type name for the BA factory."); 552 ExitOnNull(bstrTypeName, hr, E_OUTOFMEMORY, "Failed to allocate the full type name for the BA factory.");
562 553
563 hr = pAppDomain->CreateInstance(bstrAssemblyName, bstrTypeName, &pObj); 554 hr = pAppDomain->CreateInstance(bstrAssemblyName, bstrTypeName, &pObj);
diff --git a/src/mbahost/mbahost.vcxproj b/src/mbahost/mbahost.vcxproj
index c7a0b69f..30bffb54 100644
--- a/src/mbahost/mbahost.vcxproj
+++ b/src/mbahost/mbahost.vcxproj
@@ -2,8 +2,8 @@
2<!-- 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. --> 2<!-- 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. -->
3 3
4<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 4<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5 <Import Project="..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props" Condition="Exists('..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props')" /> 5 <Import Project="..\..\packages\WixToolset.BalUtil.4.0.12\build\WixToolset.BalUtil.props" Condition="Exists('..\..\packages\WixToolset.BalUtil.4.0.12\build\WixToolset.BalUtil.props')" />
6 <Import Project="..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props')" /> 6 <Import Project="..\..\packages\WixToolset.BootstrapperCore.Native.4.0.10\build\WixToolset.BootstrapperCore.Native.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.10\build\WixToolset.BootstrapperCore.Native.props')" />
7 <Import Project="..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" /> 7 <Import Project="..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" />
8 8
9 <ItemGroup Label="ProjectConfigurations"> 9 <ItemGroup Label="ProjectConfigurations">
@@ -52,13 +52,14 @@
52 52
53 <ItemDefinitionGroup> 53 <ItemDefinitionGroup>
54 <ClCompile> 54 <ClCompile>
55 <AdditionalIncludeDirectories>..\..\packages\WixToolset.Mba.Core.4.0.9\build\native\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 55 <AdditionalIncludeDirectories>$(BaseOutputPath)obj;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
56 </ClCompile> 56 </ClCompile>
57 </ItemDefinitionGroup> 57 </ItemDefinitionGroup>
58 58
59 <ItemGroup> 59 <ItemGroup>
60 <MbaHostDependency Include="..\..\packages\WixToolset.BootstrapperCore.4.0.8\lib\net20\WixToolset.BootstrapperCore.dll" /> 60 <ProjectReference Include="..\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj">
61 <MbaHostDependency Include="..\..\packages\WixToolset.Mba.Core.4.0.9\lib\net20\WixToolset.Mba.Core.dll" /> 61 <Project>{f2ba1935-70fa-4156-b161-fd03850b4faa}</Project>
62 </ProjectReference>
62 </ItemGroup> 63 </ItemGroup>
63 64
64 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 65 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
@@ -67,13 +68,9 @@
67 <PropertyGroup> 68 <PropertyGroup>
68 <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> 69 <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
69 </PropertyGroup> 70 </PropertyGroup>
70 <Error Condition="!Exists('..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props'))" /> 71 <Error Condition="!Exists('..\..\packages\WixToolset.BalUtil.4.0.12\build\WixToolset.BalUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BalUtil.4.0.12\build\WixToolset.BalUtil.props'))" />
71 <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props'))" /> 72 <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.10\build\WixToolset.BootstrapperCore.Native.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.Native.4.0.10\build\WixToolset.BootstrapperCore.Native.props'))" />
72 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props'))" /> 73 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props'))" />
73 <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> 74 <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" />
74 </Target> 75 </Target>
75 76</Project> \ No newline at end of file
76 <Target Name="CopyMbaHostDependencies" AfterTargets="Build">
77 <Copy DestinationFolder="$(OutputPath)" SourceFiles="@(MbaHostDependency)" SkipUnchangedFiles="true" />
78 </Target>
79</Project>
diff --git a/src/mbahost/packages.config b/src/mbahost/packages.config
index c616685e..f209d5fb 100644
--- a/src/mbahost/packages.config
+++ b/src/mbahost/packages.config
@@ -1,9 +1,7 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<packages> 2<packages>
3 <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="native" developmentDependency="true" /> 3 <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="native" developmentDependency="true" />
4 <package id="WixToolset.BootstrapperCore" version="4.0.8" targetFramework="native" /> 4 <package id="WixToolset.BootstrapperCore.Native" version="4.0.10" targetFramework="native" />
5 <package id="WixToolset.BootstrapperCore.Native" version="4.0.8" targetFramework="native" /> 5 <package id="WixToolset.BalUtil" version="4.0.12" targetFramework="native" />
6 <package id="WixToolset.BalUtil" version="4.0.9" targetFramework="native" />
7 <package id="WixToolset.DUtil" version="4.0.18" targetFramework="native" /> 6 <package id="WixToolset.DUtil" version="4.0.18" targetFramework="native" />
8 <package id="WixToolset.Mba.Core" version="4.0.9" targetFramework="native" />
9</packages> \ No newline at end of file 7</packages> \ No newline at end of file