-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUTF8JSONReaderStream.cs
More file actions
206 lines (184 loc) · 4.2 KB
/
UTF8JSONReaderStream.cs
File metadata and controls
206 lines (184 loc) · 4.2 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Text.Json;
namespace Innovoft.Text.JSON
{
public sealed class UTF8JSONReaderStream : IDisposable
{
#region Fields
private readonly Stream stream;
private readonly byte[] buffer;
private readonly bool dispose;
private int count;
#endregion //Fields
#region Constructors
public UTF8JSONReaderStream(Stream stream, byte[] buffer)
{
this.stream = stream;
this.buffer = buffer;
this.dispose = true;
}
public UTF8JSONReaderStream(Stream stream, byte[] buffer, bool dispose)
{
this.stream = stream;
this.buffer = buffer;
this.dispose = dispose;
}
#endregion //Constructors
#region Finalizer
~UTF8JSONReaderStream()
{
Dispose(disposing: false);
}
#endregion //Finalizer
#region Properties
public Stream Stream => stream;
public byte[] Buffer => buffer;
#endregion //Properties
#region Methods
public void Dispose()
{
Dispose(disposing: true);
GC.SuppressFinalize(this);
}
private void Dispose(bool disposing)
{
if (!disposing)
{
return;
}
if (dispose)
{
stream.Dispose();
}
}
public Utf8JsonReader Create()
{
count = stream.Read(buffer, 0, buffer.Length);
return new Utf8JsonReader(new ReadOnlySpan<byte>(buffer, 0, count), count <= 0, new JsonReaderState());
}
public IAsyncResult BeginCreate(AsyncCallback? callback, object state)
{
return stream.BeginRead(buffer, 0, buffer.Length, callback, state);
}
public Utf8JsonReader EndCreate(IAsyncResult asyncResult)
{
count = stream.EndRead(asyncResult);
return new Utf8JsonReader(new ReadOnlySpan<byte>(buffer, 0, count), count <= 0, new JsonReaderState());
}
public bool Read(ref Utf8JsonReader reader)
{
if (reader.Read())
{
return true;
}
int offset;
var consumed = (int)reader.BytesConsumed;
if (consumed < count)
{
offset = count - consumed;
System.Buffer.BlockCopy(buffer, consumed, buffer, 0, offset);
}
else
{
offset = 0;
}
var read = stream.Read(buffer, offset, buffer.Length - offset);
if (read <= 0)
{
return false;
}
count = offset + read;
reader = new Utf8JsonReader(new ReadOnlySpan<byte>(buffer, 0, count), read <= 0, reader.CurrentState);
return reader.Read();
}
public bool StartRead(ref Utf8JsonReader reader)
{
return reader.Read();
}
public IAsyncResult BeginRead(ref Utf8JsonReader reader, AsyncCallback? callback, object state)
{
int offset;
var consumed = (int)reader.BytesConsumed;
if (consumed < count)
{
offset = count - consumed;
System.Buffer.BlockCopy(buffer, consumed, buffer, 0, offset);
}
else
{
offset = 0;
}
return stream.BeginRead(buffer, offset, buffer.Length - offset, callback, state);
}
public bool EndRead(ref Utf8JsonReader reader, IAsyncResult asyncResult)
{
var read = stream.EndRead(asyncResult);
if (read <= 0)
{
return false;
}
var offset = count - (int)reader.BytesConsumed;
count = offset + read;
reader = new Utf8JsonReader(new ReadOnlySpan<byte>(buffer, 0, count), read <= 0, reader.CurrentState);
return reader.Read();
}
public void Skip(ref Utf8JsonReader reader)
{
if (reader.TokenType == JsonTokenType.PropertyName)
{
if (!Read(ref reader))
{
throw new EndOfStreamException();
}
}
if (reader.TokenType != JsonTokenType.StartObject &&
reader.TokenType != JsonTokenType.EndObject)
{
return;
}
var depth = reader.CurrentDepth;
while (true)
{
if (!Read(ref reader))
{
throw new EndOfStreamException();
}
if (reader.CurrentDepth == depth)
{
return;
}
}
}
public bool TrySkip(ref Utf8JsonReader reader)
{
if (reader.TokenType == JsonTokenType.PropertyName)
{
if (!Read(ref reader))
{
return false;
}
}
if (reader.TokenType != JsonTokenType.StartObject &&
reader.TokenType != JsonTokenType.EndObject)
{
return true;
}
var depth = reader.CurrentDepth;
while (true)
{
if (!Read(ref reader))
{
return false;
}
if (reader.CurrentDepth == depth)
{
return true;
}
}
}
#endregion //Methods
}
}