jellyfin/MediaBrowser.ServerApplication/ApplicationHost.cs

245 lines
9.4 KiB
C#
Raw Normal View History

using MediaBrowser.Api;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
2013-03-02 19:54:31 +01:00
using MediaBrowser.Common.Constants;
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-24 22:53:54 +01:00
using MediaBrowser.Common.Implementations.ScheduledTasks;
2013-02-27 18:07:12 +01:00
using MediaBrowser.Common.IO;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.Kernel;
2013-02-28 20:29:17 +01:00
using MediaBrowser.Common.Updates;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Controller;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Controller.Updates;
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.System;
using MediaBrowser.Model.Updates;
using MediaBrowser.Server.Implementations;
using MediaBrowser.Server.Implementations.BdInfo;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Server.Implementations.Configuration;
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>
2013-03-04 06:43:06 +01:00
public class ApplicationHost : BaseApplicationHost<ServerApplicationPaths>
2013-02-24 22:53:54 +01:00
{
/// <summary>
2013-03-04 06:43:06 +01:00
/// The _web socket events
2013-02-24 22:53:54 +01:00
/// </summary>
private WebSocketEvents _webSocketEvents;
2013-02-24 22:53:54 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the server kernel.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The server kernel.</value>
protected Kernel ServerKernel
2013-02-26 18:21:18 +01:00
{
2013-03-04 06:43:06 +01:00
get { return (Kernel)Kernel; }
2013-02-26 18:21:18 +01:00
}
2013-02-24 22:53:54 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the server configuration manager.
2013-02-24 22:53:54 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The server configuration manager.</value>
public IServerConfigurationManager ServerConfigurationManager
2013-02-24 22:53:54 +01:00
{
2013-03-04 06:43:06 +01:00
get { return (IServerConfigurationManager)ConfigurationManager; }
}
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the kernel.
/// </summary>
2013-03-04 06:43:06 +01:00
/// <returns>IKernel.</returns>
protected override IKernel GetKernel()
{
2013-03-04 06:43:06 +01:00
return new Kernel(this, XmlSerializer, LogManager, ServerConfigurationManager);
2013-02-24 22:53:54 +01:00
}
2013-02-26 18:21:18 +01:00
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the name of the log file prefix.
2013-02-26 18:21:18 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The name of the log file prefix.</value>
protected override string LogFilePrefixName
2013-02-26 18:21:18 +01:00
{
2013-03-04 06:43:06 +01:00
get { return "Server"; }
2013-02-26 18:21:18 +01:00
}
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets the configuration manager.
2013-02-26 18:21:18 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <returns>IConfigurationManager.</returns>
protected override IConfigurationManager GetConfigurationManager()
2013-02-26 18:21:18 +01:00
{
2013-03-04 06:43:06 +01:00
return new ServerConfigurationManager(ApplicationPaths, LogManager, XmlSerializer);
2013-02-26 18:21:18 +01:00
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Registers resources that classes will depend on
/// </summary>
2013-03-04 19:13:47 +01:00
protected override async Task RegisterResources()
2013-02-24 22:53:54 +01:00
{
2013-03-04 19:13:47 +01:00
await base.RegisterResources().ConfigureAwait(false);
2013-03-04 06:43:06 +01:00
RegisterSingleInstance<IServerApplicationPaths>(ApplicationPaths);
RegisterSingleInstance(ServerKernel);
RegisterSingleInstance(ServerConfigurationManager);
2013-02-24 22:53:54 +01:00
RegisterSingleInstance<IIsoManager>(new PismoIsoManager(Logger));
RegisterSingleInstance<IBlurayExaminer>(new BdInfoExaminer());
RegisterSingleInstance<IZipClient>(new DotNetZipClient());
2013-02-27 17:46:48 +01:00
RegisterSingleInstance(ServerFactory.CreateServer(this, ProtobufSerializer, Logger, "Media Browser", "index.html"), false);
2013-03-04 06:43:06 +01:00
var userManager = new UserManager(ServerKernel, Logger, ServerConfigurationManager);
RegisterSingleInstance<IUserManager>(userManager);
2013-03-04 06:43:06 +01:00
RegisterSingleInstance<ILibraryManager>(new LibraryManager(ServerKernel, Logger, TaskManager, userManager, ServerConfigurationManager));
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Finds the parts.
/// </summary>
protected override void FindParts()
{
base.FindParts();
Resolve<ILibraryManager>().AddParts(GetExports<IResolverIgnoreRule>(), GetExports<IVirtualFolderCreator>(), GetExports<IItemResolver>(), GetExports<IIntroProvider>());
2013-03-04 06:43:06 +01:00
ServerKernel.InstallationManager = (InstallationManager)CreateInstance(typeof(InstallationManager));
2013-03-04 06:43:06 +01:00
_webSocketEvents = new WebSocketEvents(Resolve<IServerManager>(), Resolve<IKernel>(), Resolve<ILogger>(), Resolve<IUserManager>(), Resolve<ILibraryManager>(), ServerKernel.InstallationManager);
}
2013-02-24 22:53:54 +01:00
/// <summary>
/// Restarts this instance.
/// </summary>
2013-03-04 06:43:06 +01:00
public override void Restart()
2013-02-24 22:53:54 +01:00
{
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>
2013-03-04 06:43:06 +01:00
public override bool CanSelfUpdate
2013-02-24 22:53:54 +01:00
{
2013-03-04 06:43:06 +01:00
get { return ConfigurationManager.CommonConfiguration.EnableAutoUpdate; }
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-03-04 06:43:06 +01:00
public async override 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>();
2013-03-04 06:43:06 +01:00
var availablePackages = await pkgManager.GetAvailablePackages(CancellationToken.None).ConfigureAwait(false);
var version = ServerKernel.InstallationManager.GetLatestCompatibleVersion(availablePackages, Constants.MBServerPkgName, ConfigurationManager.CommonConfiguration.SystemUpdateLevel);
2013-02-28 20:29:17 +01:00
return version != null ? new CheckForUpdateResult { AvailableVersion = version.version, IsUpdateAvailable = version.version > ApplicationVersion, Package = version } :
new CheckForUpdateResult { AvailableVersion = ApplicationVersion, IsUpdateAvailable = false };
2013-02-24 22:53:54 +01:00
}
/// <summary>
/// Updates the application.
/// </summary>
/// <param name="package">The package that contains the update</param>
2013-02-24 22:53:54 +01:00
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
2013-03-04 06:43:06 +01:00
public override Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress)
2013-02-24 22:53:54 +01:00
{
var pkgManager = Resolve<IPackageManager>();
2013-03-04 06:43:06 +01:00
return pkgManager.InstallPackage(progress, package, cancellationToken);
2013-02-24 22:53:54 +01:00
}
/// <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>
2013-03-04 06:43:06 +01:00
public override void Shutdown()
{
App.Instance.Dispatcher.Invoke(App.Instance.Shutdown);
}
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected override void Dispose(bool dispose)
{
if (dispose)
{
if (_webSocketEvents != null)
{
_webSocketEvents.Dispose();
}
}
base.Dispose(dispose);
}
2013-02-24 22:53:54 +01:00
}
}