aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Memory/MemoryStreamManager.cs
blob: 68b8299938b6474f8880084bf4bc3fb017904bdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using Microsoft.IO;
using System;

namespace Ryujinx.Common.Memory
{
    public static class MemoryStreamManager
    {
        private static readonly RecyclableMemoryStreamManager _shared = new RecyclableMemoryStreamManager();

        /// <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 RecyclableMemoryStream(_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;
                }
            }
        }
    }
}