* dotnet format style --severity info Some changes were manually reverted. * dotnet format analyzers --serverity info Some changes have been minimally adapted. * Restore a few unused methods and variables * Silence dotnet format IDE0060 warnings * Silence dotnet format IDE0059 warnings * Address or silence dotnet format IDE1006 warnings * Address dotnet format CA1816 warnings * Address or silence dotnet format CA2211 warnings * Silence CA1806 and CA1834 issues * Fix formatting for switch expressions * Address most dotnet format whitespace warnings * Apply dotnet format whitespace formatting A few of them have been manually reverted and the corresponding warning was silenced * Revert formatting changes for while and for-loops * Format if-blocks correctly * Run dotnet format whitespace after rebase * Run dotnet format style after rebase * Run dotnet format analyzers after rebase * Run dotnet format after rebase and remove unused usings - analyzers - style - whitespace * Add comments to disabled warnings * Remove a few unused parameters * Replace MmeShadowScratch with Array256<uint> * Simplify properties and array initialization, Use const when possible, Remove trailing commas * Run dotnet format after rebase * Address IDE0251 warnings * Revert "Simplify properties and array initialization, Use const when possible, Remove trailing commas" This reverts commit 9462e4136c0a2100dc28b20cf9542e06790aa67e. * dotnet format whitespace after rebase * First dotnet format pass * Second dotnet format pass * Fix build issues * Fix StructArrayHelpers.cs * Apply suggestions from code review Co-authored-by: Ac_K <Acoustik666@gmail.com> * Fix return statements * Fix naming rule violations * Update src/Ryujinx.Common/Utilities/StreamUtils.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Add trailing commas * Address review feedback * Address review feedback * Rename remaining type parameters to TKey and TValue * Fix manual formatting for logging levels * Fix spacing before comments --------- Co-authored-by: Ac_K <Acoustik666@gmail.com>
100 lines
5.0 KiB
C#
100 lines
5.0 KiB
C#
using Microsoft.IO;
|
|
using System;
|
|
|
|
namespace Ryujinx.Common.Memory
|
|
{
|
|
public static class MemoryStreamManager
|
|
{
|
|
private static readonly RecyclableMemoryStreamManager _shared = new();
|
|
|
|
/// <summary>
|
|
/// We don't expose the <c>RecyclableMemoryStreamManager</c> directly because version 2.x
|
|
/// returns them as <c>MemoryStream</c>. This Shared class is here to a) offer only the GetStream() versions we use
|
|
/// and b) return them as <c>RecyclableMemoryStream</c> so we don't have to cast.
|
|
/// </summary>
|
|
public static class Shared
|
|
{
|
|
/// <summary>
|
|
/// Retrieve a new <c>MemoryStream</c> object with no tag and a default initial capacity.
|
|
/// </summary>
|
|
/// <returns>A <c>RecyclableMemoryStream</c></returns>
|
|
public static RecyclableMemoryStream GetStream()
|
|
=> new(_shared);
|
|
|
|
/// <summary>
|
|
/// Retrieve a new <c>MemoryStream</c> object with the contents copied from the provided
|
|
/// buffer. The provided buffer is not wrapped or used after construction.
|
|
/// </summary>
|
|
/// <remarks>The new stream's position is set to the beginning of the stream when returned.</remarks>
|
|
/// <param name="buffer">The byte buffer to copy data from</param>
|
|
/// <returns>A <c>RecyclableMemoryStream</c></returns>
|
|
public static RecyclableMemoryStream GetStream(byte[] buffer)
|
|
=> GetStream(Guid.NewGuid(), null, buffer, 0, buffer.Length);
|
|
|
|
/// <summary>
|
|
/// Retrieve a new <c>MemoryStream</c> object with the given tag and with contents copied from the provided
|
|
/// buffer. The provided buffer is not wrapped or used after construction.
|
|
/// </summary>
|
|
/// <remarks>The new stream's position is set to the beginning of the stream when returned.</remarks>
|
|
/// <param name="buffer">The byte buffer to copy data from</param>
|
|
/// <returns>A <c>RecyclableMemoryStream</c></returns>
|
|
public static RecyclableMemoryStream GetStream(ReadOnlySpan<byte> buffer)
|
|
=> GetStream(Guid.NewGuid(), null, buffer);
|
|
|
|
/// <summary>
|
|
/// Retrieve a new <c>RecyclableMemoryStream</c> object with the given tag and with contents copied from the provided
|
|
/// buffer. The provided buffer is not wrapped or used after construction.
|
|
/// </summary>
|
|
/// <remarks>The new stream's position is set to the beginning of the stream when returned.</remarks>
|
|
/// <param name="id">A unique identifier which can be used to trace usages of the stream</param>
|
|
/// <param name="tag">A tag which can be used to track the source of the stream</param>
|
|
/// <param name="buffer">The byte buffer to copy data from</param>
|
|
/// <returns>A <c>RecyclableMemoryStream</c></returns>
|
|
public static RecyclableMemoryStream GetStream(Guid id, string tag, ReadOnlySpan<byte> buffer)
|
|
{
|
|
RecyclableMemoryStream stream = null;
|
|
try
|
|
{
|
|
stream = new RecyclableMemoryStream(_shared, id, tag, buffer.Length);
|
|
stream.Write(buffer);
|
|
stream.Position = 0;
|
|
return stream;
|
|
}
|
|
catch
|
|
{
|
|
stream?.Dispose();
|
|
throw;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieve a new <c>RecyclableMemoryStream</c> object with the given tag and with contents copied from the provided
|
|
/// buffer. The provided buffer is not wrapped or used after construction.
|
|
/// </summary>
|
|
/// <remarks>The new stream's position is set to the beginning of the stream when returned</remarks>
|
|
/// <param name="id">A unique identifier which can be used to trace usages of the stream</param>
|
|
/// <param name="tag">A tag which can be used to track the source of the stream</param>
|
|
/// <param name="buffer">The byte buffer to copy data from</param>
|
|
/// <param name="offset">The offset from the start of the buffer to copy from</param>
|
|
/// <param name="count">The number of bytes to copy from the buffer</param>
|
|
/// <returns>A <c>RecyclableMemoryStream</c></returns>
|
|
public static RecyclableMemoryStream GetStream(Guid id, string tag, byte[] buffer, int offset, int count)
|
|
{
|
|
RecyclableMemoryStream stream = null;
|
|
try
|
|
{
|
|
stream = new RecyclableMemoryStream(_shared, id, tag, count);
|
|
stream.Write(buffer, offset, count);
|
|
stream.Position = 0;
|
|
return stream;
|
|
}
|
|
catch
|
|
{
|
|
stream?.Dispose();
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|