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