mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 17cd44fdcf56bd26a2a22ddecc156c9c35ae6478 Former-commit-id: c978bc8b4b361b67559b28f71eb1c351ff2b5246 Former-commit-id: 9a242b89981c266e38e6e79bf55e4750e0e3ef73af/merge-core
1 changed files with 385 additions and 0 deletions
@ -0,0 +1,385 @@ |
|||
// <copyright file="EndianBinaryWriter.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageProcessorCore.IO |
|||
{ |
|||
using System; |
|||
using System.IO; |
|||
using System.Text; |
|||
|
|||
/// <summary>
|
|||
/// Equivalent of <see cref="BinaryWriter"/>, but with either endianness, depending on
|
|||
/// the <see cref="EndianBitConverter"/> it is constructed with.
|
|||
/// </summary>
|
|||
internal class EndianBinaryWriter : IDisposable |
|||
{ |
|||
/// <summary>
|
|||
/// Buffer used for temporary storage during conversion from primitives
|
|||
/// </summary>
|
|||
private readonly byte[] buffer = new byte[16]; |
|||
|
|||
/// <summary>
|
|||
/// Buffer used for Write(char)
|
|||
/// </summary>
|
|||
private readonly char[] charBuffer = new char[1]; |
|||
|
|||
/// <summary>
|
|||
/// Whether or not this writer has been disposed yet.
|
|||
/// </summary>
|
|||
private bool disposed; |
|||
|
|||
/// <summary>
|
|||
/// Initializes a new instance of the <see cref="EndianBinaryWriter"/> class
|
|||
/// with the given bit converter, writing to the given stream, using UTF-8 encoding.
|
|||
/// </summary>
|
|||
/// <param name="bitConverter">Converter to use when writing data</param>
|
|||
/// <param name="stream">Stream to write data to</param>
|
|||
public EndianBinaryWriter(EndianBitConverter bitConverter, Stream stream) |
|||
: this(bitConverter, stream, Encoding.UTF8) |
|||
{ |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Initializes a new instance of the <see cref="EndianBinaryWriter"/> class
|
|||
/// with the given bit converter, writing to the given stream, using the given encoding.
|
|||
/// </summary>
|
|||
/// <param name="bitConverter">Converter to use when writing data</param>
|
|||
/// <param name="stream">Stream to write data to</param>
|
|||
/// <param name="encoding">
|
|||
/// Encoding to use when writing character data
|
|||
/// </param>
|
|||
public EndianBinaryWriter(EndianBitConverter bitConverter, Stream stream, Encoding encoding) |
|||
{ |
|||
// TODO: Use Guard
|
|||
if (bitConverter == null) |
|||
{ |
|||
throw new ArgumentNullException("bitConverter"); |
|||
} |
|||
|
|||
if (stream == null) |
|||
{ |
|||
throw new ArgumentNullException("stream"); |
|||
} |
|||
|
|||
if (encoding == null) |
|||
{ |
|||
throw new ArgumentNullException("encoding"); |
|||
} |
|||
|
|||
if (!stream.CanWrite) |
|||
{ |
|||
throw new ArgumentException("Stream isn't writable", "stream"); |
|||
} |
|||
|
|||
this.BaseStream = stream; |
|||
this.BitConverter = bitConverter; |
|||
this.Encoding = encoding; |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Gets the bit converter used to write values to the stream
|
|||
/// </summary>
|
|||
public EndianBitConverter BitConverter { get; } |
|||
|
|||
/// <summary>
|
|||
/// Gets the encoding used to write strings
|
|||
/// </summary>
|
|||
public Encoding Encoding { get; } |
|||
|
|||
/// <summary>
|
|||
/// Gets the underlying stream of the EndianBinaryWriter.
|
|||
/// </summary>
|
|||
public Stream BaseStream { get; } |
|||
|
|||
/// <summary>
|
|||
/// Closes the writer, including the underlying stream.
|
|||
/// </summary>
|
|||
public void Close() |
|||
{ |
|||
this.Dispose(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Flushes the underlying stream.
|
|||
/// </summary>
|
|||
public void Flush() |
|||
{ |
|||
this.CheckDisposed(); |
|||
this.BaseStream.Flush(); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Seeks within the stream.
|
|||
/// </summary>
|
|||
/// <param name="offset">Offset to seek to.</param>
|
|||
/// <param name="origin">Origin of seek operation.</param>
|
|||
public void Seek(int offset, SeekOrigin origin) |
|||
{ |
|||
this.CheckDisposed(); |
|||
this.BaseStream.Seek(offset, origin); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a boolean value to the stream. 1 byte is written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(bool value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 1); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 16-bit signed integer to the stream, using the bit converter
|
|||
/// for this writer. 2 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(short value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 2); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 32-bit signed integer to the stream, using the bit converter
|
|||
/// for this writer. 4 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(int value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 4); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 64-bit signed integer to the stream, using the bit converter
|
|||
/// for this writer. 8 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(long value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 8); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 16-bit unsigned integer to the stream, using the bit converter
|
|||
/// for this writer. 2 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(ushort value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 2); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 32-bit unsigned integer to the stream, using the bit converter
|
|||
/// for this writer. 4 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(uint value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 4); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 64-bit unsigned integer to the stream, using the bit converter
|
|||
/// for this writer. 8 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(ulong value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 8); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a single-precision floating-point value to the stream, using the bit converter
|
|||
/// for this writer. 4 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(float value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 4); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a double-precision floating-point value to the stream, using the bit converter
|
|||
/// for this writer. 8 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(double value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 8); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a decimal value to the stream, using the bit converter for this writer.
|
|||
/// 16 bytes are written.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(decimal value) |
|||
{ |
|||
this.BitConverter.CopyBytes(value, this.buffer, 0); |
|||
this.WriteInternal(this.buffer, 16); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a signed byte to the stream.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(byte value) |
|||
{ |
|||
this.buffer[0] = value; |
|||
this.WriteInternal(this.buffer, 1); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes an unsigned byte to the stream.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(sbyte value) |
|||
{ |
|||
this.buffer[0] = unchecked((byte)value); |
|||
this.WriteInternal(this.buffer, 1); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes an array of bytes to the stream.
|
|||
/// </summary>
|
|||
/// <param name="value">The values to write</param>
|
|||
public void Write(byte[] value) |
|||
{ |
|||
if (value == null) |
|||
{ |
|||
throw new ArgumentNullException(nameof(value)); |
|||
} |
|||
|
|||
this.WriteInternal(value, value.Length); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a portion of an array of bytes to the stream.
|
|||
/// </summary>
|
|||
/// <param name="value">An array containing the bytes to write</param>
|
|||
/// <param name="offset">The index of the first byte to write within the array</param>
|
|||
/// <param name="count">The number of bytes to write</param>
|
|||
public void Write(byte[] value, int offset, int count) |
|||
{ |
|||
this.CheckDisposed(); |
|||
this.BaseStream.Write(value, offset, count); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a single character to the stream, using the encoding for this writer.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write</param>
|
|||
public void Write(char value) |
|||
{ |
|||
this.charBuffer[0] = value; |
|||
this.Write(this.charBuffer); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes an array of characters to the stream, using the encoding for this writer.
|
|||
/// </summary>
|
|||
/// <param name="value">An array containing the characters to write</param>
|
|||
public void Write(char[] value) |
|||
{ |
|||
if (value == null) |
|||
{ |
|||
throw new ArgumentNullException(nameof(value)); |
|||
} |
|||
|
|||
this.CheckDisposed(); |
|||
byte[] data = this.Encoding.GetBytes(value, 0, value.Length); |
|||
this.WriteInternal(data, data.Length); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a string to the stream, using the encoding for this writer.
|
|||
/// </summary>
|
|||
/// <param name="value">The value to write. Must not be null.</param>
|
|||
/// <exception cref="ArgumentNullException">value is null</exception>
|
|||
public void Write(string value) |
|||
{ |
|||
if (value == null) |
|||
{ |
|||
throw new ArgumentNullException(nameof(value)); |
|||
} |
|||
|
|||
this.CheckDisposed(); |
|||
byte[] data = this.Encoding.GetBytes(value); |
|||
this.Write7BitEncodedInt(data.Length); |
|||
this.WriteInternal(data, data.Length); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes a 7-bit encoded integer from the stream. This is stored with the least significant
|
|||
/// information first, with 7 bits of information per byte of value, and the top
|
|||
/// bit as a continuation flag.
|
|||
/// </summary>
|
|||
/// <param name="value">The 7-bit encoded integer to write to the stream</param>
|
|||
public void Write7BitEncodedInt(int value) |
|||
{ |
|||
this.CheckDisposed(); |
|||
if (value < 0) |
|||
{ |
|||
throw new ArgumentOutOfRangeException(nameof(value), "Value must be greater than or equal to 0."); |
|||
} |
|||
|
|||
int index = 0; |
|||
while (value >= 128) |
|||
{ |
|||
this.buffer[index++] = (byte)((value & 0x7f) | 0x80); |
|||
value = value >> 7; |
|||
index++; |
|||
} |
|||
|
|||
this.buffer[index++] = (byte)value; |
|||
this.BaseStream.Write(this.buffer, 0, index); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Checks whether or not the writer has been disposed, throwing an exception if so.
|
|||
/// </summary>
|
|||
private void CheckDisposed() |
|||
{ |
|||
if (this.disposed) |
|||
{ |
|||
throw new ObjectDisposedException("EndianBinaryWriter"); |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Writes the specified number of bytes from the start of the given byte array,
|
|||
/// after checking whether or not the writer has been disposed.
|
|||
/// </summary>
|
|||
/// <param name="bytes">The array of bytes to write from</param>
|
|||
/// <param name="length">The number of bytes to write</param>
|
|||
private void WriteInternal(byte[] bytes, int length) |
|||
{ |
|||
this.CheckDisposed(); |
|||
this.BaseStream.Write(bytes, 0, length); |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// Disposes of the underlying stream.
|
|||
/// </summary>
|
|||
public void Dispose() |
|||
{ |
|||
if (!this.disposed) |
|||
{ |
|||
this.Flush(); |
|||
this.disposed = true; |
|||
((IDisposable)this.BaseStream).Dispose(); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue