2013-02-26 16:10:55 +00:00
|
|
|
|
using MediaBrowser.Common.Plugins;
|
2013-02-26 22:19:45 +00:00
|
|
|
|
using MediaBrowser.Common.Security;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
using MediaBrowser.Model.System;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Kernel
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IKernel
|
|
|
|
|
/// </summary>
|
2013-02-26 17:51:32 +00:00
|
|
|
|
public interface IKernel : IDisposable
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application paths.</value>
|
2013-02-24 21:53:54 +00:00
|
|
|
|
IApplicationPaths ApplicationPaths { get; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration.</value>
|
|
|
|
|
BaseApplicationConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the kernel context.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The kernel context.</value>
|
|
|
|
|
KernelContext KernelContext { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Inits this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-02-21 04:37:50 +00:00
|
|
|
|
Task Init();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance has pending kernel reload.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance has pending kernel reload; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool HasPendingRestart { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the system status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SystemInfo.</returns>
|
|
|
|
|
SystemInfo GetSystemInfo();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Called when [application updated].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="newVersion">The new version.</param>
|
|
|
|
|
void OnApplicationUpdated(Version newVersion);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the web application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the web application.</value>
|
|
|
|
|
string WebApplicationName { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Performs the pending restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void PerformPendingRestart();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the plugins.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The plugins.</value>
|
|
|
|
|
IEnumerable<IPlugin> Plugins { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the UDP server port number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The UDP server port number.</value>
|
|
|
|
|
int UdpServerPortNumber { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the HTTP server URL prefix.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP server URL prefix.</value>
|
|
|
|
|
string HttpServerUrlPrefix { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the TCP manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The TCP manager.</value>
|
2013-02-26 16:10:55 +00:00
|
|
|
|
IServerManager ServerManager { get; }
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-02-26 22:19:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the plug-in security manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The plug-in security manager.</value>
|
|
|
|
|
ISecurityManager SecurityManager { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [reload completed].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<EventArgs> ReloadCompleted;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [configuration updated].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler<EventArgs> ConfigurationUpdated;
|
|
|
|
|
|
2013-02-23 22:44:42 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Notifies the pending restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void NotifyPendingRestart();
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the XML configuration.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
object GetXmlConfiguration(Type type, string path);
|
2013-02-26 21:48:43 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Limits simultaneous access to various resources
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The resource pools.</value>
|
|
|
|
|
ResourcePool ResourcePools { get; set; }
|
2013-02-26 21:53:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the plugin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="plugin">The plugin.</param>
|
|
|
|
|
void RemovePlugin(IPlugin plugin);
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|