blob: 3bd340bcc99d4a46713387731da868f5c0a1fc0e (
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
|
// 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.Native
{
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Reflection;
internal class WixNativeExe
{
private const int FiveMinutesInMilliseconds = 300000;
private static readonly object PathToWixNativeExeLock = new object();
private static string PathToWixNativeExe;
private readonly string commandLine;
private readonly List<string> stdinLines = new List<string>();
public WixNativeExe(params object[] args)
{
this.commandLine = String.Join(" ", QuoteArgumentsAsNecesary(args));
}
public void AddStdinLine(string line)
{
this.stdinLines.Add(line);
}
public void AddStdinLines(IEnumerable<string> lines)
{
this.stdinLines.AddRange(lines);
}
public IEnumerable<string> Run()
{
EnsurePathToWixNativeExeSet();
var wixNativeInfo = new ProcessStartInfo(PathToWixNativeExe, this.commandLine)
{
RedirectStandardInput = true,
RedirectStandardOutput = true,
CreateNoWindow = true,
ErrorDialog = false,
UseShellExecute = false
};
var stdoutLines = new List<string>();
using (var process = Process.Start(wixNativeInfo))
{
process.OutputDataReceived += (s, a) => stdoutLines.Add(a.Data);
process.BeginOutputReadLine();
if (this.stdinLines.Count > 0)
{
foreach (var line in this.stdinLines)
{
process.StandardInput.WriteLine(line);
}
// Trailing blank line indicates stdin complete.
process.StandardInput.WriteLine();
}
if (process.WaitForExit(FiveMinutesInMilliseconds))
{
// If the process successfully exits documentation says we need to wait again
// without a timeout to ensure that all of the redirected output is captured.
//
process.WaitForExit();
}
if (process.ExitCode != 0)
{
throw new Win32Exception(process.ExitCode);
}
}
return stdoutLines;
}
private static void EnsurePathToWixNativeExeSet()
{
lock (PathToWixNativeExeLock)
{
if (String.IsNullOrEmpty(PathToWixNativeExe))
{
var path = Path.Combine(Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).LocalPath), @"x86\wixnative.x86.exe");
if (!File.Exists(path))
{
path = Path.Combine(Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).LocalPath), "wixnative.x86.exe");
if (!File.Exists(path))
{
throw new FileNotFoundException($"Could not find internal piece of WiX Toolset at: {path}", path);
}
}
PathToWixNativeExe = path;
}
}
}
private static IEnumerable<string> QuoteArgumentsAsNecesary(object[] args)
{
foreach (var arg in args)
{
if (arg is string str)
{
if (String.IsNullOrEmpty(str))
{
}
else if (str.Contains(" ") && !str.StartsWith("\""))
{
yield return $"\"{str}\"";
}
else
{
yield return str;
}
}
else if (arg is int i)
{
yield return i.ToString();
}
else
{
throw new ArgumentException(nameof(args));
}
}
}
}
}
|