2019-01-01 15:27:11 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Reflection;
|
|
|
|
using Emby.Server.Implementations;
|
|
|
|
using Emby.Server.Implementations.HttpServer;
|
|
|
|
using Jellyfin.SocketSharp;
|
|
|
|
using MediaBrowser.Model.IO;
|
|
|
|
using MediaBrowser.Model.System;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
|
|
|
public class CoreAppHost : ApplicationHost
|
|
|
|
{
|
2019-01-02 14:57:48 +00:00
|
|
|
public CoreAppHost(ServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory, StartupOptions options, IFileSystem fileSystem, IEnvironmentInfo environmentInfo, MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder, ISystemEvents systemEvents, MediaBrowser.Common.Net.INetworkManager networkManager)
|
|
|
|
: base(applicationPaths, loggerFactory, options, fileSystem, environmentInfo, imageEncoder, systemEvents, networkManager)
|
2019-01-01 15:27:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public override bool CanSelfRestart => StartupOptions.ContainsOption("-restartpath");
|
2019-01-01 15:27:11 +00:00
|
|
|
|
|
|
|
protected override void RestartInternal() => Program.Restart();
|
|
|
|
|
|
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
2019-01-13 19:24:27 +00:00
|
|
|
=> new[] { typeof(CoreAppHost).Assembly };
|
2019-01-01 15:27:11 +00:00
|
|
|
|
|
|
|
protected override void ShutdownInternal() => Program.Shutdown();
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
protected override bool SupportsDualModeSockets => true;
|
2019-01-01 15:27:11 +00:00
|
|
|
|
|
|
|
protected override IHttpListener CreateHttpListener()
|
|
|
|
=> new WebSocketSharpListener(
|
|
|
|
Logger,
|
|
|
|
Certificate,
|
|
|
|
StreamHelper,
|
|
|
|
NetworkManager,
|
|
|
|
SocketFactory,
|
|
|
|
CryptographyProvider,
|
|
|
|
SupportsDualModeSockets,
|
|
|
|
FileSystemManager,
|
|
|
|
EnvironmentInfo
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|