-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathUtf8JsonWriterCache.cs
58 lines (53 loc) · 1.86 KB
/
Utf8JsonWriterCache.cs
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
using System;
using System.Buffers;
using System.Text.Json;
namespace WebApiClientCore.Serialization
{
/// <summary>
/// Utf8JsonWriter缓存
/// </summary>
static class Utf8JsonWriterCache
{
[ThreadStatic]
private static Utf8JsonWriter? threadUtf8JsonWriter;
/// <summary>
/// 获取与 bufferWriter 关联的 Utf8JsonWriter
/// </summary>
/// <param name="bufferWriter"></param>
/// <param name="options"></param>
/// <returns></returns>
public static Utf8JsonWriter Get(IBufferWriter<byte> bufferWriter, JsonSerializerOptions options)
{
var utf8JsonWriter = threadUtf8JsonWriter;
if (utf8JsonWriter == null)
{
utf8JsonWriter = new Utf8JsonWriter(bufferWriter, GetJsonWriterOptions(options));
threadUtf8JsonWriter = utf8JsonWriter;
}
else if (OptionsEquals(utf8JsonWriter.Options, options))
{
utf8JsonWriter.Reset(bufferWriter);
}
else
{
utf8JsonWriter.Dispose();
utf8JsonWriter = new Utf8JsonWriter(bufferWriter, GetJsonWriterOptions(options));
threadUtf8JsonWriter = utf8JsonWriter;
}
return utf8JsonWriter;
}
private static bool OptionsEquals(JsonWriterOptions options1, JsonSerializerOptions options2)
{
return options1.Encoder == options2.Encoder && options1.Indented == options2.WriteIndented;
}
private static JsonWriterOptions GetJsonWriterOptions(JsonSerializerOptions options)
{
return new JsonWriterOptions
{
Encoder = options.Encoder,
Indented = options.WriteIndented,
SkipValidation = true,
};
}
}
}