-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultipartJsonElement.cs
More file actions
447 lines (407 loc) · 15.9 KB
/
MultipartJsonElement.cs
File metadata and controls
447 lines (407 loc) · 15.9 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
using System;
using System.Collections.Frozen;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading;
namespace Sentdm.Core;
/// <summary>
/// A <see cref="JsonElement"/> that can contain <see cref="BinaryContent"/>.
///
/// <para>Use <see cref="MultipartJsonSerializer"/> to construct or read instances of this class.</para>
/// </summary>
public readonly struct MultipartJsonElement
{
/// <summary>
/// A <see cref="JsonElement"/> with <see cref="BinaryContents">placeholders</see>
/// for <see cref="BinaryContent"/>.
/// </summary>
internal JsonElement Json { get; init; } = default;
/// <summary>
/// A dictionary from placeholder string in <see cref="Json">the JSON</see> to
/// <see cref="BinaryContent"/>.
/// </summary>
internal IReadOnlyDictionary<Guid, BinaryContent> BinaryContents { get; init; } =
FrozenDictionary.ToFrozenDictionary(new Dictionary<Guid, BinaryContent>());
public static implicit operator MultipartJsonElement(JsonElement json) => new() { Json = json };
public MultipartJsonElement() { }
public override string ToString() =>
JsonSerializer.Serialize(
FriendlyJsonPrinter.PrintValue(this),
ModelBase.ToStringSerializerOptions
);
public static bool DeepEquals(MultipartJsonElement a, MultipartJsonElement b) =>
MultipartJsonElement.DeepEqualsInner(a.Json, a.BinaryContents, b.Json, b.BinaryContents);
static bool DeepEqualsInner(
JsonElement jsonA,
IReadOnlyDictionary<Guid, BinaryContent> binaryA,
JsonElement jsonB,
IReadOnlyDictionary<Guid, BinaryContent> binaryB
)
{
if (jsonA.ValueKind != jsonB.ValueKind)
{
return false;
}
switch (jsonA.ValueKind)
{
case JsonValueKind.Undefined:
case JsonValueKind.Null:
case JsonValueKind.True:
case JsonValueKind.False:
return true;
case JsonValueKind.Number:
return JsonElement.DeepEquals(jsonA, jsonB);
case JsonValueKind.String:
BinaryContent? aContent = null;
BinaryContent? bContent = null;
if (jsonA.TryGetGuid(out var guidA) && binaryA.TryGetValue(guidA, out var a))
{
aContent = a;
}
if (jsonB.TryGetGuid(out var guidB) && binaryB.TryGetValue(guidB, out var b))
{
bContent = b;
}
if (aContent != null && bContent != null)
{
return aContent == bContent;
}
else if (aContent == null && bContent == null)
{
return jsonA.GetString() == jsonB.GetString();
}
else
{
return false;
}
case JsonValueKind.Object:
Dictionary<string, JsonElement> propertiesA = new();
foreach (var item1 in jsonA.EnumerateObject())
{
propertiesA[item1.Name] = item1.Value;
}
Dictionary<string, JsonElement> propertiesB = new();
foreach (var item1 in jsonB.EnumerateObject())
{
propertiesB[item1.Name] = item1.Value;
}
if (propertiesA.Count != propertiesB.Count)
{
return false;
}
foreach (var property in propertiesA)
{
if (!propertiesB.TryGetValue(property.Key, out var b1))
{
return false;
}
if (!MultipartJsonElement.DeepEqualsInner(property.Value, binaryA, b1, binaryB))
{
return false;
}
}
return true;
case JsonValueKind.Array:
if (jsonA.GetArrayLength() != jsonB.GetArrayLength())
{
return false;
}
var i = 0;
foreach (var item in jsonA.EnumerateArray())
{
if (!MultipartJsonElement.DeepEqualsInner(item, binaryA, jsonB[i], binaryB))
{
return false;
}
i++;
}
return true;
default:
throw new InvalidOperationException("Unreachable");
}
}
}
/// <summary>
/// A serializer for mixed JSON and binary content.
/// </summary>
public static class MultipartJsonSerializer
{
/// <summary>
/// The current dictionary from placeholder string to <see cref="BinaryContent"/> to use for
/// serialization/deserialization.
///
/// <para>This isn't a local variable because we want to share <see cref="JsonSerializerOptions"/>
/// for performance. It's also a thread local to avoid data races between threads.</para>
/// </summary>
static readonly ThreadLocal<Dictionary<Guid, BinaryContent>?> CurrentBinaryContents = new(() =>
null
);
internal static Dictionary<Guid, BinaryContent> BinaryContents
{
get
{
return CurrentBinaryContents.Value
?? throw new InvalidOperationException(
"Cannot convert BinaryContent without MultipartJsonSerializer"
);
}
}
static readonly ThreadLocal<
Dictionary<JsonSerializerOptions, JsonSerializerOptions>
> MultipartSerializerOptionsCache = new(() => new());
static readonly JsonSerializerOptions DefaultMultipartSerializerOptions =
MultipartSerializerOptions(new());
static JsonSerializerOptions MultipartSerializerOptions(JsonSerializerOptions? options = null)
{
if (options == null)
{
return DefaultMultipartSerializerOptions;
}
if (!MultipartSerializerOptionsCache.Value!.TryGetValue(options, out var multipartOptions))
{
multipartOptions = new(options);
multipartOptions.Converters.Add(new BinaryContentConverter());
multipartOptions.Converters.Add(new MultipartJsonElementConverter());
MultipartSerializerOptionsCache.Value![options] = multipartOptions;
}
return multipartOptions;
}
public static MultipartJsonElement SerializeToElement<T>(
T value,
JsonSerializerOptions? options = null
)
{
var previousBinaryContents = CurrentBinaryContents.Value;
try
{
CurrentBinaryContents.Value = new();
var element = JsonSerializer.SerializeToElement(
value,
MultipartSerializerOptions(options)
);
return new()
{
Json = element,
BinaryContents = FrozenDictionary.ToFrozenDictionary(CurrentBinaryContents.Value!),
};
}
finally
{
CurrentBinaryContents.Value = previousBinaryContents;
}
}
public static T? Deserialize<T>(
MultipartJsonElement element,
JsonSerializerOptions? options = null
)
{
var previousBinaryContents = CurrentBinaryContents.Value;
try
{
CurrentBinaryContents.Value = Enumerable.ToDictionary(
element.BinaryContents,
(e) => e.Key,
(e) => e.Value
);
return JsonSerializer.Deserialize<T>(element.Json, MultipartSerializerOptions(options));
}
finally
{
CurrentBinaryContents.Value = previousBinaryContents;
}
}
public static MultipartFormDataContent Serialize<T>(
T value,
JsonSerializerOptions? options = null
)
{
MultipartFormDataContent formDataContent = new();
var multipartElement = MultipartJsonSerializer.SerializeToElement(value, options);
void SerializeParts(string name, JsonElement element)
{
HttpContent? content;
string? fileName = null;
switch (element.ValueKind)
{
case JsonValueKind.Undefined:
case JsonValueKind.Null:
return;
case JsonValueKind.Number:
content = new StringContent(element.ToString());
break;
case JsonValueKind.String:
if (
element.TryGetGuid(out var guid)
&& multipartElement.BinaryContents.TryGetValue(guid, out var binaryContent)
)
{
content = new StreamContent(binaryContent.Stream);
content.Headers.ContentType = binaryContent.ContentType;
fileName = binaryContent.FileName;
}
else
{
content = new StringContent(element.ToString());
}
break;
case JsonValueKind.True:
content = new StringContent("true");
break;
case JsonValueKind.False:
content = new StringContent("false");
break;
case JsonValueKind.Object:
foreach (var item in element.EnumerateObject())
{
SerializeParts(
name == "" ? item.Name : string.Format("{0}[{1}]", name, item.Name),
item.Value
);
}
return;
case JsonValueKind.Array:
var items = new List<string>();
foreach (var arrayItem in element.EnumerateArray())
{
switch (arrayItem.ValueKind)
{
case JsonValueKind.Undefined:
case JsonValueKind.Null:
items.Add("");
break;
case JsonValueKind.True:
items.Add("true");
break;
case JsonValueKind.False:
items.Add("false");
break;
case JsonValueKind.String:
if (
arrayItem.TryGetGuid(out var itemGuid)
&& multipartElement.BinaryContents.TryGetValue(
itemGuid,
out var itemBinaryContent
)
)
{
var itemContent = new StreamContent(itemBinaryContent.Stream);
itemContent.Headers.ContentType = itemBinaryContent.ContentType;
var itemFileName = itemBinaryContent.FileName;
if (name == "")
{
formDataContent.Add(itemContent);
}
else if (itemFileName == null)
{
formDataContent.Add(itemContent, $"{name}[]");
}
else
{
formDataContent.Add(itemContent, $"{name}[]", itemFileName);
}
}
else
{
items.Add(arrayItem.ToString());
}
break;
default:
throw new InvalidDataException("Unexpected element type in array");
}
}
if (items.Count > 0)
{
content = new StringContent(string.Join(",", items));
}
else
{
content = null;
}
break;
default:
throw new ArgumentOutOfRangeException(nameof(element));
}
if (content != null)
{
if (name == "")
{
formDataContent.Add(content);
}
else if (fileName == null)
{
formDataContent.Add(content, name);
}
else
{
formDataContent.Add(content, name, fileName);
}
}
}
SerializeParts("", multipartElement.Json);
return formDataContent;
}
}
/// <summary>
/// A JSON converter that serializes/deserializes mixed JSON and binary content.
///
/// <para>It uses placeholder IDs (see <see cref="BinaryContentConverter"/>), which are written/read
/// to/from a thread-local dictionary, so it's expected that this converter is only invoked via
/// <see cref="MultipartJsonSerializer"/>, which ensures the dictionary is set up correctly.</para>
/// </summary>
sealed class MultipartJsonElementConverter : JsonConverter<MultipartJsonElement>
{
public override MultipartJsonElement Read(
ref Utf8JsonReader reader,
Type typeToConvert,
JsonSerializerOptions options
) =>
new()
{
Json = JsonSerializer.Deserialize<JsonElement>(ref reader, options),
BinaryContents = MultipartJsonSerializer.BinaryContents,
};
public override void Write(
Utf8JsonWriter writer,
MultipartJsonElement value,
JsonSerializerOptions options
)
{
foreach (var item in value.BinaryContents)
{
MultipartJsonSerializer.BinaryContents.Add(item.Key, item.Value);
}
JsonSerializer.Serialize(writer, value.Json, options);
}
}
/// <summary>
/// A JSON converter that serializes/deserializes binary content to/from placeholder IDs.
///
/// <para>The placeholder IDs are written/read to/from a thread-local dictionary, so it's expected that
/// this converter is only invoked via <see cref="MultipartJsonSerializer"/>, which ensures the
/// dictionary is set up correctly.</para>
/// </summary>
sealed class BinaryContentConverter : JsonConverter<BinaryContent>
{
public override BinaryContent Read(
ref Utf8JsonReader reader,
Type typeToConvert,
JsonSerializerOptions options
) =>
MultipartJsonSerializer.BinaryContents[
JsonSerializer.Deserialize<Guid>(ref reader, options)
];
public override void Write(
Utf8JsonWriter writer,
BinaryContent value,
JsonSerializerOptions options
)
{
var guid = Guid.NewGuid();
MultipartJsonSerializer.BinaryContents[guid] = value;
JsonSerializer.Serialize(writer, guid, options);
}
}