aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Memory/ByteMemoryPool.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.Common/Memory/ByteMemoryPool.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Ryujinx.Common/Memory/ByteMemoryPool.cs')
-rw-r--r--Ryujinx.Common/Memory/ByteMemoryPool.cs108
1 files changed, 0 insertions, 108 deletions
diff --git a/Ryujinx.Common/Memory/ByteMemoryPool.cs b/Ryujinx.Common/Memory/ByteMemoryPool.cs
deleted file mode 100644
index 2910f408..00000000
--- a/Ryujinx.Common/Memory/ByteMemoryPool.cs
+++ /dev/null
@@ -1,108 +0,0 @@
-using System;
-using System.Buffers;
-
-namespace Ryujinx.Common.Memory
-{
- /// <summary>
- /// Provides a pool of re-usable byte array instances.
- /// </summary>
- public sealed partial class ByteMemoryPool
- {
- private static readonly ByteMemoryPool _shared = new ByteMemoryPool();
-
- /// <summary>
- /// Constructs a <see cref="ByteMemoryPool"/> instance. Private to force access through
- /// the <see cref="ByteMemoryPool.Shared"/> instance.
- /// </summary>
- private ByteMemoryPool()
- {
- // No implementation
- }
-
- /// <summary>
- /// Retrieves a shared <see cref="ByteMemoryPool"/> instance.
- /// </summary>
- public static ByteMemoryPool Shared => _shared;
-
- /// <summary>
- /// Returns the maximum buffer size supported by this pool.
- /// </summary>
- public int MaxBufferSize => Array.MaxLength;
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer may contain data from a prior use.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> Rent(long length)
- => RentImpl(checked((int)length));
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer may contain data from a prior use.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> Rent(ulong length)
- => RentImpl(checked((int)length));
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer may contain data from a prior use.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> Rent(int length)
- => RentImpl(length);
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer's contents are cleared (set to all 0s) before returning.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> RentCleared(long length)
- => RentCleared(checked((int)length));
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer's contents are cleared (set to all 0s) before returning.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> RentCleared(ulong length)
- => RentCleared(checked((int)length));
-
- /// <summary>
- /// Rents a byte memory buffer from <see cref="ArrayPool{Byte}.Shared"/>.
- /// The buffer's contents are cleared (set to all 0s) before returning.
- /// </summary>
- /// <param name="length">The buffer's required length in bytes</param>
- /// <returns>A <see cref="IMemoryOwner{Byte}"/> wrapping the rented memory</returns>
- /// <exception cref="ArgumentOutOfRangeException"></exception>
- public IMemoryOwner<byte> RentCleared(int length)
- {
- var buffer = RentImpl(length);
-
- buffer.Memory.Span.Clear();
-
- return buffer;
- }
-
- private static ByteMemoryPoolBuffer RentImpl(int length)
- {
- if ((uint)length > Array.MaxLength)
- {
- throw new ArgumentOutOfRangeException(nameof(length), length, null);
- }
-
- return new ByteMemoryPoolBuffer(length);
- }
- }
-}