Files
sharpcompress/src/SharpCompress/IO/ReadOnlySubStream.cs
2026-02-04 10:08:50 +00:00

109 lines
2.8 KiB
C#

using System;
using System.Diagnostics;
using System.IO;
namespace SharpCompress.IO;
internal partial class ReadOnlySubStream : Stream, IStreamStack
{
Stream IStreamStack.BaseStream() => _stream;
private readonly Stream _stream;
private readonly bool _leaveOpen;
private long _position;
public ReadOnlySubStream(Stream stream, long bytesToRead, bool leaveOpen = true)
: this(stream, null, bytesToRead, leaveOpen) { }
public ReadOnlySubStream(Stream stream, long? origin, long bytesToRead, bool leaveOpen = true)
{
_stream = stream ?? throw new ArgumentNullException(nameof(stream));
_leaveOpen = leaveOpen;
if (origin != null && stream.Position != origin.Value)
{
stream.Position = origin.Value;
}
BytesLeftToRead = bytesToRead;
_position = 0;
}
private long BytesLeftToRead { get; set; }
public override bool CanRead => true;
public override bool CanSeek => false;
public override bool CanWrite => false;
public override void Flush() { }
public override long Length => throw new NotSupportedException();
public override long Position
{
get => _position; //allow position to be read (XZ uses this to calculate alignment)
set => throw new NotSupportedException();
}
public override int Read(byte[] buffer, int offset, int count)
{
if (BytesLeftToRead < count)
{
count = (int)BytesLeftToRead;
}
var read = _stream.Read(buffer, offset, count);
if (read > 0)
{
BytesLeftToRead -= read;
_position += read;
}
return read;
}
public override int ReadByte()
{
if (BytesLeftToRead <= 0)
{
return -1;
}
var value = _stream.ReadByte();
if (value != -1)
{
--BytesLeftToRead;
_position++;
}
return value;
}
#if !LEGACY_DOTNET
public override int Read(Span<byte> buffer)
{
var sliceLen = BytesLeftToRead < buffer.Length ? BytesLeftToRead : buffer.Length;
var read = _stream.Read(buffer.Slice(0, (int)sliceLen));
if (read > 0)
{
BytesLeftToRead -= read;
_position += read;
}
return read;
}
#endif
public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException();
public override void SetLength(long value) => throw new NotSupportedException();
public override void Write(byte[] buffer, int offset, int count) =>
throw new NotSupportedException();
protected override void Dispose(bool disposing)
{
if (disposing && !_leaveOpen)
{
_stream.Dispose();
}
base.Dispose(disposing);
}
}