forked from dnnsoftware/Dnn.Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleContainer.cs
More file actions
292 lines (240 loc) · 9.95 KB
/
SimpleContainer.cs
File metadata and controls
292 lines (240 loc) · 9.95 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
291
292
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.ComponentModel
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using DotNetNuke.Collections.Internal;
using DotNetNuke.Common;
public class SimpleContainer : AbstractContainer, IDisposable
{
private readonly string name;
private readonly IServiceProvider serviceProvider;
private readonly ComponentBuilderCollection componentBuilders = new ComponentBuilderCollection();
private readonly SharedDictionary<string, IDictionary> componentDependencies = new SharedDictionary<string, IDictionary>();
private readonly ComponentTypeCollection componentTypes = new ComponentTypeCollection();
private readonly SharedDictionary<Type, string> registeredComponents = new SharedDictionary<Type, string>();
/// <summary>Initializes a new instance of the <see cref="SimpleContainer"/> class.</summary>
[Obsolete("Deprecated in DotNetNuke 10.2.2. Please use overload with IServiceProvider. Scheduled removal in v12.0.0.")]
public SimpleContainer()
: this(Globals.DependencyProvider)
{
}
/// <summary>Initializes a new instance of the <see cref="SimpleContainer"/> class.</summary>
/// <param name="serviceProvider">The DI container scope.</param>
public SimpleContainer(IServiceProvider serviceProvider)
: this($"Container_{Guid.NewGuid()}", serviceProvider)
{
}
/// <summary>Initializes a new instance of the <see cref="SimpleContainer"/> class.</summary>
/// <param name="name">The container name.</param>
[Obsolete("Deprecated in DotNetNuke 10.2.2. Please use overload with IServiceProvider. Scheduled removal in v12.0.0.")]
public SimpleContainer(string name)
: this(name, Globals.DependencyProvider)
{
}
/// <summary>Initializes a new instance of the <see cref="SimpleContainer"/> class.</summary>
/// <param name="name">The container name.</param>
/// <param name="serviceProvider">The DI container scope.</param>
public SimpleContainer(string name, IServiceProvider serviceProvider)
{
this.name = name;
this.serviceProvider = serviceProvider;
}
/// <inheritdoc />
public override string Name => this.name;
/// <inheritdoc />
[SuppressMessage("Microsoft.Naming", "CA1725:ParameterNamesShouldMatchBaseDeclaration", Justification = "Breaking change")]
public override void RegisterComponent(string name, Type type)
{
using (this.registeredComponents.GetWriteLock())
{
this.registeredComponents[type] = name;
}
}
/// <inheritdoc />
public override object GetComponent(string name)
{
IComponentBuilder builder = this.GetComponentBuilder(name);
return GetComponent(builder);
}
/// <inheritdoc />
public override object GetComponent(Type contractType)
{
ComponentType componentType = this.GetComponentType(contractType);
object component = null;
if (componentType != null)
{
int builderCount;
using (componentType.ComponentBuilders.GetReadLock())
{
builderCount = componentType.ComponentBuilders.Count;
}
if (builderCount > 0)
{
IComponentBuilder builder = GetDefaultComponentBuilder(componentType);
component = GetComponent(builder);
}
}
return component;
}
/// <inheritdoc />
public override object GetComponent(string name, Type contractType)
{
ComponentType componentType = this.GetComponentType(contractType);
object component = null;
if (componentType != null)
{
IComponentBuilder builder = this.GetComponentBuilder(name);
component = GetComponent(builder);
}
return component;
}
/// <inheritdoc />
public override string[] GetComponentList(Type contractType)
{
var components = new List<string>();
using (this.registeredComponents.GetReadLock())
{
foreach (KeyValuePair<Type, string> kvp in this.registeredComponents)
{
if (contractType.IsAssignableFrom(kvp.Key))
{
components.Add(kvp.Value);
}
}
}
return components.ToArray();
}
/// <inheritdoc />
public override IDictionary GetComponentSettings(string name)
{
IDictionary settings;
using (this.componentDependencies.GetReadLock())
{
settings = this.componentDependencies[name];
}
return settings;
}
/// <inheritdoc />
[SuppressMessage("Microsoft.Naming", "CA1725:ParameterNamesShouldMatchBaseDeclaration", Justification = "Breaking change")]
public override void RegisterComponent(string name, Type contractType, Type type, ComponentLifeStyleType lifestyle)
{
this.AddComponentType(contractType);
IComponentBuilder builder = null;
switch (lifestyle)
{
case ComponentLifeStyleType.Transient:
builder = new TransientComponentBuilder(this.serviceProvider, name, type);
break;
case ComponentLifeStyleType.Singleton:
builder = new SingletonComponentBuilder(this.serviceProvider, name, type);
break;
}
this.AddBuilder(contractType, builder);
this.RegisterComponent(name, type);
}
/// <inheritdoc />
public override void RegisterComponentInstance(string name, Type contractType, object instance)
{
this.AddComponentType(contractType);
this.AddBuilder(contractType, new InstanceComponentBuilder(name, instance));
this.RegisterComponent(name, instance.GetType());
}
/// <inheritdoc />
public override void RegisterComponentSettings(string name, IDictionary dependencies)
{
using (this.componentDependencies.GetWriteLock())
{
this.componentDependencies[name] = dependencies;
}
}
/// <inheritdoc />
public void Dispose()
{
this.Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
this.componentBuilders?.Dispose();
this.componentDependencies?.Dispose();
this.componentTypes?.Dispose();
this.registeredComponents?.Dispose();
}
}
private static object GetComponent(IComponentBuilder builder)
{
object component;
if (builder == null)
{
component = null;
}
else
{
component = builder.BuildComponent();
}
return component;
}
private static IComponentBuilder GetDefaultComponentBuilder(ComponentType componentType)
{
IComponentBuilder builder;
using (componentType.ComponentBuilders.GetReadLock())
{
builder = componentType.ComponentBuilders.DefaultBuilder;
}
return builder;
}
private void AddBuilder(Type contractType, IComponentBuilder builder)
{
ComponentType componentType = this.GetComponentType(contractType);
if (componentType != null)
{
ComponentBuilderCollection builders = componentType.ComponentBuilders;
using (builders.GetWriteLock())
{
builders.AddBuilder(builder, true);
}
using (this.componentBuilders.GetWriteLock())
{
this.componentBuilders.AddBuilder(builder, false);
}
}
}
private void AddComponentType(Type contractType)
{
ComponentType componentType = this.GetComponentType(contractType);
if (componentType == null)
{
componentType = new ComponentType(contractType);
using (this.componentTypes.GetWriteLock())
{
this.componentTypes[componentType.BaseType] = componentType;
}
}
}
private IComponentBuilder GetComponentBuilder(string name)
{
IComponentBuilder builder;
using (this.componentBuilders.GetReadLock())
{
this.componentBuilders.TryGetValue(name, out builder);
}
return builder;
}
private ComponentType GetComponentType(Type contractType)
{
ComponentType componentType;
using (this.componentTypes.GetReadLock())
{
this.componentTypes.TryGetValue(contractType, out componentType);
}
return componentType;
}
}
}