You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using Emby.Server.Implementations;
|
|
using Emby.Server.Implementations.HttpServer;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Jellyfin.Server
|
|
{
|
|
public class CoreAppHost : ApplicationHost
|
|
{
|
|
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)
|
|
{
|
|
}
|
|
|
|
public override bool CanSelfRestart => StartupOptions.RestartPath != null;
|
|
|
|
protected override void RestartInternal() => Program.Restart();
|
|
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
|
{
|
|
yield return typeof(CoreAppHost).Assembly;
|
|
}
|
|
|
|
protected override void ShutdownInternal() => Program.Shutdown();
|
|
}
|
|
}
|