|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using System;
- using System.Diagnostics;
- using System.IO.Pipelines;
- using System.Net.Sockets;
- using System.Runtime.CompilerServices;
- using System.Threading;
- using System.Threading.Tasks;
-
- namespace MQTTnet.AspNetCore.Client.Tcp
- {
- public class SocketAwaitable : ICriticalNotifyCompletion
- {
- private static readonly Action _callbackCompleted = () => { };
-
- private readonly PipeScheduler _ioScheduler;
-
- private Action _callback;
- private int _bytesTransferred;
- private SocketError _error;
-
- public SocketAwaitable(PipeScheduler ioScheduler)
- {
- _ioScheduler = ioScheduler;
- }
-
- public bool IsCompleted => ReferenceEquals(_callback, _callbackCompleted);
-
- public SocketAwaitable GetAwaiter() => this;
-
- public int GetResult()
- {
- Debug.Assert(ReferenceEquals(_callback, _callbackCompleted));
-
- _callback = null;
-
- if (_error != SocketError.Success)
- {
- throw new SocketException((int)_error);
- }
-
- return _bytesTransferred;
- }
-
- public void OnCompleted(Action continuation)
- {
- if (ReferenceEquals(_callback, _callbackCompleted) ||
- ReferenceEquals(Interlocked.CompareExchange(ref _callback, continuation, null), _callbackCompleted))
- {
- Task.Run(continuation);
- }
- }
-
- public void UnsafeOnCompleted(Action continuation)
- {
- OnCompleted(continuation);
- }
-
- public void Complete(int bytesTransferred, SocketError socketError)
- {
- _error = socketError;
- _bytesTransferred = bytesTransferred;
- var continuation = Interlocked.Exchange(ref _callback, _callbackCompleted);
-
- if (continuation != null)
- {
- _ioScheduler.Schedule(state => ((Action)state)(), continuation);
- }
- }
- }
- }
|