using KianaBH.Util;
using System.Buffers;
using System.Net;
using System.Net.Sockets;
namespace KianaBH.KcpSharp.Base;
///
/// A Socket transport for upper-level connections.
///
///
public abstract class KcpSocketTransport : IKcpTransport, IDisposable where T : class, IKcpConversation
{
private readonly int _mtu;
private readonly UdpClient _udpListener;
private T? _connection;
private CancellationTokenSource? _cts;
private bool _disposed;
///
/// Construct a socket transport with the specified socket and remote endpoint.
///
/// The socket instance.
/// The maximum packet size that can be transmitted.
protected KcpSocketTransport(UdpClient listener, int mtu)
{
_udpListener = listener ?? throw new ArgumentNullException(nameof(listener));
_mtu = mtu;
if (mtu < 50) throw new ArgumentOutOfRangeException(nameof(mtu));
}
///
/// Get the upper-level connection instace. If Start is not called or the transport is closed,
/// will be thrown.
///
/// Start is not called or the transport is closed.
public T Connection => _connection ?? throw new InvalidOperationException();
///
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
///
public ValueTask SendPacketAsync(Memory packet, IPEndPoint endpoint,
CancellationToken cancellationToken = default)
{
if (_disposed) return default;
if (packet.Length > _mtu) return default;
return new ValueTask(_udpListener.SendAsync(packet.ToArray(), endpoint, cancellationToken).AsTask());
}
///
/// Create the upper-level connection instance.
///
/// The upper-level connection instance.
protected abstract T Activate();
///
/// Allocate a block of memory used to receive from socket.
///
/// The minimum size of the buffer.
/// The allocated memory buffer.
protected virtual IMemoryOwner AllocateBuffer(int size)
{
#if NEED_POH_SHIM
return MemoryPool.Shared.Rent(size);
#else
return new ArrayMemoryOwner(GC.AllocateUninitializedArray(size, true));
#endif
}
///
/// Handle exception thrown when receiving from remote endpoint.
///
/// The exception thrown.
/// Whether error should be ignored.
protected virtual bool HandleException(Exception ex)
{
return false;
}
///
/// Create the upper-level connection and start pumping packets from the socket to the upper-level connection.
///
public void Start()
{
if (_disposed) throw new ObjectDisposedException(nameof(KcpSocketTransport));
if (_connection is not null) throw new InvalidOperationException();
_connection = Activate();
if (_connection is null) throw new InvalidOperationException();
_cts = new CancellationTokenSource();
RunReceiveLoop();
}
private async void RunReceiveLoop()
{
var cancellationToken = _cts?.Token ?? new CancellationToken(true);
IKcpConversation? connection = _connection;
if (connection is null || cancellationToken.IsCancellationRequested) return;
using var memoryOwner = AllocateBuffer(_mtu);
try
{
while (!cancellationToken.IsCancellationRequested)
{
var bytesReceived = 0;
var error = false;
UdpReceiveResult result = default;
try
{
result = await _udpListener.ReceiveAsync(cancellationToken);
bytesReceived = result.Buffer.Length;
}
catch
{
}
if (bytesReceived != 0 && bytesReceived <= _mtu)
{
if (bytesReceived == KcpConnection.HANDSHAKE_SIZE)
await KcpListener.HandleHandshake(result);
else if (!error)
await connection.InputPakcetAsync(result, cancellationToken).ConfigureAwait(false);
}
}
}
catch (OperationCanceledException)
{
// Do nothing
}
catch (Exception ex)
{
HandleExceptionWrapper(ex);
}
}
private bool HandleExceptionWrapper(Exception ex)
{
bool result;
try
{
new Logger("KcpServer").Error("KCP Error:", ex);
result = HandleException(ex);
}
catch
{
result = false;
}
_connection?.SetTransportClosed();
var cts = Interlocked.Exchange(ref _cts, null);
if (cts is not null)
{
cts.Cancel();
cts.Dispose();
}
return result;
}
///
/// Dispose all the managed and the unmanaged resources used by this instance.
///
/// If managed resources should be disposed.
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
var cts = Interlocked.Exchange(ref _cts, null);
if (cts is not null)
{
cts.Cancel();
cts.Dispose();
}
_connection?.Dispose();
}
_connection = null;
_cts = null;
_disposed = true;
}
}
///
/// Dispose the unmanaged resources used by this instance.
///
~KcpSocketTransport()
{
Dispose(false);
}
}