jellyfin/MediaBrowser.Server.Mono/Program.cs

312 lines
10 KiB
C#
Raw Normal View History

2013-09-26 17:20:26 -04:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Server.Mono.Native;
using MediaBrowser.Server.Startup.Common;
2013-09-24 17:06:21 -04:00
using System;
2013-09-26 17:20:26 -04:00
using System.Diagnostics;
2016-11-13 16:04:21 -05:00
using System.Globalization;
2015-05-23 18:01:13 -04:00
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Security;
2014-10-06 19:58:46 -04:00
using System.Reflection;
2016-11-11 03:13:11 -05:00
using System.Text.RegularExpressions;
2013-09-26 17:20:26 -04:00
using System.Threading.Tasks;
2017-09-09 14:51:24 -04:00
using Emby.Drawing;
2016-11-18 16:06:00 -05:00
using Emby.Server.Implementations;
using Emby.Server.Implementations.EnvironmentInfo;
2016-11-11 02:24:36 -05:00
using Emby.Server.Implementations.IO;
2017-02-20 15:50:58 -05:00
using Emby.Server.Implementations.Logging;
using Emby.Server.Implementations.Networking;
2017-09-09 14:51:24 -04:00
using MediaBrowser.Controller;
2017-02-20 15:50:58 -05:00
using MediaBrowser.Model.IO;
2016-11-11 03:13:11 -05:00
using MediaBrowser.Model.System;
using Mono.Unix.Native;
using ILogger = MediaBrowser.Model.Logging.ILogger;
2016-11-11 14:55:12 -05:00
using X509Certificate = System.Security.Cryptography.X509Certificates.X509Certificate;
2013-09-24 17:06:21 -04:00
namespace MediaBrowser.Server.Mono
{
2015-05-23 18:28:26 -04:00
public class MainClass
{
private static ILogger _logger;
2017-02-20 15:50:58 -05:00
private static IFileSystem FileSystem;
2017-09-09 14:51:24 -04:00
private static IServerApplicationPaths _appPaths;
private static ILogManager _logManager;
2013-09-26 17:20:26 -04:00
2017-08-28 14:19:23 -04:00
private static readonly TaskCompletionSource<bool> ApplicationTaskCompletionSource = new TaskCompletionSource<bool>();
private static bool _restartOnShutdown;
2015-05-23 18:28:26 -04:00
public static void Main(string[] args)
{
2014-11-14 01:27:10 -05:00
var applicationPath = Assembly.GetEntryAssembly().Location;
2016-11-21 12:25:42 -05:00
SetSqliteProvider();
2014-09-14 11:26:33 -04:00
2016-11-18 16:06:00 -05:00
var options = new StartupOptions(Environment.GetCommandLineArgs());
2015-05-23 18:28:26 -04:00
// Allow this to be specified on the command line.
var customProgramDataPath = options.GetOption("-programdata");
2015-05-23 18:28:26 -04:00
var appPaths = CreateApplicationPaths(applicationPath, customProgramDataPath);
2017-09-09 14:51:24 -04:00
_appPaths = appPaths;
2013-09-26 17:20:26 -04:00
2017-09-05 15:49:02 -04:00
using (var logManager = new SimpleLogManager(appPaths.LogDirectoryPath, "server"))
{
2017-09-09 14:51:24 -04:00
_logManager = logManager;
2017-09-05 15:49:02 -04:00
logManager.ReloadLogger(LogSeverity.Info);
logManager.AddConsoleOutput();
2013-09-26 17:20:26 -04:00
2017-09-05 15:49:02 -04:00
var logger = _logger = logManager.GetLogger("Main");
2013-09-26 17:20:26 -04:00
2017-09-05 15:49:02 -04:00
ApplicationHost.LogEnvironmentInfo(logger, appPaths, true);
2013-09-26 17:20:26 -04:00
2017-09-05 15:49:02 -04:00
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
2017-08-28 14:19:23 -04:00
2017-09-09 20:24:45 -04:00
RunApplication(appPaths, logManager, options);
_logger.Info("Disposing app host");
2017-09-05 15:49:02 -04:00
2017-09-09 20:24:45 -04:00
if (_restartOnShutdown)
{
StartNewInstance(options);
2017-08-28 14:19:23 -04:00
}
2015-05-23 18:28:26 -04:00
}
}
2013-09-26 17:20:26 -04:00
2016-11-21 12:25:42 -05:00
private static void SetSqliteProvider()
{
SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_sqlite3());
}
2015-05-23 18:28:26 -04:00
private static ServerApplicationPaths CreateApplicationPaths(string applicationPath, string programDataPath)
{
if (string.IsNullOrEmpty(programDataPath))
{
programDataPath = ApplicationPathHelper.GetProgramDataPath(applicationPath);
}
2013-09-26 17:20:26 -04:00
2016-11-13 16:04:21 -05:00
var appFolderPath = Path.GetDirectoryName(applicationPath);
2017-08-17 16:19:02 -04:00
return new ServerApplicationPaths(programDataPath, appFolderPath, Path.GetDirectoryName(applicationPath));
2015-05-23 18:28:26 -04:00
}
2013-09-26 17:20:26 -04:00
2015-05-23 18:28:26 -04:00
private static void RunApplication(ServerApplicationPaths appPaths, ILogManager logManager, StartupOptions options)
{
// Allow all https requests
2017-08-03 12:26:01 -04:00
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
2017-03-10 14:51:29 -05:00
var environmentInfo = GetEnvironmentInfo();
2014-10-06 19:58:46 -04:00
2017-03-10 14:51:29 -05:00
var fileSystem = new MonoFileSystem(logManager.GetLogger("FileSystem"), environmentInfo, appPaths.TempDirectory);
2017-02-20 15:50:58 -05:00
2017-03-10 14:51:29 -05:00
FileSystem = fileSystem;
2017-09-09 14:51:24 -04:00
using (var appHost = new MonoAppHost(appPaths,
2016-11-11 14:55:12 -05:00
logManager,
options,
fileSystem,
new PowerManagement(),
"emby.mono.zip",
environmentInfo,
2017-09-09 14:51:24 -04:00
new NullImageEncoder(),
new SystemEvents(logManager.GetLogger("SystemEvents")),
2017-09-09 14:51:24 -04:00
new NetworkManager(logManager.GetLogger("NetworkManager"))))
2015-05-23 18:28:26 -04:00
{
2017-09-09 14:51:24 -04:00
if (options.ContainsOption("-v"))
{
Console.WriteLine(appHost.ApplicationVersion.ToString());
return;
}
2015-05-23 18:28:26 -04:00
2017-09-09 14:51:24 -04:00
Console.WriteLine("appHost.Init");
2015-05-23 18:28:26 -04:00
2017-09-09 14:51:24 -04:00
var initProgress = new Progress<double>();
2015-05-23 18:28:26 -04:00
2017-09-09 14:51:24 -04:00
var task = appHost.Init(initProgress);
2017-09-09 20:24:45 -04:00
2017-09-09 14:51:24 -04:00
Task.WaitAll(task);
2015-05-23 18:28:26 -04:00
appHost.ImageProcessor.ImageEncoder = ImageEncoderHelper.GetImageEncoder(_logger, logManager, fileSystem, options, () => appHost.HttpClient, appPaths, environmentInfo, appHost.LocalizationManager);
2017-09-11 14:49:20 -04:00
2017-09-09 14:51:24 -04:00
Console.WriteLine("Running startup tasks");
2015-05-23 18:28:26 -04:00
2017-09-09 14:51:24 -04:00
task = appHost.RunStartupTasks();
Task.WaitAll(task);
2015-05-23 18:28:26 -04:00
2017-09-09 14:51:24 -04:00
task = ApplicationTaskCompletionSource.Task;
Task.WaitAll(task);
}
2015-05-23 18:28:26 -04:00
}
2016-11-11 03:13:11 -05:00
private static MonoEnvironmentInfo GetEnvironmentInfo()
{
var info = new MonoEnvironmentInfo();
var uname = GetUnixName();
var sysName = uname.sysname ?? string.Empty;
if (string.Equals(sysName, "Darwin", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 16:19:02 -04:00
info.OperatingSystem = Model.System.OperatingSystem.OSX;
2016-11-11 03:13:11 -05:00
}
else if (string.Equals(sysName, "Linux", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 16:19:02 -04:00
info.OperatingSystem = Model.System.OperatingSystem.Linux;
2016-11-11 03:13:11 -05:00
}
else if (string.Equals(sysName, "BSD", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 16:19:02 -04:00
info.OperatingSystem = Model.System.OperatingSystem.BSD;
2016-11-11 03:13:11 -05:00
}
var archX86 = new Regex("(i|I)[3-6]86");
if (archX86.IsMatch(uname.machine))
{
2017-08-17 16:19:02 -04:00
info.SystemArchitecture = Architecture.X86;
2016-11-11 03:13:11 -05:00
}
else if (string.Equals(uname.machine, "x86_64", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 16:19:02 -04:00
info.SystemArchitecture = Architecture.X64;
2016-11-11 03:13:11 -05:00
}
else if (uname.machine.StartsWith("arm", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 16:19:02 -04:00
info.SystemArchitecture = Architecture.Arm;
2016-11-11 03:13:11 -05:00
}
else if (System.Environment.Is64BitOperatingSystem)
{
2017-08-17 16:19:02 -04:00
info.SystemArchitecture = Architecture.X64;
2016-11-11 03:13:11 -05:00
}
else
{
2017-08-17 16:19:02 -04:00
info.SystemArchitecture = Architecture.X86;
2016-11-11 03:13:11 -05:00
}
return info;
}
private static Uname _unixName;
private static Uname GetUnixName()
{
if (_unixName == null)
{
var uname = new Uname();
try
{
Utsname utsname;
var callResult = Syscall.uname(out utsname);
if (callResult == 0)
{
uname.sysname = utsname.sysname ?? string.Empty;
uname.machine = utsname.machine ?? string.Empty;
}
}
catch (Exception ex)
{
_logger.ErrorException("Error getting unix name", ex);
}
_unixName = uname;
}
return _unixName;
}
public class Uname
{
public string sysname = string.Empty;
public string machine = string.Empty;
}
2015-05-23 18:28:26 -04:00
/// <summary>
/// Handles the UnhandledException event of the CurrentDomain control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="UnhandledExceptionEventArgs"/> instance containing the event data.</param>
static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
var exception = (Exception)e.ExceptionObject;
2013-09-26 17:20:26 -04:00
2017-09-09 14:51:24 -04:00
new UnhandledExceptionWriter(_appPaths, _logger, _logManager, FileSystem, new ConsoleLogger()).Log(exception);
2013-09-26 17:20:26 -04:00
2015-05-23 18:28:26 -04:00
if (!Debugger.IsAttached)
{
var message = LogHelper.GetLogMessage(exception).ToString();
2017-05-28 11:56:12 -04:00
if (message.IndexOf("InotifyWatcher", StringComparison.OrdinalIgnoreCase) == -1 &&
message.IndexOf("_IOCompletionCallback", StringComparison.OrdinalIgnoreCase) == -1)
{
Environment.Exit(System.Runtime.InteropServices.Marshal.GetHRForException(exception));
}
2015-05-23 18:28:26 -04:00
}
}
2013-09-26 17:20:26 -04:00
2015-05-23 18:28:26 -04:00
public static void Shutdown()
{
ApplicationTaskCompletionSource.SetResult(true);
}
2015-05-23 18:01:13 -04:00
2017-08-28 14:19:23 -04:00
public static void Restart()
2015-05-23 18:01:13 -04:00
{
2017-08-28 14:19:23 -04:00
_restartOnShutdown = true;
Shutdown();
}
2015-05-23 18:01:13 -04:00
2017-08-28 14:19:23 -04:00
private static void StartNewInstance(StartupOptions startupOptions)
{
2015-05-23 18:01:13 -04:00
_logger.Info("Starting new instance");
2015-06-05 10:27:01 -04:00
string module = startupOptions.GetOption("-restartpath");
string commandLineArgsString = startupOptions.GetOption("-restartargs") ?? string.Empty;
2015-05-23 18:01:13 -04:00
2015-06-05 10:27:01 -04:00
if (string.IsNullOrWhiteSpace(module))
{
module = Environment.GetCommandLineArgs().First();
}
if (!startupOptions.ContainsOption("-restartargs"))
{
var args = Environment.GetCommandLineArgs()
2017-08-28 14:19:23 -04:00
.Skip(1)
.Select(NormalizeCommandLineArgument)
.ToArray();
2015-06-05 10:27:01 -04:00
2017-08-24 15:52:19 -04:00
commandLineArgsString = string.Join(" ", args);
2015-06-05 10:27:01 -04:00
}
2015-05-23 18:28:26 -04:00
_logger.Info("Executable: {0}", module);
_logger.Info("Arguments: {0}", commandLineArgsString);
2015-05-23 18:01:13 -04:00
2015-05-23 18:28:26 -04:00
Process.Start(module, commandLineArgsString);
2015-05-23 18:01:13 -04:00
}
2015-05-23 18:28:26 -04:00
private static string NormalizeCommandLineArgument(string arg)
{
if (arg.IndexOf(" ", StringComparison.OrdinalIgnoreCase) == -1)
{
2015-05-23 18:01:13 -04:00
return arg;
2015-05-23 18:28:26 -04:00
}
2015-05-23 18:01:13 -04:00
return "\"" + arg + "\"";
2015-05-23 18:28:26 -04:00
}
}
class NoCheckCertificatePolicy : ICertificatePolicy
{
public bool CheckValidationResult(ServicePoint srvPoint, X509Certificate certificate, WebRequest request, int certificateProblem)
{
return true;
}
}
2016-11-11 03:13:11 -05:00
public class MonoEnvironmentInfo : EnvironmentInfo
{
2016-11-14 15:05:38 -05:00
public override string GetUserId()
2016-11-13 16:04:21 -05:00
{
return Syscall.getuid().ToString(CultureInfo.InvariantCulture);
}
2016-11-11 03:13:11 -05:00
}
2013-09-24 17:06:21 -04:00
}