jellyfin/Emby.Server.Implementations/HttpServer/StreamWriter.cs

130 lines
3.8 KiB
C#
Raw Normal View History

2013-03-11 05:04:08 +01:00
using MediaBrowser.Model.Logging;
using System;
using System.Collections.Generic;
2014-01-12 22:32:13 +01:00
using System.Globalization;
using System.IO;
2016-10-25 21:02:04 +02:00
using System.Threading;
2016-07-14 21:13:52 +02:00
using System.Threading.Tasks;
2016-10-06 20:55:01 +02:00
using MediaBrowser.Common.IO;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
2016-11-04 02:18:51 +01:00
namespace Emby.Server.Implementations.HttpServer
{
/// <summary>
/// Class StreamWriter
/// </summary>
2016-10-25 21:02:04 +02:00
public class StreamWriter : IAsyncStreamWriter, IHasHeaders
{
2013-03-11 05:04:08 +01:00
private ILogger Logger { get; set; }
2014-01-12 22:32:13 +01:00
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
2016-10-06 20:55:01 +02:00
/// <summary>
/// Gets or sets the source stream.
/// </summary>
/// <value>The source stream.</value>
2013-03-25 03:41:27 +01:00
private Stream SourceStream { get; set; }
2016-11-12 07:58:50 +01:00
private byte[] SourceBytes { get; set; }
/// <summary>
/// The _options
/// </summary>
private readonly IDictionary<string, string> _options = new Dictionary<string, string>();
/// <summary>
/// Gets the options.
/// </summary>
/// <value>The options.</value>
2016-10-25 21:02:04 +02:00
public IDictionary<string, string> Headers
{
get { return _options; }
}
2014-09-03 04:30:24 +02:00
public Action OnComplete { get; set; }
2015-10-02 20:30:27 +02:00
public Action OnError { get; set; }
2014-08-30 16:26:29 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="StreamWriter" /> class.
/// </summary>
/// <param name="source">The source.</param>
/// <param name="contentType">Type of the content.</param>
2013-03-11 05:04:08 +01:00
/// <param name="logger">The logger.</param>
public StreamWriter(Stream source, string contentType, ILogger logger)
{
if (string.IsNullOrEmpty(contentType))
{
throw new ArgumentNullException("contentType");
}
SourceStream = source;
2013-03-11 05:04:08 +01:00
Logger = logger;
2016-10-25 21:02:04 +02:00
Headers["Content-Type"] = contentType;
2014-01-12 22:32:13 +01:00
if (source.CanSeek)
{
2016-10-25 21:02:04 +02:00
Headers["Content-Length"] = source.Length.ToString(UsCulture);
2014-01-12 22:32:13 +01:00
}
}
2013-03-25 03:41:27 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="StreamWriter"/> class.
/// </summary>
/// <param name="source">The source.</param>
/// <param name="contentType">Type of the content.</param>
/// <param name="logger">The logger.</param>
public StreamWriter(byte[] source, string contentType, ILogger logger)
{
2016-10-06 20:55:01 +02:00
if (string.IsNullOrEmpty(contentType))
{
throw new ArgumentNullException("contentType");
}
2016-11-12 07:58:50 +01:00
SourceBytes = source;
2016-10-06 20:55:01 +02:00
Logger = logger;
2016-10-25 21:02:04 +02:00
Headers["Content-Type"] = contentType;
2016-10-06 20:55:01 +02:00
2016-10-25 21:02:04 +02:00
Headers["Content-Length"] = source.Length.ToString(UsCulture);
2013-03-25 03:41:27 +01:00
}
2016-10-25 21:02:04 +02:00
public async Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken)
{
2013-03-11 05:04:08 +01:00
try
{
2016-11-12 07:58:50 +01:00
var bytes = SourceBytes;
if (bytes != null)
2016-10-06 20:55:01 +02:00
{
2016-11-12 07:58:50 +01:00
await responseStream.WriteAsync(bytes, 0, bytes.Length).ConfigureAwait(false);
2016-10-06 20:55:01 +02:00
}
else
2013-03-11 05:04:08 +01:00
{
2016-10-06 20:55:01 +02:00
using (var src = SourceStream)
{
2016-10-31 21:00:26 +01:00
await src.CopyToAsync(responseStream).ConfigureAwait(false);
2016-10-06 20:55:01 +02:00
}
2013-03-11 05:04:08 +01:00
}
}
catch (Exception ex)
{
2014-08-29 14:14:41 +02:00
Logger.ErrorException("Error streaming data", ex);
2013-03-11 05:04:08 +01:00
2015-10-02 20:30:27 +02:00
if (OnError != null)
{
OnError();
}
2016-07-14 21:13:52 +02:00
2013-03-11 05:04:08 +01:00
throw;
}
2014-09-03 04:30:24 +02:00
finally
{
if (OnComplete != null)
{
OnComplete();
}
}
}
}
}