1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-04 02:18:06 +00:00
Lidarr/NzbDrone/ApplicationServer.cs

72 lines
2.3 KiB
C#
Raw Normal View History

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