jellyfin/MediaBrowser.ServerApplication/ApplicationHost.cs

231 lines
8.8 KiB
C#
Raw Normal View History

using MediaBrowser.Api;
2013-02-24 22:53:54 +01:00
using MediaBrowser.ClickOnce;
using MediaBrowser.Common.Implementations;
2013-02-26 22:05:52 +01:00
using MediaBrowser.Common.Implementations.HttpServer;
2013-02-26 21:07:06 +01:00
using MediaBrowser.Common.Implementations.Logging;
2013-02-26 22:05:52 +01:00
using MediaBrowser.Common.Implementations.NetworkManagement;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.Implementations.ScheduledTasks;
using MediaBrowser.Common.Implementations.Serialization;
2013-02-26 22:05:52 +01:00
using MediaBrowser.Common.Implementations.ServerManager;
2013-02-27 18:07:12 +01:00
using MediaBrowser.Common.IO;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.Kernel;
using MediaBrowser.Common.Net;
using MediaBrowser.Common.ScheduledTasks;
2013-02-28 20:29:17 +01:00
using MediaBrowser.Common.Updates;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Library;
2013-02-24 22:53:54 +01:00
using MediaBrowser.IsoMounter;
using MediaBrowser.Model.IO;
2013-02-26 18:21:18 +01:00
using MediaBrowser.Model.Logging;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.System;
using MediaBrowser.Model.Updates;
using MediaBrowser.Server.Implementations;
using MediaBrowser.Server.Implementations.BdInfo;
using MediaBrowser.Server.Implementations.Library;
2013-02-24 22:53:54 +01:00
using MediaBrowser.ServerApplication.Implementations;
using MediaBrowser.WebDashboard.Api;
2013-02-24 22:53:54 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.ServerApplication
{
/// <summary>
/// Class CompositionRoot
/// </summary>
public class ApplicationHost : BaseApplicationHost, IApplicationHost
2013-02-24 22:53:54 +01:00
{
/// <summary>
/// Gets or sets the kernel.
/// </summary>
/// <value>The kernel.</value>
internal Kernel Kernel { get; private set; }
2013-02-24 22:53:54 +01:00
/// <summary>
/// The json serializer
/// </summary>
private readonly IJsonSerializer _jsonSerializer = new JsonSerializer();
/// <summary>
/// The _XML serializer
/// </summary>
private readonly IXmlSerializer _xmlSerializer = new XmlSerializer();
/// <summary>
2013-02-26 18:21:18 +01:00
/// Gets the server application paths.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-02-26 18:21:18 +01:00
/// <value>The server application paths.</value>
protected IServerApplicationPaths ServerApplicationPaths
{
get { return (IServerApplicationPaths) ApplicationPaths; }
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ApplicationHost" /> class.
/// </summary>
/// <param name="logger">The logger.</param>
public ApplicationHost()
: base()
2013-02-24 22:53:54 +01:00
{
2013-02-26 18:21:18 +01:00
Kernel = new Kernel(this, ServerApplicationPaths, _xmlSerializer, Logger);
var networkManager = new NetworkManager();
var serverManager = new ServerManager(this, Kernel, networkManager, _jsonSerializer, Logger);
2013-02-26 18:21:18 +01:00
var taskManager = new TaskManager(ApplicationPaths, _jsonSerializer, Logger, serverManager);
2013-02-24 22:53:54 +01:00
2013-02-26 18:21:18 +01:00
LogManager.ReloadLogger(Kernel.Configuration.EnableDebugLevelLogging ? LogSeverity.Debug : LogSeverity.Info);
2013-02-24 22:53:54 +01:00
Logger.Info("Version {0} initializing", ApplicationVersion);
2013-02-27 17:46:48 +01:00
RegisterResources(taskManager, networkManager, serverManager);
2013-02-27 17:46:48 +01:00
FindParts();
2013-02-24 22:53:54 +01:00
}
2013-02-26 18:21:18 +01:00
/// <summary>
/// Gets the application paths.
/// </summary>
/// <returns>IApplicationPaths.</returns>
protected override IApplicationPaths GetApplicationPaths()
{
return new ServerApplicationPaths();
}
/// <summary>
/// Gets the log manager.
/// </summary>
/// <returns>ILogManager.</returns>
protected override ILogManager GetLogManager()
{
return new NlogManager(ApplicationPaths.LogDirectoryPath, "Server");
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers resources that classes will depend on
/// </summary>
2013-02-27 17:46:48 +01:00
protected override void RegisterResources(ITaskManager taskManager, INetworkManager networkManager, IServerManager serverManager)
2013-02-24 22:53:54 +01:00
{
2013-02-27 17:46:48 +01:00
base.RegisterResources(taskManager, networkManager, serverManager);
2013-02-24 22:53:54 +01:00
RegisterSingleInstance<IKernel>(Kernel);
RegisterSingleInstance(Kernel);
2013-02-24 22:53:54 +01:00
RegisterSingleInstance<IApplicationHost>(this);
2013-02-26 18:21:18 +01:00
RegisterSingleInstance(ServerApplicationPaths);
RegisterSingleInstance<IIsoManager>(new PismoIsoManager(Logger));
RegisterSingleInstance<IBlurayExaminer>(new BdInfoExaminer());
RegisterSingleInstance<IZipClient>(new DotNetZipClient());
2013-02-24 22:53:54 +01:00
RegisterSingleInstance(_jsonSerializer);
RegisterSingleInstance(_xmlSerializer);
2013-02-27 17:46:48 +01:00
RegisterSingleInstance(ServerFactory.CreateServer(this, ProtobufSerializer, Logger, "Media Browser", "index.html"), false);
var userManager = new UserManager(Kernel, Logger);
RegisterSingleInstance<IUserManager>(userManager);
RegisterSingleInstance<ILibraryManager>(new LibraryManager(Kernel, Logger, taskManager, userManager));
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Restarts this instance.
/// </summary>
public void Restart()
{
App.Instance.Restart();
}
/// <summary>
/// Gets or sets a value indicating whether this instance can self update.
/// </summary>
/// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
public bool CanSelfUpdate
{
2013-02-28 20:29:17 +01:00
get { return true; }
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Checks for update.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task{CheckForUpdateResult}.</returns>
2013-02-28 20:29:17 +01:00
public async Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-24 22:53:54 +01:00
{
2013-02-28 20:29:17 +01:00
var pkgManager = Resolve<IPackageManager>();
var availablePackages = await pkgManager.GetAvailablePackages(Resolve<IHttpClient>(), Resolve<INetworkManager>(), Kernel.SecurityManager, Kernel.ResourcePools, Resolve<IJsonSerializer>(), CancellationToken.None).ConfigureAwait(false);
var version = Kernel.InstallationManager.GetLatestCompatibleVersion(availablePackages, "MBServer", Kernel.Configuration.SystemUpdateLevel);
return version != null ? new CheckForUpdateResult {AvailableVersion = version.version, IsUpdateAvailable = version.version > ApplicationVersion, Package = version} :
2013-02-28 21:00:17 +01:00
new CheckForUpdateResult {AvailableVersion = ApplicationVersion, IsUpdateAvailable = false};
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Updates the application.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
public Task UpdateApplication(CancellationToken cancellationToken, IProgress<double> progress)
{
return new ApplicationUpdater().UpdateApplication(cancellationToken, progress);
}
/// <summary>
/// Gets the composable part assemblies.
/// </summary>
/// <returns>IEnumerable{Assembly}.</returns>
protected override IEnumerable<Assembly> GetComposablePartAssemblies()
2013-02-24 22:53:54 +01:00
{
// Gets all plugin assemblies by first reading all bytes of the .dll and calling Assembly.Load against that
// This will prevent the .dll file from getting locked, and allow us to replace it when needed
foreach (var pluginAssembly in Directory
2013-02-26 18:21:18 +01:00
.EnumerateFiles(ApplicationPaths.PluginsPath, "*.dll", SearchOption.TopDirectoryOnly)
2013-02-24 22:53:54 +01:00
.Select(LoadAssembly).Where(a => a != null))
{
yield return pluginAssembly;
}
// Include composable parts in the Api assembly
yield return typeof(ApiService).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Dashboard assembly
yield return typeof(DashboardInfo).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the Model assembly
yield return typeof(SystemInfo).Assembly;
// Include composable parts in the Common assembly
yield return typeof(IKernel).Assembly;
// Include composable parts in the Controller assembly
yield return typeof(Kernel).Assembly;
// Common implementations
yield return typeof(TaskManager).Assembly;
// Server implementations
yield return typeof(ServerApplicationPaths).Assembly;
2013-02-24 22:53:54 +01:00
// Include composable parts in the running assembly
yield return GetType().Assembly;
}
/// <summary>
/// Shuts down.
/// </summary>
public void Shutdown()
{
App.Instance.Dispatcher.Invoke(App.Instance.Shutdown);
}
2013-02-24 22:53:54 +01:00
}
}