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;
|
2013-06-28 00:04:52 +00:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-05-23 05:12:01 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-08-07 05:32:22 +00:00
|
|
|
|
using NzbDrone.Host.Owin;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2013-08-07 05:32:22 +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-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;
|
2013-06-28 00:04:52 +00:00
|
|
|
|
private readonly IRuntimeInfo _runtimeInfo;
|
2013-02-19 01:57:08 +00:00
|
|
|
|
private readonly IHostController _hostController;
|
2013-05-10 23:53:50 +00:00
|
|
|
|
private readonly IProcessProvider _processProvider;
|
2013-03-01 00:50:50 +00:00
|
|
|
|
private readonly PriorityMonitor _priorityMonitor;
|
2013-08-13 05:08:37 +00:00
|
|
|
|
private readonly IStartupArguments _startupArguments;
|
2013-04-16 04:52:41 +00:00
|
|
|
|
private readonly Logger _logger;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
|
2013-06-28 00:04:52 +00:00
|
|
|
|
public NzbDroneServiceFactory(IConfigFileProvider configFileProvider, IHostController hostController, IRuntimeInfo runtimeInfo,
|
2013-08-30 22:55:01 +00:00
|
|
|
|
IProcessProvider processProvider, PriorityMonitor priorityMonitor, IStartupArguments startupArguments, 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;
|
2013-06-28 00:04:52 +00:00
|
|
|
|
_runtimeInfo = runtimeInfo;
|
2011-10-07 03:37:41 +00:00
|
|
|
|
_processProvider = processProvider;
|
2013-03-01 00:50:50 +00:00
|
|
|
|
_priorityMonitor = priorityMonitor;
|
2013-07-09 00:47:09 +00:00
|
|
|
|
_startupArguments = startupArguments;
|
2013-04-16 04:52:41 +00:00
|
|
|
|
_logger = logger;
|
2011-10-07 03:37:41 +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
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2013-07-09 00:47:09 +00:00
|
|
|
|
if (!_startupArguments.Flags.Contains(StartupArguments.NO_BROWSER) &&
|
|
|
|
|
_runtimeInfo.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-08-14 05:20:24 +00:00
|
|
|
|
_processProvider.OpenDefaultBrowser(_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();
|
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
|
|
|
|
{
|
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
|
|
|
|
}
|