-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathContentTypeDescriptorCollection.cs
88 lines (77 loc) · 4.8 KB
/
ContentTypeDescriptorCollection.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
/*==============================================================================================================================
| Author Ignia, LLC
| Client Ignia, LLC
| Project Topics Library
\=============================================================================================================================*/
using OnTopic.Collections;
using OnTopic.Querying;
using OnTopic.Repositories;
namespace OnTopic.Metadata {
/*============================================================================================================================
| CLASS: CONTENT TYPE DESCRIPTOR COLLECTION
\---------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Represents a collection of <see cref="ContentTypeDescriptor"/> objects.
/// </summary>
/// <remarks>
/// While the <see cref="ContentTypeDescriptorCollection"/> can be used to store any collection of <see cref=
/// "ContentTypeDescriptor"/> objects, it has additional tooling in the form of the <see cref="Refresh(
/// ContentTypeDescriptor?)"/> as well as the <see cref="ContentTypeDescriptorCollection(ContentTypeDescriptor?)"/>
/// constructor for handling a flattened list of <see cref="ContentTypeDescriptor"/>s used for the <see cref=
/// "ITopicRepository.GetContentTypeDescriptors()"/> method.
/// </remarks>
public class ContentTypeDescriptorCollection : KeyedTopicCollection<ContentTypeDescriptor> {
/*==========================================================================================================================
| CONSTRUCTOR
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Initializes a new instance of the <see cref="ContentTypeDescriptorCollection"/> class.
/// </summary>
public ContentTypeDescriptorCollection() : base(null) {
}
/// <summary>
/// Initializes a new instance of the <see cref="ContentTypeDescriptorCollection"/> class based on a root <see cref=
/// "ContentTypeDescriptor"/>.
/// </summary>
/// <param name="rootContentType">The <see cref="ContentTypeDescriptor"/> from which to initialize the collection.</param>
public ContentTypeDescriptorCollection(ContentTypeDescriptor? rootContentType) : base(null) {
Refresh(rootContentType);
}
/*==========================================================================================================================
| REFRESH
\-------------------------------------------------------------------------------------------------------------------------*/
/// <summary>
/// Updates the current instance of the <see cref="ContentTypeDescriptorCollection"/> based on a new root <see cref=
/// "ContentTypeDescriptor"/>.
/// </summary>
/// <param name="rootContentType">The <see cref="ContentTypeDescriptor"/> from which to initialize the collection.</param>
public void Refresh(ContentTypeDescriptor? rootContentType) {
/*------------------------------------------------------------------------------------------------------------------------
| Validate parameters
\-----------------------------------------------------------------------------------------------------------------------*/
#pragma warning disable IDE0078 // Use pattern matching
if (rootContentType is null || rootContentType is { Children: { Count: 0 } }) {
return;
}
#pragma warning restore IDE0078 // Use pattern matching
Contract.Requires(
rootContentType.Key.Equals("ContentTypes", StringComparison.OrdinalIgnoreCase),
$"The {nameof(rootContentType)} is expected to represent the root of the content type topic graph, with a " +
$"key of 'ContentTypes'. Instead, the supplied ContentTypeDescriptor has a key of '{rootContentType.Key}'."
);
/*------------------------------------------------------------------------------------------------------------------------
| Clear any existing values
\-----------------------------------------------------------------------------------------------------------------------*/
Clear();
/*------------------------------------------------------------------------------------------------------------------------
| Add all ContentTypeDescriptors to collection
\-----------------------------------------------------------------------------------------------------------------------*/
var contentTypeDescriptors = rootContentType
.FindAll(t => t is ContentTypeDescriptor)
.Cast<ContentTypeDescriptor>();
foreach (var contentType in contentTypeDescriptors) {
Add((ContentTypeDescriptor)contentType);
}
}
} //Class
} //Namespace