forked from microsoft/MinIoC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContainer.cs
373 lines (330 loc) · 13.7 KB
/
Container.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
namespace Microsoft.MinIoC
{
/// <summary>
/// 控制容器的反转处理已注册类型的依赖项注入 1
/// Inversion of control container handles dependency injection for registered types
/// </summary>
public class Container : Container.IScope
{
#region Public interfaces
/// <summary>
/// 表示某个时刻的范围对象的作用域
/// </summary>
public interface IScope : IDisposable, IServiceProvider
{
}
/// <summary>
/// 代表注册的类型
/// Container.Register 方法 返回这个类型,并可以允许进一步配置注册
/// </summary>
public interface IRegisteredType
{
/// <summary>
/// 使注册类型为单例
/// </summary>
void AsSingleton();
/// <summary>
/// 将注册类型设为一个作用域类型(范围内的单个实例)
/// </summary>
void PerScope();
}
#endregion
/// <summary>
/// 已注册类型的映射
/// </summary>
private readonly Dictionary<Type, Func<ILifetime, object>> _registeredTypes = new Dictionary<Type, Func<ILifetime, object>>();
/// <summary>
/// 生命周期管理
/// </summary>
private readonly ContainerLifetime _lifetime;
/// <summary>
/// Creates a new instance of IoC Container
/// </summary>
public Container()
{
_lifetime = new ContainerLifetime(GetRegisteredTypes);
}
Func<ILifetime, object> GetRegisteredTypes(Type t)
{
Console.WriteLine("aa" + (((object)t != null) ? t.ToString() : null));
return _registeredTypes[t];
}
/// <summary>
///注册工厂函数,将调用该函数来解析指定的接口
/// </summary>
/// <param name="interface">Interface to register</param>
/// <param name="factory">Factory function</param>
/// <returns></returns>
public IRegisteredType Register(Type @interface, Func<object> factory)
{
return RegisterType(@interface, _ => factory());
}
/// <summary>
/// 注册指定接口的实现类型
/// </summary>
/// <param name="interface">Interface to register</param>
/// <param name="implementation">Implementing type</param>
/// <returns></returns>
public IRegisteredType Register(Type @interface, Type implementation)
{
return RegisterType(@interface, FactoryFromType(implementation));
}
private IRegisteredType RegisterType(Type itemType, Func<ILifetime, object> factory)
{
return new RegisteredType(itemType, f => _registeredTypes[itemType] = f, factory);
}
/// <summary>
/// Returns the object registered for the given type, if registered
/// </summary>
/// <param name="type">Type as registered with the container</param>
/// <returns>Instance of the registered type, if registered; otherwise <see langword="null"/></returns>
public object GetService(Type type)
{
Func<ILifetime, object> registeredType;
if (!_registeredTypes.TryGetValue(type, out registeredType))
{
return null;
}
return registeredType(_lifetime);
}
/// <summary>
/// Creates a new scope
/// </summary>
/// <returns>Scope object</returns>
public IScope CreateScope() => new ScopeLifetimeMgr(_lifetime);
/// <summary>
/// Disposes any <see cref="IDisposable"/> objects owned by this container.
/// </summary>
public void Dispose() => _lifetime.Dispose();
#region Lifetime management
/// <summary>
/// 给IScope对象提供生命周期管理策略
/// </summary>
interface ILifetime : IScope
{
/// <summary>
/// 获取一个单例对象
/// </summary>
/// <param name="type"></param>
/// <param name="factory"></param>
/// <returns></returns>
object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory);
/// <summary>
/// 获取一个作用域对象
/// </summary>
/// <param name="type"></param>
/// <param name="factory"></param>
/// <returns></returns>
object GetServicePerScope(Type type, Func<ILifetime, object> factory);
}
/// <summary>
/// 提供终身的缓存逻辑,添加或者获取,abstract
/// </summary>
abstract class ObjectCache
{
/// <summary>
/// 对象实例的缓存
/// </summary>
private readonly ConcurrentDictionary<Type, object> _instanceCache = new ConcurrentDictionary<Type, object>();
/// <summary>
/// 添加或者获取缓存对象
/// </summary>
protected object GetCached(Type type, Func<ILifetime, object> factory, ILifetime lifetime)
{
return _instanceCache.GetOrAdd(type, _ => factory(lifetime));
}
public void Dispose()
{
foreach (var obj in _instanceCache.Values)
(obj as IDisposable)?.Dispose();
}
}
/// <summary>
/// 容器寿命管理
/// </summary>
class ContainerLifetime : ObjectCache, ILifetime
{
/// <summary>
/// 获取给定类型中检索构造函数,由 包含它的容器提供
/// 使用的数据集合是 Container 中的 _registeredTypes
/// </summary>
public Func<Type, Func<ILifetime, object>> GetFactory { get; private set; }
public ContainerLifetime(Func<Type, Func<ILifetime, object>> getFactory)
{
GetFactory = getFactory;
}
public object GetService(Type type)
{
Func<ILifetime, object> factory = GetFactory(type);
return factory(this);
}
/// <summary>
/// 单例模式 获取缓存对象
/// </summary>
/// <param name="type"></param>
/// <param name="factory"></param>
/// <returns></returns>
public object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory)
{
return GetCached(type, factory, this);
}
/// <summary>
/// // 获取作用域内的缓存对象,在容器的级别范围内,对象是单例的
/// At container level, per-scope items are equivalent to singletons
/// </summary>
/// <param name="type"></param>
/// <param name="factory"></param>
/// <returns></returns>
public object GetServicePerScope(Type type, Func<ILifetime, object> factory)
{
return GetServiceAsSingleton(type, factory);
}
}
/// <summary>
/// 作用域管理
/// </summary>
class ScopeLifetimeMgr : ObjectCache, ILifetime
{
// Singletons come from parent container's lifetime
private readonly ContainerLifetime _parentLifetime;
public ScopeLifetimeMgr(ContainerLifetime parentContainer)
{
_parentLifetime = parentContainer;
}
public object GetService(Type type)
{
return _parentLifetime.GetFactory(type)(this);
}
// 单例解决方案委托给父辈的生命周期
public object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory)
{
return _parentLifetime.GetServiceAsSingleton(type, factory);
}
// Per-scope objects get cached
public object GetServicePerScope(Type type, Func<ILifetime, object> factory)
{
return GetCached(type, factory, this);
}
}
#endregion
#region Container items
/// <summary>
/// 编译一个lambda,该lambda调用给定类型的第一个构造函数来解析参数
/// Compiles a lambda that calls the given type's first constructor resolving arguments
/// </summary>
/// <param name="itemType"></param>
/// <returns></returns>
private static Func<ILifetime, object> FactoryFromType(Type itemType)
{
// Get first constructor for the type
var constructors = itemType.GetConstructors();
if (constructors.Length == 0)
{
// If no public constructor found, search for an internal constructor
constructors = itemType.GetConstructors(BindingFlags.Instance | BindingFlags.NonPublic);
}
var constructor = constructors.First();
// Compile constructor call as a lambda expression
var arg = Expression.Parameter(typeof(ILifetime));
return (Func<ILifetime, object>)Expression.Lambda(
Expression.New(constructor, constructor.GetParameters().Select(
param =>
{
var resolve = new Func<ILifetime, object>(
lifetime => lifetime.GetService(param.ParameterType));
return Expression.Convert(
Expression.Call(Expression.Constant(resolve.Target), resolve.Method, arg),
param.ParameterType);
})),
arg).Compile();
}
// RegisteredType is supposed to be a short lived object tying an item to its container
// and allowing users to mark it as a singleton or per-scope item
class RegisteredType : IRegisteredType
{
private readonly Type _itemType;
private readonly Action<Func<ILifetime, object>> _registerFactory;
private readonly Func<ILifetime, object> _factory;
public RegisteredType(Type itemType, Action<Func<ILifetime, object>> registerFactory, Func<ILifetime, object> factory)
{
_itemType = itemType;
_registerFactory = registerFactory;
_factory = factory;
registerFactory(_factory);
}
public void AsSingleton()
=> _registerFactory(lifetime => lifetime.GetServiceAsSingleton(_itemType, _factory));
public void PerScope()
=> _registerFactory(lifetime => lifetime.GetServicePerScope(_itemType, _factory));
}
#endregion
}
/// <summary>
/// 容器的扩展方法
/// </summary>
static class ContainerExtensions
{
/// <summary>
/// Registers an implementation type for the specified interface
/// </summary>
/// <typeparam name="T">Interface to register</typeparam>
/// <param name="container">This container instance</param>
/// <param name="type">Implementing type</param>
/// <returns>IRegisteredType object</returns>
public static Container.IRegisteredType Register<T>(this Container container, Type type)
{
return container.Register(typeof(T), type);
}
/// <summary>
/// Registers an implementation type for the specified interface
/// </summary>
/// <typeparam name="TInterface">Interface to register</typeparam>
/// <typeparam name="TImplementation">Implementing type</typeparam>
/// <param name="container">This container instance</param>
/// <returns>IRegisteredType object</returns>
public static Container.IRegisteredType Register<TInterface, TImplementation>(this Container container)
where TImplementation : TInterface
{
return container.Register(typeof(TInterface), typeof(TImplementation));
}
/// <summary>
/// Registers a factory function which will be called to resolve the specified interface
/// </summary>
/// <typeparam name="T">Interface to register</typeparam>
/// <param name="container">This container instance</param>
/// <param name="factory">Factory method</param>
/// <returns>IRegisteredType object</returns>
public static Container.IRegisteredType Register<T>(this Container container, Func<T> factory)
{
return container.Register(typeof(T), () => factory());
}
/// <summary>
/// 注册一个类型
/// </summary>
/// <param name="container">This container instance</param>
/// <typeparam name="T">Type to register</typeparam>
/// <returns>IRegisteredType object</returns>
public static Container.IRegisteredType Register<T>(this Container container)
{
return container.Register(typeof(T), typeof(T));
}
/// <summary>
/// 返回指定接口的实现(类)
/// </summary>
/// <typeparam name="T">Interface type</typeparam>
/// <param name="scope">This scope instance</param>
/// <returns>Object implementing the interface</returns>
public static T Resolve<T>(this Container.IScope scope)
{
return (T)scope.GetService(typeof(T));
}
}
}