forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSerializerCollection.cs
More file actions
223 lines (196 loc) · 5.43 KB
/
SerializerCollection.cs
File metadata and controls
223 lines (196 loc) · 5.43 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
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Runtime.ExceptionServices;
using System.Threading;
using System.Threading.Tasks;
using Waher.Runtime.Inventory;
using Waher.Persistence.Serialization.ReferenceTypes;
using Waher.Persistence.Serialization.ValueTypes;
namespace Waher.Persistence.Serialization
{
/// <summary>
/// Maintains a set of serializers.
/// </summary>
public class SerializerCollection : IDisposable
{
private Dictionary<Type, IObjectSerializer> serializers;
private AutoResetEvent serializerAdded = new AutoResetEvent(false);
private readonly ISerializerContext context;
private readonly object synchObj = new object();
#if NETSTANDARD1_5
private readonly bool compiled;
#endif
#if NETSTANDARD1_5
/// <summary>
/// Maintains a set of serializers.
/// </summary>
/// <param name="Context">Serialization context.</param>
/// <param name="Compiled">If object serializers should be compiled or not.</param>
public SerializerCollection(ISerializerContext Context, bool Compiled)
#else
/// <summary>
/// Maintains a set of serializers.
/// </summary>
/// <param name="Context">Serialization context.</param>
public SerializerCollection(ISerializerContext Context)
#endif
{
this.context = Context;
this.serializers = new Dictionary<Type, IObjectSerializer>();
#if NETSTANDARD1_5
this.compiled = Compiled;
#endif
ConstructorInfo DefaultConstructor;
IObjectSerializer S;
TypeInfo TI;
foreach (Type T in Types.GetTypesImplementingInterface(typeof(IObjectSerializer)))
{
TI = T.GetTypeInfo();
if (TI.IsAbstract || TI.IsGenericTypeDefinition)
continue;
DefaultConstructor = null;
try
{
foreach (ConstructorInfo CI in TI.DeclaredConstructors)
{
if (CI.IsPublic && CI.GetParameters().Length == 0)
{
DefaultConstructor = CI;
break;
}
}
if (DefaultConstructor is null)
continue;
S = DefaultConstructor.Invoke(Types.NoParameters) as IObjectSerializer;
if (S is null)
continue;
}
catch (Exception)
{
continue;
}
this.serializers[S.ValueType] = S;
}
this.serializers[typeof(GenericObject)] = new GenericObjectSerializer(this.context, false);
this.serializers[typeof(object)] = new GenericObjectSerializer(this.context, true);
}
/// <summary>
/// <see cref="IDisposable.Dispose"/>
/// </summary>
public void Dispose()
{
if (!(this.serializers is null))
{
foreach (IObjectSerializer Serializer in this.serializers.Values)
{
if (Serializer is IDisposable d)
{
try
{
d.Dispose();
}
catch (Exception)
{
// Ignore
}
}
}
this.serializers.Clear();
this.serializers = null;
}
this.serializerAdded?.Dispose();
this.serializerAdded = null;
}
/// <summary>
/// Gets the object serializer corresponding to a specific type, if one exists.
/// </summary>
/// <param name="Type">Type of object to serialize.</param>
/// <returns>Object Serializer if exists, or null if not.</returns>
public Task<IObjectSerializer> GetObjectSerializerNoCreate(Type Type)
{
lock (this.synchObj)
{
if (this.serializers.TryGetValue(Type, out IObjectSerializer Result))
return Task.FromResult<IObjectSerializer>(Result);
}
return null;
}
/// <summary>
/// Gets the object serializer corresponding to a specific type.
/// </summary>
/// <param name="Type">Type of object to serialize.</param>
/// <returns>Object Serializer</returns>
public async Task<IObjectSerializer> GetObjectSerializer(Type Type)
{
IObjectSerializer Result;
TypeInfo TI = Type.GetTypeInfo();
lock (this.synchObj)
{
if (this.serializers.TryGetValue(Type, out Result))
return Result;
if (TI.IsEnum)
Result = new EnumSerializer(Type);
else if (Type.IsArray)
{
Type ElementType = Type.GetElementType();
Type T = Types.GetType(typeof(ByteArraySerializer).FullName.Replace("ByteArray", "Array"));
Type SerializerType = T.MakeGenericType(new Type[] { ElementType });
Result = (IObjectSerializer)Activator.CreateInstance(SerializerType, this.context);
}
else if (TI.IsGenericType)
{
Type GT = Type.GetGenericTypeDefinition();
if (GT == typeof(Nullable<>))
{
Type NullableType = Type.GenericTypeArguments[0];
if (NullableType.GetTypeInfo().IsEnum)
Result = new Serialization.NullableTypes.NullableEnumSerializer(NullableType);
else
Result = null;
}
else
Result = null;
}
else
Result = null;
if (!(Result is null))
{
this.serializers[Type] = Result;
this.serializerAdded.Set();
return Result;
}
}
try
{
#if NETSTANDARD1_5
Result = await ObjectSerializer.Create(Type, this.context, this.compiled);
#else
Result = await ObjectSerializer.Create(Type, this.context);
#endif
await Result.Init();
lock (this.synchObj)
{
this.serializers[Type] = Result;
this.serializerAdded.Set();
}
}
catch (FileLoadException ex)
{
// Serializer in the process of being generated from another task or thread.
while (true)
{
if (!this.serializerAdded.WaitOne(1000))
ExceptionDispatchInfo.Capture(ex).Throw();
lock (this.synchObj)
{
if (this.serializers.TryGetValue(Type, out Result))
return Result;
}
}
}
return Result;
}
}
}