< Summary - Jellyfin

Information
Class: Jellyfin.Server.CoreAppHost
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/CoreAppHost.cs
Line coverage
94%
Covered lines: 34
Uncovered lines: 2
Coverable lines: 36
Total lines: 130
Line coverage: 94.4%
Branch coverage
62%
Covered branches: 5
Total branches: 8
Branch coverage: 62.5%
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
RegisterServices(...)62.5%8893.33%

File(s)

/srv/git/jellyfin/Jellyfin.Server/CoreAppHost.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Reflection;
 4using Emby.Server.Implementations;
 5using Emby.Server.Implementations.Session;
 6using Jellyfin.Api.WebSocketListeners;
 7using Jellyfin.Database.Implementations;
 8using Jellyfin.Drawing;
 9using Jellyfin.Drawing.Skia;
 10using Jellyfin.LiveTv;
 11using Jellyfin.Server.Implementations.Activity;
 12using Jellyfin.Server.Implementations.Devices;
 13using Jellyfin.Server.Implementations.Events;
 14using Jellyfin.Server.Implementations.Extensions;
 15using Jellyfin.Server.Implementations.Security;
 16using Jellyfin.Server.Implementations.Trickplay;
 17using Jellyfin.Server.Implementations.Users;
 18using MediaBrowser.Controller;
 19using MediaBrowser.Controller.Authentication;
 20using MediaBrowser.Controller.BaseItemManager;
 21using MediaBrowser.Controller.Devices;
 22using MediaBrowser.Controller.Drawing;
 23using MediaBrowser.Controller.Events;
 24using MediaBrowser.Controller.Library;
 25using MediaBrowser.Controller.Lyrics;
 26using MediaBrowser.Controller.Net;
 27using MediaBrowser.Controller.Security;
 28using MediaBrowser.Controller.Trickplay;
 29using MediaBrowser.Model.Activity;
 30using MediaBrowser.Providers.Lyric;
 31using Microsoft.Extensions.Configuration;
 32using Microsoft.Extensions.DependencyInjection;
 33using Microsoft.Extensions.Logging;
 34
 35namespace Jellyfin.Server
 36{
 37    /// <summary>
 38    /// Implementation of the abstract <see cref="ApplicationHost" /> class.
 39    /// </summary>
 40    public class CoreAppHost : ApplicationHost
 41    {
 42        /// <summary>
 43        /// Initializes a new instance of the <see cref="CoreAppHost" /> class.
 44        /// </summary>
 45        /// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAp
 46        /// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.<
 47        /// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param
 48        /// <param name="startupConfig">The <see cref="IConfiguration" /> to be used by the <see cref="CoreAppHost" />.<
 49        public CoreAppHost(
 50            IServerApplicationPaths applicationPaths,
 51            ILoggerFactory loggerFactory,
 52            IStartupOptions options,
 53            IConfiguration startupConfig)
 2154            : base(
 2155                applicationPaths,
 2156                loggerFactory,
 2157                options,
 2158                startupConfig)
 59        {
 2160        }
 61
 62        /// <inheritdoc/>
 63        protected override void RegisterServices(IServiceCollection serviceCollection)
 64        {
 65            // Register an image encoder
 2166            bool useSkiaEncoder = SkiaEncoder.IsNativeLibAvailable();
 2167            Type imageEncoderType = useSkiaEncoder
 2168                ? typeof(SkiaEncoder)
 2169                : typeof(NullImageEncoder);
 2170            serviceCollection.AddSingleton(typeof(IImageEncoder), imageEncoderType);
 71
 72            // Log a warning if the Skia encoder could not be used
 2173            if (!useSkiaEncoder)
 74            {
 075                Logger.LogWarning("Skia not available. Will fallback to {ImageEncoder}.", nameof(NullImageEncoder));
 76            }
 77
 2178            serviceCollection.AddEventServices();
 2179            serviceCollection.AddSingleton<IBaseItemManager, BaseItemManager>();
 2180            serviceCollection.AddSingleton<IEventManager, EventManager>();
 81
 2182            serviceCollection.AddSingleton<IActivityManager, ActivityManager>();
 2183            serviceCollection.AddSingleton<IUserManager, UserManager>();
 2184            serviceCollection.AddSingleton<IAuthenticationProvider, DefaultAuthenticationProvider>();
 2185            serviceCollection.AddSingleton<IAuthenticationProvider, InvalidAuthProvider>();
 2186            serviceCollection.AddSingleton<IPasswordResetProvider, DefaultPasswordResetProvider>();
 2187            serviceCollection.AddScoped<IDisplayPreferencesManager, DisplayPreferencesManager>();
 2188            serviceCollection.AddSingleton<IDeviceManager, DeviceManager>();
 2189            serviceCollection.AddSingleton<ITrickplayManager, TrickplayManager>();
 90
 91            // TODO search the assemblies instead of adding them manually?
 2192            serviceCollection.AddSingleton<IWebSocketListener, SessionWebSocketListener>();
 2193            serviceCollection.AddSingleton<IWebSocketListener, ActivityLogWebSocketListener>();
 2194            serviceCollection.AddSingleton<IWebSocketListener, ScheduledTasksWebSocketListener>();
 2195            serviceCollection.AddSingleton<IWebSocketListener, SessionInfoWebSocketListener>();
 96
 2197            serviceCollection.AddSingleton<IAuthorizationContext, AuthorizationContext>();
 98
 2199            serviceCollection.AddScoped<IAuthenticationManager, AuthenticationManager>();
 100
 42101            foreach (var type in GetExportTypes<ILyricProvider>())
 102            {
 0103                serviceCollection.AddSingleton(typeof(ILyricProvider), type);
 104            }
 105
 126106            foreach (var type in GetExportTypes<ILyricParser>())
 107            {
 42108                serviceCollection.AddSingleton(typeof(ILyricParser), type);
 109            }
 110
 21111            base.RegisterServices(serviceCollection);
 21112        }
 113
 114        /// <inheritdoc />
 115        protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
 116        {
 117            // Jellyfin.Server
 118            yield return typeof(CoreAppHost).Assembly;
 119
 120            // Jellyfin.Database.Implementations
 121            yield return typeof(JellyfinDbContext).Assembly;
 122
 123            // Jellyfin.Server.Implementations
 124            yield return typeof(ServiceCollectionExtensions).Assembly;
 125
 126            // Jellyfin.LiveTv
 127            yield return typeof(LiveTvManager).Assembly;
 128        }
 129    }
 130}