jellyfin/Jellyfin.Server/CoreAppHost.cs

114 lines
4.8 KiB
C#
Raw Normal View History

using System;
2019-01-01 10:27:11 -05:00
using System.Collections.Generic;
2020-05-14 17:13:45 -04:00
using System.IO;
2019-01-01 10:27:11 -05:00
using System.Reflection;
using Emby.Drawing;
2019-01-01 10:27:11 -05:00
using Emby.Server.Implementations;
using Emby.Server.Implementations.Session;
using Jellyfin.Api.WebSocketListeners;
using Jellyfin.Drawing.Skia;
2020-05-14 17:13:45 -04:00
using Jellyfin.Server.Implementations;
using Jellyfin.Server.Implementations.Activity;
2020-08-15 15:56:56 -04:00
using Jellyfin.Server.Implementations.Events;
2020-05-15 17:24:01 -04:00
using Jellyfin.Server.Implementations.Users;
2019-06-09 18:53:16 -04:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
2019-06-09 18:53:16 -04:00
using MediaBrowser.Controller.Drawing;
2020-08-15 15:56:56 -04:00
using MediaBrowser.Controller.Events;
2020-05-15 17:24:01 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
2020-05-14 17:13:45 -04:00
using MediaBrowser.Model.Activity;
2019-01-01 10:27:11 -05:00
using MediaBrowser.Model.IO;
2020-05-14 17:13:45 -04:00
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
2019-01-01 10:27:11 -05:00
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
/// <summary>
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
/// </summary>
2019-01-01 10:27:11 -05:00
public class CoreAppHost : ApplicationHost
{
/// <summary>
/// Initializes a new instance of the <see cref="CoreAppHost" /> class.
/// </summary>
/// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="fileSystem">The <see cref="IFileSystem" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="networkManager">The <see cref="INetworkManager" /> to be used by the <see cref="CoreAppHost" />.</param>
2020-08-16 17:25:14 -04:00
/// <param name="collection">The <see cref="IServiceCollection"/> to be used by the <see cref="CoreAppHost"/>.</param>
public CoreAppHost(
IServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
IStartupOptions options,
IFileSystem fileSystem,
2020-08-16 17:25:14 -04:00
INetworkManager networkManager,
IServiceCollection collection)
: base(
applicationPaths,
loggerFactory,
options,
fileSystem,
2020-08-16 17:25:14 -04:00
networkManager,
collection)
2019-01-01 10:27:11 -05:00
{
}
/// <inheritdoc/>
2020-08-16 17:25:14 -04:00
protected override void RegisterServices()
{
// Register an image encoder
bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
Type imageEncoderType = useSkiaEncoder
? typeof(SkiaEncoder)
: typeof(NullImageEncoder);
2020-08-16 17:25:14 -04:00
ServiceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
// Log a warning if the Skia encoder could not be used
if (!useSkiaEncoder)
{
Logger.LogWarning($"Skia not available. Will fallback to {nameof(NullImageEncoder)}.");
}
ServiceCollection.AddDbContextPool<JellyfinDb>(
2020-08-08 13:32:17 -04:00
options => options.UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
2020-05-14 17:13:45 -04:00
2020-08-16 17:25:14 -04:00
ServiceCollection.AddEventServices();
ServiceCollection.AddSingleton<IEventManager, EventManager>();
ServiceCollection.AddSingleton<JellyfinDbProvider>();
2020-05-14 17:13:45 -04:00
2020-08-16 17:25:14 -04:00
ServiceCollection.AddSingleton<IActivityManager, ActivityManager>();
ServiceCollection.AddSingleton<IUserManager, UserManager>();
ServiceCollection.AddSingleton<IDisplayPreferencesManager, DisplayPreferencesManager>();
2020-05-14 17:13:45 -04:00
ServiceCollection.AddScoped<IWebSocketListener, SessionWebSocketListener>();
ServiceCollection.AddScoped<IWebSocketListener, ActivityLogWebSocketListener>();
ServiceCollection.AddScoped<IWebSocketListener, ScheduledTasksWebSocketListener>();
ServiceCollection.AddScoped<IWebSocketListener, SessionInfoWebSocketListener>();
// TODO fix circular dependency on IWebSocketManager
ServiceCollection.AddScoped(serviceProvider => new Lazy<IEnumerable<IWebSocketListener>>(serviceProvider.GetRequiredService<IEnumerable<IWebSocketListener>>));
2020-08-16 17:25:14 -04:00
base.RegisterServices();
}
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override void RestartInternal() => Program.Restart();
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 08:04:32 -05:00
{
// Jellyfin.Server
2019-02-06 08:04:32 -05:00
yield return typeof(CoreAppHost).Assembly;
// Jellyfin.Server.Implementations
yield return typeof(JellyfinDb).Assembly;
2019-02-06 08:04:32 -05:00
}
2019-01-01 10:27:11 -05:00
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override void ShutdownInternal() => Program.Shutdown();
}
}