-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathKeyValueSerializer.cs
216 lines (195 loc) · 8.7 KB
/
KeyValueSerializer.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
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
207
208
209
210
211
212
213
214
215
216
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Text.Json;
using WebApiClientCore.Internals;
namespace WebApiClientCore.Serialization
{
/// <summary>
/// keyValue序列化工具
/// </summary>
public static class KeyValueSerializer
{
/// <summary>
/// 默认的序列化选项
/// </summary>
private static readonly KeyValueSerializerOptions defaultOptions = new();
/// <summary>
/// 序列化对象为键值对
/// </summary>
/// <param name="key">对象名称</param>
/// <param name="obj">对象实例</param>
/// <param name="options">选项</param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
public static IList<KeyValue> Serialize(string key, object? obj, KeyValueSerializerOptions? options)
{
var kvOptions = options ?? defaultOptions;
if (obj == null)
{
if (kvOptions.IgnoreNullValues == true)
{
return Array.Empty<KeyValue>();
}
var keyValue = new KeyValue(key, null);
return [keyValue];
}
var objType = obj.GetType();
var typeCode = Type.GetTypeCode(objType);
// 不需要考虑转换器的简单类型
if (typeCode == TypeCode.String ||
typeCode == TypeCode.Int32 ||
typeCode == TypeCode.Decimal ||
typeCode == TypeCode.Double ||
typeCode == TypeCode.Single)
{
var keyValue = new KeyValue(key, obj.ToString());
return [keyValue];
}
if (obj is IEnumerable<KeyValuePair<string, string>> keyValues)
{
// 排除字典类型,字典类型要经过Json序列化
if (objType.IsInheritFrom<IDictionary>() == false)
{
// key的值不经过PropertyNamingPolicy转换,保持原始值
return keyValues.Select(item => (KeyValue)item).ToArray();
}
}
return GetKeyValueList(key, obj, objType, kvOptions);
}
/// <summary>
/// 获取键值对
/// </summary>
/// <param name="key">对象名称</param>
/// <param name="obj">对象实例</param>
/// <param name="objType">对象类型</param>
/// <param name="options">选项</param>
/// <returns></returns>
[RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
[RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
private static List<KeyValue> GetKeyValueList(string key, object obj, Type objType, KeyValueSerializerOptions options)
{
using var bufferWriter = new RecyclableBufferWriter<byte>();
var jsonOptions = options.GetJsonSerializerOptions();
var utf8JsonWriter = Utf8JsonWriterCache.Get(bufferWriter, jsonOptions);
JsonSerializer.Serialize(utf8JsonWriter, obj, objType, jsonOptions);
var utf8JsonReader = new Utf8JsonReader(bufferWriter.WrittenSpan, new JsonReaderOptions
{
MaxDepth = jsonOptions.MaxDepth,
CommentHandling = jsonOptions.ReadCommentHandling,
AllowTrailingCommas = jsonOptions.AllowTrailingCommas,
});
return options.KeyNamingStyle == KeyNamingStyle.ShortName
? GetShortNameKeyValueList(key, ref utf8JsonReader)
: GetFullNameKeyValueList(key, ref utf8JsonReader, options);
}
/// <summary>
/// 获取ShortName键值对
/// </summary>
/// <param name="key"></param>
/// <param name="reader"></param>
/// <returns></returns>
private static List<KeyValue> GetShortNameKeyValueList(string key, ref Utf8JsonReader reader)
{
var list = new List<KeyValue>();
while (reader.Read())
{
switch (reader.TokenType)
{
case JsonTokenType.PropertyName:
{
key = reader.GetString() ?? string.Empty;
break;
}
case JsonTokenType.Null:
{
list.Add(new KeyValue(key, null));
break;
}
case JsonTokenType.String:
{
var value = reader.GetString();
var keyValue = new KeyValue(key, value);
list.Add(keyValue);
break;
}
case JsonTokenType.False:
case JsonTokenType.True:
case JsonTokenType.Number:
{
var value = Encoding.UTF8.GetString(reader.ValueSpan);
var keyValue = new KeyValue(key, value);
list.Add(keyValue);
break;
}
}
}
return list;
}
/// <summary>
/// 获取FullName键值对
/// </summary>
/// <param name="key"></param>
/// <param name="reader"></param>
/// <param name="options"></param>
/// <returns></returns>
private static List<KeyValue> GetFullNameKeyValueList(string key, ref Utf8JsonReader reader, KeyNamingOptions options)
{
using var doc = JsonDocument.ParseValue(ref reader);
var root = doc.RootElement;
var list = new List<KeyValue>();
var withRoot = options.KeyNamingStyle == KeyNamingStyle.FullNameWithRoot;
ParseJsonElement(key, ref root, list, options, withRoot);
return list;
}
/// <summary>
/// 解析JsonElement
/// </summary>
/// <param name="key"></param>
/// <param name="element"></param>
/// <param name="list"></param>
/// <param name="options"></param>
/// <param name="withRoot"></param>
private static void ParseJsonElement(string key, ref JsonElement element, IList<KeyValue> list, KeyNamingOptions options, bool withRoot = true)
{
switch (element.ValueKind)
{
case JsonValueKind.Null:
list.Add(new KeyValue(key, null));
break;
case JsonValueKind.String:
list.Add(new KeyValue(key, element.GetString()));
break;
case JsonValueKind.True:
case JsonValueKind.False:
case JsonValueKind.Number:
list.Add(new KeyValue(key, element.GetRawText()));
break;
case JsonValueKind.Object:
foreach (var item in element.EnumerateObject())
{
var ele = item.Value;
var itemKey = withRoot
? $"{key}{options.KeyDelimiter}{item.Name}"
: item.Name;
ParseJsonElement(itemKey, ref ele, list, options);
}
break;
case JsonValueKind.Array:
var index = 0;
foreach (var item in element.EnumerateArray())
{
var ele = item;
var itemKey = $"{key}{options.KeyArrayIndex(index)}";
ParseJsonElement(itemKey, ref ele, list, options);
index += 1;
}
break;
}
}
}
}