jellyfin/Jellyfin.Server/CoreAppHost.cs

95 lines
3.7 KiB
C#
Raw Normal View History

using System;
2019-01-01 16:27:11 +01:00
using System.Collections.Generic;
2020-05-14 23:13:45 +02:00
using System.IO;
2019-01-01 16:27:11 +01:00
using System.Reflection;
using Emby.Drawing;
2019-01-01 16:27:11 +01:00
using Emby.Server.Implementations;
using Jellyfin.Drawing.Skia;
2020-05-14 23:13:45 +02:00
using Jellyfin.Server.Implementations;
using Jellyfin.Server.Implementations.Activity;
2020-05-15 23:24:01 +02:00
using Jellyfin.Server.Implementations.Users;
2019-06-10 00:53:16 +02:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Drawing;
2020-05-15 23:24:01 +02:00
using MediaBrowser.Controller.Library;
2020-05-14 23:13:45 +02:00
using MediaBrowser.Model.Activity;
2019-01-01 16:27:11 +01:00
using MediaBrowser.Model.IO;
2020-05-14 23:13:45 +02:00
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
2019-01-01 16:27:11 +01:00
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
/// <summary>
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
/// </summary>
2019-01-01 16:27:11 +01: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>
public CoreAppHost(
ServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
StartupOptions options,
IFileSystem fileSystem,
INetworkManager networkManager)
: base(
applicationPaths,
loggerFactory,
options,
fileSystem,
networkManager)
2019-01-01 16:27:11 +01:00
{
}
/// <inheritdoc/>
protected override void RegisterServices(IServiceCollection serviceCollection)
{
// Register an image encoder
bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
Type imageEncoderType = useSkiaEncoder
? typeof(SkiaEncoder)
: typeof(NullImageEncoder);
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)}.");
}
2020-05-14 23:13:45 +02:00
// TODO: Set up scoping and use AddDbContextPool
serviceCollection.AddDbContext<JellyfinDb>(
2020-05-20 01:05:17 +02:00
options => options
.UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}")
.UseLazyLoadingProxies(),
ServiceLifetime.Transient);
2020-05-14 23:13:45 +02:00
serviceCollection.AddSingleton<JellyfinDbProvider>();
serviceCollection.AddSingleton<IActivityManager, ActivityManager>();
2020-05-15 23:24:01 +02:00
serviceCollection.AddSingleton<IUserManager, UserManager>();
2020-05-14 23:13:45 +02:00
base.RegisterServices(serviceCollection);
}
/// <inheritdoc />
2019-01-01 16:27:11 +01:00
protected override void RestartInternal() => Program.Restart();
/// <inheritdoc />
2019-01-01 16:27:11 +01:00
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 14:04:32 +01:00
{
yield return typeof(CoreAppHost).Assembly;
2020-05-23 22:07:42 +02:00
yield return Assembly.Load("Jellyfin.Server.Implementations");
2019-02-06 14:04:32 +01:00
}
2019-01-01 16:27:11 +01:00
/// <inheritdoc />
2019-01-01 16:27:11 +01:00
protected override void ShutdownInternal() => Program.Shutdown();
}
}