This repository was archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathJsonUtils.cs
201 lines (166 loc) · 6.45 KB
/
JsonUtils.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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Buffers;
using System.Globalization;
using System.IO;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Microsoft.AspNetCore.Internal
{
internal static class JsonUtils
{
internal static JsonTextReader CreateJsonTextReader(TextReader textReader)
{
var reader = new JsonTextReader(textReader);
reader.ArrayPool = JsonArrayPool<char>.Shared;
// Don't close the input, leave closing to the caller
reader.CloseInput = false;
return reader;
}
internal static JsonTextWriter CreateJsonTextWriter(TextWriter textWriter)
{
var writer = new JsonTextWriter(textWriter);
writer.ArrayPool = JsonArrayPool<char>.Shared;
// Don't close the output, leave closing to the caller
writer.CloseOutput = false;
// SignalR will always write a complete JSON response
// This setting will prevent an error during writing be hidden by another error writing on dispose
writer.AutoCompleteOnClose = false;
return writer;
}
public static JObject GetObject(JToken token)
{
if (token == null || token.Type != JTokenType.Object)
{
throw new InvalidDataException($"Unexpected JSON Token Type '{token?.Type}'. Expected a JSON Object.");
}
return (JObject)token;
}
public static T GetOptionalProperty<T>(JObject json, string property, JTokenType expectedType = JTokenType.None, T defaultValue = default)
{
var prop = json[property];
if (prop == null)
{
return defaultValue;
}
return GetValue<T>(property, expectedType, prop);
}
public static T GetRequiredProperty<T>(JObject json, string property, JTokenType expectedType = JTokenType.None)
{
var prop = json[property];
if (prop == null)
{
throw new InvalidDataException($"Missing required property '{property}'.");
}
return GetValue<T>(property, expectedType, prop);
}
public static T GetValue<T>(string property, JTokenType expectedType, JToken prop)
{
if (expectedType != JTokenType.None && prop.Type != expectedType)
{
throw new InvalidDataException($"Expected '{property}' to be of type {expectedType}.");
}
return prop.Value<T>();
}
public static string GetTokenString(JsonToken tokenType)
{
switch (tokenType)
{
case JsonToken.None:
break;
case JsonToken.StartObject:
return JTokenType.Object.ToString();
case JsonToken.StartArray:
return JTokenType.Array.ToString();
case JsonToken.PropertyName:
return JTokenType.Property.ToString();
default:
break;
}
return tokenType.ToString();
}
public static void EnsureObjectStart(JsonTextReader reader)
{
if (reader.TokenType != JsonToken.StartObject)
{
throw new InvalidDataException($"Unexpected JSON Token Type '{GetTokenString(reader.TokenType)}'. Expected a JSON Object.");
}
}
public static void EnsureArrayStart(JsonTextReader reader)
{
if (reader.TokenType != JsonToken.StartArray)
{
throw new InvalidDataException($"Unexpected JSON Token Type '{GetTokenString(reader.TokenType)}'. Expected a JSON Array.");
}
}
public static int? ReadAsInt32(JsonTextReader reader, string propertyName)
{
reader.Read();
if (reader.TokenType != JsonToken.Integer)
{
throw new InvalidDataException($"Expected '{propertyName}' to be of type {JTokenType.Integer}.");
}
if (reader.Value == null)
{
return null;
}
return Convert.ToInt32(reader.Value, CultureInfo.InvariantCulture);
}
public static string ReadAsString(JsonTextReader reader, string propertyName)
{
reader.Read();
if (reader.TokenType != JsonToken.String)
{
throw new InvalidDataException($"Expected '{propertyName}' to be of type {JTokenType.String}.");
}
return reader.Value?.ToString();
}
public static bool CheckRead(JsonTextReader reader)
{
if (!reader.Read())
{
throw new InvalidDataException("Unexpected end when reading JSON.");
}
return true;
}
public static bool ReadForType(JsonTextReader reader, Type type)
{
// Explicitly read values as dates from JSON with reader.
// We do this because otherwise dates are read as strings
// and the JsonSerializer will use a conversion method that won't
// preserve UTC in DateTime.Kind for UTC ISO8601 dates
if (type == typeof(DateTime) || type == typeof(DateTime?))
{
reader.ReadAsDateTime();
}
else if (type == typeof(DateTimeOffset) || type == typeof(DateTimeOffset?))
{
reader.ReadAsDateTimeOffset();
}
else
{
reader.Read();
}
// TokenType will be None if there is no more content
return reader.TokenType != JsonToken.None;
}
private class JsonArrayPool<T> : IArrayPool<T>
{
private readonly ArrayPool<T> _inner;
internal static readonly JsonArrayPool<T> Shared = new JsonArrayPool<T>(ArrayPool<T>.Shared);
public JsonArrayPool(ArrayPool<T> inner)
{
_inner = inner;
}
public T[] Rent(int minimumLength)
{
return _inner.Rent(minimumLength);
}
public void Return(T[] array)
{
_inner.Return(array);
}
}
}
}