Radarr/NzbDrone/ApplicationServer.cs

79 lines
2.5 KiB
C#
Raw Normal View History

2011-10-07 03:37:41 +00:00
using System;
using System.ServiceProcess;
2011-10-07 03:37:41 +00:00
using NLog;
using NzbDrone.Common;
using NzbDrone.Owin;
2011-10-07 03:37:41 +00:00
namespace NzbDrone
{
2013-04-16 04:52:41 +00:00
public interface INzbDroneServiceFactory
2011-10-07 03:37:41 +00:00
{
2013-04-16 04:52:41 +00:00
ServiceBase Build();
void Start();
}
2011-10-07 03:37:41 +00:00
2013-04-16 04:52:41 +00:00
public class NzbDroneServiceFactory : ServiceBase, INzbDroneServiceFactory
{
2011-11-13 07:27:16 +00:00
private readonly ConfigFileProvider _configFileProvider;
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;
private readonly SecurityProvider _securityProvider;
2013-04-16 04:52:41 +00:00
private readonly Logger _logger;
2011-10-07 03:37:41 +00:00
2013-04-16 04:52:41 +00:00
public NzbDroneServiceFactory(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,
2013-04-16 04:52:41 +00:00
SecurityProvider securityProvider, Logger logger)
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;
_environmentProvider = environmentProvider;
2011-10-07 03:37:41 +00:00
_processProvider = processProvider;
2013-03-01 00:50:50 +00:00
_priorityMonitor = priorityMonitor;
_securityProvider = securityProvider;
2013-04-16 04:52:41 +00:00
_logger = logger;
2011-10-07 03:37:41 +00:00
}
protected override void OnStart(string[] args)
{
Start();
}
2013-04-16 04:52:41 +00:00
public void Start()
2011-10-07 03:37:41 +00:00
{
_securityProvider.MakeAccessible();
2013-02-19 01:13:42 +00:00
_hostController.StartServer();
2011-10-07 03:37:41 +00:00
if (_environmentProvider.IsUserInteractive && _configFileProvider.LaunchBrowser)
2011-10-07 03:37:41 +00:00
{
try
{
2013-04-16 04:52:41 +00:00
_logger.Info("Starting default browser. {0}", _hostController.AppUrl);
2013-02-19 01:13:42 +00:00
_processProvider.Start(_hostController.AppUrl);
2011-10-07 03:37:41 +00:00
}
catch (Exception e)
{
2013-04-16 04:52:41 +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();
}
protected override void OnStop()
2011-10-07 03:37:41 +00:00
{
2013-04-16 04:52:41 +00:00
_logger.Info("Attempting to stop application.");
2013-02-19 01:13:42 +00:00
_hostController.StopServer();
2013-04-16 04:52:41 +00:00
_logger.Info("Application has finished stop routine.");
}
public ServiceBase Build()
{
return this;
2011-10-07 03:37:41 +00:00
}
}
2013-04-16 04:52:41 +00:00
2011-10-07 06:57:43 +00:00
}