using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using Emby.Drawing;
using Emby.Server.Implementations;
using Jellyfin.Drawing.Skia;
using Jellyfin.Server.Implementations;
using Jellyfin.Server.Implementations.Activity;
using Jellyfin.Server.Implementations.Events;
using Jellyfin.Server.Implementations.Users;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Events;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Activity;
using MediaBrowser.Model.IO;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
    /// 
    /// Implementation of the abstract  class.
    /// 
    public class CoreAppHost : ApplicationHost
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The  to be used by the .
        /// The  to be used by the .
        /// The  to be used by the .
        /// The  to be used by the .
        /// The  to be used by the .
        /// The  to be used by the .
        public CoreAppHost(
            IServerApplicationPaths applicationPaths,
            ILoggerFactory loggerFactory,
            IStartupOptions options,
            IFileSystem fileSystem,
            INetworkManager networkManager,
            IServiceCollection collection)
            : base(
                applicationPaths,
                loggerFactory,
                options,
                fileSystem,
                networkManager,
                collection)
        {
        }
        /// 
        protected override void RegisterServices()
        {
            // 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)}.");
            }
            ServiceCollection.AddDbContextPool(
                 options => options.UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
            ServiceCollection.AddEventServices();
            ServiceCollection.AddSingleton();
            ServiceCollection.AddSingleton();
            ServiceCollection.AddSingleton();
            ServiceCollection.AddSingleton();
            ServiceCollection.AddSingleton();
            base.RegisterServices();
        }
        /// 
        protected override void RestartInternal() => Program.Restart();
        /// 
        protected override IEnumerable GetAssembliesWithPartsInternal()
        {
            // Jellyfin.Server
            yield return typeof(CoreAppHost).Assembly;
            // Jellyfin.Server.Implementations
            yield return typeof(JellyfinDb).Assembly;
        }
        /// 
        protected override void ShutdownInternal() => Program.Shutdown();
    }
}