2011-10-07 03:37:41 +00:00
|
|
|
|
using System;
|
2011-10-14 01:22:51 +00:00
|
|
|
|
using System.ServiceProcess;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
using NLog;
|
2011-10-23 05:26:43 +00:00
|
|
|
|
using NzbDrone.Common;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
|
2011-10-07 03:37:41 +00:00
|
|
|
|
namespace NzbDrone
|
|
|
|
|
{
|
2011-10-14 01:22:51 +00:00
|
|
|
|
public class ApplicationServer : ServiceBase
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
2012-02-11 00:48:20 +00:00
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
private readonly ConfigFileProvider _configFileProvider;
|
2012-03-07 02:59:43 +00:00
|
|
|
|
private readonly EnvironmentProvider _environmentProvider;
|
2013-02-19 01:57:08 +00:00
|
|
|
|
private readonly IHostController _hostController;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
private readonly ProcessProvider _processProvider;
|
2013-03-01 00:50:50 +00:00
|
|
|
|
private readonly PriorityMonitor _priorityMonitor;
|
2012-01-17 07:17:00 +00:00
|
|
|
|
private readonly SecurityProvider _securityProvider;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2013-02-19 01:57:08 +00:00
|
|
|
|
public ApplicationServer(ConfigFileProvider configFileProvider, IHostController hostController,
|
2013-02-19 01:13:42 +00:00
|
|
|
|
EnvironmentProvider environmentProvider,
|
2013-03-01 00:50:50 +00:00
|
|
|
|
ProcessProvider processProvider, PriorityMonitor priorityMonitor,
|
|
|
|
|
SecurityProvider securityProvider)
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
2011-11-13 07:27:16 +00:00
|
|
|
|
_configFileProvider = configFileProvider;
|
2013-02-19 01:13:42 +00:00
|
|
|
|
_hostController = hostController;
|
2012-03-07 02:59:43 +00:00
|
|
|
|
_environmentProvider = environmentProvider;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
_processProvider = processProvider;
|
2013-03-01 00:50:50 +00:00
|
|
|
|
_priorityMonitor = priorityMonitor;
|
2012-01-17 07:17:00 +00:00
|
|
|
|
_securityProvider = securityProvider;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-11 07:11:05 +00:00
|
|
|
|
public ApplicationServer()
|
2011-10-09 02:16:11 +00:00
|
|
|
|
{
|
2011-10-14 01:22:51 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
protected override void OnStart(string[] args)
|
2011-10-14 01:22:51 +00:00
|
|
|
|
{
|
|
|
|
|
Start();
|
2011-10-09 02:16:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Start()
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
2012-01-17 07:17:00 +00:00
|
|
|
|
_securityProvider.MakeAccessible();
|
2013-01-01 20:54:54 +00:00
|
|
|
|
|
2013-02-19 01:13:42 +00:00
|
|
|
|
_hostController.StartServer();
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2012-03-07 02:59:43 +00:00
|
|
|
|
if (_environmentProvider.IsUserInteractive && _configFileProvider.LaunchBrowser)
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-02-19 01:13:42 +00:00
|
|
|
|
logger.Info("Starting default browser. {0}", _hostController.AppUrl);
|
|
|
|
|
_processProvider.Start(_hostController.AppUrl);
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2012-02-11 00:48:20 +00:00
|
|
|
|
logger.ErrorException("Failed to open URL in default browser.", e);
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-01 00:50:50 +00:00
|
|
|
|
_priorityMonitor.Start();
|
2011-10-14 01:22:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-15 00:41:09 +00:00
|
|
|
|
protected override void OnStop()
|
2011-10-07 03:37:41 +00:00
|
|
|
|
{
|
2012-02-11 00:48:20 +00:00
|
|
|
|
logger.Info("Attempting to stop application.");
|
2013-02-19 01:13:42 +00:00
|
|
|
|
_hostController.StopServer();
|
2012-02-11 00:48:20 +00:00
|
|
|
|
logger.Info("Application has finished stop routine.");
|
2011-10-07 03:37:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-07 06:57:43 +00:00
|
|
|
|
}
|