jellyfin/Jellyfin.Server/CoreAppHost.cs

45 lines
1.6 KiB
C#
Raw Normal View History

2019-01-01 10:27:11 -05:00
using System.Collections.Generic;
using System.Reflection;
using Emby.Server.Implementations;
using Emby.Server.Implementations.HttpServer;
using Jellyfin.Server.SocketSharp;
2019-01-01 10:27:11 -05:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.System;
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
public class CoreAppHost : ApplicationHost
{
2019-01-25 16:41:43 -05:00
public CoreAppHost(ServerApplicationPaths applicationPaths, ILoggerFactory loggerFactory, StartupOptions options, IFileSystem fileSystem, IEnvironmentInfo environmentInfo, MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder, MediaBrowser.Common.Net.INetworkManager networkManager)
: base(applicationPaths, loggerFactory, options, fileSystem, environmentInfo, imageEncoder, networkManager)
2019-01-01 10:27:11 -05:00
{
}
public override bool CanSelfRestart => StartupOptions.RestartPath != null;
2019-01-01 10:27:11 -05:00
2019-02-13 11:06:32 -05:00
protected override bool SupportsDualModeSockets => true;
2019-01-01 10:27:11 -05:00
protected override void RestartInternal() => Program.Restart();
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 08:04:32 -05:00
{
yield return typeof(CoreAppHost).Assembly;
}
2019-01-01 10:27:11 -05:00
protected override void ShutdownInternal() => Program.Shutdown();
protected override IHttpListener CreateHttpListener()
=> new WebSocketSharpListener(
Logger,
Certificate,
StreamHelper,
NetworkManager,
SocketFactory,
CryptographyProvider,
SupportsDualModeSockets,
FileSystemManager,
2019-02-13 11:06:32 -05:00
EnvironmentInfo);
2019-01-01 10:27:11 -05:00
}
}