jellyfin/MediaBrowser.Server.Mono/Program.cs

327 lines
12 KiB
C#
Raw Normal View History

2013-09-26 23:20:26 +02:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Server.Mono.Native;
using MediaBrowser.Server.Startup.Common;
2013-09-24 23:06:21 +02:00
using System;
2013-09-26 23:20:26 +02:00
using System.Diagnostics;
2016-11-13 22:04:21 +01:00
using System.Globalization;
2015-05-24 00:01:13 +02:00
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Security;
2014-10-07 01:58:46 +02:00
using System.Reflection;
2016-11-11 09:13:11 +01:00
using System.Text.RegularExpressions;
2013-09-26 23:20:26 +02:00
using System.Threading.Tasks;
2017-09-09 20:51:24 +02:00
using Emby.Drawing;
2016-11-18 22:06:00 +01:00
using Emby.Server.Implementations;
using Emby.Server.Implementations.EnvironmentInfo;
2016-11-11 08:24:36 +01:00
using Emby.Server.Implementations.IO;
2017-02-20 21:50:58 +01:00
using Emby.Server.Implementations.Logging;
using Emby.Server.Implementations.Networking;
2017-09-09 20:51:24 +02:00
using MediaBrowser.Controller;
2017-02-20 21:50:58 +01:00
using MediaBrowser.Model.IO;
2016-11-11 09:13:11 +01:00
using MediaBrowser.Model.System;
using Mono.Unix.Native;
using ILogger = MediaBrowser.Model.Logging.ILogger;
2016-11-11 20:55:12 +01:00
using X509Certificate = System.Security.Cryptography.X509Certificates.X509Certificate;
2018-09-12 19:26:21 +02:00
using System.Threading;
using InteropServices = System.Runtime.InteropServices;
2013-09-24 23:06:21 +02:00
namespace MediaBrowser.Server.Mono
{
2015-05-24 00:28:26 +02:00
public class MainClass
{
private static ILogger _logger;
2017-02-20 21:50:58 +01:00
private static IFileSystem FileSystem;
2017-09-09 20:51:24 +02:00
private static IServerApplicationPaths _appPaths;
private static ILogManager _logManager;
2013-09-26 23:20:26 +02:00
2017-08-28 20:19:23 +02:00
private static readonly TaskCompletionSource<bool> ApplicationTaskCompletionSource = new TaskCompletionSource<bool>();
private static bool _restartOnShutdown;
2015-05-24 00:28:26 +02:00
public static void Main(string[] args)
{
2014-11-14 07:27:10 +01:00
var applicationPath = Assembly.GetEntryAssembly().Location;
2016-11-21 18:25:42 +01:00
SetSqliteProvider();
2014-09-14 17:26:33 +02:00
2016-11-18 22:06:00 +01:00
var options = new StartupOptions(Environment.GetCommandLineArgs());
2015-05-24 00:28:26 +02:00
// Allow this to be specified on the command line.
var customProgramDataPath = options.GetOption("-programdata");
2015-05-24 00:28:26 +02:00
var appPaths = CreateApplicationPaths(applicationPath, customProgramDataPath);
2017-09-09 20:51:24 +02:00
_appPaths = appPaths;
2013-09-26 23:20:26 +02:00
2017-09-05 21:49:02 +02:00
using (var logManager = new SimpleLogManager(appPaths.LogDirectoryPath, "server"))
{
2017-09-09 20:51:24 +02:00
_logManager = logManager;
2018-09-12 19:26:21 +02:00
var task = logManager.ReloadLogger(LogSeverity.Debug, CancellationToken.None);
Task.WaitAll(task);
2017-09-05 21:49:02 +02:00
logManager.AddConsoleOutput();
2013-09-26 23:20:26 +02:00
2017-09-05 21:49:02 +02:00
var logger = _logger = logManager.GetLogger("Main");
2013-09-26 23:20:26 +02:00
2017-09-05 21:49:02 +02:00
ApplicationHost.LogEnvironmentInfo(logger, appPaths, true);
2013-09-26 23:20:26 +02:00
2017-09-05 21:49:02 +02:00
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
2017-08-28 20:19:23 +02:00
2017-09-10 02:24:45 +02:00
RunApplication(appPaths, logManager, options);
_logger.Info("Disposing app host");
2017-09-05 21:49:02 +02:00
2017-09-10 02:24:45 +02:00
if (_restartOnShutdown)
{
StartNewInstance(options);
2017-08-28 20:19:23 +02:00
}
2015-05-24 00:28:26 +02:00
}
}
2013-09-26 23:20:26 +02:00
2016-11-21 18:25:42 +01:00
private static void SetSqliteProvider()
{
2018-09-12 19:26:21 +02:00
// SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_sqlite3());
//SQLitePCL.raw.SetProvider(new SQLitePCL.SQLite3Provider_sqlite3());
SQLitePCL.Batteries_V2.Init();
2016-11-21 18:25:42 +01:00
}
2015-05-24 00:28:26 +02:00
private static ServerApplicationPaths CreateApplicationPaths(string applicationPath, string programDataPath)
{
if (string.IsNullOrEmpty(programDataPath))
{
if (InteropServices.RuntimeInformation.IsOSPlatform(InteropServices.OSPlatform.Windows))
{
programDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
}
else
{
// $XDG_DATA_HOME defines the base directory relative to which user specific data files should be stored.
programDataPath = Environment.GetEnvironmentVariable("XDG_DATA_HOME");
// If $XDG_DATA_HOME is either not set or empty, $HOME/.local/share should be used.
if (string.IsNullOrEmpty(programDataPath)){
programDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".local", "share");
}
}
programDataPath = Path.Combine(programDataPath, "jellyfin");
2015-05-24 00:28:26 +02:00
}
2013-09-26 23:20:26 +02:00
2016-11-13 22:04:21 +01:00
var appFolderPath = Path.GetDirectoryName(applicationPath);
return new ServerApplicationPaths(programDataPath, appFolderPath, appFolderPath);
2015-05-24 00:28:26 +02:00
}
2013-09-26 23:20:26 +02:00
2015-05-24 00:28:26 +02:00
private static void RunApplication(ServerApplicationPaths appPaths, ILogManager logManager, StartupOptions options)
{
// Allow all https requests
2017-08-03 18:26:01 +02:00
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(delegate { return true; });
2017-03-10 20:51:29 +01:00
var environmentInfo = GetEnvironmentInfo();
2014-10-07 01:58:46 +02:00
2018-09-12 19:26:21 +02:00
var fileSystem = new ManagedFileSystem(logManager.GetLogger("FileSystem"), environmentInfo, null, appPaths.TempDirectory, true);
2017-02-20 21:50:58 +01:00
2017-03-10 20:51:29 +01:00
FileSystem = fileSystem;
2017-09-09 20:51:24 +02:00
using (var appHost = new MonoAppHost(appPaths,
2016-11-11 20:55:12 +01:00
logManager,
options,
fileSystem,
new PowerManagement(),
2018-09-12 19:26:21 +02:00
"embyserver-mono_{version}.zip",
2016-11-11 20:55:12 +01:00
environmentInfo,
2017-09-09 20:51:24 +02:00
new NullImageEncoder(),
new SystemEvents(logManager.GetLogger("SystemEvents")),
2018-09-12 19:26:21 +02:00
new NetworkManager(logManager.GetLogger("NetworkManager"), environmentInfo)))
2015-05-24 00:28:26 +02:00
{
2017-09-09 20:51:24 +02:00
if (options.ContainsOption("-v"))
{
Console.WriteLine(appHost.ApplicationVersion.ToString());
return;
}
2015-05-24 00:28:26 +02:00
2017-09-09 20:51:24 +02:00
Console.WriteLine("appHost.Init");
2015-05-24 00:28:26 +02:00
2018-09-12 19:26:21 +02:00
appHost.Init();
2015-05-24 00:28:26 +02:00
appHost.ImageProcessor.ImageEncoder = ImageEncoderHelper.GetImageEncoder(_logger, logManager, fileSystem, options, () => appHost.HttpClient, appPaths, environmentInfo, appHost.LocalizationManager);
2017-09-11 20:49:20 +02:00
2017-09-09 20:51:24 +02:00
Console.WriteLine("Running startup tasks");
2015-05-24 00:28:26 +02:00
2018-09-12 19:26:21 +02:00
var task = appHost.RunStartupTasks();
2017-09-09 20:51:24 +02:00
Task.WaitAll(task);
2015-05-24 00:28:26 +02:00
2017-09-09 20:51:24 +02:00
task = ApplicationTaskCompletionSource.Task;
Task.WaitAll(task);
}
2015-05-24 00:28:26 +02:00
}
2016-11-11 09:13:11 +01: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 22:19:02 +02:00
info.OperatingSystem = Model.System.OperatingSystem.OSX;
2016-11-11 09:13:11 +01:00
}
else if (string.Equals(sysName, "Linux", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 22:19:02 +02:00
info.OperatingSystem = Model.System.OperatingSystem.Linux;
2016-11-11 09:13:11 +01:00
}
else if (string.Equals(sysName, "BSD", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 22:19:02 +02:00
info.OperatingSystem = Model.System.OperatingSystem.BSD;
2016-11-11 09:13:11 +01:00
}
var archX86 = new Regex("(i|I)[3-6]86");
if (archX86.IsMatch(uname.machine))
{
2017-08-17 22:19:02 +02:00
info.SystemArchitecture = Architecture.X86;
2016-11-11 09:13:11 +01:00
}
else if (string.Equals(uname.machine, "x86_64", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 22:19:02 +02:00
info.SystemArchitecture = Architecture.X64;
2016-11-11 09:13:11 +01:00
}
else if (uname.machine.StartsWith("arm", StringComparison.OrdinalIgnoreCase))
{
2017-08-17 22:19:02 +02:00
info.SystemArchitecture = Architecture.Arm;
2016-11-11 09:13:11 +01:00
}
else if (System.Environment.Is64BitOperatingSystem)
{
2017-08-17 22:19:02 +02:00
info.SystemArchitecture = Architecture.X64;
2016-11-11 09:13:11 +01:00
}
else
{
2017-08-17 22:19:02 +02:00
info.SystemArchitecture = Architecture.X86;
2016-11-11 09:13:11 +01: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-24 00:28:26 +02: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 23:20:26 +02:00
2017-09-09 20:51:24 +02:00
new UnhandledExceptionWriter(_appPaths, _logger, _logManager, FileSystem, new ConsoleLogger()).Log(exception);
2013-09-26 23:20:26 +02:00
2015-05-24 00:28:26 +02:00
if (!Debugger.IsAttached)
{
var message = LogHelper.GetLogMessage(exception).ToString();
2017-05-28 17:56:12 +02:00
if (message.IndexOf("InotifyWatcher", StringComparison.OrdinalIgnoreCase) == -1 &&
message.IndexOf("_IOCompletionCallback", StringComparison.OrdinalIgnoreCase) == -1)
{
Environment.Exit(System.Runtime.InteropServices.Marshal.GetHRForException(exception));
}
2015-05-24 00:28:26 +02:00
}
}
2013-09-26 23:20:26 +02:00
2015-05-24 00:28:26 +02:00
public static void Shutdown()
{
ApplicationTaskCompletionSource.SetResult(true);
}
2015-05-24 00:01:13 +02:00
2017-08-28 20:19:23 +02:00
public static void Restart()
2015-05-24 00:01:13 +02:00
{
2017-08-28 20:19:23 +02:00
_restartOnShutdown = true;
Shutdown();
}
2015-05-24 00:01:13 +02:00
2017-08-28 20:19:23 +02:00
private static void StartNewInstance(StartupOptions startupOptions)
{
2015-05-24 00:01:13 +02:00
_logger.Info("Starting new instance");
2015-06-05 16:27:01 +02:00
string module = startupOptions.GetOption("-restartpath");
string commandLineArgsString = startupOptions.GetOption("-restartargs") ?? string.Empty;
2015-05-24 00:01:13 +02:00
2015-06-05 16:27:01 +02:00
if (string.IsNullOrWhiteSpace(module))
{
module = Environment.GetCommandLineArgs().First();
}
if (!startupOptions.ContainsOption("-restartargs"))
{
var args = Environment.GetCommandLineArgs()
2017-08-28 20:19:23 +02:00
.Skip(1)
.Select(NormalizeCommandLineArgument)
.ToArray();
2015-06-05 16:27:01 +02:00
2017-08-24 21:52:19 +02:00
commandLineArgsString = string.Join(" ", args);
2015-06-05 16:27:01 +02:00
}
2015-05-24 00:28:26 +02:00
_logger.Info("Executable: {0}", module);
_logger.Info("Arguments: {0}", commandLineArgsString);
2015-05-24 00:01:13 +02:00
2015-05-24 00:28:26 +02:00
Process.Start(module, commandLineArgsString);
2015-05-24 00:01:13 +02:00
}
2015-05-24 00:28:26 +02:00
private static string NormalizeCommandLineArgument(string arg)
{
if (arg.IndexOf(" ", StringComparison.OrdinalIgnoreCase) == -1)
{
2015-05-24 00:01:13 +02:00
return arg;
2015-05-24 00:28:26 +02:00
}
2015-05-24 00:01:13 +02:00
return "\"" + arg + "\"";
2015-05-24 00:28:26 +02:00
}
}
2018-09-12 19:26:21 +02:00
// class NoCheckCertificatePolicy : ICertificatePolicy
// {
// public bool CheckValidationResult(ServicePoint srvPoint, X509Certificate certificate, WebRequest request, int certificateProblem)
// {
// return true;
// }
// }
2016-11-11 09:13:11 +01:00
public class MonoEnvironmentInfo : EnvironmentInfo
{
2018-09-12 19:26:21 +02:00
//public override string GetUserId()
//{
// return Syscall.getuid().ToString(CultureInfo.InvariantCulture);
//}
2016-11-11 09:13:11 +01:00
}
2013-09-24 23:06:21 +02:00
}