-
Notifications
You must be signed in to change notification settings - Fork 325
/
Copy pathDeserializer.cs
284 lines (257 loc) · 13 KB
/
Deserializer.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
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
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Bond
{
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using Bond.Expressions;
using Bond.IO;
public static class Deserialize
{
public enum Result
{
Success,
InvalidData
}
}
/// <summary>
/// Deserialize objects of type <typeparamref name="T"/>
/// </summary>
/// <typeparam name="T">Type representing a Bond schema</typeparam>
public static class Deserialize<T>
{
static class Cache<R>
{
public static readonly Deserializer<R> Instance = new Deserializer<R>(typeof(T));
}
/// <summary>
/// Deserialize an object of type <typeparamref name="T"/> from a payload
/// </summary>
/// <typeparam name="R">Protocol reader</typeparam>
/// <param name="reader">Protocol reader representing payload</param>
/// <returns>Deserialized object</returns>
public static T From<R>(R reader)
{
return Cache<R>.Instance.Deserialize<T>(reader);
}
}
/// <summary>
/// Deserializer for a protocol reader <typeparamref name="R"/>
/// </summary>
/// <typeparam name="R">Protocol reader</typeparam>
public class Deserializer<R>
{
internal readonly Func<R, object>[] deserialize;
/// <summary>
/// Create a deserializer instance for specified type and payload schema, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="schema">Schema of the payload</param>
/// <param name="factory">Factory to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, RuntimeSchema schema, IFactory factory, bool inlineNested)
: this(type, ParserFactory<R>.Create(schema), factory, null, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type and payload schema, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="schema">Schema of the payload</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, RuntimeSchema schema, Factory factory, bool inlineNested)
: this(type, ParserFactory<R>.Create(schema), null, factory, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type and payload schema, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="schema">Schema of the payload</param>
/// <param name="factory">Factory to create objects during deserialization</param>
public Deserializer(Type type, RuntimeSchema schema, IFactory factory)
: this(type, ParserFactory<R>.Create(schema), factory)
{ }
/// <summary>
/// Create a deserializer instance for specified type and payload schema, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="schema">Schema of the payload</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
public Deserializer(Type type, RuntimeSchema schema, Factory factory)
: this(type, ParserFactory<R>.Create(schema), null, factory)
{ }
/// <summary>
/// Create a deserializer instance for specified type and payload schema
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="schema">Schema of the payload</param>
public Deserializer(Type type, RuntimeSchema schema)
: this(type, ParserFactory<R>.Create(schema))
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="factory">Factory to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, IFactory factory, bool inlineNested)
: this(type, ParserFactory<R>.Create(type), factory, null, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="parser">Custom <see cref="IParser"/> instance</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, IParser parser, IFactory factory, bool inlineNested)
: this(type, parser, factory, null, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, Factory factory, bool inlineNested)
: this(type, ParserFactory<R>.Create(type), null, factory, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="parser">Custom <see cref="IParser"/> instance</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
/// <param name="inlineNested">Inline nested types if possible (optimizes for reduction of execution time
/// at the expense of initialization time and memory)</param>
public Deserializer(Type type, IParser parser, Factory factory, bool inlineNested)
: this(type, parser, null, factory, inlineNested)
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="factory">Factory to create objects during deserialization</param>
public Deserializer(Type type, IFactory factory)
: this(type, ParserFactory<R>.Create(type), factory)
{ }
/// <summary>
/// Create a deserializer instance for specified type, using a custom object factory
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
/// <param name="factory">Factory providing expressions to create objects during deserialization</param>
public Deserializer(Type type, Factory factory)
: this(type, ParserFactory<R>.Create(type), null, factory)
{ }
/// <summary>
/// Create a deserializer instance for specified type
/// </summary>
/// <param name="type">Type representing a Bond schema</param>
public Deserializer(Type type)
: this(type, ParserFactory<R>.Create(type))
{ }
public Deserializer(Assembly precompiledAssembly, Type type)
{
var precompiledType = precompiledAssembly.GetType(GetPrecompiledClassName(type));
var property = precompiledType.GetDeclaredProperty("Deserializer", typeof(Func<R, object>));
deserialize = new[] { (Func<R, object>)property.GetValue(null) };
}
Deserializer(Type type, IParser parser, IFactory factory = null, Factory factory2 = null, bool inlineNested = true)
{
DeserializerTransform<R> transform;
if (factory != null)
{
Debug.Assert(factory2 == null);
transform = new DeserializerTransform<R>(
(r, i) => deserialize[i](r),
inlineNested,
(t1, t2) => factory.CreateObject(t1, t2),
(t1, t2, count) => factory.CreateContainer(t1, t2, count));
}
else
{
transform = new DeserializerTransform<R>(
(r, i) => deserialize[i](r),
factory2,
inlineNested);
}
deserialize = transform.Generate(parser, type).Select(lambda => lambda.Compile()).ToArray();
}
/// <summary>
/// Deserialize an object of type <typeparamref name="T"/> from a payload
/// </summary>
/// <typeparam name="T">Type representing a Bond schema</typeparam>
/// <param name="reader">Protocol reader representing the payload</param>
/// <returns>Deserialized object</returns>
public T Deserialize<T>(R reader)
{
return (T)deserialize[0](reader);
}
/// <summary>
/// Deserialize an object from a payload
/// </summary>
/// <param name="reader">Protocol reader representing the payload</param>
/// <returns>Deserialized object</returns>
public object Deserialize(R reader)
{
return deserialize[0](reader);
}
/// <summary>
/// Deserialize an object of type <typeparamref name="T"/> from a payload
/// </summary>
/// <typeparam name="T">Type representing a Bond schema</typeparam>
/// <param name="reader">Protocol reader representing the payload</param>
/// <param name="dest">If a <typeparamref name="T"/> can be successfully deserialized, it will be written to
/// <paramref name="dest"/></param>
/// <returns><see cref="Bond.Deserialize.Result"/> indicating if and how deserialization failed.</returns>
public Deserialize.Result TryDeserialize<T>(R reader, out T dest)
{
try
{
dest = Deserialize<T>(reader);
return Bond.Deserialize.Result.Success;
}
catch (Exception ex) when (ex is InvalidDataException || ex is EndOfStreamException)
{
dest = default(T);
return Bond.Deserialize.Result.InvalidData;
}
}
internal static string GetPrecompiledClassName(Type type, string suffix = null)
{
return string.Concat("Deserializer", suffix ?? string.Empty, "__", typeof(R).Name, "__", type.GetSchemaFullName())
.Replace('.', '_').Replace('<', '_').Replace('>', '_').Replace(' ', '_');
}
}
/// <summary>
/// Deserializer extension methods
/// </summary>
public static class Deserializer
{
/// <summary>
/// Deserialize an object from an <see cref="IBonded{T}"/> instance using a specific deserializer
/// </summary>
/// <typeparam name="R">Protocol reader</typeparam>
/// <typeparam name="T">Type of source object in the bonded</typeparam>
/// <param name="deserializer">Deserializer to be used to deserialize <see cref="IBonded{T}"/> payload</param>
/// <param name="bonded"><see cref="IBonded{T}"/> instance representing payload</param>
/// <remarks>Implemented as an extension method to avoid <see cref="ICloneable{R}"/> constraint on <see cref="Deserializer{R}"/></remarks>
/// <returns>Deserialized object</returns>
public static T Deserialize<T, R>(this Deserializer<R> deserializer, IBonded<T> bonded)
where R : ICloneable<R>
{
var b = bonded as Bonded<T, R>;
if (b == null)
throw new InvalidOperationException(string.Format("Expected Bonded<{0}, {1}>", typeof(T), typeof(R)));
return (T)deserializer.deserialize[0](b.reader.Clone());
}
}
}