-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCouchbaseServiceProviderExtensions.cs
More file actions
94 lines (84 loc) · 3.47 KB
/
CouchbaseServiceProviderExtensions.cs
File metadata and controls
94 lines (84 loc) · 3.47 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
#region License
/* ************************************************************
*
* @author Couchbase <info@couchbase.com>
* @copyright 2025 Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* ************************************************************/
#endregion
using Couchbase.AnalyticsClient.Utils;
namespace Couchbase.AnalyticsClient.Internal.DI;
/// <summary>
/// Extensions for <seealso cref="IServiceProvider"/>.
/// </summary>
internal static class CouchbaseServiceProviderExtensions
{
/// <summary>
/// Gets a service, throws an exception if not registered.
/// </summary>
/// <param name="serviceProvider">The <see cref="IServiceProvider"/>.</param>
/// <param name="type">Service being requested.</param>
/// <returns>The service.</returns>
public static object GetRequiredService(this IServiceProvider serviceProvider, Type type)
{
if (serviceProvider == null)
{
ThrowHelper.ThrowArgumentNullException(nameof(serviceProvider));
}
var service = serviceProvider.GetService(type);
if (service == null)
{
ThrowHelper.ThrowInvalidOperationException($"Service {type.FullName} is not registered.");
}
return service;
}
/// <summary>
/// Gets a service.
/// </summary>
/// <typeparam name="T">Service being requested.</typeparam>
/// <param name="serviceProvider">The <see cref="IServiceProvider"/>.</param>
/// <returns>The service.</returns>
public static T? GetService<T>(this IServiceProvider serviceProvider)
{
if (serviceProvider == null)
{
ThrowHelper.ThrowArgumentNullException(nameof(serviceProvider));
}
return (T?) serviceProvider.GetService(typeof(T));
}
/// <summary>
/// Gets a service, throws an exception if not registered.
/// </summary>
/// <typeparam name="T">Service being requested.</typeparam>
/// <param name="serviceProvider">The <see cref="IServiceProvider"/>.</param>
/// <returns>The service.</returns>
public static T GetRequiredService<T>(this IServiceProvider serviceProvider) =>
(T) serviceProvider.GetRequiredService(typeof(T));
/// <summary>
/// Determines if the specified service type is available from the <see cref="ICouchbaseServiceProvider"/>.
/// </summary>
/// <typeparam name="T">Service being tested.</typeparam>
/// <param name="serviceProvider">The <see cref="ICouchbaseServiceProvider"/>.</param>
/// <returns>true if the specified service is a available, false if it is not.</returns>
public static bool IsService<T>(this ICouchbaseServiceProvider serviceProvider)
{
// ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
if (serviceProvider is null)
{
ThrowHelper.ThrowArgumentNullException(nameof(serviceProvider));
}
return serviceProvider.IsService(typeof(T));
}
}