-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathSerializerCollection.cs
More file actions
290 lines (256 loc) · 7.7 KB
/
SerializerCollection.cs
File metadata and controls
290 lines (256 loc) · 7.7 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
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
285
286
287
288
289
290
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;
using Waher.Script.Abstraction.Elements;
using Waher.Events;
namespace Waher.Persistence.Serialization
{
/// <summary>
/// Maintains a set of serializers.
/// </summary>
public class SerializerCollection : IDisposableAsync
{
private Dictionary<Type, IObjectSerializer> serializers;
private AutoResetEvent serializerAdded = new AutoResetEvent(false);
private readonly ISerializerContext context;
private readonly object synchObj = new object();
#if COMPILED
private readonly bool compiled;
#endif
#if COMPILED
/// <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 COMPILED
this.compiled = Compiled;
#endif
ConstructorInfo DefaultConstructor;
IObjectSerializer S;
foreach (Type T in Types.GetTypesImplementingInterface(typeof(IObjectSerializer)))
{
try
{
DefaultConstructor = Types.GetDefaultConstructor(T);
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(Dictionary<string, object>)] = new StringDictionaryObjectSerializer(this.context);
this.serializers[typeof(Dictionary<string, IElement>)] = new ObjectExNihiloObjectSerializer(this.context);
this.serializers[typeof(KeyValuePair<string, object>[])] = new TagsObjectSerializer(this.context);
this.serializers[typeof(KeyValuePair<string, IElement>[])] = new TagElementsObjectSerializer(this.context);
this.serializers[typeof(object)] = new GenericObjectSerializer(this.context, true);
}
/// <summary>
/// <see cref="IDisposable.Dispose"/>
/// </summary>
[Obsolete("Use DisposeAsync() instead.")]
public void Dispose()
{
this.DisposeAsync().Wait();
}
/// <summary>
/// <see cref="IDisposableAsync.DisposeAsync"/>
/// </summary>
public async Task DisposeAsync()
{
if (!(this.serializers is null))
{
IObjectSerializer[] Serializers = new IObjectSerializer[this.serializers.Count];
lock (this.synchObj)
{
this.serializers.Values.CopyTo(Serializers, 0);
this.serializers.Clear();
this.serializers = null;
}
foreach (IObjectSerializer Serializer in Serializers)
{
try
{
if (Serializer is IDisposableAsync dAsync)
await dAsync.DisposeAsync();
else if (Serializer is IDisposable d)
d.Dispose();
}
catch (Exception)
{
// Ignore
}
}
}
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();
DateTime Start = DateTime.Now;
do
{
lock (this.synchObj)
{
if (this.serializers.TryGetValue(Type, out Result))
{
if (Result is ObjectSerializer ObjectSerializer)
{
if (ObjectSerializer.Prepared)
return Result;
else
Result = null; // Wait for preparation process of serializer to complete (or fail).
}
else
return Result;
}
else
{
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.IsEnum)
Result = new 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;
}
Result = new ObjectSerializer();
this.serializers[Type] = Result;
}
}
if (Result is null)
{
if (DateTime.Now.Subtract(Start).TotalMinutes >= 1)
throw new Exception("Unable to create an object serializer for type: " + Type.FullName + ". Timeout.");
await Task.Delay(100); // Await for compilation of previous attempt completes.
}
}
while (Result is null);
try
{
#if COMPILED
await ((ObjectSerializer)Result).Prepare(Type, this.context, this.compiled);
#else
await ((ObjectSerializer)Result).Prepare(Type, this.context);
#endif
await Result.Init();
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;
}
}
}
catch (Exception ex)
{
lock (this.synchObj)
{
if ((this.serializers?.TryGetValue(Type, out IObjectSerializer Result2) ?? false) &&
Result2 == Result)
{
this.serializers.Remove(Type);
}
ExceptionDispatchInfo.Capture(ex).Throw();
}
}
return Result;
}
/// <summary>
/// Gets an array of collections that should be excluded from backups.
/// </summary>
/// <returns>Array of excluded collections.</returns>
public string[] GetExcludedCollections()
{
SortedDictionary<string, bool> Sorted = new SortedDictionary<string, bool>(StringComparer.OrdinalIgnoreCase);
lock (this.synchObj)
{
foreach (IObjectSerializer Serializer in this.serializers.Values)
{
if (Serializer is ObjectSerializer ObjectSerializer && !ObjectSerializer.BackupCollection)
Sorted[ObjectSerializer.CollectionNameConstant] = true;
}
}
string[] Result = new string[Sorted.Count];
Sorted.Keys.CopyTo(Result, 0);
return Result;
}
}
}