182 lines
5.7 KiB
C#
182 lines
5.7 KiB
C#
using System.Diagnostics;
|
|
using System.Threading.Tasks.Sources;
|
|
|
|
namespace NahidaImpact.Kcp
|
|
{
|
|
internal sealed class KcpRawSendOperation : IValueTaskSource<bool>, IDisposable
|
|
{
|
|
private readonly AsyncAutoResetEvent<int> _notification;
|
|
private ManualResetValueTaskSourceCore<bool> _mrvtsc;
|
|
|
|
private bool _transportClosed;
|
|
private bool _disposed;
|
|
|
|
private bool _activeWait;
|
|
private bool _signaled;
|
|
private ReadOnlyMemory<byte> _buffer;
|
|
private CancellationToken _cancellationToken;
|
|
private CancellationTokenRegistration _cancellationRegistration;
|
|
|
|
public KcpRawSendOperation(AsyncAutoResetEvent<int> notification)
|
|
{
|
|
_notification = notification;
|
|
|
|
_mrvtsc = new ManualResetValueTaskSourceCore<bool>()
|
|
{
|
|
RunContinuationsAsynchronously = true
|
|
};
|
|
}
|
|
|
|
bool IValueTaskSource<bool>.GetResult(short token)
|
|
{
|
|
_cancellationRegistration.Dispose();
|
|
try
|
|
{
|
|
return _mrvtsc.GetResult(token);
|
|
}
|
|
finally
|
|
{
|
|
_mrvtsc.Reset();
|
|
lock (this)
|
|
{
|
|
_activeWait = false;
|
|
_signaled = false;
|
|
_cancellationRegistration = default;
|
|
}
|
|
}
|
|
}
|
|
|
|
ValueTaskSourceStatus IValueTaskSource<bool>.GetStatus(short token) => _mrvtsc.GetStatus(token);
|
|
void IValueTaskSource<bool>.OnCompleted(Action<object> continuation, object state, short token, ValueTaskSourceOnCompletedFlags flags) => _mrvtsc.OnCompleted(continuation, state, token, flags);
|
|
|
|
public ValueTask<bool> SendAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken = default)
|
|
{
|
|
short token;
|
|
lock (this)
|
|
{
|
|
if (_transportClosed || _disposed)
|
|
{
|
|
return new ValueTask<bool>(false);
|
|
}
|
|
if (_activeWait)
|
|
{
|
|
return new ValueTask<bool>(Task.FromException<bool>(ThrowHelper.NewConcurrentSendException()));
|
|
}
|
|
if (cancellationToken.IsCancellationRequested)
|
|
{
|
|
return new ValueTask<bool>(Task.FromCanceled<bool>(cancellationToken));
|
|
}
|
|
|
|
_activeWait = true;
|
|
Debug.Assert(!_signaled);
|
|
_buffer = buffer;
|
|
_cancellationToken = cancellationToken;
|
|
token = _mrvtsc.Version;
|
|
}
|
|
|
|
_cancellationRegistration = cancellationToken.UnsafeRegister(state => ((KcpRawSendOperation)state)!.SetCanceled(), this);
|
|
|
|
_notification.Set(buffer.Length);
|
|
return new ValueTask<bool>(this, token);
|
|
}
|
|
|
|
public bool CancelPendingOperation(Exception innerException, CancellationToken cancellationToken)
|
|
{
|
|
lock (this)
|
|
{
|
|
if (_activeWait && !_signaled)
|
|
{
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetException(ThrowHelper.NewOperationCanceledExceptionForCancelPendingSend(innerException, cancellationToken));
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private void SetCanceled()
|
|
{
|
|
lock (this)
|
|
{
|
|
if (_activeWait && !_signaled)
|
|
{
|
|
CancellationToken cancellationToken = _cancellationToken;
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetException(new OperationCanceledException(cancellationToken));
|
|
}
|
|
}
|
|
}
|
|
|
|
private void ClearPreviousOperation()
|
|
{
|
|
_signaled = true;
|
|
_buffer = default;
|
|
_cancellationToken = default;
|
|
}
|
|
|
|
public bool TryConsume(Memory<byte> buffer, out int bytesWritten)
|
|
{
|
|
lock (this)
|
|
{
|
|
if (_transportClosed || _disposed)
|
|
{
|
|
bytesWritten = 0;
|
|
return false;
|
|
}
|
|
if (!_activeWait)
|
|
{
|
|
bytesWritten = 0;
|
|
return false;
|
|
}
|
|
ReadOnlyMemory<byte> source = _buffer;
|
|
if (source.Length > buffer.Length)
|
|
{
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetException(ThrowHelper.NewMessageTooLargeForBufferArgument());
|
|
bytesWritten = 0;
|
|
return false;
|
|
}
|
|
source.CopyTo(buffer);
|
|
bytesWritten = source.Length;
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetResult(true);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public void SetTransportClosed()
|
|
{
|
|
lock (this)
|
|
{
|
|
if (_transportClosed || _disposed)
|
|
{
|
|
return;
|
|
}
|
|
if (_activeWait && !_signaled)
|
|
{
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetResult(false);
|
|
}
|
|
_transportClosed = true;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
lock (this)
|
|
{
|
|
if (_disposed)
|
|
{
|
|
return;
|
|
}
|
|
if (_activeWait && !_signaled)
|
|
{
|
|
ClearPreviousOperation();
|
|
_mrvtsc.SetResult(false);
|
|
}
|
|
_disposed = true;
|
|
_transportClosed = true;
|
|
}
|
|
}
|
|
}
|
|
}
|