2021-04-09 02:36:08 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.IO.Pipes;
|
2021-04-16 03:08:25 +00:00
|
|
|
using System.Net.Sockets;
|
2021-04-09 02:36:08 +00:00
|
|
|
using System.Text.Json;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2021-04-21 07:00:50 +00:00
|
|
|
using GameServiceWarden.InteractionAPI;
|
|
|
|
using GameServiceWarden.InteractionAPI.Communicable.Requests;
|
|
|
|
using GameServiceWarden.InteractionAPI.Communicable.Responses;
|
2021-04-23 01:39:22 +00:00
|
|
|
using SimpleLogger;
|
2021-04-09 02:36:08 +00:00
|
|
|
|
|
|
|
namespace GameServiceWarden.Core.UI
|
|
|
|
{
|
|
|
|
public class IPCMediator
|
|
|
|
{
|
2021-04-10 18:57:38 +00:00
|
|
|
private const int TIMEOUT = 1000;
|
|
|
|
public string PipeName {get { return name + ".pipe"; } }
|
2021-04-09 02:36:08 +00:00
|
|
|
private readonly string name;
|
|
|
|
private readonly ConcurrentDictionary<string, (NamedPipeServerStream, Task)> pipes;
|
|
|
|
public BlockingCollection<(string, CommunicableType, byte[])> RequestQueue { get; private set; }
|
|
|
|
private volatile bool active;
|
|
|
|
public bool IsRunning { get => active; }
|
2021-04-16 03:08:25 +00:00
|
|
|
private Task connectionTask;
|
2021-04-09 02:36:08 +00:00
|
|
|
private CancellationTokenSource stopAcceptingToken;
|
2021-04-16 03:08:25 +00:00
|
|
|
private volatile NamedPipeServerStream connectingPipe;
|
|
|
|
|
2021-04-09 02:36:08 +00:00
|
|
|
public IPCMediator(string name)
|
|
|
|
{
|
|
|
|
this.name = name;
|
|
|
|
pipes = new ConcurrentDictionary<string, (NamedPipeServerStream, Task)>();
|
|
|
|
RequestQueue = new BlockingCollection<(string, CommunicableType, byte[])>(new ConcurrentQueue<(string, CommunicableType, byte[])>());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Open()
|
|
|
|
{
|
|
|
|
if (active) throw new InvalidOperationException("IPC already opened.");
|
2021-04-09 06:10:26 +00:00
|
|
|
Logger.Log($"IPCMediator with name \"{name}\" opened.");
|
2021-04-09 02:36:08 +00:00
|
|
|
active = true;
|
2021-04-09 03:22:20 +00:00
|
|
|
stopAcceptingToken = new CancellationTokenSource();
|
2021-04-16 03:08:25 +00:00
|
|
|
connectionTask = AcceptConnections();
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"IPCMediator \"{name}\" has begun asynchronously accepting interfaces.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Close()
|
|
|
|
{
|
|
|
|
if (!active) throw new InvalidOperationException("IPC not open.");
|
|
|
|
Logger.Log("Closing IPC mediator.");
|
|
|
|
active = false;
|
|
|
|
stopAcceptingToken.Cancel();
|
2021-04-16 03:08:25 +00:00
|
|
|
connectingPipe.Dispose();
|
|
|
|
InitiateDisconnectAll("Closing GameServiceWarden.").Wait();
|
2021-04-09 02:36:08 +00:00
|
|
|
try
|
|
|
|
{
|
2021-04-16 03:08:25 +00:00
|
|
|
if (!connectionTask.Wait(TIMEOUT)) throw new TimeoutException($"IPCMediator \"{name}\" was unable to stop accepting task within {TIMEOUT}ms.");
|
2021-04-09 02:36:08 +00:00
|
|
|
}
|
|
|
|
catch (AggregateException e)
|
|
|
|
{
|
2021-04-16 03:08:25 +00:00
|
|
|
e.Handle((exception) => exception is TaskCanceledException || (exception is SocketException && exception.Message.Equals("Operation canceled")));
|
2021-04-09 02:36:08 +00:00
|
|
|
}
|
|
|
|
RequestQueue.CompleteAdding();
|
|
|
|
stopAcceptingToken.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task ReplyAll(CommunicableType type, byte[] data)
|
|
|
|
{
|
|
|
|
IEnumerable<string> identifiers = pipes.Keys;
|
|
|
|
Stack<Task> replyTasks = new Stack<Task>();
|
|
|
|
foreach (string identifier in identifiers)
|
|
|
|
{
|
|
|
|
replyTasks.Push(Reply(identifier, type, data));
|
|
|
|
}
|
|
|
|
Task replyTask;
|
|
|
|
while (replyTasks.TryPop(out replyTask))
|
|
|
|
{
|
|
|
|
await replyTask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task Reply(string identifier, CommunicableType type, byte[] data)
|
|
|
|
{
|
|
|
|
CancellationTokenSource cancel = new CancellationTokenSource(1000);
|
|
|
|
byte[] header = ResponseHeader.Encode(type, (uint)data.Length);
|
|
|
|
await pipes[identifier].Item1.WriteAsync(header, 0, header.Length, cancel.Token);
|
|
|
|
await pipes[identifier].Item1.WriteAsync(data, cancel.Token);
|
|
|
|
cancel.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task InitiateDisconnect(string identifier, string reason)
|
|
|
|
{
|
|
|
|
Logger.Log($"Disconnecting \"{identifier}\". Reason: \"{reason}\"");
|
|
|
|
DisconnectResponse response;
|
|
|
|
response.reason = reason;
|
|
|
|
await Reply(identifier, CommunicableType.Disconnect, JsonSerializer.SerializeToUtf8Bytes(response));
|
|
|
|
(NamedPipeServerStream, Task) pipeAndTask = pipes[identifier];
|
|
|
|
pipeAndTask.Item1.Close();
|
|
|
|
await pipeAndTask.Item2;
|
|
|
|
Logger.Log($"Successfully disconnected \"{identifier}\".");
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task InitiateDisconnectAll(string reason) {
|
|
|
|
Logger.Log($"Disconnecting all of {pipes.Count} interfaces.");
|
|
|
|
foreach (string id in pipes.Keys)
|
|
|
|
{
|
|
|
|
await InitiateDisconnect(id, reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task AcceptConnections()
|
|
|
|
{
|
|
|
|
List<Task> connectionTasks = new List<Task>();
|
2021-04-09 05:38:47 +00:00
|
|
|
Logger.Log("Accepting Interface connections.");
|
2021-04-09 02:36:08 +00:00
|
|
|
while (active)
|
|
|
|
{
|
2021-04-16 03:08:25 +00:00
|
|
|
connectingPipe = new NamedPipeServerStream(PipeName, PipeDirection.InOut, NamedPipeServerStream.MaxAllowedServerInstances, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log("Waiting for connection.", LogLevel.Debug);
|
2021-04-16 03:08:25 +00:00
|
|
|
await connectingPipe.WaitForConnectionAsync(stopAcceptingToken.Token);
|
|
|
|
connectionTasks.Add(OnConnection(connectingPipe));
|
2021-04-09 02:36:08 +00:00
|
|
|
for (int i = 0; i < connectionTasks.Count; i++)
|
|
|
|
{
|
|
|
|
if (connectionTasks[i].IsCompleted) {
|
|
|
|
Task connectionTask = connectionTasks[i];
|
|
|
|
connectionTasks.RemoveAt(i);
|
|
|
|
connectionTask.Wait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log("Waiting for connection tasks.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
foreach (Task task in connectionTasks)
|
|
|
|
{
|
|
|
|
task.Wait();
|
|
|
|
}
|
|
|
|
Logger.Log("Stopped accepting pipe connections.");
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task OnConnection(NamedPipeServerStream pipe)
|
|
|
|
{
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log("Interface attempting to connect.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
byte[] headerBuffer = new byte[sizeof(uint) * 2];
|
|
|
|
int headerFill = 0;
|
2021-04-10 18:57:38 +00:00
|
|
|
CancellationTokenSource headerCancel = new CancellationTokenSource(TIMEOUT);
|
2021-04-09 02:36:08 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
int readLength;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
readLength = await pipe.ReadAsync(headerBuffer, headerFill, headerBuffer.Length - headerFill, headerCancel.Token);
|
|
|
|
headerFill += readLength;
|
|
|
|
} while (readLength != 0 && headerFill != headerBuffer.Length);
|
|
|
|
}
|
|
|
|
catch (AggregateException e)
|
|
|
|
{
|
|
|
|
e.Handle((exception) => exception is TaskCanceledException);
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Interface did not send header data within {TIMEOUT}ms.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
} finally {
|
|
|
|
await pipe.DisposeAsync();
|
|
|
|
headerCancel.Dispose();
|
|
|
|
}
|
|
|
|
if (headerFill != headerBuffer.Length) {
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Interface failed to send header data.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommunicableType comType;
|
|
|
|
uint bodyLength;
|
|
|
|
RequestHeader.Decode(headerBuffer, out comType, out bodyLength); //TODO do exception check.
|
|
|
|
|
|
|
|
byte[] bodyBuffer = new byte[bodyLength];
|
|
|
|
int bodyFill = 0;
|
2021-04-10 18:57:38 +00:00
|
|
|
CancellationTokenSource bodyCancel = new CancellationTokenSource(TIMEOUT);
|
2021-04-09 02:36:08 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
int readLength = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
readLength = await pipe.ReadAsync(bodyBuffer, bodyFill, bodyBuffer.Length - bodyFill, bodyCancel.Token);
|
|
|
|
bodyFill += readLength;
|
|
|
|
} while (readLength != 0 && bodyFill != headerBuffer.Length);
|
|
|
|
}
|
|
|
|
catch (AggregateException e)
|
|
|
|
{
|
|
|
|
e.Handle((exception) => exception is TaskCanceledException);
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Interface failed to send body data within {TIMEOUT}.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
} finally {
|
|
|
|
await pipe.DisposeAsync();
|
|
|
|
bodyCancel.Dispose();
|
|
|
|
}
|
|
|
|
if (bodyFill != bodyBuffer.Length) {
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Interface failed to send body data.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ConnectRequest request = JsonSerializer.Deserialize<ConnectRequest>(bodyBuffer);
|
|
|
|
ConnectResponse response = new ConnectResponse();
|
|
|
|
bool requestAccepted = false;
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(request.requestedIdentifier)) {
|
|
|
|
response.invalidName = true;
|
|
|
|
response.errorMsg = $"The requested identifier \"{request.requestedIdentifier}\" is null or whitespace.";
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log(response.errorMsg, LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
} else if (pipes.ContainsKey(request.requestedIdentifier)) {
|
|
|
|
response.invalidName = true;
|
|
|
|
response.nameTaken = true;
|
|
|
|
response.errorMsg = $"Interface requested identifier \"{request.requestedIdentifier}\" is taken.";
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log(response.errorMsg, LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
} else {
|
|
|
|
requestAccepted = true;
|
|
|
|
response.identifier = request.requestedIdentifier;
|
|
|
|
}
|
2021-04-10 18:57:38 +00:00
|
|
|
CancellationTokenSource cancelResponse = new CancellationTokenSource(TIMEOUT);
|
2021-04-09 02:36:08 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
await pipe.WriteAsync(JsonSerializer.SerializeToUtf8Bytes(response), cancelResponse.Token);
|
|
|
|
}
|
|
|
|
catch (AggregateException e)
|
|
|
|
{
|
|
|
|
e.Handle((exception) => exception is TaskCanceledException);
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Interface did not receive response within {TIMEOUT}ms.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
}
|
|
|
|
if (!requestAccepted) {
|
|
|
|
cancelResponse.Dispose();
|
|
|
|
await pipe.DisposeAsync();
|
|
|
|
Logger.Log($"Interface failed to connect.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger.Log($"Interface \"{response.identifier}\" connected.");
|
|
|
|
pipes[request.requestedIdentifier] = (pipe, Listen(response.identifier, pipe));
|
|
|
|
}
|
|
|
|
|
|
|
|
private async Task Listen(string identifier, NamedPipeServerStream pipe)
|
|
|
|
{
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Started listening to interface \"{identifier}\".", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
byte[] buffer = new byte[1024];
|
|
|
|
byte[] headerBuffer = new byte[sizeof(uint) * 2];
|
|
|
|
byte[] bodyBuffer = null;
|
|
|
|
|
|
|
|
int bodyFill = 0;
|
|
|
|
int headerFill = 0;
|
|
|
|
|
|
|
|
int readLength = 0;
|
|
|
|
|
|
|
|
CommunicableType? comType = null;
|
|
|
|
while ((readLength = await pipe.ReadAsync(buffer, 0, buffer.Length)) > 0)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < readLength; i++)
|
|
|
|
{
|
|
|
|
if (bodyBuffer == null)
|
|
|
|
{
|
|
|
|
headerBuffer[headerFill] = buffer[i];
|
|
|
|
headerFill++;
|
|
|
|
if (headerFill == headerBuffer.Length)
|
|
|
|
{
|
|
|
|
uint length;
|
|
|
|
CommunicableType type;
|
|
|
|
RequestHeader.Decode(headerBuffer, out type, out length);
|
|
|
|
bodyBuffer = new byte[length];
|
|
|
|
headerFill = 0;
|
|
|
|
comType = type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bodyBuffer[bodyFill] = buffer[i];
|
|
|
|
bodyFill++;
|
|
|
|
if (bodyFill == bodyBuffer.Length)
|
|
|
|
{
|
|
|
|
RequestQueue.Add((identifier, comType.Value, bodyBuffer));
|
|
|
|
bodyFill = 0;
|
|
|
|
bodyBuffer = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Pipe for interface \"{identifier}\" has closed.", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
(NamedPipeServerStream, Task) removedPipe;
|
2021-04-09 03:22:20 +00:00
|
|
|
pipes.TryRemove(identifier, out removedPipe);
|
2021-04-09 02:36:08 +00:00
|
|
|
await removedPipe.Item1.DisposeAsync();
|
2021-04-23 01:39:22 +00:00
|
|
|
Logger.Log($"Stopped listening to interface \"{identifier}\".", LogLevel.Debug);
|
2021-04-09 02:36:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|