Files
serein-flow/Serein.FlowStartTool/Program.cs

77 lines
2.3 KiB
C#
Raw Normal View History

2024-10-12 22:25:33 +08:00
using Newtonsoft.Json;
using Serein.Library.Api;
using Serein.Library.Entity;
using Serein.NodeFlow;
2024-10-13 19:36:45 +08:00
using System.Diagnostics;
using System.Reflection;
2024-10-12 22:25:33 +08:00
namespace Serein.FlowStartTool
{
public class Program
{
public static void Main(string[] args)
{
2024-10-13 19:36:45 +08:00
Console.WriteLine("Hello :) ");
Console.WriteLine($"args : {string.Join(" , ", args)}");
string filePath;
string fileDataPath;
SereinProjectData? flowProjectData;
string exeAssemblyDictPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
if (args.Length == 1)
{
filePath = args[0];
fileDataPath = Path.GetDirectoryName(filePath) ?? "";
}
else if (args.Length == 0)
{
filePath = Process.GetCurrentProcess().ProcessName + ".dnf";
fileDataPath = exeAssemblyDictPath;
}
else
2024-10-12 22:25:33 +08:00
{
return;
2024-10-13 19:36:45 +08:00
}
Console.WriteLine($"Current Name : {filePath}");
Console.WriteLine($"Dict Path : {fileDataPath}");
try
{
// 读取文件内容
string content = File.ReadAllText(filePath); // 读取整个文件内容
flowProjectData = JsonConvert.DeserializeObject<SereinProjectData>(content);
if (flowProjectData is null || string.IsNullOrEmpty(fileDataPath))
2024-10-12 22:25:33 +08:00
{
2024-10-13 19:36:45 +08:00
throw new Exception("项目文件读取异常");
2024-10-12 22:25:33 +08:00
}
2024-10-13 19:36:45 +08:00
}
catch (Exception ex)
{
Console.WriteLine($"读取文件时发生错误:{ex.Message}");
return;
}
IsRuning = true;
StartFlow(flowProjectData, fileDataPath).GetAwaiter().GetResult();
while (IsRuning)
{
2024-10-12 22:25:33 +08:00
}
}
public static IFlowEnvironment? Env;
2024-10-13 19:36:45 +08:00
public static bool IsRuning;
2024-10-12 22:25:33 +08:00
public static async Task StartFlow(SereinProjectData flowProjectData, string fileDataPath)
{
Env = new FlowEnvironment();
Env.LoadProject(flowProjectData, fileDataPath); // 加载项目
await Env.StartAsync();
2024-10-13 19:36:45 +08:00
IsRuning = false;
2024-10-12 22:25:33 +08:00
}
2024-10-13 19:36:45 +08:00
2024-10-12 22:25:33 +08:00
}
}