2020-04-17 14:24:46 +00:00
|
|
|
using System;
|
2019-01-01 15:27:11 +00:00
|
|
|
using System.Collections.Generic;
|
2020-05-14 21:13:45 +00:00
|
|
|
using System.IO;
|
2019-01-01 15:27:11 +00:00
|
|
|
using System.Reflection;
|
2020-04-05 14:03:53 +00:00
|
|
|
using Emby.Drawing;
|
2019-01-01 15:27:11 +00:00
|
|
|
using Emby.Server.Implementations;
|
2020-04-05 14:03:53 +00:00
|
|
|
using Jellyfin.Drawing.Skia;
|
2020-05-14 21:13:45 +00:00
|
|
|
using Jellyfin.Server.Implementations;
|
|
|
|
using Jellyfin.Server.Implementations.Activity;
|
2020-08-15 19:56:56 +00:00
|
|
|
using Jellyfin.Server.Implementations.Events;
|
2020-05-15 21:24:01 +00:00
|
|
|
using Jellyfin.Server.Implementations.Users;
|
2019-06-09 22:53:16 +00:00
|
|
|
using MediaBrowser.Common.Net;
|
2020-06-30 03:00:46 +00:00
|
|
|
using MediaBrowser.Controller;
|
2019-06-09 22:53:16 +00:00
|
|
|
using MediaBrowser.Controller.Drawing;
|
2020-08-15 19:56:56 +00:00
|
|
|
using MediaBrowser.Controller.Events;
|
2020-05-15 21:24:01 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2020-05-14 21:13:45 +00:00
|
|
|
using MediaBrowser.Model.Activity;
|
2019-01-01 15:27:11 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
2020-05-14 21:13:45 +00:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
2020-04-05 14:03:53 +00:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2019-01-01 15:27:11 +00:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server
|
|
|
|
{
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
|
|
|
|
/// </summary>
|
2019-01-01 15:27:11 +00:00
|
|
|
public class CoreAppHost : ApplicationHost
|
|
|
|
{
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <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>
|
2020-08-16 21:25:14 +00:00
|
|
|
/// <param name="collection">The <see cref="IServiceCollection"/> to be used by the <see cref="CoreAppHost"/>.</param>
|
2019-02-17 10:54:47 +00:00
|
|
|
public CoreAppHost(
|
2020-06-30 03:00:46 +00:00
|
|
|
IServerApplicationPaths applicationPaths,
|
2019-02-17 10:54:47 +00:00
|
|
|
ILoggerFactory loggerFactory,
|
2020-06-30 03:00:46 +00:00
|
|
|
IStartupOptions options,
|
2019-02-17 10:54:47 +00:00
|
|
|
IFileSystem fileSystem,
|
2020-08-16 21:25:14 +00:00
|
|
|
IServiceCollection collection)
|
2019-02-17 10:54:47 +00:00
|
|
|
: base(
|
|
|
|
applicationPaths,
|
|
|
|
loggerFactory,
|
|
|
|
options,
|
|
|
|
fileSystem,
|
2020-08-16 21:25:14 +00:00
|
|
|
collection)
|
2019-01-01 15:27:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-05 14:03:53 +00:00
|
|
|
/// <inheritdoc/>
|
2020-08-16 21:25:14 +00:00
|
|
|
protected override void RegisterServices()
|
2020-04-05 14:03:53 +00:00
|
|
|
{
|
2020-04-17 14:24:46 +00:00
|
|
|
// Register an image encoder
|
|
|
|
bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
|
|
|
|
Type imageEncoderType = useSkiaEncoder
|
2020-04-05 14:03:53 +00:00
|
|
|
? typeof(SkiaEncoder)
|
|
|
|
: typeof(NullImageEncoder);
|
2020-08-16 21:25:14 +00:00
|
|
|
ServiceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
|
2020-04-05 14:03:53 +00:00
|
|
|
|
2020-04-17 14:24:46 +00:00
|
|
|
// Log a warning if the Skia encoder could not be used
|
|
|
|
if (!useSkiaEncoder)
|
|
|
|
{
|
|
|
|
Logger.LogWarning($"Skia not available. Will fallback to {nameof(NullImageEncoder)}.");
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:03:08 +00:00
|
|
|
ServiceCollection.AddDbContextPool<JellyfinDb>(
|
2020-08-08 17:32:17 +00:00
|
|
|
options => options.UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
|
2020-05-14 21:13:45 +00:00
|
|
|
|
2020-08-16 21:25:14 +00:00
|
|
|
ServiceCollection.AddEventServices();
|
|
|
|
ServiceCollection.AddSingleton<IEventManager, EventManager>();
|
|
|
|
ServiceCollection.AddSingleton<JellyfinDbProvider>();
|
2020-05-14 21:13:45 +00:00
|
|
|
|
2020-08-16 21:25:14 +00:00
|
|
|
ServiceCollection.AddSingleton<IActivityManager, ActivityManager>();
|
|
|
|
ServiceCollection.AddSingleton<IUserManager, UserManager>();
|
|
|
|
ServiceCollection.AddSingleton<IDisplayPreferencesManager, DisplayPreferencesManager>();
|
2020-05-14 21:13:45 +00:00
|
|
|
|
2020-08-16 21:25:14 +00:00
|
|
|
base.RegisterServices();
|
2020-04-05 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-01 15:27:11 +00:00
|
|
|
protected override void RestartInternal() => Program.Restart();
|
|
|
|
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-01 15:27:11 +00:00
|
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
2019-02-06 13:04:32 +00:00
|
|
|
{
|
2020-05-31 21:00:57 +00:00
|
|
|
// Jellyfin.Server
|
2019-02-06 13:04:32 +00:00
|
|
|
yield return typeof(CoreAppHost).Assembly;
|
2020-05-31 21:00:57 +00:00
|
|
|
|
|
|
|
// Jellyfin.Server.Implementations
|
|
|
|
yield return typeof(JellyfinDb).Assembly;
|
2019-02-06 13:04:32 +00:00
|
|
|
}
|
2019-01-01 15:27:11 +00:00
|
|
|
|
2019-08-11 13:11:53 +00:00
|
|
|
/// <inheritdoc />
|
2019-01-01 15:27:11 +00:00
|
|
|
protected override void ShutdownInternal() => Program.Shutdown();
|
|
|
|
}
|
|
|
|
}
|