-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathWebExtension.Writer.cs
More file actions
166 lines (139 loc) · 4.49 KB
/
WebExtension.Writer.cs
File metadata and controls
166 lines (139 loc) · 4.49 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
using System;
using System.IO;
using System.Text;
using System.Buffers;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace Zongsoft.Web.OpenApi;
partial class WebExtension
{
/*
* Original source file referenced:
* https://github.com/dotnet/aspnetcore/blob/main/src/SignalR/common/Shared/Utf8BufferTextWriter.cs
*/
internal sealed class Utf8BufferTextWriter : TextWriter
{
private const int MaximumBytesPerUtf8Char = 4;
[ThreadStatic]
private static Utf8BufferTextWriter _cachedInstance;
private static readonly UTF8Encoding _utf8NoBom = new(encoderShouldEmitUTF8Identifier: false);
private readonly Encoder _encoder;
private IBufferWriter<byte> _bufferWriter;
private Memory<byte> _memory;
private int _memoryUsed;
#if DEBUG
private bool _inUse;
#endif
public Utf8BufferTextWriter() => _encoder = _utf8NoBom.GetEncoder();
public Utf8BufferTextWriter(IFormatProvider formatProvider) : base(formatProvider) => _encoder = _utf8NoBom.GetEncoder();
public override Encoding Encoding => _utf8NoBom;
public static Utf8BufferTextWriter Get(IBufferWriter<byte> bufferWriter)
{
var writer = _cachedInstance ?? new Utf8BufferTextWriter();
// Taken off the thread static
_cachedInstance = null;
#if DEBUG
if(writer._inUse)
throw new InvalidOperationException("The writer wasn't returned!");
writer._inUse = true;
#endif
writer.SetWriter(bufferWriter);
return writer;
}
public static void Return(Utf8BufferTextWriter writer)
{
_cachedInstance = writer;
writer._encoder.Reset();
writer._memory = Memory<byte>.Empty;
writer._memoryUsed = 0;
writer._bufferWriter = null;
#if DEBUG
writer._inUse = false;
#endif
}
public void SetWriter(IBufferWriter<byte> bufferWriter) => _bufferWriter = bufferWriter;
public override void Write(char[] buffer, int index, int count) => this.WriteInternal(buffer.AsSpan(index, count));
public override void Write(char[] buffer)
{
if(buffer is not null)
this.WriteInternal(buffer);
}
public override void Write(char value)
{
if(value <= 127)
{
this.EnsureBuffer();
// Only need to set one byte
// Avoid Memory<T>.Slice overhead for perf
_memory.Span[_memoryUsed] = (byte)value;
_memoryUsed++;
}
else
{
this.WriteMultiByteChar(value);
}
}
private unsafe void WriteMultiByteChar(char value)
{
var destination = this.GetBuffer();
// Json.NET only writes ASCII characters by themselves, e.g. {}[], etc
// this should be an exceptional case
_encoder.Convert(new Span<char>(&value, 1), destination, false, out var charsUsed, out var bytesUsed, out _);
Debug.Assert(charsUsed == 1);
_memoryUsed += bytesUsed;
}
public override void Write(string value)
{
if(value is not null)
this.WriteInternal(value.AsSpan());
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private Span<byte> GetBuffer()
{
this.EnsureBuffer();
return _memory.Span.Slice(_memoryUsed, _memory.Length - _memoryUsed);
}
private void EnsureBuffer()
{
// We need at least enough bytes to encode a single UTF-8 character, or Encoder.Convert will throw.
// Normally, if there isn't enough space to write every character of a char buffer, Encoder.Convert just
// writes what it can. However, if it can't even write a single character, it throws. So if the buffer has only
// 2 bytes left and the next character to write is 3 bytes in UTF-8, an exception is thrown.
var remaining = _memory.Length - _memoryUsed;
if(remaining < MaximumBytesPerUtf8Char)
{
// Used up the memory from the buffer writer so advance and get more
if(_memoryUsed > 0)
_bufferWriter!.Advance(_memoryUsed);
_memory = _bufferWriter!.GetMemory(MaximumBytesPerUtf8Char);
_memoryUsed = 0;
}
}
private void WriteInternal(ReadOnlySpan<char> buffer)
{
while(buffer.Length > 0)
{
// The destination byte array might not be large enough so multiple writes are sometimes required
var destination = this.GetBuffer();
_encoder.Convert(buffer, destination, false, out var charsUsed, out var bytesUsed, out _);
buffer = buffer[charsUsed..];
_memoryUsed += bytesUsed;
}
}
public override void Flush()
{
if(_memoryUsed > 0)
{
_bufferWriter!.Advance(_memoryUsed);
_memory = _memory.Slice(_memoryUsed, _memory.Length - _memoryUsed);
_memoryUsed = 0;
}
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if(disposing)
this.Flush();
}
}
}