64e3fbe035
v2-ci / build (push) Failing after 1m43s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
Adds <summary>, <param>, <typeparam>, and <inheritdoc/> tags to public members surfaced by commentchecker — resolves 5,847 of 5,869 issues (99.6%) across three /fixdocs passes.
158 lines
7.8 KiB
C#
158 lines
7.8 KiB
C#
using Polly;
|
|
using ZB.MOM.WW.OtOpcUa.Core.Abstractions;
|
|
using ZB.MOM.WW.OtOpcUa.Core.Observability;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Core.Resilience;
|
|
|
|
/// <summary>
|
|
/// Executes driver-capability calls through a shared Polly pipeline. One invoker per
|
|
/// <c>(DriverInstance, IDriver)</c> pair; the underlying <see cref="DriverResiliencePipelineBuilder"/>
|
|
/// is process-singleton so all invokers share its cache.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Per <c>docs/v2/plan.md</c> decisions #143-144 and Phase 6.1 Stream A.3. The server's dispatch
|
|
/// layer routes every capability call (<c>IReadable.ReadAsync</c>, <c>IWritable.WriteAsync</c>,
|
|
/// <c>ITagDiscovery.DiscoverAsync</c>, <c>ISubscribable.SubscribeAsync/UnsubscribeAsync</c>,
|
|
/// <c>IHostConnectivityProbe</c> probe loop, <c>IAlarmSource.SubscribeAlarmsAsync/AcknowledgeAsync</c>,
|
|
/// and all four <c>IHistoryProvider</c> reads) through this invoker.
|
|
/// </remarks>
|
|
public sealed class CapabilityInvoker
|
|
{
|
|
private readonly DriverResiliencePipelineBuilder _builder;
|
|
private readonly string _driverInstanceId;
|
|
private readonly string _driverType;
|
|
private readonly Func<DriverResilienceOptions> _optionsAccessor;
|
|
private readonly DriverResilienceStatusTracker? _statusTracker;
|
|
|
|
/// <summary>
|
|
/// Construct an invoker for one driver instance.
|
|
/// </summary>
|
|
/// <param name="builder">Shared, process-singleton pipeline builder.</param>
|
|
/// <param name="driverInstanceId">The <c>DriverInstance.Id</c> column value.</param>
|
|
/// <param name="optionsAccessor">
|
|
/// Snapshot accessor for the current resilience options. Invoked per call so Admin-edit +
|
|
/// pipeline-invalidate can take effect without restarting the invoker.
|
|
/// </param>
|
|
/// <param name="driverType">Driver type name for structured-log enrichment (e.g. <c>"Modbus"</c>).</param>
|
|
/// <param name="statusTracker">Optional resilience-status tracker. When wired, every capability call records start/complete so Admin <c>/hosts</c> can surface <see cref="ResilienceStatusSnapshot.CurrentInFlight"/> as the bulkhead-depth proxy.</param>
|
|
public CapabilityInvoker(
|
|
DriverResiliencePipelineBuilder builder,
|
|
string driverInstanceId,
|
|
Func<DriverResilienceOptions> optionsAccessor,
|
|
string driverType = "Unknown",
|
|
DriverResilienceStatusTracker? statusTracker = null)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(builder);
|
|
ArgumentNullException.ThrowIfNull(optionsAccessor);
|
|
|
|
_builder = builder;
|
|
_driverInstanceId = driverInstanceId;
|
|
_driverType = driverType;
|
|
_optionsAccessor = optionsAccessor;
|
|
_statusTracker = statusTracker;
|
|
}
|
|
|
|
/// <summary>Execute a capability call returning a value, honoring the per-capability pipeline.</summary>
|
|
/// <typeparam name="TResult">Return type of the underlying driver call.</typeparam>
|
|
/// <param name="capability">The driver capability being executed.</param>
|
|
/// <param name="hostName">The host name for logging and status tracking.</param>
|
|
/// <param name="callSite">The async function to execute.</param>
|
|
/// <param name="cancellationToken">Cancellation token for the operation.</param>
|
|
public async ValueTask<TResult> ExecuteAsync<TResult>(
|
|
DriverCapability capability,
|
|
string hostName,
|
|
Func<CancellationToken, ValueTask<TResult>> callSite,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(callSite);
|
|
|
|
var pipeline = ResolvePipeline(capability, hostName);
|
|
_statusTracker?.RecordCallStart(_driverInstanceId, hostName);
|
|
try
|
|
{
|
|
using (LogContextEnricher.Push(_driverInstanceId, _driverType, capability, LogContextEnricher.NewCorrelationId()))
|
|
{
|
|
return await pipeline.ExecuteAsync(callSite, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
_statusTracker?.RecordCallComplete(_driverInstanceId, hostName);
|
|
}
|
|
}
|
|
|
|
/// <summary>Execute a void-returning capability call, honoring the per-capability pipeline.</summary>
|
|
/// <param name="capability">The driver capability being executed.</param>
|
|
/// <param name="hostName">The host name for logging and status tracking.</param>
|
|
/// <param name="callSite">The async function to execute.</param>
|
|
/// <param name="cancellationToken">Cancellation token for the operation.</param>
|
|
public async ValueTask ExecuteAsync(
|
|
DriverCapability capability,
|
|
string hostName,
|
|
Func<CancellationToken, ValueTask> callSite,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(callSite);
|
|
|
|
var pipeline = ResolvePipeline(capability, hostName);
|
|
_statusTracker?.RecordCallStart(_driverInstanceId, hostName);
|
|
try
|
|
{
|
|
using (LogContextEnricher.Push(_driverInstanceId, _driverType, capability, LogContextEnricher.NewCorrelationId()))
|
|
{
|
|
await pipeline.ExecuteAsync(callSite, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
_statusTracker?.RecordCallComplete(_driverInstanceId, hostName);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Execute a <see cref="DriverCapability.Write"/> call honoring <see cref="WriteIdempotentAttribute"/>
|
|
/// semantics — if <paramref name="isIdempotent"/> is <c>false</c>, retries are disabled regardless
|
|
/// of the tag-level configuration (the pipeline for a non-idempotent write never retries per
|
|
/// decisions #44-45). If <c>true</c>, the call runs through the capability's pipeline which may
|
|
/// retry when the tier configuration permits.
|
|
/// </summary>
|
|
/// <typeparam name="TResult">Return type of the underlying driver call.</typeparam>
|
|
/// <param name="hostName">The host name for logging and status tracking.</param>
|
|
/// <param name="isIdempotent">Whether the write operation is idempotent.</param>
|
|
/// <param name="callSite">The async function to execute.</param>
|
|
/// <param name="cancellationToken">Cancellation token for the operation.</param>
|
|
public async ValueTask<TResult> ExecuteWriteAsync<TResult>(
|
|
string hostName,
|
|
bool isIdempotent,
|
|
Func<CancellationToken, ValueTask<TResult>> callSite,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(callSite);
|
|
|
|
if (!isIdempotent)
|
|
{
|
|
// Snapshot the options exactly once per call — invoking _optionsAccessor twice can
|
|
// (a) observe two different snapshots if an Admin edit lands between them and
|
|
// (b) wastes an allocation on the per-write hot path (Phase 6.1 1% pipeline budget).
|
|
var snapshot = _optionsAccessor();
|
|
var noRetryOptions = snapshot with
|
|
{
|
|
CapabilityPolicies = new Dictionary<DriverCapability, CapabilityPolicy>
|
|
{
|
|
[DriverCapability.Write] = snapshot.Resolve(DriverCapability.Write) with { RetryCount = 0 },
|
|
},
|
|
};
|
|
var pipeline = _builder.GetOrCreate(_driverInstanceId, $"{hostName}::non-idempotent", DriverCapability.Write, noRetryOptions);
|
|
using (LogContextEnricher.Push(_driverInstanceId, _driverType, DriverCapability.Write, LogContextEnricher.NewCorrelationId()))
|
|
{
|
|
return await pipeline.ExecuteAsync(callSite, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
return await ExecuteAsync(DriverCapability.Write, hostName, callSite, cancellationToken).ConfigureAwait(false);
|
|
}
|
|
|
|
private ResiliencePipeline ResolvePipeline(DriverCapability capability, string hostName) =>
|
|
_builder.GetOrCreate(_driverInstanceId, hostName, capability, _optionsAccessor());
|
|
}
|