mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
2. 修复了删除节点时,没有正确消除与之相关的参数获取关系。 3. IFlowNode新增了StartFlowAsync方法。 4. Library项目中FlowNodeExtension拓展类转移到了NodeFlow项目中。 5. 修改了Script自定义参数保存,对参数类型、返回值类型进行保存。 6. Library.Utils.BenchmarkHelpter中添加了Task、Task<>的重载方法。 7. NodeFlow项目中,FlowEnvironment默认使用通过NewtonsoftJson实现的JSON门户类。 8. NodeFlow项目中,FlowControl缓存了 FlowWorkOptions 选项实体,并且对于 FlowWorkManagement 进行了池化管理(但后续的项目中考虑重构流程任务运行时)。
382 lines
12 KiB
C#
382 lines
12 KiB
C#
using Serein.Extend.NewtonsoftJson;
|
||
using Serein.Library;
|
||
using Serein.Library.Api;
|
||
using Serein.Library.FlowNode;
|
||
using Serein.Library.Utils;
|
||
using Serein.NodeFlow.Services;
|
||
using System.Reflection;
|
||
|
||
namespace Serein.NodeFlow.Env
|
||
{
|
||
|
||
/*
|
||
SetExportDirectory(string directory)
|
||
UseRemoteEdit(string wspath)
|
||
|
||
|
||
|
||
IFlowEnvironment env = new ();
|
||
env.LoadProject()
|
||
|
||
List<FlowApiInfo> apiInfos = env.GetInterfaceInfo();
|
||
List<FlowEventInfo> enventInfos = env.GetEventInfo();
|
||
|
||
|
||
flowApiService = env.GetFlowApiService();
|
||
flowEventService = env.GetFlowEventService();
|
||
|
||
|
||
object result = flowApiService.Invoke("", params);
|
||
TResult result = flowApiService.Invoke<TResult>("", params);
|
||
object result = await flowApiService.InvokeAsync("", params);
|
||
TResult result = await flowApiService.InvokeAsync<TResult>("", params);
|
||
|
||
flowEventService.Monitor("", (e) => {
|
||
object data = e.EventData;
|
||
Debug.Writeline(e.EventName);
|
||
});
|
||
|
||
|
||
*/
|
||
|
||
|
||
/// <summary>
|
||
/// 流程运行环境
|
||
/// </summary>
|
||
public class FlowEnvironment : IFlowEnvironment
|
||
{
|
||
/// <summary>
|
||
/// 流程运行环境构造函数
|
||
/// </summary>
|
||
public FlowEnvironment()
|
||
{
|
||
ISereinIOC ioc = new SereinIOC();
|
||
ioc.Register<ISereinIOC>(()=> ioc) // IOC容器接口
|
||
.Register<IFlowEnvironment>(() => this) // 流程环境接口
|
||
.Register<IFlowEnvironmentEvent, FlowEnvironmentEvent>() // 流程环境事件接口
|
||
.Register<IFlowEdit, FlowEdit>() // 流程编辑接口
|
||
.Register<IFlowControl, FlowControl>() // 流程控制接口
|
||
.Register<LocalFlowEnvironment>() // 本地环境
|
||
.Register<FlowModelService>() // 节点/画布模型服务
|
||
.Register<FlowLibraryService>() // 流程库服务
|
||
.Register<FlowCoreGenerateService>() // 代码生成
|
||
.Register<FlowOperationService>() // 流程操作
|
||
.Register<NodeMVVMService>() // 节点MVVM服务
|
||
.Build();
|
||
|
||
// 设置JSON解析器
|
||
JsonHelper.UseJsonProvider(new NewtonsoftJsonProvider());
|
||
// 默认使用本地环境
|
||
currentFlowEnvironment = ioc.Get<LocalFlowEnvironment>();
|
||
currentFlowEnvironmentEvent = ioc.Get<IFlowEnvironmentEvent>();
|
||
SereinEnv.SetEnv(currentFlowEnvironment);
|
||
}
|
||
/*
|
||
/// <summary>
|
||
/// 本地环境事件
|
||
/// </summary>
|
||
private readonly IFlowEnvironmentEvent flowEnvironmentEvent;
|
||
|
||
/// <summary>
|
||
/// 远程环境事件
|
||
/// </summary>
|
||
private IFlowEnvironmentEvent remoteFlowEnvironmentEvent;
|
||
*/
|
||
|
||
/// <summary>
|
||
/// 管理当前环境
|
||
/// </summary>
|
||
|
||
private IFlowEnvironment currentFlowEnvironment;
|
||
|
||
/// <summary>
|
||
/// 管理当前环境事件
|
||
/// </summary>
|
||
private IFlowEnvironmentEvent currentFlowEnvironmentEvent;
|
||
|
||
|
||
|
||
private int _loadingProjectFlag = 0; // 使用原子自增代替锁
|
||
/// <summary>
|
||
/// 传入false时,将停止数据通知。传入true时,
|
||
/// </summary>
|
||
/// <param name="value"></param>
|
||
public void SetProjectLoadingFlag(bool value)
|
||
{
|
||
Interlocked.Exchange(ref _loadingProjectFlag, value ? 1 : 0);
|
||
}
|
||
/// <summary>
|
||
/// 判断是否正在加载项目
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public bool IsLoadingProject()
|
||
{
|
||
return Interlocked.CompareExchange(ref _loadingProjectFlag, 1, 1) == 1;
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public IFlowEnvironment CurrentEnv => currentFlowEnvironment;
|
||
/// <inheritdoc/>
|
||
public UIContextOperation UIContextOperation => currentFlowEnvironment.UIContextOperation;
|
||
|
||
/// <inheritdoc/>
|
||
public IFlowEdit FlowEdit => currentFlowEnvironment.FlowEdit;
|
||
|
||
/// <inheritdoc/>
|
||
public IFlowControl FlowControl => currentFlowEnvironment.FlowControl;
|
||
|
||
/// <inheritdoc/>
|
||
public ISereinIOC IOC => currentFlowEnvironment.IOC;
|
||
|
||
/// <inheritdoc/>
|
||
public IFlowEnvironmentEvent Event => currentFlowEnvironment.Event;
|
||
|
||
|
||
/// <inheritdoc/>
|
||
public string EnvName => currentFlowEnvironment.EnvName;
|
||
|
||
/// <inheritdoc/>
|
||
public string ProjectFileLocation => currentFlowEnvironment.EnvName;
|
||
|
||
/// <inheritdoc/>
|
||
public bool _IsGlobalInterrupt => currentFlowEnvironment._IsGlobalInterrupt;
|
||
|
||
/// <inheritdoc/>
|
||
public bool IsControlRemoteEnv => currentFlowEnvironment.IsControlRemoteEnv;
|
||
|
||
/// <inheritdoc/>
|
||
public InfoClass InfoClass { get => currentFlowEnvironment.InfoClass; set => currentFlowEnvironment.InfoClass = value; }
|
||
|
||
/// <inheritdoc/>
|
||
public RunState FlowState { get => currentFlowEnvironment.FlowState; set => currentFlowEnvironment.FlowState = value; }
|
||
|
||
/* /// <inheritdoc/>
|
||
public void ActivateFlipflopNode(string nodeGuid)
|
||
{
|
||
currentFlowEnvironment.FlowControl.ActivateFlipflopNode(nodeGuid);
|
||
}*/
|
||
|
||
/* /// <inheritdoc/>
|
||
public async Task<(bool, RemoteMsgUtil)> ConnectRemoteEnv(string addres, int port, string token)
|
||
{
|
||
// 连接成功,切换远程环境
|
||
(var isConnect, var remoteMsgUtil) = await currentFlowEnvironment.ConnectRemoteEnv(addres, port, token);
|
||
if (isConnect)
|
||
{
|
||
|
||
*//* remoteFlowEnvironment ??= new RemoteFlowEnvironment(remoteMsgUtil, this.Event, this.UIContextOperation);
|
||
currentFlowEnvironment = remoteFlowEnvironment;*//*
|
||
}
|
||
return (isConnect, remoteMsgUtil);
|
||
}*/
|
||
|
||
/// <inheritdoc/>
|
||
/* public async Task<bool> ExitFlowAsync()
|
||
{
|
||
return await currentFlowEnvironment.FlowControl.ExitFlowAsync();
|
||
}*/
|
||
|
||
/* /// <inheritdoc/>
|
||
public void ExitRemoteEnv()
|
||
{
|
||
currentFlowEnvironment.ExitRemoteEnv();
|
||
}
|
||
|
||
|
||
/// <inheritdoc/>
|
||
public async Task<FlowEnvInfo> GetEnvInfoAsync()
|
||
{
|
||
return await currentFlowEnvironment.GetEnvInfoAsync();
|
||
}*/
|
||
|
||
/// <inheritdoc/>
|
||
public async Task<SereinProjectData> GetProjectInfoAsync()
|
||
{
|
||
return await currentFlowEnvironment.GetProjectInfoAsync();
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void LoadLibrary(string dllPath)
|
||
{
|
||
currentFlowEnvironment.LoadLibrary(dllPath);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void SaveProject()
|
||
{
|
||
currentFlowEnvironment.SaveProject();
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void LoadProject(string filePath)
|
||
{
|
||
//if (flowEnvInfo is null) return;
|
||
SetProjectLoadingFlag(false);
|
||
currentFlowEnvironment.LoadProject(filePath);
|
||
SetProjectLoadingFlag(true);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public async Task LoadProjetAsync(string filePath)
|
||
{
|
||
//if (flowEnvInfo is null) return;
|
||
SetProjectLoadingFlag(false);
|
||
await currentFlowEnvironment.LoadProjetAsync(filePath);
|
||
SetProjectLoadingFlag(true);
|
||
}
|
||
|
||
/* /// <inheritdoc/>
|
||
public void MonitorObjectNotification(string nodeGuid, object monitorData, MonitorObjectEventArgs.ObjSourceType sourceType)
|
||
{
|
||
currentFlowEnvironment.FlowControl.MonitorObjectNotification(nodeGuid, monitorData, sourceType);
|
||
}*/
|
||
|
||
/// <inheritdoc/>
|
||
public bool TryUnloadLibrary(string assemblyName)
|
||
{
|
||
return currentFlowEnvironment.TryUnloadLibrary(assemblyName);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 输出信息
|
||
/// </summary>
|
||
/// <param name="message">日志内容</param>
|
||
/// <param name="type">日志类别</param>
|
||
/// <param name="class">日志级别</param>
|
||
public void WriteLine(InfoType type, string message, InfoClass @class = InfoClass.Trivial)
|
||
{
|
||
currentFlowEnvironment.WriteLine(type, message, @class);
|
||
}
|
||
|
||
|
||
#region MyRegion
|
||
#if false
|
||
public async Task<bool> AddInterruptExpressionAsync(string key, string expression)
|
||
{
|
||
return await currentFlowEnvironment.AddInterruptExpressionAsync(key, expression);
|
||
}
|
||
|
||
|
||
public async Task<(bool, string[])> CheckObjMonitorStateAsync(string key)
|
||
{
|
||
return await currentFlowEnvironment.CheckObjMonitorStateAsync(key);
|
||
}
|
||
public async Task<ChannelFlowInterrupt.CancelType> GetOrCreateGlobalInterruptAsync()
|
||
{
|
||
return await currentFlowEnvironment.InterruptNode();
|
||
}
|
||
|
||
public void SetMonitorObjState(string key, bool isMonitor)
|
||
{
|
||
currentFlowEnvironment.SetMonitorObjState(key, isMonitor);
|
||
}
|
||
|
||
public async Task<bool> SetNodeInterruptAsync(string nodeGuid, bool isInterrupt)
|
||
{
|
||
return await currentFlowEnvironment.SetNodeInterruptAsync(nodeGuid, isInterrupt);
|
||
}
|
||
#endif
|
||
|
||
#endregion
|
||
/*
|
||
|
||
/// <inheritdoc/>
|
||
public async Task<bool> StartFlowAsync(string[] canvasGuids)
|
||
{
|
||
return await currentFlowEnvironment.FlowControl.StartFlowAsync(canvasGuids);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public async Task<TResult> StartFlowAsync<TResult>(string startNodeGuid)
|
||
{
|
||
return await currentFlowEnvironment.FlowControl.StartFlowAsync<TResult>(startNodeGuid);
|
||
}*/
|
||
|
||
/* /// <inheritdoc/>
|
||
public async Task StartRemoteServerAsync(int port = 7525)
|
||
{
|
||
await currentFlowEnvironment.StartRemoteServerAsync(port);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void StopRemoteServer()
|
||
{
|
||
currentFlowEnvironment.StopRemoteServer();
|
||
}*/
|
||
/*
|
||
/// <inheritdoc/>
|
||
public void TerminateFlipflopNode(string nodeGuid)
|
||
{
|
||
currentFlowEnvironment.FlowControl.TerminateFlipflopNode(nodeGuid);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void TriggerInterrupt(string nodeGuid, string expression, InterruptTriggerEventArgs.InterruptTriggerType type)
|
||
{
|
||
currentFlowEnvironment.FlowControl.TriggerInterrupt(nodeGuid, expression, type);
|
||
}*/
|
||
|
||
/// <inheritdoc/>
|
||
public void SetUIContextOperation(UIContextOperation uiContextOperation)
|
||
{
|
||
|
||
currentFlowEnvironment.SetUIContextOperation(uiContextOperation);
|
||
}
|
||
/*
|
||
/// <inheritdoc/>
|
||
public void UseExternalIOC(ISereinIOC ioc)
|
||
{
|
||
currentFlowEnvironment.FlowControl.UseExternalIOC(ioc);
|
||
}*/
|
||
|
||
/// <inheritdoc/>
|
||
public bool TryGetNodeModel(string nodeGuid, out IFlowNode nodeModel)
|
||
{
|
||
return currentFlowEnvironment.TryGetNodeModel(nodeGuid, out nodeModel);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public bool TryGetDelegateDetails(string libraryName, string methodName, out DelegateDetails del)
|
||
{
|
||
return currentFlowEnvironment.TryGetDelegateDetails(libraryName, methodName, out del);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public bool TryGetMethodDetailsInfo(string libraryName, string methodName, out MethodDetailsInfo mdInfo)
|
||
{
|
||
return currentFlowEnvironment.TryGetMethodDetailsInfo(libraryName, methodName, out mdInfo);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public async Task NotificationNodeValueChangeAsync(string nodeGuid, string path, object value)
|
||
{
|
||
if (!IsLoadingProject())
|
||
{
|
||
return;
|
||
}
|
||
if (currentFlowEnvironment.IsControlRemoteEnv)
|
||
{
|
||
await currentFlowEnvironment.NotificationNodeValueChangeAsync(nodeGuid, path, value);
|
||
}
|
||
}
|
||
|
||
|
||
#region 流程依赖类库的接口
|
||
|
||
/// <inheritdoc/>
|
||
public bool LoadNativeLibraryOfRuning(string file)
|
||
{
|
||
return currentFlowEnvironment.LoadNativeLibraryOfRuning(file);
|
||
}
|
||
|
||
/// <inheritdoc/>
|
||
public void LoadAllNativeLibraryOfRuning(string path, bool isRecurrence = true)
|
||
{
|
||
currentFlowEnvironment.LoadAllNativeLibraryOfRuning(path,isRecurrence);
|
||
}
|
||
|
||
#endregion
|
||
|
||
}
|
||
}
|