mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-23 20:13:22 +08:00
45 lines
1.8 KiB
C#
45 lines
1.8 KiB
C#
|
|
using ThingsGateway.Blazor.Diagrams.Core.Geometry;
|
|
|
|
using TouchSocket.Core;
|
|
|
|
namespace ThingsGateway.Gateway.Application;
|
|
|
|
[CategoryNode(Category = "Actuator", ImgUrl = "_content/ThingsGateway.Gateway.Razor/img/Rpc.svg", Desc = nameof(VariableRpcNode), LocalizerType = typeof(ThingsGateway.Gateway.Application.DefaultDiagram), WidgetType = "ThingsGateway.Gateway.Razor.VariableWidget,ThingsGateway.Gateway.Razor")]
|
|
public class VariableRpcNode : VariableNode, IActuatorNode
|
|
{
|
|
|
|
public VariableRpcNode(string id, Point? position = null) : base(id, position)
|
|
{ Title = "VariableRpcNode"; }
|
|
|
|
async Task<OperResult<NodeOutput>> IActuatorNode.ExecuteAsync(NodeInput input, CancellationToken cancellationToken)
|
|
{
|
|
try
|
|
{
|
|
|
|
if ((!DeviceText.IsNullOrWhiteSpace()) && GlobalData.ReadOnlyDevices.TryGetValue(DeviceText, out var device))
|
|
{
|
|
if (device.ReadOnlyVariableRuntimes.TryGetValue(Text, out var value))
|
|
{
|
|
var data = await value.RpcAsync(input.JToken.ToString(), $"RulesEngine: {RulesEngineName}", cancellationToken).ConfigureAwait(false);
|
|
if (data.IsSuccess)
|
|
Logger?.Trace($" VariableRpcNode - VariableName {Text} : execute success");
|
|
else
|
|
Logger?.Warning($" VariableRpcNode - VariableName {Text} : {data.ErrorMessage}");
|
|
return new OperResult<NodeOutput>() { Content = new NodeOutput() { Value = data } };
|
|
}
|
|
}
|
|
Logger?.Warning($" VariableRpcNode - VariableName {Text} : not found");
|
|
|
|
return new OperResult<NodeOutput>() { Content = new NodeOutput() { } };
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger?.LogWarning(ex);
|
|
return new OperResult<NodeOutput>(ex);
|
|
}
|
|
}
|
|
|
|
|
|
}
|