2014-05-08 20:09:53 +00:00
|
|
|
|
using MediaBrowser.Common.Plugins;
|
|
|
|
|
using MediaBrowser.Model.Events;
|
2013-03-03 02:47:04 +00:00
|
|
|
|
using MediaBrowser.Model.Updates;
|
2013-02-22 04:23:06 +00:00
|
|
|
|
using System;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-02-22 04:23:06 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2013-03-04 05:43:06 +00:00
|
|
|
|
namespace MediaBrowser.Common
|
2013-02-22 01:26:35 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// An interface to be implemented by the applications hosting a kernel
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IApplicationHost
|
|
|
|
|
{
|
2014-11-23 23:10:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the display name of the operating system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The display name of the operating system.</value>
|
|
|
|
|
string OperatingSystemDisplayName { get; }
|
|
|
|
|
|
2014-01-25 21:07:19 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
2014-09-06 17:46:09 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the device identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The device identifier.</value>
|
|
|
|
|
string SystemId { get; }
|
|
|
|
|
|
2013-03-11 19:36:32 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [application updated].
|
|
|
|
|
/// </summary>
|
2014-04-30 15:07:02 +00:00
|
|
|
|
event EventHandler<GenericEventArgs<PackageVersionInfo>> ApplicationUpdated;
|
2013-03-11 19:36:32 +00:00
|
|
|
|
|
2014-01-30 00:22:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is running as service.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is running as service; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool IsRunningAsService { get; }
|
|
|
|
|
|
2013-03-07 05:34:00 +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; }
|
|
|
|
|
|
2013-10-07 14:38:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance can self restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool CanSelfRestart { get; }
|
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Occurs when [has pending restart changed].
|
|
|
|
|
/// </summary>
|
|
|
|
|
event EventHandler HasPendingRestartChanged;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Notifies the pending restart.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void NotifyPendingRestart();
|
|
|
|
|
|
2013-02-22 01:26:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restarts this instance.
|
|
|
|
|
/// </summary>
|
2013-09-20 17:32:10 +00:00
|
|
|
|
Task Restart();
|
2013-02-22 01:26:35 +00:00
|
|
|
|
|
2013-02-26 03:43:04 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the application version.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The application version.</value>
|
|
|
|
|
Version ApplicationVersion { get; }
|
|
|
|
|
|
2013-02-22 04:23:06 +00:00
|
|
|
|
/// <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>
|
|
|
|
|
bool CanSelfUpdate { get; }
|
|
|
|
|
|
2013-02-26 03:43:04 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is first run.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is first run; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool IsFirstRun { get; }
|
|
|
|
|
|
2013-02-24 21:53:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the failed assemblies.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The failed assemblies.</value>
|
2013-02-26 03:43:04 +00:00
|
|
|
|
List<string> FailedAssemblies { get; }
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets all concrete types.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>All concrete types.</value>
|
|
|
|
|
Type[] AllConcreteTypes { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the exports.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <param name="manageLiftime">if set to <c>true</c> [manage liftime].</param>
|
|
|
|
|
/// <returns>IEnumerable{``0}.</returns>
|
|
|
|
|
IEnumerable<T> GetExports<T>(bool manageLiftime = true);
|
|
|
|
|
|
2013-02-22 04:23:06 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Checks for update.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task{CheckForUpdateResult}.</returns>
|
|
|
|
|
Task<CheckForUpdateResult> CheckForApplicationUpdate(CancellationToken cancellationToken, IProgress<double> progress);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-02-28 21:03:59 +00:00
|
|
|
|
Task UpdateApplication(PackageVersionInfo package, CancellationToken cancellationToken, IProgress<double> progress);
|
2013-02-23 03:49:00 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <returns>``0.</returns>
|
2013-02-23 07:57:11 +00:00
|
|
|
|
T Resolve<T>();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves this instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <returns>``0.</returns>
|
|
|
|
|
T TryResolve<T>();
|
2013-02-26 16:10:55 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shuts down.
|
|
|
|
|
/// </summary>
|
2013-09-20 17:32:10 +00:00
|
|
|
|
Task Shutdown();
|
2013-03-03 02:47:04 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the plugins.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The plugins.</value>
|
|
|
|
|
IEnumerable<IPlugin> Plugins { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Removes the plugin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="plugin">The plugin.</param>
|
|
|
|
|
void RemovePlugin(IPlugin plugin);
|
2013-03-03 07:27:40 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Inits this instance.
|
|
|
|
|
/// </summary>
|
2013-12-13 15:48:35 +00:00
|
|
|
|
/// <param name="progress">The progress.</param>
|
2013-03-03 07:27:40 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
2013-12-13 15:48:35 +00:00
|
|
|
|
Task Init(IProgress<double> progress);
|
2013-10-03 14:14:40 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the instance.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
object CreateInstance(Type type);
|
2013-02-22 01:26:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|