添加了远程模块

This commit is contained in:
fengjiayi
2024-10-11 23:08:56 +08:00
parent 0b8782176d
commit 9bc5e8a698
11 changed files with 192 additions and 35 deletions

View File

@@ -47,7 +47,7 @@ namespace Serein.NodeFlow.Base
#region /
internal abstract Parameterdata[] GetParameterdatas();
internal virtual NodeInfo ToInfo()
public virtual NodeInfo ToInfo()
{
// if (MethodDetails == null) return null;
@@ -74,7 +74,7 @@ namespace Serein.NodeFlow.Base
};
}
internal virtual NodeModelBase LoadInfo(NodeInfo nodeInfo)
public virtual NodeModelBase LoadInfo(NodeInfo nodeInfo)
{
this.Guid = nodeInfo.Guid;
if (this.MethodDetails is not null)
@@ -99,14 +99,15 @@ namespace Serein.NodeFlow.Base
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public async Task StartExecute(IDynamicContext context)
public async Task StartFlowAsync(IDynamicContext context)
{
Stack<NodeModelBase> stack = new Stack<NodeModelBase>();
stack.Push(this);
var flowCts = context.Env.IOC.Get<CancellationTokenSource>(FlowStarter.FlipFlopCtsName);
bool hasFlipflow = flowCts != null;
while (stack.Count > 0) // 循环中直到栈为空才会退出循环
{
if (flowCts is not null)
if (hasFlipflow && flowCts is not null)
{
if (flowCts.IsCancellationRequested)
break;
@@ -131,7 +132,7 @@ namespace Serein.NodeFlow.Base
await Console.Out.WriteLineAsync($"[{upstreamNode.MethodDetails?.MethodName}]中断已{cancelType},开始执行后继分支");
}
upstreamNode.PreviousNode = currentNode;
await upstreamNode.StartExecute(context); // 执行流程节点的上游分支
await upstreamNode.StartFlowAsync(context); // 执行流程节点的上游分支
if (upstreamNode.NextOrientation == ConnectionType.IsError)
{
// 如果上游分支执行失败,不再继续执行
@@ -144,7 +145,7 @@ namespace Serein.NodeFlow.Base
// 上游分支执行完成,才执行当前节点
object? newFlowData = await currentNode.ExecutingAsync(context);
if (flowCts is null || flowCts.IsCancellationRequested || currentNode.NextOrientation == ConnectionType.None)
if (hasFlipflow && (flowCts is null || flowCts.IsCancellationRequested || currentNode.NextOrientation == ConnectionType.None))
{
// 不再执行
break;

View File

@@ -157,7 +157,7 @@ namespace Serein.NodeFlow
/// <summary>
/// 容器管理
/// </summary>
private readonly SereinIOC sereinIOC;
public readonly SereinIOC sereinIOC;
/// <summary>
/// 存储加载的程序集路径
@@ -166,43 +166,43 @@ namespace Serein.NodeFlow
/// <summary>
/// 存储加载的程序集
/// </summary>
private List<NodeLibrary> NodeLibrarys { get; } = [];
public List<NodeLibrary> NodeLibrarys { get; } = [];
/// <summary>
/// 存储所有方法信息
/// </summary>
//private MethodDetailss { get; } = [];
private Dictionary<NodeLibrary, List<MethodDetails>> MethodDetailss { get; } = [];
public Dictionary<NodeLibrary, List<MethodDetails>> MethodDetailss { get; } = [];
/// <summary>
/// 环境加载的节点集合
/// Node Guid - Node Model
/// </summary>
private Dictionary<string, NodeModelBase> Nodes { get; } = [];
public Dictionary<string, NodeModelBase> Nodes { get; } = [];
/// <summary>
/// 存放触发器节点(运行时全部调用)
/// </summary>
private List<SingleFlipflopNode> FlipflopNodes { get; } = [];
private Dictionary<RegisterSequence,List<Type>> AutoRegisterTypes { get; } = [];
public List<SingleFlipflopNode> FlipflopNodes { get; } = [];
public Dictionary<RegisterSequence,List<Type>> AutoRegisterTypes { get; } = [];
/// <summary>
/// 存放委托
///
/// md.Methodname - delegate
/// </summary>
private ConcurrentDictionary<string, DelegateDetails> MethodDelegates { get; } = [];
public ConcurrentDictionary<string, DelegateDetails> MethodDelegates { get; } = [];
/// <summary>
/// 起始节点私有属性
/// </summary>
private NodeModelBase? _startNode = null;
public NodeModelBase? _startNode = null;
/// <summary>
/// 起始节点
/// </summary>
private NodeModelBase? StartNode
public NodeModelBase? StartNode
{
get
{
@@ -226,7 +226,7 @@ namespace Serein.NodeFlow
/// <summary>
/// 流程启动器每次运行时都会重新new一个
/// </summary>
private FlowStarter? flowStarter;
public FlowStarter? flowStarter;
#endregion
@@ -865,7 +865,7 @@ namespace Serein.NodeFlow
/// <param name="nodeGuid">节点Guid</param>
/// <returns>节点Model</returns>
/// <exception cref="ArgumentNullException">无法获取节点、Guid/节点为null时报错</exception>
private NodeModelBase? GuidToModel(string nodeGuid)
public NodeModelBase? GuidToModel(string nodeGuid)
{
if (string.IsNullOrEmpty(nodeGuid))
{

View File

@@ -95,7 +95,7 @@ namespace Serein.NodeFlow
public async Task StartFlowInSelectNodeAsync(NodeModelBase startNode)
{
if (Context is null) return;
await startNode.StartExecute(Context); // 开始运行时从选定节点开始运行
await startNode.StartFlowAsync(Context); // 开始运行时从选定节点开始运行
}
@@ -310,7 +310,7 @@ namespace Serein.NodeFlow
}).ToArray();
_ = Task.WhenAll(tasks);
}
await startNode.StartExecute(Context); // 开始运行时从起始节点开始运行
await startNode.StartFlowAsync(Context); // 开始运行时从起始节点开始运行
// 等待结束
if(FlipFlopState == RunState.Running && _flipFlopCts is not null)
{
@@ -407,7 +407,7 @@ namespace Serein.NodeFlow
var cancelType = await nextNodes[i].DebugSetting.GetInterruptTask();
await Console.Out.WriteLineAsync($"[{nextNodes[i].MethodDetails.MethodName}]中断已{cancelType},开始执行后继分支");
}
await nextNodes[i].StartExecute(context); // 启动执行触发器后继分支的节点
await nextNodes[i].StartFlowAsync(context); // 启动执行触发器后继分支的节点
}
}
}

View File

@@ -30,7 +30,7 @@ namespace Serein.NodeFlow.Model
{
return [];
}
internal override NodeInfo? ToInfo()
public override NodeInfo? ToInfo()
{
if (MethodDetails is null) return null;

View File

@@ -62,7 +62,7 @@ namespace Serein.NodeFlow.Model
return [];
}
internal override NodeInfo ToInfo()
public override NodeInfo ToInfo()
{
//if (MethodDetails == null) return null;

View File

@@ -94,7 +94,7 @@ namespace Serein.NodeFlow.Model
internal override NodeModelBase LoadInfo(NodeInfo nodeInfo)
public override NodeModelBase LoadInfo(NodeInfo nodeInfo)
{
var node = this;
if (node != null)

View File

@@ -56,7 +56,7 @@ namespace Serein.NodeFlow.Model
internal override NodeModelBase LoadInfo(NodeInfo nodeInfo)
public override NodeModelBase LoadInfo(NodeInfo nodeInfo)
{
var node = this;
if (node != null)