Files
sharpcompress/src/SharpCompress/IO/MarkingBinaryReader.cs

159 lines
5.3 KiB
C#

using System;
using System.Buffers.Binary;
using System.IO;
using SharpCompress.Common;
namespace SharpCompress.IO;
internal class MarkingBinaryReader : BinaryReader
{
public MarkingBinaryReader(Stream stream)
: base(stream) { }
public virtual long CurrentReadByteCount { get; protected set; }
public virtual void Mark() => CurrentReadByteCount = 0;
public override int Read() => throw new NotSupportedException();
public override int Read(byte[] buffer, int index, int count) =>
throw new NotSupportedException();
public override int Read(char[] buffer, int index, int count) =>
throw new NotSupportedException();
public override bool ReadBoolean() => ReadByte() != 0;
// NOTE: there is a somewhat fragile dependency on the internals of this class
// with RarCrcBinaryReader and RarCryptoBinaryReader.
//
// RarCrcBinaryReader/RarCryptoBinaryReader need to override any specific methods
// that call directly to the base BinaryReader and do not delegate to other methods
// in this class so that it can track the each byte being read.
//
// if altering this class in a way that changes the implementation be sure to
// update RarCrcBinaryReader/RarCryptoBinaryReader.
public override byte ReadByte()
{
CurrentReadByteCount++;
return base.ReadByte();
}
public override byte[] ReadBytes(int count)
{
CurrentReadByteCount += count;
var bytes = base.ReadBytes(count);
if (bytes.Length != count)
{
throw new InvalidFormatException(
string.Format(
"Could not read the requested amount of bytes. End of stream reached. Requested: {0} Read: {1}",
count,
bytes.Length
)
);
}
return bytes;
}
public override char ReadChar() => throw new NotSupportedException();
public override char[] ReadChars(int count) => throw new NotSupportedException();
public override double ReadDouble() => throw new NotSupportedException();
public override short ReadInt16() => BinaryPrimitives.ReadInt16LittleEndian(ReadBytes(2));
public override int ReadInt32() => BinaryPrimitives.ReadInt32LittleEndian(ReadBytes(4));
public override long ReadInt64() => BinaryPrimitives.ReadInt64LittleEndian(ReadBytes(8));
public override sbyte ReadSByte() => (sbyte)ReadByte();
public override float ReadSingle() => throw new NotSupportedException();
public override string ReadString() => throw new NotSupportedException();
public override ushort ReadUInt16() => BinaryPrimitives.ReadUInt16LittleEndian(ReadBytes(2));
public override uint ReadUInt32() => BinaryPrimitives.ReadUInt32LittleEndian(ReadBytes(4));
public override ulong ReadUInt64() => BinaryPrimitives.ReadUInt64LittleEndian(ReadBytes(8));
// RAR5 style variable length encoded value
// maximum value of 0xffffffffffffffff (64 bits)
// technote: "implies max 10 bytes consumed" -- but not really because we could extend indefinitely using 0x80 0x80 ... 0x80 00
//
// Variable length integer. Can include one or more bytes, where lower 7 bits of every byte contain integer data
// and highest bit in every byte is the continuation flag. If highest bit is 0, this is the last byte in sequence.
// So first byte contains 7 least significant bits of integer and continuation flag. Second byte, if present,
// contains next 7 bits and so on.
public ulong ReadRarVInt(int maxBytes = 10) =>
// hopefully this gets inlined
DoReadRarVInt((maxBytes - 1) * 7);
private ulong DoReadRarVInt(int maxShift)
{
var shift = 0;
ulong result = 0;
do
{
var b0 = ReadByte();
var b1 = ((uint)b0) & 0x7f;
ulong n = b1;
var shifted = n << shift;
if (n != shifted >> shift)
{
// overflow
break;
}
result |= shifted;
if (b0 == b1)
{
return result;
}
shift += 7;
} while (shift <= maxShift);
throw new FormatException("malformed vint");
}
public uint ReadRarVIntUInt32(int maxBytes = 5) =>
// hopefully this gets inlined
DoReadRarVIntUInt32((maxBytes - 1) * 7);
public ushort ReadRarVIntUInt16(int maxBytes = 3) =>
// hopefully this gets inlined
checked((ushort)DoReadRarVIntUInt32((maxBytes - 1) * 7));
public byte ReadRarVIntByte(int maxBytes = 2) =>
// hopefully this gets inlined
checked((byte)DoReadRarVIntUInt32((maxBytes - 1) * 7));
private uint DoReadRarVIntUInt32(int maxShift)
{
var shift = 0;
uint result = 0;
do
{
var b0 = ReadByte();
var b1 = ((uint)b0) & 0x7f;
var n = b1;
var shifted = n << shift;
if (n != shifted >> shift)
{
// overflow
break;
}
result |= shifted;
if (b0 == b1)
{
return result;
}
shift += 7;
} while (shift <= maxShift);
throw new FormatException("malformed vint");
}
}