93 lines
3.2 KiB
C#
93 lines
3.2 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using Microsoft.Framework.Logging;
|
|
|
|
namespace DeploymentHelpers
|
|
{
|
|
/// <summary>
|
|
/// Deployer for Kestrel on Mono.
|
|
/// </summary>
|
|
public class MonoDeployer : ApplicationDeployer
|
|
{
|
|
private Process _hostProcess;
|
|
|
|
public MonoDeployer(DeploymentParameters deploymentParameters, ILogger logger)
|
|
: base(deploymentParameters, logger)
|
|
{
|
|
}
|
|
|
|
public override DeploymentResult Deploy()
|
|
{
|
|
var path = Environment.GetEnvironmentVariable("PATH");
|
|
var runtimeBin = path.Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries).
|
|
Where(c => c.Contains("dnx-mono")).FirstOrDefault();
|
|
|
|
if (string.IsNullOrWhiteSpace(runtimeBin))
|
|
{
|
|
throw new Exception("Runtime not detected on the machine.");
|
|
}
|
|
|
|
if (DeploymentParameters.PublishApplicationBeforeDeployment)
|
|
{
|
|
// We use full path to runtime to pack.
|
|
DeploymentParameters.DnxRuntime = new DirectoryInfo(runtimeBin).Parent.FullName;
|
|
DnuPublish();
|
|
}
|
|
|
|
// Launch the host process.
|
|
_hostProcess = StartMonoHost();
|
|
|
|
return new DeploymentResult
|
|
{
|
|
WebRootLocation = DeploymentParameters.ApplicationPath,
|
|
DeploymentParameters = DeploymentParameters,
|
|
ApplicationBaseUri = DeploymentParameters.ApplicationBaseUriHint
|
|
};
|
|
}
|
|
|
|
private Process StartMonoHost()
|
|
{
|
|
if (DeploymentParameters.ServerType != ServerType.Kestrel)
|
|
{
|
|
throw new InvalidOperationException("kestrel is the only valid ServerType for Mono");
|
|
}
|
|
|
|
Logger.LogInformation("Executing command: dnx \"{appPath}\" kestrel --server.urls {url}",
|
|
DeploymentParameters.ApplicationPath, DeploymentParameters.ApplicationBaseUriHint);
|
|
|
|
var startInfo = new ProcessStartInfo
|
|
{
|
|
FileName = "dnx",
|
|
Arguments = string.Format("\"{0}\" kestrel --server.urls {1}", DeploymentParameters.ApplicationPath, DeploymentParameters.ApplicationBaseUriHint),
|
|
UseShellExecute = false,
|
|
CreateNoWindow = true,
|
|
RedirectStandardInput = true
|
|
};
|
|
|
|
var hostProcess = Process.Start(startInfo);
|
|
Logger.LogInformation("Started {0}. Process Id : {1}", hostProcess.MainModule.FileName, hostProcess.Id);
|
|
|
|
if (hostProcess.HasExited)
|
|
{
|
|
Logger.LogError("Host process {processName} exited with code {exitCode} or failed to start.", startInfo.FileName, hostProcess.ExitCode);
|
|
throw new Exception("Failed to start host");
|
|
}
|
|
|
|
return hostProcess;
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
ShutDownIfAnyHostProcess(_hostProcess);
|
|
|
|
if (DeploymentParameters.PublishApplicationBeforeDeployment)
|
|
{
|
|
CleanPublishedOutput();
|
|
}
|
|
|
|
InvokeUserApplicationCleanup();
|
|
}
|
|
}
|
|
} |