Radarr/src/NzbDrone.Host/ApplicationServer.cs

73 lines
2.3 KiB
C#
Raw Normal View History

2013-11-26 02:46:12 +00:00
using System.ServiceProcess;
2011-10-07 03:37:41 +00:00
using NLog;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Core.Configuration;
using NzbDrone.Host.Owin;
2011-10-07 03:37:41 +00:00
namespace NzbDrone.Host
2011-10-07 03:37:41 +00:00
{
2013-04-16 04:52:41 +00:00
public interface INzbDroneServiceFactory
2011-10-07 03:37:41 +00:00
{
2013-11-26 05:36:06 +00:00
bool IsServiceStopped { get; }
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
{
2013-05-10 23:53:50 +00:00
private readonly IConfigFileProvider _configFileProvider;
private readonly IRuntimeInfo _runtimeInfo;
2013-02-19 01:57:08 +00:00
private readonly IHostController _hostController;
2013-03-01 00:50:50 +00:00
private readonly PriorityMonitor _priorityMonitor;
private readonly IStartupArguments _startupArguments;
2013-11-26 02:46:12 +00:00
private readonly IBrowserService _browserService;
2013-04-16 04:52:41 +00:00
private readonly Logger _logger;
2011-10-07 03:37:41 +00:00
2013-11-26 02:46:12 +00:00
public NzbDroneServiceFactory(IConfigFileProvider configFileProvider, IHostController hostController,
IRuntimeInfo runtimeInfo, PriorityMonitor priorityMonitor, IStartupArguments startupArguments, IBrowserService browserService, 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;
_runtimeInfo = runtimeInfo;
2013-03-01 00:50:50 +00:00
_priorityMonitor = priorityMonitor;
_startupArguments = startupArguments;
2013-11-26 02:46:12 +00:00
_browserService = browserService;
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
{
2013-02-19 01:13:42 +00:00
_hostController.StartServer();
2011-10-07 03:37:41 +00:00
if (!_startupArguments.Flags.Contains(StartupArguments.NO_BROWSER) &&
_runtimeInfo.IsUserInteractive &&
_configFileProvider.LaunchBrowser)
2011-10-07 03:37:41 +00:00
{
2013-11-26 02:46:12 +00:00
_browserService.LaunchWebUI();
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.");
2013-11-26 05:36:06 +00:00
IsServiceStopped = true;
2013-04-16 04:52:41 +00:00
}
2013-11-26 05:36:06 +00:00
public bool IsServiceStopped { get; private set; }
2013-04-16 04:52:41 +00:00
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
}