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