2024-10-29 04:46:13 +00:00
|
|
|
|
using System.Diagnostics;
|
2024-09-05 01:59:57 +00:00
|
|
|
|
using System.Net.WebSockets;
|
|
|
|
|
using Common;
|
|
|
|
|
|
|
|
|
|
namespace RemoteServer;
|
|
|
|
|
|
|
|
|
|
public class RemoteSyncServer
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable CA2211 // Non-constant fields should not be visible
|
|
|
|
|
public static string TempRootFile = "C:/TempPack";
|
2024-09-27 07:02:55 +00:00
|
|
|
|
public static string SqlPackageAbPath = "SqlPackageAbPath";
|
2024-09-05 01:59:57 +00:00
|
|
|
|
#pragma warning restore CA2211 // Non-constant fields should not be visible
|
2024-09-27 07:02:55 +00:00
|
|
|
|
private StateHelpBase StateHelper;
|
|
|
|
|
|
|
|
|
|
public void SetStateHelpBase(StateHelpBase stateHelper)
|
|
|
|
|
{
|
2024-10-29 04:46:13 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
StateHelper = stateHelper;
|
|
|
|
|
if (SyncConfig != null)
|
|
|
|
|
{
|
|
|
|
|
var LastExec = NotNullSyncConfig.ExecProcesses.Find(x =>
|
|
|
|
|
{
|
|
|
|
|
return x.StepBeforeOrAfter == "A"
|
|
|
|
|
&& x.Step == (stateHelper.Step - 1)
|
|
|
|
|
&& x.ExecInLocalOrServer == "S";
|
|
|
|
|
});
|
|
|
|
|
ExecProcess(LastExec);
|
|
|
|
|
var CurrentExec = NotNullSyncConfig.ExecProcesses.Find(x =>
|
|
|
|
|
{
|
|
|
|
|
return x.StepBeforeOrAfter == "B"
|
|
|
|
|
&& x.Step == stateHelper.Step
|
|
|
|
|
&& x.ExecInLocalOrServer == "S";
|
|
|
|
|
});
|
|
|
|
|
ExecProcess(CurrentExec);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Close(ex.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ExecProcess(ExecProcess? ep)
|
|
|
|
|
{
|
|
|
|
|
if (ep != null)
|
|
|
|
|
{
|
|
|
|
|
ProcessStartInfo startInfo =
|
|
|
|
|
new()
|
|
|
|
|
{
|
|
|
|
|
StandardOutputEncoding = System.Text.Encoding.UTF8,
|
|
|
|
|
Arguments = ep.Argumnets,
|
|
|
|
|
FileName = ep.FileName, // The command to execute (can be any command line tool)
|
|
|
|
|
// The arguments to pass to the command (e.g., list directory contents)
|
|
|
|
|
RedirectStandardOutput = true, // Redirect the standard output to a string
|
|
|
|
|
UseShellExecute = false, // Do not use the shell to execute the command
|
|
|
|
|
CreateNoWindow = true // Do not create a new window for the command
|
|
|
|
|
};
|
|
|
|
|
using Process process = new() { StartInfo = startInfo };
|
|
|
|
|
// Start the process
|
|
|
|
|
process.Start();
|
|
|
|
|
|
|
|
|
|
// Read the output from the process
|
|
|
|
|
string output = process.StandardOutput.ReadToEnd();
|
|
|
|
|
|
|
|
|
|
// Wait for the process to exit
|
|
|
|
|
process.WaitForExit();
|
|
|
|
|
|
|
|
|
|
if (process.ExitCode == 0)
|
|
|
|
|
{
|
|
|
|
|
Pipe.SendMsg(
|
|
|
|
|
StateHelper.CreateMsg(
|
|
|
|
|
$"{ep.Step}-{ep.StepBeforeOrAfter}-{ep.ExecInLocalOrServer}-{ep.FileName} {ep.Argumnets} 执行成功!"
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
.Wait();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Pipe.SendMsg(
|
|
|
|
|
StateHelper.CreateMsg(
|
|
|
|
|
$"{ep.Step}-{ep.StepBeforeOrAfter}-{ep.ExecInLocalOrServer}-{ep.FileName} {ep.Argumnets} 失败 {output}!"
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
.Wait();
|
|
|
|
|
throw new Exception("错误,信息参考上一条消息!");
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-27 07:02:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StateHelpBase GetStateHelpBase()
|
|
|
|
|
{
|
|
|
|
|
return StateHelper;
|
|
|
|
|
}
|
2024-09-05 01:59:57 +00:00
|
|
|
|
|
|
|
|
|
public Config? SyncConfig;
|
|
|
|
|
|
2024-09-07 06:46:08 +00:00
|
|
|
|
public Config NotNullSyncConfig
|
|
|
|
|
{
|
|
|
|
|
get
|
2024-09-05 01:59:57 +00:00
|
|
|
|
{
|
2024-09-07 06:46:08 +00:00
|
|
|
|
if (SyncConfig == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("SyncConfig");
|
|
|
|
|
}
|
|
|
|
|
return SyncConfig;
|
2024-09-05 01:59:57 +00:00
|
|
|
|
}
|
2024-09-07 06:46:08 +00:00
|
|
|
|
}
|
2024-09-05 01:59:57 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-09-07 06:46:08 +00:00
|
|
|
|
/// 发布源连接
|
2024-09-05 01:59:57 +00:00
|
|
|
|
/// </summary>
|
2024-09-07 06:46:08 +00:00
|
|
|
|
public readonly AbsPipeLine Pipe;
|
2024-09-23 09:46:46 +00:00
|
|
|
|
|
2024-09-05 01:59:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 父工程,用于释放资源
|
|
|
|
|
/// </summary>
|
|
|
|
|
public readonly RemoteSyncServerFactory Factory;
|
2024-09-23 09:46:46 +00:00
|
|
|
|
|
2024-09-07 06:46:08 +00:00
|
|
|
|
public string Name;
|
|
|
|
|
|
|
|
|
|
public string Pwd;
|
2024-09-05 01:59:57 +00:00
|
|
|
|
|
2024-09-23 09:46:46 +00:00
|
|
|
|
public RemoteSyncServer(
|
|
|
|
|
AbsPipeLine pipe,
|
|
|
|
|
RemoteSyncServerFactory factory,
|
|
|
|
|
string name,
|
|
|
|
|
string pwd
|
|
|
|
|
)
|
2024-09-05 01:59:57 +00:00
|
|
|
|
{
|
2024-09-07 06:46:08 +00:00
|
|
|
|
Pipe = pipe;
|
2024-09-05 01:59:57 +00:00
|
|
|
|
Factory = factory;
|
2024-09-07 06:46:08 +00:00
|
|
|
|
Name = name;
|
|
|
|
|
Pwd = pwd;
|
|
|
|
|
StateHelper = new ConnectAuthorityHelper(this);
|
2024-10-10 05:15:14 +00:00
|
|
|
|
}
|
2024-09-05 01:59:57 +00:00
|
|
|
|
|
2024-10-10 05:15:14 +00:00
|
|
|
|
public async Task Connect()
|
|
|
|
|
{
|
|
|
|
|
try
|
2024-09-05 01:59:57 +00:00
|
|
|
|
{
|
2024-10-10 05:15:14 +00:00
|
|
|
|
var rs = Pipe.Work(
|
|
|
|
|
(byte[] b) =>
|
|
|
|
|
{
|
|
|
|
|
return StateHelper.ReceiveMsg(b);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
await foreach (var r in rs) { }
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Close(e.Message);
|
|
|
|
|
}
|
2024-09-05 01:59:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Close(string? CloseReason)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-09-07 06:46:08 +00:00
|
|
|
|
Pipe.Close(CloseReason);
|
2024-09-05 01:59:57 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
//TODO 日志
|
|
|
|
|
Console.WriteLine(e.Message);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
2024-09-07 06:46:08 +00:00
|
|
|
|
Factory.RemoveSyncServer(this);
|
2024-09-05 01:59:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|