2013-03-11 04:04:08 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
|
|
|
|
using ServiceStack.Service;
|
|
|
|
|
using System;
|
2013-02-25 05:17:59 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.HttpServer
|
2013-02-25 05:17:59 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class StreamWriter
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StreamWriter : IStreamWriter
|
|
|
|
|
{
|
2013-03-11 04:04:08 +00:00
|
|
|
|
private ILogger Logger { get; set; }
|
|
|
|
|
|
2013-02-25 05:17:59 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the source stream.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The source stream.</value>
|
|
|
|
|
public Stream SourceStream { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="StreamWriter" /> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="source">The source.</param>
|
2013-03-11 04:04:08 +00:00
|
|
|
|
/// <param name="logger">The logger.</param>
|
|
|
|
|
public StreamWriter(Stream source, ILogger logger)
|
2013-02-25 05:17:59 +00:00
|
|
|
|
{
|
|
|
|
|
SourceStream = source;
|
2013-03-11 04:04:08 +00:00
|
|
|
|
Logger = logger;
|
2013-02-25 05:17:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Writes to.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="responseStream">The response stream.</param>
|
|
|
|
|
public void WriteTo(Stream responseStream)
|
|
|
|
|
{
|
|
|
|
|
var task = WriteToAsync(responseStream);
|
|
|
|
|
|
|
|
|
|
Task.WaitAll(task);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Writes to async.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="responseStream">The response stream.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-03-09 06:05:19 +00:00
|
|
|
|
private async Task WriteToAsync(Stream responseStream)
|
2013-02-25 05:17:59 +00:00
|
|
|
|
{
|
2013-03-11 04:04:08 +00:00
|
|
|
|
try
|
2013-03-09 06:05:19 +00:00
|
|
|
|
{
|
2013-03-11 04:04:08 +00:00
|
|
|
|
using (var src = SourceStream)
|
|
|
|
|
{
|
|
|
|
|
await src.CopyToAsync(responseStream).ConfigureAwait(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error streaming media", ex);
|
|
|
|
|
|
|
|
|
|
throw;
|
2013-03-09 06:05:19 +00:00
|
|
|
|
}
|
2013-02-25 05:17:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|