using CliFx.Attributes; using CliFx.Infrastructure; using ZB.MOM.WW.OtOpcUa.Core.Abstractions; using ZB.MOM.WW.OtOpcUa.Driver.Cli.Common; namespace ZB.MOM.WW.OtOpcUa.Driver.S7.Cli.Commands; /// /// Watch an S7 address via polled subscription until Ctrl+C. S7comm has no native push /// model so this goes through PollGroupEngine same as Modbus / AB. /// [Command("subscribe", Description = "Watch an S7 address via polled subscription until Ctrl+C.")] public sealed class SubscribeCommand : S7CommandBase { [CommandOption("address", 'a', Description = "S7 address — same format as `read`.", IsRequired = true)] public string Address { get; init; } = default!; [CommandOption("type", 't', Description = "Bool / Byte / Int16 / UInt16 / Int32 / UInt32 / Int64 / UInt64 / Float32 / Float64 / " + "String / DateTime (default Int16).")] public S7DataType DataType { get; init; } = S7DataType.Int16; [CommandOption("interval-ms", 'i', Description = "Publishing interval ms (default 1000).")] public int IntervalMs { get; init; } = 1000; public override async ValueTask ExecuteAsync(IConsole console) { ConfigureLogging(); var ct = console.RegisterCancellationHandler(); var tagName = ReadCommand.SynthesiseTagName(Address, DataType); var tag = new S7TagDefinition( Name: tagName, Address: Address, DataType: DataType, Writable: false); var options = BuildOptions([tag]); await using var driver = new S7Driver(options, DriverInstanceId); ISubscriptionHandle? handle = null; try { await driver.InitializeAsync("{}", ct); driver.OnDataChange += (_, e) => { var line = $"[{DateTime.UtcNow:HH:mm:ss.fff}] " + $"{e.FullReference} = {SnapshotFormatter.FormatValue(e.Snapshot.Value)} " + $"({SnapshotFormatter.FormatStatus(e.Snapshot.StatusCode)})"; console.Output.WriteLine(line); }; handle = await driver.SubscribeAsync([tagName], TimeSpan.FromMilliseconds(IntervalMs), ct); await console.Output.WriteLineAsync( $"Subscribed to {Address} @ {IntervalMs}ms. Ctrl+C to stop."); try { await Task.Delay(System.Threading.Timeout.InfiniteTimeSpan, ct); } catch (OperationCanceledException) { // Expected on Ctrl+C. } } finally { if (handle is not null) { try { await driver.UnsubscribeAsync(handle, CancellationToken.None); } catch { /* teardown best-effort */ } } await driver.ShutdownAsync(CancellationToken.None); } } }