1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-09 04:22:30 +01:00
Radarr/NzbDrone/ApplicationServer.cs

72 lines
2.3 KiB
C#
Raw Normal View History

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