-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathContainer.cs
274 lines (233 loc) · 11.3 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
// 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>
/// Inversion of control container handles dependency injection for registered types
/// </summary>
class Container : Container.IScope
{
#region Public interfaces
/// <summary>
/// Represents a scope in which per-scope objects are instantiated a single time
/// </summary>
public interface IScope : IDisposable, IServiceProvider
{
}
/// <summary>
/// IRegisteredType is return by Container.Register and allows further configuration for the registration
/// </summary>
public interface IRegisteredType
{
/// <summary>
/// Make registered type a singleton
/// </summary>
void AsSingleton();
/// <summary>
/// Make registered type a per-scope type (single instance within a Scope)
/// </summary>
void PerScope();
}
#endregion
// Map of registered types
private readonly Dictionary<Type, Func<ILifetime, object>> _registeredTypes = new Dictionary<Type, Func<ILifetime, object>>();
// Lifetime management
private readonly ContainerLifetime _lifetime;
/// <summary>
/// Creates a new instance of IoC Container
/// </summary>
public Container() => _lifetime = new ContainerLifetime(t => _registeredTypes[t]);
/// <summary>
/// Registers a factory function which will be called to resolve the specified interface
/// </summary>
/// <param name="interface">Interface to register</param>
/// <param name="factory">Factory function</param>
/// <returns></returns>
public IRegisteredType Register(Type @interface, Func<object> factory)
=> RegisterType(@interface, _ => factory());
/// <summary>
/// Registers an implementation type for the specified interface
/// </summary>
/// <param name="interface">Interface to register</param>
/// <param name="implementation">Implementing type</param>
/// <returns></returns>
public IRegisteredType Register(Type @interface, Type implementation)
=> RegisterType(@interface, FactoryFromType(implementation));
private IRegisteredType RegisterType(Type itemType, Func<ILifetime, object> factory)
=> 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 ScopeLifetime(_lifetime);
/// <summary>
/// Disposes any <see cref="IDisposable"/> objects owned by this container.
/// </summary>
public void Dispose() => _lifetime.Dispose();
#region Lifetime management
// ILifetime management adds resolution strategies to an IScope
interface ILifetime : IScope
{
object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory);
object GetServicePerScope(Type type, Func<ILifetime, object> factory);
}
// ObjectCache provides common caching logic for lifetimes
abstract class ObjectCache
{
// Instance cache
private readonly ConcurrentDictionary<Type, object> _instanceCache = new ConcurrentDictionary<Type, object>();
// Get from cache or create and cache object
protected object GetCached(Type type, Func<ILifetime, object> factory, ILifetime lifetime)
=> _instanceCache.GetOrAdd(type, _ => factory(lifetime));
public void Dispose()
{
foreach (var obj in _instanceCache.Values)
(obj as IDisposable)?.Dispose();
}
}
// Container lifetime management
class ContainerLifetime : ObjectCache, ILifetime
{
// Retrieves the factory functino from the given type, provided by owning container
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) => GetFactory(type)(this);
// Singletons get cached per container
public object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory)
=> GetCached(type, factory, this);
// At container level, per-scope items are equivalent to singletons
public object GetServicePerScope(Type type, Func<ILifetime, object> factory)
=> GetServiceAsSingleton(type, factory);
}
// Per-scope lifetime management
class ScopeLifetime : ObjectCache, ILifetime
{
// Singletons come from parent container's lifetime
private readonly ContainerLifetime _parentLifetime;
public ScopeLifetime(ContainerLifetime parentContainer) => _parentLifetime = parentContainer;
public object GetService(Type type) => _parentLifetime.GetFactory(type)(this);
// Singleton resolution is delegated to parent lifetime
public object GetServiceAsSingleton(Type type, Func<ILifetime, object> factory)
=> _parentLifetime.GetServiceAsSingleton(type, factory);
// Per-scope objects get cached
public object GetServicePerScope(Type type, Func<ILifetime, object> factory)
=> GetCached(type, factory, this);
}
#endregion
#region Container items
// Compiles a lambda that calls the given type's first constructor resolving arguments
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>
/// Extension methods for Container
/// </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)
=> 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
=> 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)
=> container.Register(typeof(T), () => factory());
/// <summary>
/// Registers a type
/// </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)
=> container.Register(typeof(T), typeof(T));
/// <summary>
/// Returns an implementation of the specified interface
/// </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) => (T)scope.GetService(typeof(T));
}
}