2a6ac07111
- Client.Shared-003: DefaultSessionAdapter.WriteValueAsync / CallMethodAsync guard against null/empty Results and throw ServiceResultException with the response's ServiceResult code instead of indexing into a missing list. - Client.Shared-004: DefaultSessionAdapter.CloseAsync / HistoryReadRawAsync / HistoryReadAggregateAsync use the Session.*Async overloads and honour the caller's CancellationToken. - Client.Shared-009: AcknowledgeAlarmAsync returns the underlying ServiceResultException.StatusCode on failure instead of always Good; IOpcUaClientService doc updated to describe the new contract. - Client.Shared-010: ConnectionSettings.CertificateStorePath defaults to empty; DefaultApplicationConfigurationFactory resolves the canonical PKI path lazily, so per-failover ConnectionSettings copies don't hit the filesystem. - Client.Shared-011: added the alarm-fallback regression test, extracted EndpointSelector as a pure static, and added EndpointSelectorTests covering security-mode match, Basic256Sha256 preference, fallback, diagnostics, hostname rewrite, and null/empty guards. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
307 lines
10 KiB
C#
307 lines
10 KiB
C#
using Opc.Ua;
|
|
using Opc.Ua.Client;
|
|
using Serilog;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Client.Shared.Adapters;
|
|
|
|
/// <summary>
|
|
/// Production session adapter wrapping a real OPC UA Session.
|
|
/// </summary>
|
|
internal sealed class DefaultSessionAdapter : ISessionAdapter
|
|
{
|
|
private static readonly ILogger Logger = Log.ForContext<DefaultSessionAdapter>();
|
|
private readonly Session _session;
|
|
|
|
/// <summary>
|
|
/// Wraps a live OPC UA session so the shared client can issue runtime operations through a testable adapter surface.
|
|
/// </summary>
|
|
/// <param name="session">The connected OPC UA session used for browsing, reads, writes, history, and subscriptions.</param>
|
|
public DefaultSessionAdapter(Session session)
|
|
{
|
|
_session = session;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Connected => _session.Connected;
|
|
|
|
/// <inheritdoc />
|
|
public string SessionId => _session.SessionId?.ToString() ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public string SessionName => _session.SessionName ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public string EndpointUrl => _session.Endpoint?.EndpointUrl ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public string ServerName => _session.Endpoint?.Server?.ApplicationName?.Text ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public string SecurityMode => _session.Endpoint?.SecurityMode.ToString() ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public string SecurityPolicyUri => _session.Endpoint?.SecurityPolicyUri ?? string.Empty;
|
|
|
|
/// <inheritdoc />
|
|
public NamespaceTable NamespaceUris => _session.NamespaceUris;
|
|
|
|
/// <inheritdoc />
|
|
public void RegisterKeepAliveHandler(Action<bool> callback)
|
|
{
|
|
_session.KeepAlive += (_, e) =>
|
|
{
|
|
var isGood = e.Status == null || ServiceResult.IsGood(e.Status);
|
|
callback(isGood);
|
|
};
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<DataValue> ReadValueAsync(NodeId nodeId, CancellationToken ct)
|
|
{
|
|
return await _session.ReadValueAsync(nodeId, ct);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<StatusCode> WriteValueAsync(NodeId nodeId, DataValue value, CancellationToken ct)
|
|
{
|
|
var writeValue = new WriteValue
|
|
{
|
|
NodeId = nodeId,
|
|
AttributeId = Attributes.Value,
|
|
Value = value
|
|
};
|
|
|
|
var writeCollection = new WriteValueCollection { writeValue };
|
|
var response = await _session.WriteAsync(null, writeCollection, ct);
|
|
// A malformed or service-level-faulted response can come back with an empty
|
|
// Results collection alongside a service fault. Surface the service result
|
|
// (or BadUnexpectedError) rather than letting Results[0] throw
|
|
// IndexOutOfRangeException upstream.
|
|
if (response.Results == null || response.Results.Count == 0)
|
|
{
|
|
var serviceResult = response.ResponseHeader?.ServiceResult.Code ?? StatusCodes.BadUnexpectedError;
|
|
throw new ServiceResultException(serviceResult,
|
|
$"Write response contained no results for node {nodeId}.");
|
|
}
|
|
|
|
return response.Results[0];
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<(byte[]? ContinuationPoint, ReferenceDescriptionCollection References)> BrowseAsync(
|
|
NodeId nodeId, uint nodeClassMask, CancellationToken ct)
|
|
{
|
|
var (_, continuationPoint, references) = await _session.BrowseAsync(
|
|
null,
|
|
null,
|
|
nodeId,
|
|
0u,
|
|
BrowseDirection.Forward,
|
|
ReferenceTypeIds.HierarchicalReferences,
|
|
true,
|
|
nodeClassMask);
|
|
|
|
return (continuationPoint, references ?? []);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<(byte[]? ContinuationPoint, ReferenceDescriptionCollection References)> BrowseNextAsync(
|
|
byte[] continuationPoint, CancellationToken ct)
|
|
{
|
|
var (_, nextCp, nextRefs) = await _session.BrowseNextAsync(null, false, continuationPoint);
|
|
return (nextCp, nextRefs ?? []);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<bool> HasChildrenAsync(NodeId nodeId, CancellationToken ct)
|
|
{
|
|
var (_, _, references) = await _session.BrowseAsync(
|
|
null,
|
|
null,
|
|
nodeId,
|
|
1u,
|
|
BrowseDirection.Forward,
|
|
ReferenceTypeIds.HierarchicalReferences,
|
|
true,
|
|
0u);
|
|
|
|
return references != null && references.Count > 0;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IReadOnlyList<DataValue>> HistoryReadRawAsync(
|
|
NodeId nodeId, DateTime startTime, DateTime endTime, int maxValues, CancellationToken ct)
|
|
{
|
|
var details = new ReadRawModifiedDetails
|
|
{
|
|
StartTime = startTime,
|
|
EndTime = endTime,
|
|
NumValuesPerNode = (uint)maxValues,
|
|
IsReadModified = false,
|
|
ReturnBounds = false
|
|
};
|
|
|
|
var nodesToRead = new HistoryReadValueIdCollection
|
|
{
|
|
new HistoryReadValueId { NodeId = nodeId }
|
|
};
|
|
|
|
var allValues = new List<DataValue>();
|
|
byte[]? continuationPoint = null;
|
|
|
|
do
|
|
{
|
|
if (continuationPoint != null)
|
|
nodesToRead[0].ContinuationPoint = continuationPoint;
|
|
|
|
// Use the async overload so this method is genuinely asynchronous,
|
|
// honors the cancellation token, and does not block the caller's thread
|
|
// (which would block the UI dispatcher for client.ui consumers).
|
|
var response = await _session.HistoryReadAsync(
|
|
null,
|
|
new ExtensionObject(details),
|
|
TimestampsToReturn.Source,
|
|
continuationPoint != null,
|
|
nodesToRead,
|
|
ct).ConfigureAwait(false);
|
|
|
|
var results = response.Results;
|
|
if (results == null || results.Count == 0)
|
|
break;
|
|
|
|
var result = results[0];
|
|
if (StatusCode.IsBad(result.StatusCode))
|
|
break;
|
|
|
|
if (result.HistoryData is ExtensionObject ext && ext.Body is HistoryData historyData)
|
|
allValues.AddRange(historyData.DataValues);
|
|
|
|
continuationPoint = result.ContinuationPoint;
|
|
} while (continuationPoint != null && continuationPoint.Length > 0 && allValues.Count < maxValues);
|
|
|
|
return allValues;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IReadOnlyList<DataValue>> HistoryReadAggregateAsync(
|
|
NodeId nodeId, DateTime startTime, DateTime endTime, NodeId aggregateId, double intervalMs,
|
|
CancellationToken ct)
|
|
{
|
|
var details = new ReadProcessedDetails
|
|
{
|
|
StartTime = startTime,
|
|
EndTime = endTime,
|
|
ProcessingInterval = intervalMs,
|
|
AggregateType = [aggregateId]
|
|
};
|
|
|
|
var nodesToRead = new HistoryReadValueIdCollection
|
|
{
|
|
new HistoryReadValueId { NodeId = nodeId }
|
|
};
|
|
|
|
// Use the async overload so the method honors the cancellation token and
|
|
// does not block on a synchronous service round-trip.
|
|
var response = await _session.HistoryReadAsync(
|
|
null,
|
|
new ExtensionObject(details),
|
|
TimestampsToReturn.Source,
|
|
false,
|
|
nodesToRead,
|
|
ct).ConfigureAwait(false);
|
|
|
|
var results = response.Results;
|
|
var allValues = new List<DataValue>();
|
|
|
|
if (results != null && results.Count > 0)
|
|
{
|
|
var result = results[0];
|
|
if (!StatusCode.IsBad(result.StatusCode) &&
|
|
result.HistoryData is ExtensionObject ext &&
|
|
ext.Body is HistoryData historyData)
|
|
allValues.AddRange(historyData.DataValues);
|
|
}
|
|
|
|
return allValues;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<ISubscriptionAdapter> CreateSubscriptionAsync(int publishingIntervalMs, CancellationToken ct)
|
|
{
|
|
var subscription = new Subscription(_session.DefaultSubscription)
|
|
{
|
|
PublishingInterval = publishingIntervalMs,
|
|
DisplayName = "ClientShared_Subscription"
|
|
};
|
|
|
|
_session.AddSubscription(subscription);
|
|
await subscription.CreateAsync(ct);
|
|
|
|
return new DefaultSubscriptionAdapter(subscription);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task CloseAsync(CancellationToken ct)
|
|
{
|
|
try
|
|
{
|
|
// Use the async overload so the caller does not block on the close
|
|
// service round-trip and the cancellation token is honored.
|
|
if (_session.Connected) await _session.CloseAsync(ct).ConfigureAwait(false);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.Warning(ex, "Error closing session");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Releases the wrapped OPC UA session when the shared client shuts down or swaps endpoints during failover.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
try
|
|
{
|
|
if (_session.Connected) _session.Close();
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
|
|
_session.Dispose();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public async Task<IList<object>?> CallMethodAsync(NodeId objectId, NodeId methodId, object[] inputArguments,
|
|
CancellationToken ct = default)
|
|
{
|
|
var result = await _session.CallAsync(
|
|
null,
|
|
new CallMethodRequestCollection
|
|
{
|
|
new()
|
|
{
|
|
ObjectId = objectId,
|
|
MethodId = methodId,
|
|
InputArguments = new VariantCollection(inputArguments.Select(a => new Variant(a)))
|
|
}
|
|
},
|
|
ct);
|
|
|
|
// An empty Results collection paired with a service fault must surface as
|
|
// a ServiceResultException, not an IndexOutOfRangeException from Results[0].
|
|
if (result.Results == null || result.Results.Count == 0)
|
|
{
|
|
var serviceResult = result.ResponseHeader?.ServiceResult.Code ?? StatusCodes.BadUnexpectedError;
|
|
throw new ServiceResultException(serviceResult,
|
|
$"Call response contained no results for method {methodId} on {objectId}.");
|
|
}
|
|
|
|
var callResult = result.Results[0];
|
|
if (StatusCode.IsBad(callResult.StatusCode))
|
|
throw new ServiceResultException(callResult.StatusCode);
|
|
|
|
return callResult.OutputArguments?.Select(v => v.Value).ToList();
|
|
}
|
|
}
|