mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
221 lines
6.7 KiB
C#
221 lines
6.7 KiB
C#
using Serein.Library;
|
||
using Serein.Library.Api;
|
||
using Serein.Library.Utils;
|
||
using Serein.Script;
|
||
using Serein.Script.Node;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Dynamic;
|
||
using System.Linq;
|
||
using System.Linq.Expressions;
|
||
using System.Reflection;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using System.Xml.Linq;
|
||
|
||
namespace Serein.NodeFlow.Model
|
||
{
|
||
|
||
[NodeProperty(ValuePath = NodeValuePath.Node)]
|
||
public partial class SingleScriptNode : NodeModelBase
|
||
{
|
||
[PropertyInfo(IsNotification = true)]
|
||
private string _script;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 流程脚本节点
|
||
/// </summary>
|
||
public partial class SingleScriptNode : NodeModelBase
|
||
{
|
||
|
||
/// <summary>
|
||
/// 脚本节点是基础节点
|
||
/// </summary>
|
||
public override bool IsBase => true;
|
||
|
||
|
||
private IScriptFlowApi ScriptFlowApi { get; }
|
||
|
||
private ASTNode mainNode;
|
||
private SereinScriptInterpreter ScriptInterpreter;
|
||
/// <summary>
|
||
/// 构建流程脚本节点
|
||
/// </summary>
|
||
/// <param name="environment"></param>
|
||
public SingleScriptNode(IFlowEnvironment environment):base(environment)
|
||
{
|
||
//ScriptFlowApi = environment.IOC.Get<ScriptFlowApi>();
|
||
ScriptFlowApi = new ScriptFlowApi(environment, this);
|
||
ScriptInterpreter = new SereinScriptInterpreter();
|
||
}
|
||
|
||
static SingleScriptNode()
|
||
{
|
||
// 挂载静态方法
|
||
var tempMethods = typeof(BaseFunc).GetMethods().Where(method =>
|
||
!(method.Name.Equals("GetHashCode")
|
||
|| method.Name.Equals("Equals")
|
||
|| method.Name.Equals("ToString")
|
||
|| method.Name.Equals("GetType")
|
||
)).Select(method => (method.Name, method)).ToArray();
|
||
// 加载基础方法
|
||
foreach ((string name, MethodInfo method) item in tempMethods)
|
||
{
|
||
SereinScriptInterpreter.AddStaticFunction(item.name, item.method);
|
||
}
|
||
}
|
||
|
||
public override void OnCreating()
|
||
{
|
||
MethodInfo? method = this.GetType().GetMethod(nameof(GetFlowApi));
|
||
if (method != null)
|
||
{
|
||
ScriptInterpreter.AddFunction(nameof(GetFlowApi), method, () => this); // 挂载获取流程接口
|
||
}
|
||
|
||
var md = MethodDetails;
|
||
var pd = md.ParameterDetailss ??= new ParameterDetails[1];
|
||
md.ParamsArgIndex = 0;
|
||
pd[0] = new ParameterDetails
|
||
{
|
||
Index = 0,
|
||
Name = "object",
|
||
IsExplicitData = true,
|
||
DataValue = string.Empty,
|
||
DataType = typeof(object),
|
||
ExplicitType = typeof(object),
|
||
ArgDataSourceNodeGuid = string.Empty,
|
||
ArgDataSourceType = ConnectionArgSourceType.GetPreviousNodeData,
|
||
NodeModel = this,
|
||
ExplicitTypeName = "Value",
|
||
Items = null,
|
||
IsParams = true,
|
||
};
|
||
|
||
}
|
||
|
||
/// <summary>
|
||
/// 导出脚本代码
|
||
/// </summary>
|
||
/// <param name="nodeInfo"></param>
|
||
/// <returns></returns>
|
||
public override NodeInfo SaveCustomData(NodeInfo nodeInfo)
|
||
{
|
||
dynamic data = new ExpandoObject();
|
||
data.Script = Script ?? "";
|
||
nodeInfo.CustomData = data;
|
||
return nodeInfo;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 加载自定义数据
|
||
/// </summary>
|
||
/// <param name="nodeInfo"></param>
|
||
public override void LoadCustomData(NodeInfo nodeInfo)
|
||
{
|
||
this.Script = nodeInfo.CustomData?.Script ?? "";
|
||
}
|
||
|
||
/// <summary>
|
||
/// 重新加载脚本代码
|
||
/// </summary>
|
||
public void ReloadScript()
|
||
{
|
||
try
|
||
{
|
||
var p = new SereinScriptParser(Script);
|
||
mainNode = p.Parse();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
SereinEnv.WriteLine(InfoType.ERROR, ex.ToString());
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 执行脚本
|
||
/// </summary>
|
||
/// <param name="context"></param>
|
||
/// <returns></returns>
|
||
public override async Task<object?> ExecutingAsync(IDynamicContext context)
|
||
{
|
||
var @params = await GetParametersAsync(context);
|
||
//dynamic obj = ((object[])@params[0])[0];
|
||
//try
|
||
//{
|
||
// SereinEnv.WriteLine(InfoType.INFO, "Dynamic Object Value :" + obj.VarInfo);
|
||
//}
|
||
//catch (Exception ex)
|
||
//{
|
||
// SereinEnv.WriteLine(ex);
|
||
//}
|
||
//ScriptFlowApi.Context = context; // 并发破坏了数据状态
|
||
context.AddOrUpdate($"{context.Guid}_{this.Guid}_Params", @params[0]); // 后面再改
|
||
|
||
mainNode ??= new SereinScriptParser(Script).Parse();
|
||
IScriptInvokeContext scriptContext = new ScriptInvokeContext(context);
|
||
|
||
var result = await ScriptInterpreter.InterpretAsync(scriptContext, mainNode); // 从入口节点执行
|
||
//SereinEnv.WriteLine(InfoType.INFO, "FlowContext Guid : " + context.Guid);
|
||
return result;
|
||
}
|
||
|
||
|
||
#region 挂载的方法
|
||
|
||
public IScriptFlowApi GetFlowApi()
|
||
{
|
||
return ScriptFlowApi;
|
||
}
|
||
|
||
private static class BaseFunc
|
||
{
|
||
public static DateTime GetNow() => DateTime.Now;
|
||
|
||
public static Type TypeOf(object type)
|
||
{
|
||
return type.GetType();
|
||
}
|
||
|
||
|
||
public static void Print(object value)
|
||
{
|
||
SereinEnv.WriteLine(InfoType.INFO, value?.ToString());
|
||
}
|
||
|
||
#region 数据转换
|
||
public static int ToInt(object value)
|
||
{
|
||
return int.Parse(value.ToString());
|
||
}
|
||
public static double ToDouble(object value)
|
||
{
|
||
return double.Parse(value.ToString());
|
||
}
|
||
public static bool ToBool(object value)
|
||
{
|
||
return bool.Parse(value.ToString());
|
||
}
|
||
#endregion
|
||
|
||
public static async Task Delay(object value)
|
||
{
|
||
if (value is int @int)
|
||
{
|
||
Console.WriteLine($"等待{@int}ms");
|
||
await Task.Delay(@int);
|
||
}
|
||
else if (value is TimeSpan timeSpan)
|
||
{
|
||
|
||
Console.WriteLine($"等待{timeSpan}");
|
||
await Task.Delay(timeSpan);
|
||
}
|
||
|
||
}
|
||
}
|
||
#endregion
|
||
}
|
||
}
|