2010-09-23 03:19:47 +00:00
|
|
|
|
using System;
|
2010-10-17 17:22:48 +00:00
|
|
|
|
using System.Diagnostics;
|
2011-06-18 01:46:22 +00:00
|
|
|
|
using System.Linq;
|
2013-01-03 01:09:13 +00:00
|
|
|
|
using Autofac;
|
2011-04-10 02:44:01 +00:00
|
|
|
|
using NLog;
|
2011-11-13 07:27:16 +00:00
|
|
|
|
using NzbDrone.Common;
|
2010-10-24 07:46:58 +00:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2012-01-25 03:09:49 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2012-02-13 01:07:09 +00:00
|
|
|
|
using SignalR;
|
2010-09-23 03:19:47 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
|
{
|
2011-11-08 20:12:54 +00:00
|
|
|
|
public class CentralDispatch
|
2010-09-23 03:19:47 +00:00
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
private readonly Logger _logger;
|
2012-03-07 02:59:43 +00:00
|
|
|
|
private readonly EnvironmentProvider _environmentProvider;
|
2010-10-07 22:17:24 +00:00
|
|
|
|
|
2013-01-03 01:09:13 +00:00
|
|
|
|
public ContainerBuilder ContainerBuilder { get; private set; }
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2011-11-08 20:12:54 +00:00
|
|
|
|
public CentralDispatch()
|
2011-04-10 02:44:01 +00:00
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger = LogManager.GetCurrentClassLogger();
|
2012-03-07 02:59:43 +00:00
|
|
|
|
_environmentProvider = new EnvironmentProvider();
|
2012-01-26 01:29:55 +00:00
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Debug("Initializing ContainerBuilder:");
|
2013-01-03 01:09:13 +00:00
|
|
|
|
ContainerBuilder = new ContainerBuilder();
|
2011-04-10 02:44:01 +00:00
|
|
|
|
|
2013-01-03 01:09:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-03 04:09:37 +00:00
|
|
|
|
private void RegisterReporting(IContainer container)
|
2013-01-03 01:09:13 +00:00
|
|
|
|
{
|
|
|
|
|
EnvironmentProvider.UGuid = container.Resolve<ConfigProvider>().UGuid;
|
|
|
|
|
ReportingService.RestProvider = container.Resolve<RestProvider>();
|
|
|
|
|
ReportingService.SetupExceptronDriver();
|
|
|
|
|
}
|
2012-07-12 21:48:09 +00:00
|
|
|
|
|
|
|
|
|
|
2011-11-08 20:12:54 +00:00
|
|
|
|
public void DedicateToHost()
|
2010-10-17 17:22:48 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2012-03-07 02:59:43 +00:00
|
|
|
|
var pid = _environmentProvider.NzbDroneProcessIdFromEnviroment;
|
2011-06-13 03:45:22 +00:00
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Debug("Attaching to parent process ({0}) for automatic termination.", pid);
|
2011-06-13 03:45:22 +00:00
|
|
|
|
|
|
|
|
|
var hostProcess = Process.GetProcessById(Convert.ToInt32(pid));
|
2010-10-17 17:22:48 +00:00
|
|
|
|
|
|
|
|
|
hostProcess.EnableRaisingEvents = true;
|
|
|
|
|
hostProcess.Exited += (delegate
|
2011-04-10 02:44:01 +00:00
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Info("Host has been terminated. Shutting down web server.");
|
2011-04-10 02:44:01 +00:00
|
|
|
|
ShutDown();
|
|
|
|
|
});
|
2010-10-17 17:22:48 +00:00
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Debug("Successfully Attached to host. Process [{0}]", hostProcess.ProcessName);
|
2010-10-17 17:22:48 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.FatalException("An error has occurred while dedicating to host.", e);
|
2010-10-17 17:22:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-03 03:04:42 +00:00
|
|
|
|
public IContainer BuildContainer()
|
2013-01-03 01:09:13 +00:00
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Debug("Initializing Components");
|
2013-01-03 01:09:13 +00:00
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
ContainerBuilder.RegisterCoreServices();
|
|
|
|
|
|
|
|
|
|
var container = ContainerBuilder.Build();
|
2013-01-03 01:09:13 +00:00
|
|
|
|
|
|
|
|
|
container.Resolve<DatabaseTarget>().Register();
|
|
|
|
|
LogConfiguration.Reload();
|
|
|
|
|
|
2013-01-03 04:09:37 +00:00
|
|
|
|
RegisterReporting(container);
|
2013-01-03 01:09:13 +00:00
|
|
|
|
|
|
|
|
|
container.Resolve<WebTimer>().StartTimer(30);
|
|
|
|
|
|
|
|
|
|
//SignalR
|
|
|
|
|
GlobalHost.DependencyResolver = new AutofacSignalrDependencyResolver(container.BeginLifetimeScope("SignalR"));
|
|
|
|
|
|
|
|
|
|
return container;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
private void ShutDown()
|
2010-10-17 17:22:48 +00:00
|
|
|
|
{
|
2013-01-19 04:46:43 +00:00
|
|
|
|
_logger.Info("Shutting down application...");
|
2011-11-07 06:26:21 +00:00
|
|
|
|
WebTimer.Stop();
|
2010-10-17 17:22:48 +00:00
|
|
|
|
Process.GetCurrentProcess().Kill();
|
|
|
|
|
}
|
2010-09-23 03:19:47 +00:00
|
|
|
|
}
|
2011-11-10 04:14:19 +00:00
|
|
|
|
}
|