-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathDefaultHttpApiActivator.cs
53 lines (50 loc) · 2.18 KB
/
DefaultHttpApiActivator.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
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using WebApiClientCore.Exceptions;
namespace WebApiClientCore.Implementations
{
/// <summary>
/// 默认的THttpApi的实例创建器
/// 优先使用SourceGeneratorHttpApiActivator
/// 不支持则回退使用EmitHttpApiActivator
/// </summary>
/// <typeparam name="THttpApi"></typeparam>
public class DefaultHttpApiActivator<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)] THttpApi>
: IHttpApiActivator<THttpApi>
{
private readonly IHttpApiActivator<THttpApi> httpApiActivator;
/// <summary>
/// 默认的THttpApi的实例创建器
/// </summary>
/// <param name="apiActionDescriptorProvider"></param>
/// <param name="actionInvokerProvider"></param>
/// <exception cref="ArgumentException"></exception>
/// <exception cref="NotSupportedException"></exception>
[UnconditionalSuppressMessage("AOT", "IL3050", Justification = "ILEmitHttpApiActivator使用之前已经使用RuntimeFeature.IsDynamicCodeCompiled来判断")]
public DefaultHttpApiActivator(IApiActionDescriptorProvider apiActionDescriptorProvider, IApiActionInvokerProvider actionInvokerProvider)
{
if (SourceGeneratorHttpApiActivator<THttpApi>.IsSupported)
{
this.httpApiActivator = new SourceGeneratorHttpApiActivator<THttpApi>(apiActionDescriptorProvider, actionInvokerProvider);
}
else if (RuntimeFeature.IsDynamicCodeCompiled)
{
this.httpApiActivator = new ILEmitHttpApiActivator<THttpApi>(apiActionDescriptorProvider, actionInvokerProvider);
}
else
{
throw new ProxyTypeCreateException(typeof(HttpApi));
}
}
/// <summary>
/// 创建接口的实例
/// </summary>
/// <param name="apiInterceptor">接口拦截器</param>
/// <returns></returns>
public THttpApi CreateInstance(IHttpApiInterceptor apiInterceptor)
{
return this.httpApiActivator.CreateInstance(apiInterceptor);
}
}
}