-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathRehydrationToken.Serialization.cs
181 lines (163 loc) · 8 KB
/
RehydrationToken.Serialization.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.ClientModel.Primitives;
using System.Diagnostics;
using System.Text.Json;
namespace Azure.Core
{
public partial struct RehydrationToken : IJsonModel<RehydrationToken>, IJsonModel<object>
{
internal RehydrationToken DeserializeRehydrationToken(JsonElement element, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<RehydrationToken>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(RehydrationToken)} does not support '{format}' format.");
}
if (element.ValueKind == JsonValueKind.Null)
{
throw new InvalidOperationException("Cannot deserialize a null value to a non-nullable RehydrationToken");
}
string id = NextLinkOperationImplementation.NotSet;
string version = string.Empty;
string headerSource = string.Empty;
string nextRequestUri = string.Empty;
string initialUri = string.Empty;
RequestMethod requestMethod = default;
string? lastKnownLocation = null;
string finalStateVia = string.Empty;
foreach (var property in element.EnumerateObject())
{
if (property.NameEquals("id"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
var idString = property.Value.GetString();
Debug.Assert(idString is not null);
id = idString!;
}
if (property.NameEquals("version"u8))
{
var versionString = property.Value.GetString();
Debug.Assert(versionString is not null);
version = versionString!;
continue;
}
if (property.NameEquals("headerSource"u8))
{
var headerSourceString = property.Value.GetString();
Debug.Assert(headerSourceString is not null);
headerSource = headerSourceString!;
continue;
}
if (property.NameEquals("nextRequestUri"u8))
{
var nextRequestUriString = property.Value.GetString();
Debug.Assert(nextRequestUriString is not null);
nextRequestUri = nextRequestUriString!;
continue;
}
if (property.NameEquals("initialUri"u8))
{
var initialUriString = property.Value.GetString();
Debug.Assert(initialUriString is not null);
initialUri = initialUriString!;
continue;
}
if (property.NameEquals("requestMethod"u8))
{
var requestMethodString = property.Value.GetString();
Debug.Assert(requestMethodString is not null);
requestMethod = new RequestMethod(requestMethodString!);
continue;
}
if (property.NameEquals("lastKnownLocation"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
lastKnownLocation = property.Value.GetString();
continue;
}
if (property.NameEquals("finalStateVia"u8))
{
var finalStateViaString = property.Value.GetString();
Debug.Assert(finalStateViaString is not null);
finalStateVia = finalStateViaString!;
continue;
}
}
return new RehydrationToken(id, version, headerSource, nextRequestUri, initialUri, requestMethod, lastKnownLocation, finalStateVia);
}
void IJsonModel<RehydrationToken>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
writer.WriteStartObject();
writer.WritePropertyName("id"u8);
writer.WriteStringValue(Id);
writer.WritePropertyName("version"u8);
writer.WriteStringValue(Version);
writer.WritePropertyName("headerSource"u8);
writer.WriteStringValue(HeaderSource);
writer.WritePropertyName("nextRequestUri"u8);
writer.WriteStringValue(NextRequestUri);
writer.WritePropertyName("initialUri"u8);
writer.WriteStringValue(InitialUri);
writer.WritePropertyName("requestMethod"u8);
writer.WriteStringValue(RequestMethod.ToString());
writer.WritePropertyName("lastKnownLocation"u8);
writer.WriteStringValue(LastKnownLocation);
writer.WritePropertyName("finalStateVia"u8);
writer.WriteStringValue(FinalStateVia);
writer.WriteEndObject();
}
RehydrationToken IJsonModel<RehydrationToken>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<RehydrationToken>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(RehydrationToken)} does not support '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeRehydrationToken(document.RootElement, options);
}
BinaryData IPersistableModel<RehydrationToken>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<RehydrationToken>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
default:
throw new FormatException($"The model {nameof(RehydrationToken)} does not support '{options.Format}' format.");
}
}
RehydrationToken IPersistableModel<RehydrationToken>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<RehydrationToken>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeRehydrationToken(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(RehydrationToken)} does not support '{options.Format}' format.");
}
}
string IPersistableModel<RehydrationToken>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
BinaryData IPersistableModel<object>.Write(ModelReaderWriterOptions options)
=> ((IPersistableModel<RehydrationToken>)this).Write(options);
object IPersistableModel<object>.Create(BinaryData data, ModelReaderWriterOptions options)
=> ((IPersistableModel<RehydrationToken>)this).Create(data, options);
string IPersistableModel<object>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
void IJsonModel<object>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
=> ((IJsonModel<RehydrationToken>)this).Write(writer, options);
object IJsonModel<object>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
=> ((IJsonModel<RehydrationToken>)this).Create(ref reader, options);
}
}