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 MediaBrowser.Model.IO;
|
2019-02-17 10:54:47 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2019-01-01 15:27:11 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
|
|
|
public class CoreAppHost : ApplicationHost
|
|
|
|
{
|
2019-02-17 10:54:47 +00:00
|
|
|
public CoreAppHost(
|
|
|
|
ServerApplicationPaths applicationPaths,
|
|
|
|
ILoggerFactory loggerFactory,
|
|
|
|
StartupOptions options,
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
MediaBrowser.Controller.Drawing.IImageEncoder imageEncoder,
|
|
|
|
MediaBrowser.Common.Net.INetworkManager networkManager,
|
|
|
|
IConfiguration configuration)
|
|
|
|
: base(
|
|
|
|
applicationPaths,
|
|
|
|
loggerFactory,
|
|
|
|
options,
|
|
|
|
fileSystem,
|
|
|
|
imageEncoder,
|
|
|
|
networkManager,
|
|
|
|
configuration)
|
2019-01-01 15:27:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-28 13:41:37 +00:00
|
|
|
public override bool CanSelfRestart => StartupOptions.RestartPath != null;
|
2019-01-01 15:27:11 +00:00
|
|
|
|
|
|
|
protected override void RestartInternal() => Program.Restart();
|
|
|
|
|
|
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
2019-02-06 13:04:32 +00:00
|
|
|
{
|
|
|
|
yield return typeof(CoreAppHost).Assembly;
|
|
|
|
}
|
2019-01-01 15:27:11 +00:00
|
|
|
|
|
|
|
protected override void ShutdownInternal() => Program.Shutdown();
|
|
|
|
}
|
|
|
|
}
|