-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathServiceCollectionPool.cs
234 lines (192 loc) · 7.25 KB
/
ServiceCollectionPool.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
// Copyright (c) Microsoft. All rights reserved.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.KernelMemory.AppBuilders;
/// <summary>
/// Represents a collection of service collections, so that DI helpers
/// like `WithX` act on multiple service collections, e.g. the one used
/// by KernelMemoryBuilder and the one used by end user application.
///
/// The pool is meant to have a "primary" that contains all services,
/// so that it's possible to look up the aggregate, e.g. check if
/// a dependency exists in any of the collections, and to loop
/// through the complete list of service descriptors.
/// </summary>
[Experimental("KMEXP00")]
public sealed class ServiceCollectionPool : IServiceCollection
{
/// <summary>
/// Collection of service collections, ie the pool.
/// </summary>
private readonly List<IServiceCollection> _pool;
/// <summary>
/// Primary collection used for read and iteration calls
/// </summary>
private readonly IServiceCollection _primaryCollection;
/// <summary>
/// Flag indicating whether the list of collections is readonly.
/// The list becomes readonly as soon as service descriptors are added.
/// </summary>
private bool _poolSizeLocked;
/// <summary>
/// The total number of service descriptors registered
/// </summary>
public int Count => this._primaryCollection.Count;
/// <inheritdoc/>
public bool IsReadOnly => this._primaryCollection.IsReadOnly;
/// <summary>
/// Create a new instance, passing in the primary list of services
/// </summary>
/// <param name="primaryCollection">The primary service collection</param>
public ServiceCollectionPool(IServiceCollection primaryCollection)
{
ArgumentNullExceptionEx.ThrowIfNull(primaryCollection, nameof(primaryCollection), "The primary service collection cannot be NULL");
this._poolSizeLocked = false;
this._primaryCollection = primaryCollection;
this._pool = new List<IServiceCollection> { primaryCollection };
}
/// <summary>
/// Add one more service collection to the pool
/// </summary>
/// <param name="serviceCollection">Service collection</param>
public void AddServiceCollection(IServiceCollection? serviceCollection)
{
if (serviceCollection == null) { return; }
if (this._poolSizeLocked)
{
throw new InvalidOperationException("The pool of service collections is already in use and cannot be extended");
}
this._pool.Add(serviceCollection);
}
/// <inheritdoc/>
public void Add(ServiceDescriptor item)
{
this.Lock();
foreach (var sc in this._pool)
{
sc.Add(item);
}
}
/// <inheritdoc/>
public bool Contains(ServiceDescriptor item)
{
this.Lock();
return this._pool.First().Contains(item);
}
/* IMPORTANT: iterations use the primary collection only. */
/// <inheritdoc/>
IEnumerator IEnumerable.GetEnumerator()
{
this.Lock();
return this._primaryCollection.GetEnumerator();
}
/// <inheritdoc/>
public IEnumerator<ServiceDescriptor> GetEnumerator()
{
this.Lock();
return this._primaryCollection.GetEnumerator();
}
/// <inheritdoc/>
public bool Remove(ServiceDescriptor item)
{
this.Lock();
var result = false;
foreach (var service in this._pool)
{
result = result || service.Remove(item);
}
return result;
}
/// <inheritdoc/>
public void Clear()
{
this.Lock();
foreach (var service in this._pool)
{
service.Clear();
}
}
#region unsafe
/// <inheritdoc/>
public void CopyTo(ServiceDescriptor[] array, int arrayIndex)
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * loop using the enumerator
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
this._primaryCollection.CopyTo(array, arrayIndex);
}
/// <inheritdoc/>
public void Insert(int index, ServiceDescriptor item)
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * create a custom service collection and pass it to KernelMemoryBuilder ctor
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
this._primaryCollection.Insert(index, item);
}
/// <inheritdoc/>
public int IndexOf(ServiceDescriptor item)
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * loop using the enumerator
// * create a custom service collection and pass it to KernelMemoryBuilder ctor
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
return this._primaryCollection.IndexOf(item);
}
/// <inheritdoc/>
public void RemoveAt(int index)
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * loop using the enumerator
// * create a custom service collection and pass it to KernelMemoryBuilder ctor
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
this._primaryCollection.RemoveAt(index);
}
/// <inheritdoc/>
public ServiceDescriptor this[int index]
{
get
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * loop using the enumerator
// * create a custom service collection and pass it to KernelMemoryBuilder ctor
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
return this._primaryCollection[index];
}
set
{
this.Lock();
// When using multiple service providers, the position is not consistent
// If you need this API, e.g. to loop through the service descriptors:
// * create a custom service collection and pass it to KernelMemoryBuilder ctor
if (this._pool.Count != 1) { throw AccessByPositionNotAllowed(); }
this._primaryCollection[index] = value;
}
}
#endregion
private void Lock()
{
this._poolSizeLocked = true;
}
/// <exception cref="InvalidOperationException"></exception>
private static InvalidOperationException AccessByPositionNotAllowed()
{
return new InvalidOperationException(
$"{nameof(ServiceCollectionPool)} contains collections of different size, " +
"and direct access by position is not allowed, to avoid inconsistent results.");
}
#pragma warning restore CA1065
}