-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathApiRequestExecutor.cs
179 lines (162 loc) · 6.21 KB
/
ApiRequestExecutor.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace WebApiClientCore.Implementations
{
/// <summary>
/// 请求上下文执行器
/// </summary>
static class ApiRequestExecutor
{
/// <summary>
/// 执行上下文
/// </summary>
/// <param name="request">请求上下文</param>
/// <returns></returns>
public static async Task<ApiResponseContext> ExecuteAsync(ApiRequestContext request)
{
await HandleRequestAsync(request).ConfigureAwait(false);
using var requestAbortedLinker = new CancellationTokenLinker(request.HttpContext.CancellationTokens);
var response = await ApiRequestSender.SendAsync(request, requestAbortedLinker.Token).ConfigureAwait(false);
await HandleResponseAsync(response).ConfigureAwait(false);
return response;
}
/// <summary>
/// 处理请求上下文
/// </summary>
/// <returns></returns>
private static async Task HandleRequestAsync(ApiRequestContext context)
{
// 参数验证
var validateProperty = context.HttpContext.HttpApiOptions.UseParameterPropertyValidate;
foreach (var parameter in context.ActionDescriptor.Parameters)
{
var parameterValue = context.Arguments[parameter.Index];
DataValidator.ValidateParameter(parameter, parameterValue, validateProperty);
}
// action特性请求前执行
foreach (var attr in context.ActionDescriptor.Attributes)
{
await attr.OnRequestAsync(context).ConfigureAwait(false);
}
// 参数特性请求前执行
foreach (var parameter in context.ActionDescriptor.Parameters)
{
var ctx = new ApiParameterContext(context, parameter);
foreach (var attr in parameter.Attributes)
{
await attr.OnRequestAsync(ctx).ConfigureAwait(false);
}
}
// Return特性请求前执行
foreach (var @return in context.ActionDescriptor.Return.Attributes)
{
await @return.OnRequestAsync(context).ConfigureAwait(false);
}
// GlobalFilter请求前执行
foreach (var filter in context.HttpContext.HttpApiOptions.GlobalFilters)
{
await filter.OnRequestAsync(context).ConfigureAwait(false);
}
// Filter请求前执行
foreach (var filter in context.ActionDescriptor.FilterAttributes)
{
await filter.OnRequestAsync(context).ConfigureAwait(false);
}
}
/// <summary>
/// 处理响应上下文
/// </summary>
/// <returns></returns>
private static async Task HandleResponseAsync(ApiResponseContext context)
{
// Return特性请求后执行
var returns = context.ActionDescriptor.Return.Attributes.GetEnumerator();
while (context.ResultStatus == ResultStatus.None && returns.MoveNext())
{
try
{
await returns.Current.OnResponseAsync(context).ConfigureAwait(false);
}
catch (Exception ex)
{
context.Exception = ex;
}
}
// 结果验证
if (context.ResultStatus == ResultStatus.HasResult &&
context.ActionDescriptor.Return.DataType.IsRawType == false &&
context.HttpContext.HttpApiOptions.UseReturnValuePropertyValidate)
{
try
{
DataValidator.ValidateReturnValue(context.Result);
}
catch (Exception ex)
{
context.Exception = ex;
}
}
// GlobalFilter请求后执行
foreach (var filter in context.HttpContext.HttpApiOptions.GlobalFilters)
{
await filter.OnResponseAsync(context).ConfigureAwait(false);
}
// Filter请求后执行
foreach (var filter in context.ActionDescriptor.FilterAttributes)
{
await filter.OnResponseAsync(context).ConfigureAwait(false);
}
}
/// <summary>
/// 表示CancellationToken链接器
/// </summary>
private readonly struct CancellationTokenLinker : IDisposable
{
/// <summary>
/// 链接产生的 tokenSource
/// </summary>
private readonly CancellationTokenSource? tokenSource;
/// <summary>
/// 获取 token
/// </summary>
public CancellationToken Token { get; }
/// <summary>
/// CancellationToken链接器
/// </summary>
/// <param name="tokenList"></param>
public CancellationTokenLinker(IList<CancellationToken> tokenList)
{
if (IsNoneCancellationToken(tokenList))
{
this.tokenSource = null;
this.Token = CancellationToken.None;
}
else
{
this.tokenSource = CancellationTokenSource.CreateLinkedTokenSource(tokenList.ToArray());
this.Token = this.tokenSource.Token;
}
}
/// <summary>
/// 是否为None的CancellationToken
/// </summary>
/// <param name="tokenList"></param>
/// <returns></returns>
private static bool IsNoneCancellationToken(IList<CancellationToken> tokenList)
{
var count = tokenList.Count;
return (count == 0) || (count == 1 && tokenList[0] == CancellationToken.None);
}
/// <summary>
/// 释放资源
/// </summary>
public void Dispose()
{
this.tokenSource?.Dispose();
}
}
}
}