Lidarr/src/NzbDrone.Console/ConsoleApp.cs

89 lines
2.8 KiB
C#
Raw Normal View History

using System;
using System.Net.Sockets;
2013-08-30 22:55:01 +00:00
using NLog;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Exceptions;
2013-08-31 01:42:30 +00:00
using NzbDrone.Common.Instrumentation;
using NzbDrone.Host;
2013-03-01 00:50:50 +00:00
namespace NzbDrone.Console
{
public static class ConsoleApp
2013-03-01 00:50:50 +00:00
{
2014-12-17 07:12:26 +00:00
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(ConsoleApp));
2013-08-31 01:42:30 +00:00
private enum ExitCodes : int
{
Normal = 0,
UnknownFailure = 1,
RecoverableFailure = 2,
NonRecoverableFailure = 3
}
2013-03-01 00:50:50 +00:00
public static void Main(string[] args)
{
try
{
2013-11-26 06:53:36 +00:00
var startupArgs = new StartupContext(args);
2014-12-17 07:12:26 +00:00
NzbDroneLogger.Register(startupArgs, false, true);
2013-11-26 06:53:36 +00:00
Bootstrap.Start(startupArgs, new ConsoleAlerts());
2013-03-01 00:50:50 +00:00
}
catch (LidarrStartupException ex)
{
System.Console.WriteLine("");
System.Console.WriteLine("");
Logger.Fatal(ex, "EPIC FAIL!");
Exit(ExitCodes.NonRecoverableFailure);
}
catch (SocketException ex)
2013-03-01 00:50:50 +00:00
{
2013-11-26 05:36:06 +00:00
System.Console.WriteLine("");
System.Console.WriteLine("");
2017-10-31 02:25:19 +00:00
Logger.Fatal(ex.Message + ". This can happen if another instance of Lidarr is already running another application is using the same port (default: 8989) or the user has insufficient permissions");
Exit(ExitCodes.RecoverableFailure);
}
catch (Exception ex)
{
System.Console.WriteLine("");
System.Console.WriteLine("");
Logger.Fatal(ex, "EPIC FAIL!");
Exit(ExitCodes.UnknownFailure);
2013-03-01 00:50:50 +00:00
}
Logger.Info("Exiting main.");
Exit(ExitCodes.Normal);
}
private static void Exit(ExitCodes exitCode)
{
LogManager.Flush();
if (exitCode != ExitCodes.Normal)
{
System.Console.WriteLine("Press enter to exit...");
System.Threading.Thread.Sleep(1000);
if (exitCode == ExitCodes.NonRecoverableFailure)
{
System.Console.WriteLine("Non-recoverable failure, waiting for user intervention...");
for (int i = 0; i< 3600; i++)
{
System.Threading.Thread.Sleep(1000);
if (System.Console.KeyAvailable) break;
}
}
// Please note that ReadLine silently succeeds if there is no console, KeyAvailable does not.
System.Console.ReadLine();
}
//Need this to terminate on mono (thanks nlog)
LogManager.Configuration = null;
Environment.Exit((int)exitCode);
2013-03-01 00:50:50 +00:00
}
}
2013-08-31 01:42:30 +00:00
}