VdaOrderGateService.cs
21.1 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
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
using System.Text.Json;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Rcs.Application.Services;
using Rcs.Application.Services.Protocol;
using Rcs.Domain.Entities;
using Rcs.Domain.Settings;
using StackExchange.Redis;
namespace Rcs.Infrastructure.Services.Protocol;
/// <summary>
/// 同车体 VDA 订单门闩与会话协调服务。
/// </summary>
public sealed class VdaOrderGateService : IVdaOrderGateService
{
private const string GateKeyPrefix = "rcs:vda:order-gate";
private const string SessionKeyPrefix = "rcs:vda:order-session";
private const string NormalPrecheckFailKeyPrefix = "rcs:vda:order-precheck-fail";
private const string ReleaseScript = "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('del', KEYS[1]) else return 0 end";
private const string RenewScript = "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('pexpire', KEYS[1], ARGV[2]) else return 0 end";
private readonly IConnectionMultiplexer _redis;
private readonly IRobotCacheService _robotCacheService;
private readonly IOptionsMonitor<AppSettings> _settingsMonitor;
private readonly ILogger<VdaOrderGateService> _logger;
private long _gateConflictTotal;
private long _sessionSwitchBlockTotal;
private long _precheckBlockTotal;
private long _downgradeTotal;
private long _recoveryResetTotal;
public VdaOrderGateService(
IConnectionMultiplexer redis,
IRobotCacheService robotCacheService,
IOptionsMonitor<AppSettings> settingsMonitor,
ILogger<VdaOrderGateService> logger)
{
_redis = redis;
_robotCacheService = robotCacheService;
_settingsMonitor = settingsMonitor;
_logger = logger;
}
public async Task<VdaOrderGateAcquireResult> TryAcquireAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
var settings = GetVdaSettings();
var gateKey = BuildGateKey(robotId);
var currentSession = await GetSessionAsync(robotId, ct);
if (channel == VdaOrderChannel.Normal && IsYieldSessionBlocking(currentSession))
{
IncrementMetric(
ref _sessionSwitchBlockTotal,
"vda_order_session_switch_block_total",
robotId,
channel,
orderId,
orderUpdateId,
gateKey,
currentSession?.Status,
"yield_active");
return new VdaOrderGateAcquireResult
{
Success = false,
Message = "等待避让完成",
GateKey = gateKey,
CurrentSession = currentSession
};
}
IVdaOrderGateLease lease;
if (settings.EnableOrderGate)
{
var token = Guid.NewGuid().ToString("N");
var ttlSeconds = Math.Max(2, settings.OrderGateTtlSeconds);
var acquired = await _redis.GetDatabase().StringSetAsync(
gateKey,
token,
TimeSpan.FromSeconds(ttlSeconds),
When.NotExists);
if (!acquired)
{
IncrementMetric(
ref _gateConflictTotal,
"vda_order_gate_conflict_total",
robotId,
channel,
orderId,
orderUpdateId,
gateKey,
currentSession?.Status,
"gate_conflict");
return new VdaOrderGateAcquireResult
{
Success = false,
Message = "订单门闩冲突,等待重试",
GateKey = gateKey,
CurrentSession = currentSession
};
}
lease = new RedisVdaOrderGateLease(
this,
robotId,
gateKey,
token,
TimeSpan.FromSeconds(ttlSeconds),
TimeSpan.FromSeconds(Math.Max(1, settings.OrderGateRenewIntervalSeconds)),
_logger);
}
else
{
lease = new NoopVdaOrderGateLease(robotId, gateKey);
}
await MarkSessionSendingAsync(robotId, channel, orderId, orderUpdateId, null, ct);
return new VdaOrderGateAcquireResult
{
Success = true,
Message = "ok",
GateKey = gateKey,
Lease = lease,
CurrentSession = currentSession
};
}
public Task MarkSessionSendingAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
string? precheckReason = null,
CancellationToken ct = default)
{
return WriteSessionAsync(
robotId,
channel,
orderId,
orderUpdateId,
VdaOrderSessionStatus.Sending,
precheckReason,
ct);
}
public Task MarkSessionSentAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
CancellationToken ct = default)
{
return WriteSessionAsync(
robotId,
channel,
orderId,
orderUpdateId,
VdaOrderSessionStatus.Sent,
null,
ct);
}
public Task MarkSessionFailedAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
string? precheckReason = null,
CancellationToken ct = default)
{
return WriteSessionAsync(
robotId,
channel,
orderId,
orderUpdateId,
VdaOrderSessionStatus.Failed,
precheckReason,
ct);
}
public Task MarkSessionCompletedAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
CancellationToken ct = default)
{
return WriteSessionAsync(
robotId,
channel,
orderId,
orderUpdateId,
VdaOrderSessionStatus.Completed,
null,
ct);
}
public async Task<VdaOrderGateSession?> GetSessionAsync(Guid robotId, CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
var payload = await _redis.GetDatabase().StringGetAsync(BuildSessionKey(robotId));
if (payload.IsNullOrEmpty)
{
return null;
}
try
{
return JsonSerializer.Deserialize<VdaOrderGateSession>(payload.ToString());
}
catch (Exception ex)
{
_logger.LogWarning(ex, "VDA订单门闩会话解析失败: RobotId={RobotId}", robotId);
return null;
}
}
public async Task<bool> HasActiveYieldSessionAsync(
Guid robotId,
string? currentOrderId,
uint? currentOrderUpdateId,
string? lastNodeCode,
CancellationToken ct = default)
{
var session = await GetSessionAsync(robotId, ct);
if (session == null || session.Channel != VdaOrderChannel.Yield)
{
return false;
}
if (session.Status is VdaOrderSessionStatus.Failed or VdaOrderSessionStatus.Completed)
{
return false;
}
if (session.Status == VdaOrderSessionStatus.Sending)
{
return true;
}
if (string.Equals(session.OrderId, currentOrderId, StringComparison.OrdinalIgnoreCase))
{
if (currentOrderUpdateId.HasValue && currentOrderUpdateId.Value < (uint)Math.Max(0, session.OrderUpdateId))
{
return true;
}
return true;
}
if (string.IsNullOrWhiteSpace(currentOrderId) && string.IsNullOrWhiteSpace(lastNodeCode))
{
return true;
}
var recentWindow = TimeSpan.FromSeconds(Math.Max(8, GetVdaSettings().OrderGateTtlSeconds * 2));
return DateTime.UtcNow - session.UpdatedAt.ToUniversalTime() <= recentWindow;
}
public async Task<VdaOrderUpdatePrecheckResult> ValidateOrderUpdatePrecheckAsync(
Guid robotId,
VdaOrderChannel channel,
string? manufacturer,
string serialNumber,
string orderId,
int orderUpdateId,
CancellationToken ct = default)
{
var settings = GetVdaSettings();
if (!settings.EnableOrderUpdatePrecheck || orderUpdateId <= 0)
{
return new VdaOrderUpdatePrecheckResult { Success = true, Reason = "precheck_skipped" };
}
var status = await _robotCacheService.GetStatusAsync(manufacturer, serialNumber);
if (status == null)
{
IncrementMetric(
ref _precheckBlockTotal,
"vda_orderupdate_precheck_block_total",
robotId,
channel,
orderId,
orderUpdateId,
BuildGateKey(robotId),
VdaOrderSessionStatus.Failed,
"state_missing");
return new VdaOrderUpdatePrecheckResult { Success = false, Reason = "state_missing" };
}
if (status.Status == RobotStatus.Error)
{
IncrementMetric(
ref _precheckBlockTotal,
"vda_orderupdate_precheck_block_total",
robotId,
channel,
orderId,
orderUpdateId,
BuildGateKey(robotId),
VdaOrderSessionStatus.Failed,
"robot_error");
return new VdaOrderUpdatePrecheckResult
{
Success = false,
Reason = "robot_error",
RobotStatus = status.Status,
CurrentOrderId = status.CurrentOrderId,
CurrentOrderUpdateId = status.CurrentOrderUpdateId,
StateTimestampUtc = status.StateTimestampUtc
};
}
var stateTimestampUtc = status.StateTimestampUtc?.ToUniversalTime() ?? status.UpdatedAt.ToUniversalTime();
var freshness = DateTime.UtcNow - stateTimestampUtc;
if (freshness > TimeSpan.FromSeconds(Math.Max(1, settings.OrderStateFreshnessSeconds)))
{
IncrementMetric(
ref _precheckBlockTotal,
"vda_orderupdate_precheck_block_total",
robotId,
channel,
orderId,
orderUpdateId,
BuildGateKey(robotId),
VdaOrderSessionStatus.Failed,
"state_stale");
return new VdaOrderUpdatePrecheckResult
{
Success = false,
Reason = "state_stale",
RobotStatus = status.Status,
CurrentOrderId = status.CurrentOrderId,
CurrentOrderUpdateId = status.CurrentOrderUpdateId,
StateTimestampUtc = stateTimestampUtc
};
}
if (!string.Equals(status.CurrentOrderId ?? string.Empty, orderId, StringComparison.OrdinalIgnoreCase))
{
IncrementMetric(
ref _precheckBlockTotal,
"vda_orderupdate_precheck_block_total",
robotId,
channel,
orderId,
orderUpdateId,
BuildGateKey(robotId),
VdaOrderSessionStatus.Failed,
"order_id_mismatch");
return new VdaOrderUpdatePrecheckResult
{
Success = false,
Reason = "order_id_mismatch",
RobotStatus = status.Status,
CurrentOrderId = status.CurrentOrderId,
CurrentOrderUpdateId = status.CurrentOrderUpdateId,
StateTimestampUtc = stateTimestampUtc
};
}
return new VdaOrderUpdatePrecheckResult
{
Success = true,
Reason = "ok",
RobotStatus = status.Status,
CurrentOrderId = status.CurrentOrderId,
CurrentOrderUpdateId = status.CurrentOrderUpdateId,
StateTimestampUtc = stateTimestampUtc
};
}
public async Task<int> RegisterNormalPrecheckFailureAsync(
Guid robotId,
string? precheckReason,
CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
var key = $"{NormalPrecheckFailKeyPrefix}:{robotId}";
var db = _redis.GetDatabase();
var count = await db.StringIncrementAsync(key);
await db.KeyExpireAsync(key, TimeSpan.FromMinutes(5));
_logger.LogWarning(
"VDA订单precheck失败累计: RobotId={RobotId}, FailCount={FailCount}, PrecheckReason={PrecheckReason}",
robotId,
(int)count,
precheckReason ?? string.Empty);
return (int)count;
}
public Task ResetNormalPrecheckFailuresAsync(Guid robotId, CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
return _redis.GetDatabase().KeyDeleteAsync($"{NormalPrecheckFailKeyPrefix}:{robotId}");
}
public async Task ClearSessionAsync(Guid robotId, CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
var db = _redis.GetDatabase();
var deletedCount = await db.KeyDeleteAsync(new RedisKey[]
{
BuildSessionKey(robotId),
BuildGateKey(robotId)
});
_logger.LogInformation(
"VDA订单门闩会话清理完成: RobotId={RobotId}, DeletedCount={DeletedCount}",
robotId,
deletedCount);
}
public Task RecordOrderUpdateDowngradeAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
string? precheckReason,
CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
IncrementMetric(
ref _downgradeTotal,
"vda_orderupdate_downgrade_total",
robotId,
channel,
orderId,
orderUpdateId,
BuildGateKey(robotId),
VdaOrderSessionStatus.Sending,
precheckReason);
return Task.CompletedTask;
}
public Task RecordOrderRecoveryResetAsync(
Guid robotId,
string orderId,
string? precheckReason,
CancellationToken ct = default)
{
ct.ThrowIfCancellationRequested();
IncrementMetric(
ref _recoveryResetTotal,
"vda_order_recovery_reset_total",
robotId,
VdaOrderChannel.Normal,
orderId,
orderUpdateId: 0,
BuildGateKey(robotId),
VdaOrderSessionStatus.Failed,
precheckReason);
return Task.CompletedTask;
}
private async Task WriteSessionAsync(
Guid robotId,
VdaOrderChannel channel,
string orderId,
int orderUpdateId,
VdaOrderSessionStatus status,
string? precheckReason,
CancellationToken ct)
{
ct.ThrowIfCancellationRequested();
var session = new VdaOrderGateSession
{
RobotId = robotId,
Channel = channel,
OrderId = orderId,
OrderUpdateId = orderUpdateId,
Status = status,
UpdatedAt = DateTime.UtcNow,
PrecheckReason = precheckReason
};
var payload = JsonSerializer.Serialize(session);
var sessionTtl = TimeSpan.FromSeconds(Math.Max(60, GetVdaSettings().OrderSessionTtlSeconds));
await _redis.GetDatabase().StringSetAsync(BuildSessionKey(robotId), payload, sessionTtl);
}
private bool IsYieldSessionBlocking(VdaOrderGateSession? session)
{
return session is
{
Channel: VdaOrderChannel.Yield,
Status: VdaOrderSessionStatus.Sending or VdaOrderSessionStatus.Sent
};
}
private Vda5050Settings GetVdaSettings()
{
return _settingsMonitor.CurrentValue.Vda5050;
}
private static string BuildGateKey(Guid robotId) => $"{GateKeyPrefix}:{robotId}";
private static string BuildSessionKey(Guid robotId) => $"{SessionKeyPrefix}:{robotId}";
private async Task<bool> ReleaseGateIfOwnedAsync(string gateKey, string token)
{
var result = await _redis.GetDatabase().ScriptEvaluateAsync(
ReleaseScript,
new RedisKey[] { gateKey },
new RedisValue[] { token });
return !result.IsNull && (long)result > 0;
}
private async Task<bool> RenewGateIfOwnedAsync(string gateKey, string token, TimeSpan ttl)
{
var result = await _redis.GetDatabase().ScriptEvaluateAsync(
RenewScript,
new RedisKey[] { gateKey },
new RedisValue[] { token, (long)ttl.TotalMilliseconds });
return !result.IsNull && (long)result > 0;
}
private void IncrementMetric(
ref long counter,
string metricName,
Guid robotId,
VdaOrderChannel? channel,
string? orderId,
int orderUpdateId,
string gateKey,
VdaOrderSessionStatus? sessionStatus,
string? precheckReason)
{
var value = Interlocked.Increment(ref counter);
_logger.LogWarning(
"VDA订单指标: Metric={Metric}, Value={Value}, RobotId={RobotId}, Channel={Channel}, OrderId={OrderId}, OrderUpdateId={OrderUpdateId}, GateKey={GateKey}, SessionStatus={SessionStatus}, PrecheckReason={PrecheckReason}",
metricName,
value,
robotId,
channel?.ToString() ?? string.Empty,
orderId ?? string.Empty,
orderUpdateId,
gateKey,
sessionStatus?.ToString() ?? string.Empty,
precheckReason ?? string.Empty);
}
private sealed class RedisVdaOrderGateLease : IVdaOrderGateLease
{
private readonly VdaOrderGateService _owner;
private readonly string _token;
private readonly TimeSpan _ttl;
private readonly TimeSpan _renewInterval;
private readonly ILogger _logger;
private readonly CancellationTokenSource _renewCts = new();
private readonly Task _renewTask;
private int _disposed;
public RedisVdaOrderGateLease(
VdaOrderGateService owner,
Guid robotId,
string gateKey,
string token,
TimeSpan ttl,
TimeSpan renewInterval,
ILogger logger)
{
_owner = owner;
RobotId = robotId;
GateKey = gateKey;
_token = token;
_ttl = ttl;
_renewInterval = renewInterval;
_logger = logger;
_renewTask = Task.Run(RenewLoopAsync);
}
public Guid RobotId { get; }
public string GateKey { get; }
public async ValueTask DisposeAsync()
{
if (Interlocked.Exchange(ref _disposed, 1) != 0)
{
return;
}
_renewCts.Cancel();
try
{
await _renewTask;
}
catch (OperationCanceledException)
{
// ignored
}
finally
{
_renewCts.Dispose();
}
try
{
await _owner.ReleaseGateIfOwnedAsync(GateKey, _token);
}
catch (Exception ex)
{
_logger.LogWarning(ex, "VDA订单门闩释放失败: GateKey={GateKey}, RobotId={RobotId}", GateKey, RobotId);
}
}
private async Task RenewLoopAsync()
{
while (!_renewCts.IsCancellationRequested)
{
try
{
await Task.Delay(_renewInterval, _renewCts.Token);
if (_renewCts.IsCancellationRequested)
{
return;
}
var renewed = await _owner.RenewGateIfOwnedAsync(GateKey, _token, _ttl);
if (!renewed)
{
_logger.LogWarning(
"VDA订单门闩续租失败: GateKey={GateKey}, RobotId={RobotId}",
GateKey,
RobotId);
return;
}
}
catch (OperationCanceledException)
{
return;
}
catch (Exception ex)
{
_logger.LogWarning(ex, "VDA订单门闩续租异常: GateKey={GateKey}, RobotId={RobotId}", GateKey, RobotId);
return;
}
}
}
}
private sealed class NoopVdaOrderGateLease : IVdaOrderGateLease
{
public NoopVdaOrderGateLease(Guid robotId, string gateKey)
{
RobotId = robotId;
GateKey = gateKey;
}
public Guid RobotId { get; }
public string GateKey { get; }
public ValueTask DisposeAsync() => ValueTask.CompletedTask;
}
}