Files
Pieter-Jan Briers adee05b009 Make client start with non-seekable streams.
Not marking #2439 as fixed yet due to lack of thorough testing.
2022-02-21 11:23:37 +01:00

103 lines
2.9 KiB
C#

using System;
using System.IO;
namespace Robust.Shared.Utility
{
/// <summary>
/// Extension methods for working with streams.
/// </summary>
public static class StreamExt
{
/// <summary>
/// Copies any stream into a byte array.
/// </summary>
/// <param name="stream">The stream to copy.</param>
/// <returns>The byte array.</returns>
public static byte[] CopyToArray(this Stream stream)
{
using (var memStream = new MemoryStream())
{
stream.CopyTo(memStream);
return memStream.ToArray();
}
}
internal static MemoryStream ConsumeToMemoryStream(this Stream stream)
{
var ms = stream.CopyToMemoryStream();
stream.Dispose();
return ms;
}
internal static MemoryStream CopyToMemoryStream(this Stream stream)
{
var ms = new MemoryStream();
stream.CopyTo(ms);
ms.Seek(0, SeekOrigin.Begin);
return ms;
}
/// <exception cref="EndOfStreamException">
/// Thrown if not exactly <paramref name="amount"/> bytes could be read.
/// </exception>
public static byte[] ReadExact(this Stream stream, int amount)
{
var buffer = new byte[amount];
var read = 0;
while (read < amount)
{
var cRead = stream.Read(buffer, read, amount - read);
if (cRead == 0)
{
throw new EndOfStreamException();
}
read += cRead;
}
return buffer;
}
/// <exception cref="EndOfStreamException">
/// Thrown if not exactly <paramref name="buffer.Length"/> bytes could be read.
/// </exception>
public static void ReadExact(this Stream stream, Span<byte> buffer)
{
while (buffer.Length > 0)
{
var cRead = stream.Read(buffer);
if (cRead == 0)
throw new EndOfStreamException();
buffer = buffer[cRead..];
}
}
public static int ReadToEnd(this Stream stream, Span<byte> buffer)
{
var totalRead = 0;
while (true)
{
var read = stream.Read(buffer);
totalRead += read;
if (read == 0)
return totalRead;
buffer = buffer[read..];
}
}
public static int ReadToEnd(this Stream stream, byte[] buffer)
{
var totalRead = 0;
while (true)
{
var read = stream.Read(buffer, totalRead, buffer.Length - totalRead);
totalRead += read;
if (read == 0)
return totalRead;
}
}
}
}