-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Expand file tree
/
Copy pathSqlMetric.Serialization.cs
More file actions
220 lines (206 loc) · 8.91 KB
/
Copy pathSqlMetric.Serialization.cs
File metadata and controls
220 lines (206 loc) · 8.91 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using Azure.Core;
namespace Azure.ResourceManager.Sql.Models
{
public partial class SqlMetric : IUtf8JsonSerializable, IJsonModel<SqlMetric>
{
void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) => ((IJsonModel<SqlMetric>)this).Write(writer, ModelSerializationExtensions.WireOptions);
void IJsonModel<SqlMetric>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
writer.WriteStartObject();
JsonModelWriteCore(writer, options);
writer.WriteEndObject();
}
/// <param name="writer"> The JSON writer. </param>
/// <param name="options"> The client options for reading and writing models. </param>
protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<SqlMetric>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(SqlMetric)} does not support writing '{format}' format.");
}
if (options.Format != "W" && Optional.IsDefined(StartOn))
{
writer.WritePropertyName("startTime"u8);
writer.WriteStringValue(StartOn.Value, "O");
}
if (options.Format != "W" && Optional.IsDefined(EndOn))
{
writer.WritePropertyName("endTime"u8);
writer.WriteStringValue(EndOn.Value, "O");
}
if (options.Format != "W" && Optional.IsDefined(TimeGrain))
{
writer.WritePropertyName("timeGrain"u8);
writer.WriteStringValue(TimeGrain);
}
if (options.Format != "W" && Optional.IsDefined(Unit))
{
writer.WritePropertyName("unit"u8);
writer.WriteStringValue(Unit.Value.ToString());
}
if (options.Format != "W" && Optional.IsDefined(Name))
{
writer.WritePropertyName("name"u8);
writer.WriteObjectValue(Name, options);
}
if (options.Format != "W" && Optional.IsCollectionDefined(MetricValues))
{
writer.WritePropertyName("metricValues"u8);
writer.WriteStartArray();
foreach (var item in MetricValues)
{
writer.WriteObjectValue(item, options);
}
writer.WriteEndArray();
}
if (options.Format != "W" && _serializedAdditionalRawData != null)
{
foreach (var item in _serializedAdditionalRawData)
{
writer.WritePropertyName(item.Key);
#if NET6_0_OR_GREATER
writer.WriteRawValue(item.Value);
#else
using (JsonDocument document = JsonDocument.Parse(item.Value, ModelSerializationExtensions.JsonDocumentOptions))
{
JsonSerializer.Serialize(writer, document.RootElement);
}
#endif
}
}
}
SqlMetric IJsonModel<SqlMetric>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<SqlMetric>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(SqlMetric)} does not support reading '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeSqlMetric(document.RootElement, options);
}
internal static SqlMetric DeserializeSqlMetric(JsonElement element, ModelReaderWriterOptions options = null)
{
options ??= ModelSerializationExtensions.WireOptions;
if (element.ValueKind == JsonValueKind.Null)
{
return null;
}
DateTimeOffset? startTime = default;
DateTimeOffset? endTime = default;
string timeGrain = default;
SqlMetricUnitType? unit = default;
SqlMetricName name = default;
IReadOnlyList<SqlMetricValue> metricValues = default;
IDictionary<string, BinaryData> serializedAdditionalRawData = default;
Dictionary<string, BinaryData> rawDataDictionary = new Dictionary<string, BinaryData>();
foreach (var property in element.EnumerateObject())
{
if (property.NameEquals("startTime"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
startTime = property.Value.GetDateTimeOffset("O");
continue;
}
if (property.NameEquals("endTime"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
endTime = property.Value.GetDateTimeOffset("O");
continue;
}
if (property.NameEquals("timeGrain"u8))
{
timeGrain = property.Value.GetString();
continue;
}
if (property.NameEquals("unit"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
unit = new SqlMetricUnitType(property.Value.GetString());
continue;
}
if (property.NameEquals("name"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
name = SqlMetricName.DeserializeSqlMetricName(property.Value, options);
continue;
}
if (property.NameEquals("metricValues"u8))
{
if (property.Value.ValueKind == JsonValueKind.Null)
{
continue;
}
List<SqlMetricValue> array = new List<SqlMetricValue>();
foreach (var item in property.Value.EnumerateArray())
{
array.Add(SqlMetricValue.DeserializeSqlMetricValue(item, options));
}
metricValues = array;
continue;
}
if (options.Format != "W")
{
rawDataDictionary.Add(property.Name, BinaryData.FromString(property.Value.GetRawText()));
}
}
serializedAdditionalRawData = rawDataDictionary;
return new SqlMetric(
startTime,
endTime,
timeGrain,
unit,
name,
metricValues ?? new ChangeTrackingList<SqlMetricValue>(),
serializedAdditionalRawData);
}
BinaryData IPersistableModel<SqlMetric>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<SqlMetric>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options, AzureResourceManagerSqlContext.Default);
default:
throw new FormatException($"The model {nameof(SqlMetric)} does not support writing '{options.Format}' format.");
}
}
SqlMetric IPersistableModel<SqlMetric>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<SqlMetric>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data, ModelSerializationExtensions.JsonDocumentOptions);
return DeserializeSqlMetric(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(SqlMetric)} does not support reading '{options.Format}' format.");
}
}
string IPersistableModel<SqlMetric>.GetFormatFromOptions(ModelReaderWriterOptions options) => "J";
}
}