-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReverseTopicMappingService.cs
590 lines (511 loc) · 34.5 KB
/
ReverseTopicMappingService.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using System.Collections;
using System.ComponentModel;
using System.Globalization;
using System.Reflection;
using OnTopic.Collections;
using OnTopic.Internal.Reflection;
using OnTopic.Metadata;
using OnTopic.Models;
using OnTopic.Repositories;
namespace OnTopic.Mapping.Reverse {
/*============================================================================================================================
| CLASS: REVERSE TOPIC MAPPING SERVICE
\---------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public class ReverseTopicMappingService : IReverseTopicMappingService {
/*==========================================================================================================================
| PRIVATE VARIABLES
\-------------------------------------------------------------------------------------------------------------------------*/
readonly ITopicRepository _topicRepository;
readonly ContentTypeDescriptorCollection _contentTypeDescriptors;
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Establishes a new instance of a <see cref="ReverseTopicMappingService"/> with required dependencies.
/// </summary>
public ReverseTopicMappingService(ITopicRepository topicRepository) {
/*------------------------------------------------------------------------------------------------------------------------
| Validate parameters
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(topicRepository, "An instance of an ITopicRepository is required.");
/*------------------------------------------------------------------------------------------------------------------------
| Set dependencies
\-----------------------------------------------------------------------------------------------------------------------*/
_topicRepository = topicRepository;
_contentTypeDescriptors = topicRepository.GetContentTypeDescriptors();
/*------------------------------------------------------------------------------------------------------------------------
| Validate dependencies
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Assume(
_contentTypeDescriptors,
$"The {nameof(ITopicRepository.GetContentTypeDescriptors)}() method returned null. This could indicate a corrupt " +
$"or data source."
);
}
/*==========================================================================================================================
| METHOD: MAP (ASYNC)
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public async Task<Topic?> MapAsync(ITopicBindingModel source) {
/*------------------------------------------------------------------------------------------------------------------------
| Handle null source
\-----------------------------------------------------------------------------------------------------------------------*/
if (source is null) return null;
/*------------------------------------------------------------------------------------------------------------------------
| Validate input
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(source.Key, $"The 'source' ITopicBindingModel must contain a 'Key' value.");
Contract.Requires(source.ContentType, $"The 'source' ITopicBindingModel must contain a 'ContentType' value.");
/*------------------------------------------------------------------------------------------------------------------------
| Instantiate target
\-----------------------------------------------------------------------------------------------------------------------*/
var topic = TopicFactory.Create(source.Key, source.ContentType);
/*------------------------------------------------------------------------------------------------------------------------
| Provide mapping
\-----------------------------------------------------------------------------------------------------------------------*/
return await MapAsync(source, topic).ConfigureAwait(false);
}
/*==========================================================================================================================
| METHOD: MAP (T)
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public async Task<T?> MapAsync<T>(ITopicBindingModel? source) where T : Topic {
/*------------------------------------------------------------------------------------------------------------------------
| Handle null source
\-----------------------------------------------------------------------------------------------------------------------*/
if (source is null) {
return null;
}
/*------------------------------------------------------------------------------------------------------------------------
| Validate input
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(source.Key, $"The 'source' ITopicBindingModel must contain a 'Key' value.");
Contract.Requires(source.ContentType, $"The 'source' ITopicBindingModel must contain a 'ContentType' value.");
/*------------------------------------------------------------------------------------------------------------------------
| Map source
\-----------------------------------------------------------------------------------------------------------------------*/
return (T?)await MapAsync(
source,
TopicFactory.Create(source.Key, source.ContentType)
).ConfigureAwait(false);
}
/*==========================================================================================================================
| METHOD: MAP (TOPIC)
\-------------------------------------------------------------------------------------------------------------------------*/
/// <inheritdoc />
public async Task<Topic?> MapAsync(ITopicBindingModel? source, Topic target) {
/*------------------------------------------------------------------------------------------------------------------------
| Handle null source
\-----------------------------------------------------------------------------------------------------------------------*/
if (source is null) return target;
/*------------------------------------------------------------------------------------------------------------------------
| Validate input
\-----------------------------------------------------------------------------------------------------------------------*/
Contract.Requires(target, nameof(target));
Contract.Assume(source.ContentType, nameof(source.ContentType));
//Ensure the content type is valid
if (!_contentTypeDescriptors.Contains(source.ContentType)) {
throw new MappingModelValidationException(
$"The {nameof(source)} object (with the key '{source.Key}') has a content type of '{source.ContentType}'. There " +
$"are no matching content types in the ITopicRepository provided. This suggests that the binding model is invalid. " +
$"If this is expected—e.g., if the content type is being added as part of this operation—then it needs to be added " +
$"to the same ITopicRepository instance prior to creating any instances of it."
);
}
//Ensure the content types match
if (source.ContentType != target.ContentType) {
throw new MappingModelValidationException(
$"The {nameof(source)} object (with the key '{source.Key}') has a content type of '{source.ContentType}', while " +
$"the {nameof(target)} object (with the key '{target.Key}') has a content type of '{target.ContentType}'. It is not" +
$"permitted to change the topic's content type during a mapping operation, as this interferes with the validation. " +
$"If this is by design, change the content type on the target topic prior to invoking MapAsync()."
);
}
//Ensure the keys match
if (source.Key != target.Key && !String.IsNullOrEmpty(source.Key)) {
throw new MappingModelValidationException(
$"The {nameof(source)} object has a key of '{source.Key}', while the {nameof(target)} object has a key of " +
$"'{target.Key}'. It is not permitted to change the topic's key during a mapping operation, as this suggests an " +
$"invalid target. If this is by design, change the key on the target topic prior to invoking MapAsync()."
);
}
/*----------------------------------------------------------------------------------------------------------------------
| Map source to target
\---------------------------------------------------------------------------------------------------------------------*/
return await MapAsync(source, target, null).ConfigureAwait(false);
}
/*==========================================================================================================================
| PRIVATE: MAP (TOPIC)
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Given a binding model and an existing <see cref="Topic"/>, will map the properties of the binding model to attributes
/// on the <see cref="Topic"/>, optionally prefixing the attributes with the <paramref name="attributePrefix"/>.
/// </summary>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
/// <returns>
/// An instance of provided <see cref="Topic"/> with attributes appropriately mapped.
/// </returns>
private async Task<Topic?> MapAsync(object? source, Topic target, string? attributePrefix) {
/*------------------------------------------------------------------------------------------------------------------------
| Handle null source
\-----------------------------------------------------------------------------------------------------------------------*/
if (source is null) return target;
/*------------------------------------------------------------------------------------------------------------------------
| Validate model
\-----------------------------------------------------------------------------------------------------------------------*/
var typeAccessor = TypeAccessorCache.GetTypeAccessor(source.GetType());
var contentTypeDescriptor = _contentTypeDescriptors.GetValue(target.ContentType);
BindingModelValidator.ValidateModel(typeAccessor, contentTypeDescriptor, attributePrefix);
/*------------------------------------------------------------------------------------------------------------------------
| Loop through properties, mapping each one
\-----------------------------------------------------------------------------------------------------------------------*/
var taskQueue = new List<Task>();
foreach (var property in typeAccessor.GetMembers(MemberTypes.Property)) {
taskQueue.Add(SetPropertyAsync(source, target, property, attributePrefix));
}
await Task.WhenAll(taskQueue.ToArray()).ConfigureAwait(false);
/*------------------------------------------------------------------------------------------------------------------------
| Return result
\-----------------------------------------------------------------------------------------------------------------------*/
return target;
}
/*==========================================================================================================================
| PRIVATE: SET PROPERTY (ASYNC)
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Helper function that evaluates each property on the source <see cref="ITopicBindingModel"/> and then attempts to
/// locate and set the associated attribute, collection, or property on the target <see cref="Topic"/> based on
/// predetermined conventions.
/// </summary>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="memberAccessor">Information related to the current property.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
private async Task SetPropertyAsync(
object source,
Topic target,
MemberAccessor memberAccessor,
string? attributePrefix = null
) {
/*------------------------------------------------------------------------------------------------------------------------
| Establish per-property variables
\-----------------------------------------------------------------------------------------------------------------------*/
var configuration = memberAccessor.Configuration;
var contentTypeDescriptor = _contentTypeDescriptors.GetValue(target.ContentType);
var compositeAttributeKey = configuration.GetCompositeAttributeKey(attributePrefix);
Contract.Assume(contentTypeDescriptor, nameof(contentTypeDescriptor));
/*------------------------------------------------------------------------------------------------------------------------
| Skip properties decorated with [DisableMapping]
\-----------------------------------------------------------------------------------------------------------------------*/
if (configuration.DisableMapping) {
return;
}
/*------------------------------------------------------------------------------------------------------------------------
| Skip properties injected by the compiler for record types
\-----------------------------------------------------------------------------------------------------------------------*/
if (memberAccessor.Name is "EqualityContract") {
return;
}
/*------------------------------------------------------------------------------------------------------------------------
| Handle mapping properties from referenced objects
\-----------------------------------------------------------------------------------------------------------------------*/
if (configuration.MapToParent) {
await MapAsync(
memberAccessor.GetValue(source),
target,
configuration.AttributePrefix
).ConfigureAwait(false);
return;
}
/*------------------------------------------------------------------------------------------------------------------------
| Retrieve attribute descriptor
\-----------------------------------------------------------------------------------------------------------------------*/
var attributeType = contentTypeDescriptor.AttributeDescriptors.GetValue(compositeAttributeKey);
if (attributeType is null) {
throw new MappingModelValidationException(
$"The attribute '{configuration.GetCompositeAttributeKey(attributePrefix)}' mapped by the {source.GetType()} could not be found on the " +
$"'{contentTypeDescriptor.Key}' content type.");
}
/*------------------------------------------------------------------------------------------------------------------------
| Validate fields
\-----------------------------------------------------------------------------------------------------------------------*/
memberAccessor.Validate(source);
/*------------------------------------------------------------------------------------------------------------------------
| Handle property by type
\-----------------------------------------------------------------------------------------------------------------------*/
switch (attributeType.ModelType) {
case ModelType.ScalarValue:
SetScalarValue(source, target, memberAccessor, attributePrefix);
return;
case ModelType.Relationship:
SetRelationships(source, target, memberAccessor, attributePrefix);
return;
case ModelType.NestedTopic:
await SetNestedTopicsAsync(source, target, memberAccessor, attributePrefix).ConfigureAwait(false);
return;
case ModelType.Reference:
SetReference(source, target, memberAccessor, attributePrefix);
return;
}
}
/*==========================================================================================================================
| PRIVATE: SET SCALAR VALUE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Sets an attribute on the target <see cref="Topic"/> with a scalar value from the source binding model.
/// </summary>
/// <remarks>
/// Assuming the <paramref name="memberAccessor"/>'s <see cref="ItemMetadata.Type"/> property is of the type <see cref=
/// "String"/>, <see cref="Boolean"/>, <see cref="Int32"/>, or <see cref="DateTime"/>, the <see cref="SetScalarValue(
/// Object, Topic, MemberAccessor, String?)"/> method will attempt to set the property on the <paramref name="target"/>.
/// If the value is not set on the <paramref name="source"/> then the <see cref="DefaultValueAttribute"/> will be
/// evaluated as a fallback. If the property is not of a settable type then the property is not set. If the value is
/// empty, then it will be treated as <c>null</c> in the <paramref name="target"/>'s <see cref="AttributeCollection"/>.
/// </remarks>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="memberAccessor">The <see cref="MemberAccessor"/> with details about the property's attributes.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
/// <autogeneratedoc />
private static void SetScalarValue(
object source,
Topic target,
MemberAccessor memberAccessor,
string? attributePrefix
) {
/*------------------------------------------------------------------------------------------------------------------------
| Attempt to retrieve value from the binding model property
\-----------------------------------------------------------------------------------------------------------------------*/
var configuration = memberAccessor.Configuration;
var attributeValue = memberAccessor.GetValue(source)?.ToString();
/*------------------------------------------------------------------------------------------------------------------------
| Fall back to default, if configured
\-----------------------------------------------------------------------------------------------------------------------*/
if (String.IsNullOrEmpty(attributeValue) && configuration.DefaultValue is not null) {
attributeValue = configuration.DefaultValue.ToString();
}
/*------------------------------------------------------------------------------------------------------------------------
| Handle type conversion
\-----------------------------------------------------------------------------------------------------------------------*/
if (attributeValue is not null) {
switch (memberAccessor.Type.Name) {
case nameof(Boolean):
attributeValue = attributeValue is "True" ? "1" : "0";
break;
}
}
/*------------------------------------------------------------------------------------------------------------------------
| Set the value (to null, if appropriate)
\-----------------------------------------------------------------------------------------------------------------------*/
target.Attributes.SetValue(configuration.GetCompositeAttributeKey(attributePrefix), attributeValue);
}
/*==========================================================================================================================
| PRIVATE: SET RELATIONSHIPS
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Given a relationship property, identifies the target <see cref="Topic"/> for each related item, and sets it on the
/// source <see cref="Topic"/>'s <see cref="Topic.Relationships"/> collection.
/// </summary>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="memberAccessor">The <see cref="MemberAccessor"/> with details about the property's attributes.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
private void SetRelationships(
object source,
Topic target,
MemberAccessor memberAccessor,
string? attributePrefix
) {
/*------------------------------------------------------------------------------------------------------------------------
| Establish configuration
\-----------------------------------------------------------------------------------------------------------------------*/
var configuration = memberAccessor.Configuration;
/*------------------------------------------------------------------------------------------------------------------------
| Retrieve source list
\-----------------------------------------------------------------------------------------------------------------------*/
var sourceList = (IList?)memberAccessor.GetValue(source);
if (sourceList is null) {
sourceList = new List<IAssociatedTopicBindingModel>();
}
/*------------------------------------------------------------------------------------------------------------------------
| Clear existing relationships
\-----------------------------------------------------------------------------------------------------------------------*/
target.Relationships.Clear(configuration.GetCompositeAttributeKey(attributePrefix));
/*------------------------------------------------------------------------------------------------------------------------
| Set relationships for each
\-----------------------------------------------------------------------------------------------------------------------*/
foreach (IAssociatedTopicBindingModel relationship in sourceList) {
var targetTopic = _topicRepository.Load(relationship.UniqueKey, target);
if (targetTopic is null) {
throw new MappingModelValidationException(
$"The relationship '{relationship.UniqueKey}' mapped in the '{memberAccessor.Name}' property could not be " +
$"located in the repository."
);
}
target.Relationships.SetValue(configuration.GetCompositeAttributeKey(attributePrefix), targetTopic);
}
}
/*==========================================================================================================================
| PRIVATE: SET NESTED TOPICS
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Given a nested topic property, serializes a topic for each property, and sets it on the target <see cref="Topic"/>'s
/// <see cref="Topic.Children"/> collection.
/// </summary>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="memberAccessor">The <see cref="MemberAccessor"/> with details about the property's attributes.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
private async Task SetNestedTopicsAsync(
object source,
Topic target,
MemberAccessor memberAccessor,
string? attributePrefix
) {
/*------------------------------------------------------------------------------------------------------------------------
| Establish configuration
\-----------------------------------------------------------------------------------------------------------------------*/
var configuration = memberAccessor.Configuration;
/*------------------------------------------------------------------------------------------------------------------------
| Retrieve source list
\-----------------------------------------------------------------------------------------------------------------------*/
var sourceList = (IList?)memberAccessor.GetValue(source) ?? new List<ITopicBindingModel>();
/*------------------------------------------------------------------------------------------------------------------------
| Establish target collection to store mapped topics
\-----------------------------------------------------------------------------------------------------------------------*/
var container = target.Children.GetValue(configuration.GetCompositeAttributeKey(attributePrefix));
if (container is null) {
container = TopicFactory.Create(configuration.GetCompositeAttributeKey(attributePrefix), "List", target);
container.IsHidden = true;
}
/*------------------------------------------------------------------------------------------------------------------------
| Map the topics from the source collection, and add them to the target collection
\-----------------------------------------------------------------------------------------------------------------------*/
await PopulateTargetCollectionAsync(sourceList, container.Children).ConfigureAwait(false);
}
/*==========================================================================================================================
| PRIVATE: SET REFERENCE
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Given a reference property, lookup the associated topic and set its <see cref="Topic.Id"/> on the <paramref
/// name="target"/>'s <see cref="Topic.Attributes"/> collection.
/// </summary>
/// <param name="source">
/// The binding model from which to derive the data. Must inherit from <see cref="ITopicBindingModel"/>.
/// </param>
/// <param name="target">The <see cref="Topic"/> entity to map the data to.</param>
/// <param name="memberAccessor">The <see cref="MemberAccessor"/> with details about the property's attributes.</param>
/// <param name="attributePrefix">The prefix to apply to the attributes.</param>
private void SetReference(
object source,
Topic target,
MemberAccessor memberAccessor,
string? attributePrefix
) {
/*------------------------------------------------------------------------------------------------------------------------
| Establish configuration
\-----------------------------------------------------------------------------------------------------------------------*/
var configuration = memberAccessor.Configuration;
/*------------------------------------------------------------------------------------------------------------------------
| Retrieve source value
\-----------------------------------------------------------------------------------------------------------------------*/
var modelReference = (IAssociatedTopicBindingModel?)memberAccessor.GetValue(source);
/*------------------------------------------------------------------------------------------------------------------------
| Provide error handling
\-----------------------------------------------------------------------------------------------------------------------*/
if (modelReference is null || modelReference.UniqueKey is null) {
throw new MappingModelValidationException(
$"The {memberAccessor.Name} property must reference an object with its `UniqueKey` property set The " +
$"value may be empty, but it should not be null."
);
}
/*------------------------------------------------------------------------------------------------------------------------
| Identify target value
\-----------------------------------------------------------------------------------------------------------------------*/
var topicReference = _topicRepository.Load(modelReference.UniqueKey, target);
/*------------------------------------------------------------------------------------------------------------------------
| Provide error handling
\-----------------------------------------------------------------------------------------------------------------------*/
if (modelReference.UniqueKey.Length > 0 && topicReference is null) {
throw new MappingModelValidationException(
$"The topic '{modelReference.UniqueKey}' referenced by the '{source.GetType()}' model's " +
$"'{memberAccessor.Name}' property could not be found."
);
}
/*------------------------------------------------------------------------------------------------------------------------
| Set target attribute
\-----------------------------------------------------------------------------------------------------------------------*/
if (configuration.GetCompositeAttributeKey(attributePrefix).EndsWith("Id", StringComparison.Ordinal)) {
target.Attributes.SetValue(configuration.GetCompositeAttributeKey(attributePrefix), topicReference?.Id.ToString(CultureInfo.InvariantCulture));
}
else {
target.References.SetValue(configuration.GetCompositeAttributeKey(attributePrefix), topicReference);
}
}
/*==========================================================================================================================
| PRIVATE: POPULATE TARGET COLLECTION
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Given a source list, will populate a target list based on the configured behavior of the source property.
/// </summary>
/// <param name="sourceList">The <see cref="IList{ITopicBindingModel}"/> to pull the binding models from.</param>
/// <param name="targetList">The target <see cref="IList{Topic}"/> to add the mapped <see cref="Topic"/> objects to.</param>
private async Task PopulateTargetCollectionAsync(
IList sourceList,
KeyedTopicCollection targetList
) {
/*------------------------------------------------------------------------------------------------------------------------
| Queue up mapping tasks
\-----------------------------------------------------------------------------------------------------------------------*/
var taskQueue = new List<Task<Topic?>>();
//Map child binding model to target collection on the target
foreach (ITopicBindingModel childBindingModel in sourceList) {
Contract.Assume(childBindingModel.Key);
if (targetList.Contains(childBindingModel.Key)) {
taskQueue.Add(MapAsync(childBindingModel, targetList.GetValue(childBindingModel.Key)!));
}
else {
taskQueue.Add(MapAsync(childBindingModel));
}
}
/*------------------------------------------------------------------------------------------------------------------------
| Remove orphaned topics
\-----------------------------------------------------------------------------------------------------------------------*/
foreach (var childTopic in targetList.ToArray()) {
if (sourceList.Cast<ITopicBindingModel>().Any(model => model.Key == childTopic.Key)) {
continue;
}
targetList.Remove(childTopic);
}
/*------------------------------------------------------------------------------------------------------------------------
| Process mapping tasks
\-----------------------------------------------------------------------------------------------------------------------*/
while (taskQueue.Count > 0) {
var topicTask = await Task.WhenAny(taskQueue).ConfigureAwait(false);
taskQueue.Remove(topicTask);
var topic = await topicTask.ConfigureAwait(false);
if (topic is not null && !targetList.Contains(topic.Key)) {
targetList.Add(topic);
}
}
}
} //Class
} //Namespace