mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-26 17:40:30 +01:00
Merge with default
This commit is contained in:
@@ -1,81 +0,0 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
|
||||
namespace MediaBrowser.Common.Drawing
|
||||
{
|
||||
public static class DrawingUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// Resizes a set of dimensions
|
||||
/// </summary>
|
||||
public static Size Resize(int currentWidth, int currentHeight, int? width, int? height, int? maxWidth, int? maxHeight)
|
||||
{
|
||||
return Resize(new Size(currentWidth, currentHeight), width, height, maxWidth, maxHeight);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Resizes a set of dimensions
|
||||
/// </summary>
|
||||
/// <param name="size">The original size object</param>
|
||||
/// <param name="width">A new fixed width, if desired</param>
|
||||
/// <param name="height">A new fixed neight, if desired</param>
|
||||
/// <param name="maxWidth">A max fixed width, if desired</param>
|
||||
/// <param name="maxHeight">A max fixed height, if desired</param>
|
||||
/// <returns>A new size object</returns>
|
||||
public static Size Resize(Size size, int? width, int? height, int? maxWidth, int? maxHeight)
|
||||
{
|
||||
decimal newWidth = size.Width;
|
||||
decimal newHeight = size.Height;
|
||||
|
||||
if (width.HasValue && height.HasValue)
|
||||
{
|
||||
newWidth = width.Value;
|
||||
newHeight = height.Value;
|
||||
}
|
||||
|
||||
else if (height.HasValue)
|
||||
{
|
||||
newWidth = GetNewWidth(newHeight, newWidth, height.Value);
|
||||
newHeight = height.Value;
|
||||
}
|
||||
|
||||
else if (width.HasValue)
|
||||
{
|
||||
newHeight = GetNewHeight(newHeight, newWidth, width.Value);
|
||||
newWidth = width.Value;
|
||||
}
|
||||
|
||||
if (maxHeight.HasValue && maxHeight < newHeight)
|
||||
{
|
||||
newWidth = GetNewWidth(newHeight, newWidth, maxHeight.Value);
|
||||
newHeight = maxHeight.Value;
|
||||
}
|
||||
|
||||
if (maxWidth.HasValue && maxWidth < newWidth)
|
||||
{
|
||||
newHeight = GetNewHeight(newHeight, newWidth, maxWidth.Value);
|
||||
newWidth = maxWidth.Value;
|
||||
}
|
||||
|
||||
return new Size(Convert.ToInt32(newWidth), Convert.ToInt32(newHeight));
|
||||
}
|
||||
|
||||
private static decimal GetNewWidth(decimal currentHeight, decimal currentWidth, int newHeight)
|
||||
{
|
||||
decimal scaleFactor = newHeight;
|
||||
scaleFactor /= currentHeight;
|
||||
scaleFactor *= currentWidth;
|
||||
|
||||
return scaleFactor;
|
||||
}
|
||||
|
||||
private static decimal GetNewHeight(decimal currentHeight, decimal currentWidth, int newWidth)
|
||||
{
|
||||
decimal scaleFactor = newWidth;
|
||||
scaleFactor /= currentWidth;
|
||||
scaleFactor *= currentHeight;
|
||||
|
||||
return scaleFactor;
|
||||
}
|
||||
}
|
||||
}
|
||||
12
MediaBrowser.Common/Events/GenericEventArgs.cs
Normal file
12
MediaBrowser.Common/Events/GenericEventArgs.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a generic EventArgs subclass that can hold any kind of object
|
||||
/// </summary>
|
||||
public class GenericEventArgs<T> : EventArgs
|
||||
{
|
||||
public T Argument { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
using MediaBrowser.Common.Logging;
|
||||
using MediaBrowser.Common.Events;
|
||||
using MediaBrowser.Common.Logging;
|
||||
using MediaBrowser.Common.Net;
|
||||
using MediaBrowser.Common.Net.Handlers;
|
||||
using MediaBrowser.Common.Plugins;
|
||||
@@ -9,7 +10,6 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.ComponentModel.Composition.Hosting;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
@@ -24,6 +24,34 @@ namespace MediaBrowser.Common.Kernel
|
||||
where TConfigurationType : BaseApplicationConfiguration, new()
|
||||
where TApplicationPathsType : BaseApplicationPaths, new()
|
||||
{
|
||||
#region ReloadBeginning Event
|
||||
/// <summary>
|
||||
/// Fires whenever the kernel begins reloading
|
||||
/// </summary>
|
||||
public event EventHandler<GenericEventArgs<IProgress<TaskProgress>>> ReloadBeginning;
|
||||
private void OnReloadBeginning(IProgress<TaskProgress> progress)
|
||||
{
|
||||
if (ReloadBeginning != null)
|
||||
{
|
||||
ReloadBeginning(this, new GenericEventArgs<IProgress<TaskProgress>> { Argument = progress });
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region ReloadCompleted Event
|
||||
/// <summary>
|
||||
/// Fires whenever the kernel completes reloading
|
||||
/// </summary>
|
||||
public event EventHandler<GenericEventArgs<IProgress<TaskProgress>>> ReloadCompleted;
|
||||
private void OnReloadCompleted(IProgress<TaskProgress> progress)
|
||||
{
|
||||
if (ReloadCompleted != null)
|
||||
{
|
||||
ReloadCompleted(this, new GenericEventArgs<IProgress<TaskProgress>> { Argument = progress });
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current configuration
|
||||
/// </summary>
|
||||
@@ -43,6 +71,12 @@ namespace MediaBrowser.Common.Kernel
|
||||
[ImportMany(typeof(BaseHandler))]
|
||||
private IEnumerable<BaseHandler> HttpHandlers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the list of currently registered Loggers
|
||||
/// </summary>
|
||||
[ImportMany(typeof(BaseLogger))]
|
||||
public IEnumerable<BaseLogger> Loggers { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Both the Ui and server will have a built-in HttpServer.
|
||||
/// People will inevitably want remote control apps so it's needed in the Ui too.
|
||||
@@ -54,6 +88,8 @@ namespace MediaBrowser.Common.Kernel
|
||||
/// </summary>
|
||||
private IDisposable HttpListener { get; set; }
|
||||
|
||||
private CompositionContainer CompositionContainer { get; set; }
|
||||
|
||||
protected virtual string HttpServerUrlPrefix
|
||||
{
|
||||
get
|
||||
@@ -72,13 +108,13 @@ namespace MediaBrowser.Common.Kernel
|
||||
/// </summary>
|
||||
public async Task Init(IProgress<TaskProgress> progress)
|
||||
{
|
||||
Logger.Kernel = this;
|
||||
|
||||
// Performs initializations that only occur once
|
||||
InitializeInternal(progress);
|
||||
|
||||
// Performs initializations that can be reloaded at anytime
|
||||
await Reload(progress).ConfigureAwait(false);
|
||||
|
||||
progress.Report(new TaskProgress { Description = "Loading Complete" });
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -87,45 +123,40 @@ namespace MediaBrowser.Common.Kernel
|
||||
protected virtual void InitializeInternal(IProgress<TaskProgress> progress)
|
||||
{
|
||||
ApplicationPaths = new TApplicationPathsType();
|
||||
|
||||
ReloadLogger();
|
||||
|
||||
progress.Report(new TaskProgress { Description = "Loading configuration" });
|
||||
ReportProgress(progress, "Loading Configuration");
|
||||
ReloadConfiguration();
|
||||
|
||||
progress.Report(new TaskProgress { Description = "Starting Http server" });
|
||||
ReportProgress(progress, "Loading Http Server");
|
||||
ReloadHttpServer();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Performs initializations that can be reloaded at anytime
|
||||
/// </summary>
|
||||
public virtual async Task Reload(IProgress<TaskProgress> progress)
|
||||
public async Task Reload(IProgress<TaskProgress> progress)
|
||||
{
|
||||
OnReloadBeginning(progress);
|
||||
|
||||
await ReloadInternal(progress).ConfigureAwait(false);
|
||||
|
||||
OnReloadCompleted(progress);
|
||||
|
||||
ReportProgress(progress, "Kernel.Reload Complete");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Performs initializations that can be reloaded at anytime
|
||||
/// </summary>
|
||||
protected virtual async Task ReloadInternal(IProgress<TaskProgress> progress)
|
||||
{
|
||||
await Task.Run(() =>
|
||||
{
|
||||
progress.Report(new TaskProgress { Description = "Loading Plugins" });
|
||||
ReportProgress(progress, "Loading Plugins");
|
||||
ReloadComposableParts();
|
||||
|
||||
}).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disposes the current logger and creates a new one
|
||||
/// </summary>
|
||||
private void ReloadLogger()
|
||||
{
|
||||
DisposeLogger();
|
||||
|
||||
DateTime now = DateTime.Now;
|
||||
|
||||
string logFilePath = Path.Combine(ApplicationPaths.LogDirectoryPath, "log-" + now.ToString("dMyyyy") + "-" + now.Ticks + ".log");
|
||||
|
||||
Trace.Listeners.Add(new TextWriterTraceListener(logFilePath));
|
||||
Trace.AutoFlush = true;
|
||||
|
||||
Logger.LoggerInstance = new TraceLogger();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Uses MEF to locate plugins
|
||||
@@ -135,14 +166,13 @@ namespace MediaBrowser.Common.Kernel
|
||||
{
|
||||
DisposeComposableParts();
|
||||
|
||||
var container = GetCompositionContainer(includeCurrentAssembly: true);
|
||||
CompositionContainer = GetCompositionContainer(includeCurrentAssembly: true);
|
||||
|
||||
container.ComposeParts(this);
|
||||
CompositionContainer.ComposeParts(this);
|
||||
|
||||
OnComposablePartsLoaded();
|
||||
|
||||
container.Catalog.Dispose();
|
||||
container.Dispose();
|
||||
CompositionContainer.Catalog.Dispose();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -157,8 +187,7 @@ namespace MediaBrowser.Common.Kernel
|
||||
var catalog = new AggregateCatalog(pluginAssemblies.Select(a => new AssemblyCatalog(a)));
|
||||
|
||||
// Include composable parts in the Common assembly
|
||||
// Uncomment this if it's ever needed
|
||||
//catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
|
||||
catalog.Catalogs.Add(new AssemblyCatalog(Assembly.GetExecutingAssembly()));
|
||||
|
||||
if (includeCurrentAssembly)
|
||||
{
|
||||
@@ -174,8 +203,13 @@ namespace MediaBrowser.Common.Kernel
|
||||
/// </summary>
|
||||
protected virtual void OnComposablePartsLoaded()
|
||||
{
|
||||
foreach (var logger in Loggers)
|
||||
{
|
||||
logger.Initialize(this);
|
||||
}
|
||||
|
||||
// Start-up each plugin
|
||||
foreach (BasePlugin plugin in Plugins)
|
||||
foreach (var plugin in Plugins)
|
||||
{
|
||||
plugin.Initialize(this);
|
||||
}
|
||||
@@ -189,17 +223,16 @@ namespace MediaBrowser.Common.Kernel
|
||||
//Configuration information for anything other than server-specific configuration will have to come via the API... -ebr
|
||||
|
||||
// Deserialize config
|
||||
if (!File.Exists(ApplicationPaths.SystemConfigurationFilePath))
|
||||
// Use try/catch to avoid the extra file system lookup using File.Exists
|
||||
try
|
||||
{
|
||||
Configuration = XmlSerializer.DeserializeFromFile<TConfigurationType>(ApplicationPaths.SystemConfigurationFilePath);
|
||||
}
|
||||
catch (FileNotFoundException)
|
||||
{
|
||||
Configuration = new TConfigurationType();
|
||||
XmlSerializer.SerializeToFile(Configuration, ApplicationPaths.SystemConfigurationFilePath);
|
||||
}
|
||||
else
|
||||
{
|
||||
Configuration = XmlSerializer.DeserializeFromFile<TConfigurationType>(ApplicationPaths.SystemConfigurationFilePath);
|
||||
}
|
||||
|
||||
Logger.LoggerInstance.LogSeverity = Configuration.EnableDebugLevelLogging ? LogSeverity.Debug : LogSeverity.Info;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -233,12 +266,10 @@ namespace MediaBrowser.Common.Kernel
|
||||
public virtual void Dispose()
|
||||
{
|
||||
Logger.LogInfo("Beginning Kernel.Dispose");
|
||||
|
||||
DisposeComposableParts();
|
||||
|
||||
DisposeHttpServer();
|
||||
|
||||
DisposeLogger();
|
||||
DisposeComposableParts();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -246,22 +277,9 @@ namespace MediaBrowser.Common.Kernel
|
||||
/// </summary>
|
||||
protected virtual void DisposeComposableParts()
|
||||
{
|
||||
DisposePlugins();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disposes all plugins
|
||||
/// </summary>
|
||||
private void DisposePlugins()
|
||||
{
|
||||
if (Plugins != null)
|
||||
if (CompositionContainer != null)
|
||||
{
|
||||
Logger.LogInfo("Disposing Plugins");
|
||||
|
||||
foreach (BasePlugin plugin in Plugins)
|
||||
{
|
||||
plugin.Dispose();
|
||||
}
|
||||
CompositionContainer.Dispose();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -273,7 +291,7 @@ namespace MediaBrowser.Common.Kernel
|
||||
if (HttpServer != null)
|
||||
{
|
||||
Logger.LogInfo("Disposing Http Server");
|
||||
|
||||
|
||||
HttpServer.Dispose();
|
||||
}
|
||||
|
||||
@@ -283,21 +301,6 @@ namespace MediaBrowser.Common.Kernel
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disposes the current Logger instance
|
||||
/// </summary>
|
||||
private void DisposeLogger()
|
||||
{
|
||||
Trace.Listeners.Clear();
|
||||
|
||||
if (Logger.LoggerInstance != null)
|
||||
{
|
||||
Logger.LogInfo("Disposing Logger");
|
||||
|
||||
Logger.LoggerInstance.Dispose();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the current application version
|
||||
/// </summary>
|
||||
@@ -309,6 +312,13 @@ namespace MediaBrowser.Common.Kernel
|
||||
}
|
||||
}
|
||||
|
||||
protected void ReportProgress(IProgress<TaskProgress> progress, string message)
|
||||
{
|
||||
progress.Report(new TaskProgress { Description = message });
|
||||
|
||||
Logger.LogInfo(message);
|
||||
}
|
||||
|
||||
BaseApplicationPaths IKernel.ApplicationPaths
|
||||
{
|
||||
get { return ApplicationPaths; }
|
||||
@@ -322,6 +332,7 @@ namespace MediaBrowser.Common.Kernel
|
||||
|
||||
Task Init(IProgress<TaskProgress> progress);
|
||||
Task Reload(IProgress<TaskProgress> progress);
|
||||
IEnumerable<BaseLogger> Loggers { get; }
|
||||
void Dispose();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,92 +1,16 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using MediaBrowser.Common.Kernel;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
public abstract class BaseLogger : IDisposable
|
||||
{
|
||||
public LogSeverity LogSeverity { get; set; }
|
||||
|
||||
public void LogInfo(string message, params object[] paramList)
|
||||
{
|
||||
LogEntry(message, LogSeverity.Info, paramList);
|
||||
}
|
||||
|
||||
public void LogDebugInfo(string message, params object[] paramList)
|
||||
{
|
||||
LogEntry(message, LogSeverity.Debug, paramList);
|
||||
}
|
||||
|
||||
public void LogError(string message, params object[] paramList)
|
||||
{
|
||||
LogEntry(message, LogSeverity.Error, paramList);
|
||||
}
|
||||
|
||||
public void LogException(string message, Exception exception, params object[] paramList)
|
||||
{
|
||||
var builder = new StringBuilder();
|
||||
|
||||
if (exception != null)
|
||||
{
|
||||
builder.AppendFormat("Exception. Type={0} Msg={1} StackTrace={3}{2}",
|
||||
exception.GetType().FullName,
|
||||
exception.Message,
|
||||
exception.StackTrace,
|
||||
Environment.NewLine);
|
||||
}
|
||||
|
||||
message = FormatMessage(message, paramList);
|
||||
|
||||
LogError(string.Format("{0} ( {1} )", message, builder));
|
||||
}
|
||||
|
||||
public void LogWarning(string message, params object[] paramList)
|
||||
{
|
||||
LogEntry(message, LogSeverity.Warning, paramList);
|
||||
}
|
||||
|
||||
private string FormatMessage(string message, params object[] paramList)
|
||||
{
|
||||
if (paramList != null)
|
||||
{
|
||||
for (int i = 0; i < paramList.Length; i++)
|
||||
{
|
||||
message = message.Replace("{" + i + "}", paramList[i].ToString());
|
||||
}
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
||||
private void LogEntry(string message, LogSeverity severity, params object[] paramList)
|
||||
{
|
||||
if (severity < LogSeverity) return;
|
||||
|
||||
message = FormatMessage(message, paramList);
|
||||
|
||||
Thread currentThread = Thread.CurrentThread;
|
||||
|
||||
var row = new LogRow
|
||||
{
|
||||
Severity = severity,
|
||||
Message = message,
|
||||
ThreadId = currentThread.ManagedThreadId,
|
||||
ThreadName = currentThread.Name,
|
||||
Time = DateTime.Now
|
||||
};
|
||||
|
||||
LogEntry(row);
|
||||
}
|
||||
|
||||
protected virtual void Flush()
|
||||
{
|
||||
}
|
||||
public abstract void Initialize(IKernel kernel);
|
||||
public abstract void LogEntry(LogRow row);
|
||||
|
||||
public virtual void Dispose()
|
||||
{
|
||||
Logger.LogInfo("Disposing " + GetType().Name);
|
||||
}
|
||||
|
||||
protected abstract void LogEntry(LogRow row);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
@@ -11,4 +11,4 @@ namespace MediaBrowser.Common.Logging
|
||||
Warning = 4,
|
||||
Error = 8
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,24 +1,28 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using MediaBrowser.Common.Kernel;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
public static class Logger
|
||||
{
|
||||
public static BaseLogger LoggerInstance { get; set; }
|
||||
internal static IKernel Kernel { get; set; }
|
||||
|
||||
public static void LogInfo(string message, params object[] paramList)
|
||||
{
|
||||
LoggerInstance.LogInfo(message, paramList);
|
||||
LogEntry(message, LogSeverity.Info, paramList);
|
||||
}
|
||||
|
||||
public static void LogDebugInfo(string message, params object[] paramList)
|
||||
{
|
||||
LoggerInstance.LogDebugInfo(message, paramList);
|
||||
LogEntry(message, LogSeverity.Debug, paramList);
|
||||
}
|
||||
|
||||
public static void LogError(string message, params object[] paramList)
|
||||
{
|
||||
LoggerInstance.LogError(message, paramList);
|
||||
LogEntry(message, LogSeverity.Error, paramList);
|
||||
}
|
||||
|
||||
public static void LogException(Exception ex, params object[] paramList)
|
||||
@@ -28,12 +32,62 @@ namespace MediaBrowser.Common.Logging
|
||||
|
||||
public static void LogException(string message, Exception ex, params object[] paramList)
|
||||
{
|
||||
LoggerInstance.LogException(message, ex, paramList);
|
||||
var builder = new StringBuilder();
|
||||
|
||||
if (ex != null)
|
||||
{
|
||||
builder.AppendFormat("Exception. Type={0} Msg={1} StackTrace={3}{2}",
|
||||
ex.GetType().FullName,
|
||||
ex.Message,
|
||||
ex.StackTrace,
|
||||
Environment.NewLine);
|
||||
}
|
||||
|
||||
message = FormatMessage(message, paramList);
|
||||
|
||||
LogError(string.Format("{0} ( {1} )", message, builder));
|
||||
}
|
||||
|
||||
public static void LogWarning(string message, params object[] paramList)
|
||||
{
|
||||
LoggerInstance.LogWarning(message, paramList);
|
||||
LogEntry(message, LogSeverity.Warning, paramList);
|
||||
}
|
||||
|
||||
private static void LogEntry(string message, LogSeverity severity, params object[] paramList)
|
||||
{
|
||||
message = FormatMessage(message, paramList);
|
||||
|
||||
Thread currentThread = Thread.CurrentThread;
|
||||
|
||||
var row = new LogRow
|
||||
{
|
||||
Severity = severity,
|
||||
Message = message,
|
||||
ThreadId = currentThread.ManagedThreadId,
|
||||
ThreadName = currentThread.Name,
|
||||
Time = DateTime.Now
|
||||
};
|
||||
|
||||
if (Kernel.Loggers != null)
|
||||
{
|
||||
foreach (var logger in Kernel.Loggers)
|
||||
{
|
||||
logger.LogEntry(row);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static string FormatMessage(string message, params object[] paramList)
|
||||
{
|
||||
if (paramList != null)
|
||||
{
|
||||
for (int i = 0; i < paramList.Length; i++)
|
||||
{
|
||||
message = message.Replace("{" + i + "}", paramList[i].ToString());
|
||||
}
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides a Logger that can write to any Stream
|
||||
/// </summary>
|
||||
public class StreamLogger : BaseLogger
|
||||
{
|
||||
private Stream Stream { get; set; }
|
||||
|
||||
public StreamLogger(Stream stream)
|
||||
: base()
|
||||
{
|
||||
Stream = stream;
|
||||
}
|
||||
|
||||
protected override void LogEntry(LogRow row)
|
||||
{
|
||||
byte[] bytes = new UTF8Encoding().GetBytes(row.ToString() + Environment.NewLine);
|
||||
|
||||
lock (Stream)
|
||||
{
|
||||
Stream.Write(bytes, 0, bytes.Length);
|
||||
Stream.Flush();
|
||||
}
|
||||
}
|
||||
|
||||
public override void Dispose()
|
||||
{
|
||||
base.Dispose();
|
||||
Stream.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
38
MediaBrowser.Common/Logging/TraceFileLogger.cs
Normal file
38
MediaBrowser.Common/Logging/TraceFileLogger.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using MediaBrowser.Common.Kernel;
|
||||
using System;
|
||||
using System.ComponentModel.Composition;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
[Export(typeof(BaseLogger))]
|
||||
public class TraceFileLogger : BaseLogger
|
||||
{
|
||||
private TraceListener Listener { get; set; }
|
||||
|
||||
public override void Initialize(IKernel kernel)
|
||||
{
|
||||
DateTime now = DateTime.Now;
|
||||
|
||||
string logFilePath = Path.Combine(kernel.ApplicationPaths.LogDirectoryPath, "log-" + now.ToString("dMyyyy") + "-" + now.Ticks + ".log");
|
||||
|
||||
Listener = new TextWriterTraceListener(logFilePath);
|
||||
Trace.Listeners.Add(Listener);
|
||||
Trace.AutoFlush = true;
|
||||
}
|
||||
|
||||
public override void Dispose()
|
||||
{
|
||||
base.Dispose();
|
||||
|
||||
Trace.Listeners.Remove(Listener);
|
||||
Listener.Dispose();
|
||||
}
|
||||
|
||||
public override void LogEntry(LogRow row)
|
||||
{
|
||||
Trace.WriteLine(row.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace MediaBrowser.Common.Logging
|
||||
{
|
||||
public class TraceLogger : BaseLogger
|
||||
{
|
||||
protected override void LogEntry(LogRow row)
|
||||
{
|
||||
Trace.WriteLine(row.ToString());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -82,9 +82,11 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Extensions\BaseExtensions.cs" />
|
||||
<Compile Include="Events\GenericEventArgs.cs" />
|
||||
<Compile Include="Kernel\BaseApplicationPaths.cs" />
|
||||
<Compile Include="Drawing\DrawingUtils.cs" />
|
||||
<Compile Include="Logging\TraceLogger.cs" />
|
||||
<Compile Include="Logging\BaseLogger.cs" />
|
||||
<Compile Include="Logging\LogSeverity.cs" />
|
||||
<Compile Include="Logging\TraceFileLogger.cs" />
|
||||
<Compile Include="Net\Handlers\StaticFileHandler.cs" />
|
||||
<Compile Include="Net\MimeTypes.cs" />
|
||||
<Compile Include="Plugins\BaseTheme.cs" />
|
||||
@@ -96,11 +98,8 @@
|
||||
<Compile Include="Serialization\JsonSerializer.cs" />
|
||||
<Compile Include="Kernel\BaseKernel.cs" />
|
||||
<Compile Include="Kernel\KernelContext.cs" />
|
||||
<Compile Include="Logging\BaseLogger.cs" />
|
||||
<Compile Include="Logging\Logger.cs" />
|
||||
<Compile Include="Logging\LogRow.cs" />
|
||||
<Compile Include="Logging\LogSeverity.cs" />
|
||||
<Compile Include="Logging\StreamLogger.cs" />
|
||||
<Compile Include="Net\Handlers\BaseEmbeddedResourceHandler.cs" />
|
||||
<Compile Include="Net\Handlers\BaseHandler.cs" />
|
||||
<Compile Include="Net\Handlers\BaseSerializationHandler.cs" />
|
||||
@@ -152,6 +151,7 @@
|
||||
<ItemGroup>
|
||||
<Resource Include="Resources\Images\spinner.gif" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
||||
@@ -13,11 +13,6 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
|
||||
protected string ResourcePath { get; set; }
|
||||
|
||||
public override Task<string> GetContentType()
|
||||
{
|
||||
return Task.FromResult(MimeTypes.GetMimeType(ResourcePath));
|
||||
}
|
||||
|
||||
protected override Task WriteResponseToOutputStream(Stream stream)
|
||||
{
|
||||
return GetEmbeddedResourceStream().CopyToAsync(stream);
|
||||
|
||||
@@ -112,32 +112,6 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the MIME type to include in the response headers
|
||||
/// </summary>
|
||||
public abstract Task<string> GetContentType();
|
||||
|
||||
/// <summary>
|
||||
/// Gets the status code to include in the response headers
|
||||
/// </summary>
|
||||
protected int StatusCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the cache duration to include in the response headers
|
||||
/// </summary>
|
||||
public virtual TimeSpan CacheDuration
|
||||
{
|
||||
get
|
||||
{
|
||||
return TimeSpan.FromTicks(0);
|
||||
}
|
||||
}
|
||||
|
||||
public virtual bool ShouldCompressResponse(string contentType)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
private bool ClientSupportsCompression
|
||||
{
|
||||
get
|
||||
@@ -186,15 +160,21 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
ctx.Response.Headers["Accept-Ranges"] = "bytes";
|
||||
}
|
||||
|
||||
// Set the initial status code
|
||||
// When serving a range request, we need to return status code 206 to indicate a partial response body
|
||||
StatusCode = SupportsByteRangeRequests && IsRangeRequest ? 206 : 200;
|
||||
ResponseInfo responseInfo = await GetResponseInfo().ConfigureAwait(false);
|
||||
|
||||
ctx.Response.ContentType = await GetContentType().ConfigureAwait(false);
|
||||
if (responseInfo.IsResponseValid)
|
||||
{
|
||||
// Set the initial status code
|
||||
// When serving a range request, we need to return status code 206 to indicate a partial response body
|
||||
responseInfo.StatusCode = SupportsByteRangeRequests && IsRangeRequest ? 206 : 200;
|
||||
}
|
||||
|
||||
TimeSpan cacheDuration = CacheDuration;
|
||||
ctx.Response.ContentType = responseInfo.ContentType;
|
||||
|
||||
DateTime? lastDateModified = await GetLastDateModified().ConfigureAwait(false);
|
||||
if (!string.IsNullOrEmpty(responseInfo.Etag))
|
||||
{
|
||||
ctx.Response.Headers["ETag"] = responseInfo.Etag;
|
||||
}
|
||||
|
||||
if (ctx.Request.Headers.AllKeys.Contains("If-Modified-Since"))
|
||||
{
|
||||
@@ -203,26 +183,26 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
if (DateTime.TryParse(ctx.Request.Headers["If-Modified-Since"], out ifModifiedSince))
|
||||
{
|
||||
// If the cache hasn't expired yet just return a 304
|
||||
if (IsCacheValid(ifModifiedSince.ToUniversalTime(), cacheDuration, lastDateModified))
|
||||
if (IsCacheValid(ifModifiedSince.ToUniversalTime(), responseInfo.CacheDuration, responseInfo.DateLastModified))
|
||||
{
|
||||
StatusCode = 304;
|
||||
// ETag must also match (if supplied)
|
||||
if ((responseInfo.Etag ?? string.Empty).Equals(ctx.Request.Headers["If-None-Match"] ?? string.Empty))
|
||||
{
|
||||
responseInfo.StatusCode = 304;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
await PrepareResponse().ConfigureAwait(false);
|
||||
Logger.LogInfo("Responding with status code {0} for url {1}", responseInfo.StatusCode, url);
|
||||
|
||||
Logger.LogInfo("Responding with status code {0} for url {1}", StatusCode, url);
|
||||
|
||||
if (IsResponseValid)
|
||||
if (responseInfo.IsResponseValid)
|
||||
{
|
||||
bool compressResponse = ShouldCompressResponse(ctx.Response.ContentType) && ClientSupportsCompression;
|
||||
|
||||
await ProcessUncachedRequest(ctx, compressResponse, cacheDuration, lastDateModified).ConfigureAwait(false);
|
||||
await ProcessUncachedRequest(ctx, responseInfo).ConfigureAwait(false);
|
||||
}
|
||||
else
|
||||
{
|
||||
ctx.Response.StatusCode = StatusCode;
|
||||
ctx.Response.StatusCode = responseInfo.StatusCode;
|
||||
ctx.Response.SendChunked = false;
|
||||
}
|
||||
}
|
||||
@@ -239,7 +219,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
private async Task ProcessUncachedRequest(HttpListenerContext ctx, bool compressResponse, TimeSpan cacheDuration, DateTime? lastDateModified)
|
||||
private async Task ProcessUncachedRequest(HttpListenerContext ctx, ResponseInfo responseInfo)
|
||||
{
|
||||
long? totalContentLength = TotalContentLength;
|
||||
|
||||
@@ -258,22 +238,29 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
ctx.Response.ContentLength64 = totalContentLength.Value;
|
||||
}
|
||||
|
||||
var compressResponse = responseInfo.CompressResponse && ClientSupportsCompression;
|
||||
|
||||
// Add the compression header
|
||||
if (compressResponse)
|
||||
{
|
||||
ctx.Response.AddHeader("Content-Encoding", CompressionMethod);
|
||||
}
|
||||
|
||||
// Add caching headers
|
||||
if (cacheDuration.Ticks > 0)
|
||||
if (responseInfo.DateLastModified.HasValue)
|
||||
{
|
||||
CacheResponse(ctx.Response, cacheDuration, lastDateModified);
|
||||
ctx.Response.Headers[HttpResponseHeader.LastModified] = responseInfo.DateLastModified.Value.ToString("r");
|
||||
}
|
||||
|
||||
// Add caching headers
|
||||
if (responseInfo.CacheDuration.Ticks > 0)
|
||||
{
|
||||
CacheResponse(ctx.Response, responseInfo.CacheDuration);
|
||||
}
|
||||
|
||||
// Set the status code
|
||||
ctx.Response.StatusCode = StatusCode;
|
||||
ctx.Response.StatusCode = responseInfo.StatusCode;
|
||||
|
||||
if (IsResponseValid)
|
||||
if (responseInfo.IsResponseValid)
|
||||
{
|
||||
// Finally, write the response data
|
||||
Stream outputStream = ctx.Response.OutputStream;
|
||||
@@ -300,23 +287,10 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
private void CacheResponse(HttpListenerResponse response, TimeSpan duration, DateTime? dateModified)
|
||||
private void CacheResponse(HttpListenerResponse response, TimeSpan duration)
|
||||
{
|
||||
DateTime now = DateTime.UtcNow;
|
||||
|
||||
DateTime lastModified = dateModified ?? now;
|
||||
|
||||
response.Headers[HttpResponseHeader.CacheControl] = "public, max-age=" + Convert.ToInt32(duration.TotalSeconds);
|
||||
response.Headers[HttpResponseHeader.Expires] = now.Add(duration).ToString("r");
|
||||
response.Headers[HttpResponseHeader.LastModified] = lastModified.ToString("r");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gives subclasses a chance to do any prep work, and also to validate data and set an error status code, if needed
|
||||
/// </summary>
|
||||
protected virtual Task PrepareResponse()
|
||||
{
|
||||
return Task.FromResult<object>(null);
|
||||
response.Headers[HttpResponseHeader.Expires] = DateTime.UtcNow.Add(duration).ToString("r");
|
||||
}
|
||||
|
||||
protected abstract Task WriteResponseToOutputStream(Stream stream);
|
||||
@@ -364,20 +338,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
return null;
|
||||
}
|
||||
|
||||
protected virtual Task<DateTime?> GetLastDateModified()
|
||||
{
|
||||
DateTime? value = null;
|
||||
|
||||
return Task.FromResult(value);
|
||||
}
|
||||
|
||||
private bool IsResponseValid
|
||||
{
|
||||
get
|
||||
{
|
||||
return StatusCode == 200 || StatusCode == 206;
|
||||
}
|
||||
}
|
||||
protected abstract Task<ResponseInfo> GetResponseInfo();
|
||||
|
||||
private Hashtable _formValues;
|
||||
|
||||
@@ -439,4 +400,31 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
return formVars;
|
||||
}
|
||||
}
|
||||
|
||||
public class ResponseInfo
|
||||
{
|
||||
public string ContentType { get; set; }
|
||||
public string Etag { get; set; }
|
||||
public DateTime? DateLastModified { get; set; }
|
||||
public TimeSpan CacheDuration { get; set; }
|
||||
public bool CompressResponse { get; set; }
|
||||
public int StatusCode { get; set; }
|
||||
|
||||
public ResponseInfo()
|
||||
{
|
||||
CacheDuration = TimeSpan.FromTicks(0);
|
||||
|
||||
CompressResponse = true;
|
||||
|
||||
StatusCode = 200;
|
||||
}
|
||||
|
||||
public bool IsResponseValid
|
||||
{
|
||||
get
|
||||
{
|
||||
return StatusCode == 200 || StatusCode == 206;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,12 @@
|
||||
using System;
|
||||
using MediaBrowser.Common.Serialization;
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using MediaBrowser.Common.Serialization;
|
||||
|
||||
namespace MediaBrowser.Common.Net.Handlers
|
||||
{
|
||||
public abstract class BaseSerializationHandler<T> : BaseHandler
|
||||
where T : class
|
||||
where T : class
|
||||
{
|
||||
public SerializationFormat SerializationFormat
|
||||
{
|
||||
@@ -22,61 +22,61 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
return (SerializationFormat)Enum.Parse(typeof(SerializationFormat), format, true);
|
||||
}
|
||||
}
|
||||
|
||||
public override Task<string> GetContentType()
|
||||
{
|
||||
switch (SerializationFormat)
|
||||
{
|
||||
case SerializationFormat.Jsv:
|
||||
return Task.FromResult("text/plain");
|
||||
case SerializationFormat.Protobuf:
|
||||
return Task.FromResult("application/x-protobuf");
|
||||
default:
|
||||
return Task.FromResult(MimeTypes.JsonMimeType);
|
||||
}
|
||||
}
|
||||
|
||||
private bool _objectToSerializeEnsured;
|
||||
private T _objectToSerialize;
|
||||
|
||||
private async Task EnsureObjectToSerialize()
|
||||
protected string ContentType
|
||||
{
|
||||
if (!_objectToSerializeEnsured)
|
||||
get
|
||||
{
|
||||
_objectToSerialize = await GetObjectToSerialize().ConfigureAwait(false);
|
||||
|
||||
if (_objectToSerialize == null)
|
||||
switch (SerializationFormat)
|
||||
{
|
||||
StatusCode = 404;
|
||||
case SerializationFormat.Jsv:
|
||||
return "text/plain";
|
||||
case SerializationFormat.Protobuf:
|
||||
return "application/x-protobuf";
|
||||
default:
|
||||
return MimeTypes.JsonMimeType;
|
||||
}
|
||||
|
||||
_objectToSerializeEnsured = true;
|
||||
}
|
||||
}
|
||||
|
||||
protected override async Task<ResponseInfo> GetResponseInfo()
|
||||
{
|
||||
ResponseInfo info = new ResponseInfo
|
||||
{
|
||||
ContentType = ContentType
|
||||
};
|
||||
|
||||
_objectToSerialize = await GetObjectToSerialize().ConfigureAwait(false);
|
||||
|
||||
if (_objectToSerialize == null)
|
||||
{
|
||||
info.StatusCode = 404;
|
||||
}
|
||||
|
||||
return info;
|
||||
}
|
||||
|
||||
private T _objectToSerialize;
|
||||
|
||||
protected abstract Task<T> GetObjectToSerialize();
|
||||
|
||||
protected override Task PrepareResponse()
|
||||
protected override Task WriteResponseToOutputStream(Stream stream)
|
||||
{
|
||||
return EnsureObjectToSerialize();
|
||||
}
|
||||
|
||||
protected async override Task WriteResponseToOutputStream(Stream stream)
|
||||
{
|
||||
await EnsureObjectToSerialize().ConfigureAwait(false);
|
||||
|
||||
switch (SerializationFormat)
|
||||
return Task.Run(() =>
|
||||
{
|
||||
case SerializationFormat.Jsv:
|
||||
JsvSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
case SerializationFormat.Protobuf:
|
||||
ProtobufSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
default:
|
||||
JsonSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
}
|
||||
switch (SerializationFormat)
|
||||
{
|
||||
case SerializationFormat.Jsv:
|
||||
JsvSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
case SerializationFormat.Protobuf:
|
||||
ProtobufSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
default:
|
||||
JsonSerializer.SerializeToStream(_objectToSerialize, stream);
|
||||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,46 +33,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
private bool _sourceStreamEnsured;
|
||||
private Stream _sourceStream;
|
||||
private Stream SourceStream
|
||||
{
|
||||
get
|
||||
{
|
||||
EnsureSourceStream();
|
||||
return _sourceStream;
|
||||
}
|
||||
}
|
||||
|
||||
private void EnsureSourceStream()
|
||||
{
|
||||
if (!_sourceStreamEnsured)
|
||||
{
|
||||
try
|
||||
{
|
||||
_sourceStream = File.OpenRead(Path);
|
||||
}
|
||||
catch (FileNotFoundException ex)
|
||||
{
|
||||
StatusCode = 404;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
catch (DirectoryNotFoundException ex)
|
||||
{
|
||||
StatusCode = 404;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
catch (UnauthorizedAccessException ex)
|
||||
{
|
||||
StatusCode = 403;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
finally
|
||||
{
|
||||
_sourceStreamEnsured = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
private Stream SourceStream { get; set; }
|
||||
|
||||
protected override bool SupportsByteRangeRequests
|
||||
{
|
||||
@@ -82,7 +43,7 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
public override bool ShouldCompressResponse(string contentType)
|
||||
private bool ShouldCompressResponse(string contentType)
|
||||
{
|
||||
// Can't compress these
|
||||
if (IsRangeRequest)
|
||||
@@ -105,29 +66,41 @@ namespace MediaBrowser.Common.Net.Handlers
|
||||
return SourceStream.Length;
|
||||
}
|
||||
|
||||
protected override Task<DateTime?> GetLastDateModified()
|
||||
protected override Task<ResponseInfo> GetResponseInfo()
|
||||
{
|
||||
DateTime? value = null;
|
||||
ResponseInfo info = new ResponseInfo
|
||||
{
|
||||
ContentType = MimeTypes.GetMimeType(Path),
|
||||
};
|
||||
|
||||
EnsureSourceStream();
|
||||
try
|
||||
{
|
||||
SourceStream = File.OpenRead(Path);
|
||||
}
|
||||
catch (FileNotFoundException ex)
|
||||
{
|
||||
info.StatusCode = 404;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
catch (DirectoryNotFoundException ex)
|
||||
{
|
||||
info.StatusCode = 404;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
catch (UnauthorizedAccessException ex)
|
||||
{
|
||||
info.StatusCode = 403;
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
|
||||
info.CompressResponse = ShouldCompressResponse(info.ContentType);
|
||||
|
||||
if (SourceStream != null)
|
||||
{
|
||||
value = File.GetLastWriteTimeUtc(Path);
|
||||
info.DateLastModified = File.GetLastWriteTimeUtc(Path);
|
||||
}
|
||||
|
||||
return Task.FromResult(value);
|
||||
}
|
||||
|
||||
public override Task<string> GetContentType()
|
||||
{
|
||||
return Task.FromResult(MimeTypes.GetMimeType(Path));
|
||||
}
|
||||
|
||||
protected override Task PrepareResponse()
|
||||
{
|
||||
EnsureSourceStream();
|
||||
return Task.FromResult<object>(null);
|
||||
return Task.FromResult<ResponseInfo>(info);
|
||||
}
|
||||
|
||||
protected override Task WriteResponseToOutputStream(Stream stream)
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using MediaBrowser.Common.Kernel;
|
||||
using MediaBrowser.Common.Logging;
|
||||
using MediaBrowser.Common.Serialization;
|
||||
using MediaBrowser.Model.Plugins;
|
||||
using System;
|
||||
@@ -200,6 +201,8 @@ namespace MediaBrowser.Common.Plugins
|
||||
/// </summary>
|
||||
public void Dispose()
|
||||
{
|
||||
Logger.LogInfo("Disposing {0} Plugin", Name);
|
||||
|
||||
if (Context == KernelContext.Server)
|
||||
{
|
||||
DisposeOnServer();
|
||||
|
||||
@@ -5,7 +5,6 @@ using Microsoft.Shell;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
namespace MediaBrowser.Common.UI
|
||||
@@ -44,8 +43,6 @@ namespace MediaBrowser.Common.UI
|
||||
|
||||
var progress = new Progress<TaskProgress>();
|
||||
|
||||
progress.ProgressChanged += progress_ProgressChanged;
|
||||
|
||||
var splash = new Splash(progress);
|
||||
|
||||
splash.Show();
|
||||
@@ -56,8 +53,6 @@ namespace MediaBrowser.Common.UI
|
||||
|
||||
await Kernel.Init(progress);
|
||||
|
||||
progress.ProgressChanged -= progress_ProgressChanged;
|
||||
|
||||
Logger.LogInfo("Kernel.Init completed in {0} seconds.", (DateTime.UtcNow - now).TotalSeconds);
|
||||
splash.Close();
|
||||
|
||||
@@ -69,12 +64,7 @@ namespace MediaBrowser.Common.UI
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
progress.ProgressChanged -= progress_ProgressChanged;
|
||||
|
||||
if (Logger.LoggerInstance != null)
|
||||
{
|
||||
Logger.LogException(ex);
|
||||
}
|
||||
Logger.LogException(ex);
|
||||
|
||||
MessageBox.Show("There was an error launching Media Browser: " + ex.Message);
|
||||
splash.Close();
|
||||
@@ -84,44 +74,8 @@ namespace MediaBrowser.Common.UI
|
||||
}
|
||||
}
|
||||
|
||||
public async Task ReloadKernel()
|
||||
{
|
||||
var progress = new Progress<TaskProgress>();
|
||||
|
||||
progress.ProgressChanged += progress_ProgressChanged;
|
||||
|
||||
try
|
||||
{
|
||||
DateTime now = DateTime.UtcNow;
|
||||
|
||||
await Kernel.Reload(progress);
|
||||
|
||||
progress.ProgressChanged -= progress_ProgressChanged;
|
||||
|
||||
Logger.LogInfo("Kernel.Reload completed in {0} seconds.", (DateTime.UtcNow - now).TotalSeconds);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
progress.ProgressChanged -= progress_ProgressChanged;
|
||||
|
||||
Logger.LogException(ex);
|
||||
|
||||
// Shutdown the app with an error code
|
||||
Shutdown(1);
|
||||
}
|
||||
}
|
||||
|
||||
void progress_ProgressChanged(object sender, TaskProgress e)
|
||||
{
|
||||
if (Logger.LoggerInstance != null)
|
||||
{
|
||||
Logger.LogInfo(e.Description);
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void OnKernelLoaded()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
protected override void OnExit(ExitEventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user