| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 | using System;using System.Buffers;using System.IO;using System.Threading;using System.Threading.Tasks;using MediaBrowser.Model.IO;namespace Emby.Server.Implementations.IO{    public class StreamHelper : IStreamHelper    {        private const int StreamCopyToBufferSize = 81920;        public async Task CopyToAsync(Stream source, Stream destination, int bufferSize, Action onStarted, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(bufferSize);            try            {                int read;                while ((read = await source.ReadAsync(buffer, 0, buffer.Length).ConfigureAwait(false)) != 0)                {                    cancellationToken.ThrowIfCancellationRequested();                    await destination.WriteAsync(buffer, 0, read).ConfigureAwait(false);                    if (onStarted != null)                    {                        onStarted();                        onStarted = null;                    }                }            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task CopyToAsync(Stream source, Stream destination, int bufferSize, int emptyReadLimit, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(bufferSize);            try            {                if (emptyReadLimit <= 0)                {                    int read;                    while ((read = await source.ReadAsync(buffer, 0, buffer.Length).ConfigureAwait(false)) != 0)                    {                        cancellationToken.ThrowIfCancellationRequested();                        await destination.WriteAsync(buffer, 0, read).ConfigureAwait(false);                    }                    return;                }                var eofCount = 0;                while (eofCount < emptyReadLimit)                {                    cancellationToken.ThrowIfCancellationRequested();                    var bytesRead = await source.ReadAsync(buffer, 0, buffer.Length).ConfigureAwait(false);                    if (bytesRead == 0)                    {                        eofCount++;                        await Task.Delay(50, cancellationToken).ConfigureAwait(false);                    }                    else                    {                        eofCount = 0;                        await destination.WriteAsync(buffer, 0, bytesRead).ConfigureAwait(false);                    }                }            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task<int> CopyToAsync(Stream source, Stream destination, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(StreamCopyToBufferSize);            try            {                int totalBytesRead = 0;                int bytesRead;                while ((bytesRead = await source.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)                {                    var bytesToWrite = bytesRead;                    if (bytesToWrite > 0)                    {                        await destination.WriteAsync(buffer, 0, Convert.ToInt32(bytesToWrite), cancellationToken).ConfigureAwait(false);                        totalBytesRead += bytesRead;                    }                }                return totalBytesRead;            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task<int> CopyToAsyncWithSyncRead(Stream source, Stream destination, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(StreamCopyToBufferSize);            try            {                int bytesRead;                int totalBytesRead = 0;                while ((bytesRead = source.Read(buffer, 0, buffer.Length)) != 0)                {                    var bytesToWrite = bytesRead;                    if (bytesToWrite > 0)                    {                        await destination.WriteAsync(buffer, 0, Convert.ToInt32(bytesToWrite), cancellationToken).ConfigureAwait(false);                        totalBytesRead += bytesRead;                    }                }                return totalBytesRead;            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task CopyToAsyncWithSyncRead(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(StreamCopyToBufferSize);            try            {                int bytesRead;                while ((bytesRead = source.Read(buffer, 0, buffer.Length)) != 0)                {                    var bytesToWrite = Math.Min(bytesRead, copyLength);                    if (bytesToWrite > 0)                    {                        await destination.WriteAsync(buffer, 0, Convert.ToInt32(bytesToWrite), cancellationToken).ConfigureAwait(false);                    }                    copyLength -= bytesToWrite;                    if (copyLength <= 0)                    {                        break;                    }                }            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task CopyToAsync(Stream source, Stream destination, long copyLength, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(StreamCopyToBufferSize);            try            {                int bytesRead;                while ((bytesRead = await source.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)                {                    var bytesToWrite = Math.Min(bytesRead, copyLength);                    if (bytesToWrite > 0)                    {                        await destination.WriteAsync(buffer, 0, Convert.ToInt32(bytesToWrite), cancellationToken).ConfigureAwait(false);                    }                    copyLength -= bytesToWrite;                    if (copyLength <= 0)                    {                        break;                    }                }            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        public async Task CopyUntilCancelled(Stream source, Stream target, int bufferSize, CancellationToken cancellationToken)        {            byte[] buffer = ArrayPool<byte>.Shared.Rent(bufferSize);            try            {                while (!cancellationToken.IsCancellationRequested)                {                    var bytesRead = await CopyToAsyncInternal(source, target, buffer, cancellationToken).ConfigureAwait(false);                    if (bytesRead == 0)                    {                        await Task.Delay(100).ConfigureAwait(false);                    }                }            }            finally            {                ArrayPool<byte>.Shared.Return(buffer);            }        }        private static async Task<int> CopyToAsyncInternal(Stream source, Stream destination, byte[] buffer, CancellationToken cancellationToken)        {            int bytesRead;            int totalBytesRead = 0;            while ((bytesRead = await source.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)            {                await destination.WriteAsync(buffer, 0, bytesRead).ConfigureAwait(false);                totalBytesRead += bytesRead;            }            return totalBytesRead;        }    }}
 |