92 lines
2.1 KiB
C#
92 lines
2.1 KiB
C#
using System.Net.WebSockets;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using Common;
|
|
|
|
namespace LocalServer;
|
|
|
|
public class LocalSyncServer
|
|
{
|
|
#pragma warning disable CA2211 // Non-constant fields should not be visible
|
|
public static string TempRootFile = "C:/TempPack";
|
|
#pragma warning restore CA2211 // Non-constant fields should not be visible
|
|
public StateHelpBase StateHelper;
|
|
|
|
public Config? SyncConfig;
|
|
|
|
public Config NotNullSyncConfig
|
|
{
|
|
get
|
|
{
|
|
if (SyncConfig == null)
|
|
{
|
|
throw new ArgumentNullException("SyncConfig");
|
|
}
|
|
return SyncConfig;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 发布源连接
|
|
/// </summary>
|
|
public readonly AbsPipeLine LocalPipe;
|
|
|
|
public readonly AbsPipeLine RemotePipe = new WebSocPipeLine<ClientWebSocket>(
|
|
new ClientWebSocket()
|
|
);
|
|
/// <summary>
|
|
/// 发布名称
|
|
/// </summary>
|
|
public readonly string Name;
|
|
|
|
/// <summary>
|
|
/// 父工程,用于释放资源
|
|
/// </summary>
|
|
public readonly LocalSyncServerFactory Factory;
|
|
|
|
public LocalSyncServer(AbsPipeLine pipe, string name, LocalSyncServerFactory factory)
|
|
{
|
|
LocalPipe = pipe;
|
|
Name = name;
|
|
Factory = factory;
|
|
StateHelper = new ConnectAuthorityHelper(this);
|
|
|
|
Task.Run(async () =>
|
|
{
|
|
var rs = LocalPipe.Work(
|
|
(byte[] b) =>
|
|
{
|
|
return StateHelper.ReceiveLocalMsg(b);
|
|
}
|
|
);
|
|
try
|
|
{
|
|
await foreach (var r in rs) { }
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Close(e.Message);
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
public void Close(string? CloseReason)
|
|
{
|
|
try
|
|
{
|
|
LocalPipe.Close(CloseReason);
|
|
RemotePipe.Close(CloseReason);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
//TODO 日志
|
|
Console.WriteLine(e.Message);
|
|
}
|
|
finally
|
|
{
|
|
Factory.RemoveLocalSyncServer(this);
|
|
}
|
|
}
|
|
}
|