mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-22 15:26:17 +00:00
807 lines
29 KiB
C#
807 lines
29 KiB
C#
using CryptoExchange.Net.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using Microsoft.Extensions.Logging;
|
|
using CryptoExchange.Net.Objects;
|
|
using System.Net.WebSockets;
|
|
using System.IO;
|
|
using CryptoExchange.Net.Objects.Sockets;
|
|
using System.Text;
|
|
using System.Diagnostics;
|
|
using CryptoExchange.Net.Sockets.MessageParsing;
|
|
|
|
namespace CryptoExchange.Net.Sockets
|
|
{
|
|
/// <summary>
|
|
/// A single socket connection to the server
|
|
/// </summary>
|
|
public class SocketConnection
|
|
{
|
|
/// <summary>
|
|
/// Connection lost event
|
|
/// </summary>
|
|
public event Action? ConnectionLost;
|
|
|
|
/// <summary>
|
|
/// Connection closed and no reconnect is happening
|
|
/// </summary>
|
|
public event Action? ConnectionClosed;
|
|
|
|
/// <summary>
|
|
/// Connecting restored event
|
|
/// </summary>
|
|
public event Action<TimeSpan>? ConnectionRestored;
|
|
|
|
/// <summary>
|
|
/// The connection is paused event
|
|
/// </summary>
|
|
public event Action? ActivityPaused;
|
|
|
|
/// <summary>
|
|
/// The connection is unpaused event
|
|
/// </summary>
|
|
public event Action? ActivityUnpaused;
|
|
|
|
/// <summary>
|
|
/// Unhandled message event
|
|
/// </summary>
|
|
public event Action<SocketMessage>? UnhandledMessage;
|
|
|
|
/// <summary>
|
|
/// Unparsed message event
|
|
/// </summary>
|
|
public event Action<byte[]>? UnparsedMessage; // TODO not linked up
|
|
|
|
/// <summary>
|
|
/// The amount of subscriptions on this connection
|
|
/// </summary>
|
|
public int UserSubscriptionCount
|
|
{
|
|
get
|
|
{
|
|
lock(_listenersLock)
|
|
return _listeners.OfType<Subscription>().Count(h => h.UserSubscription);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a copy of the current message subscriptions
|
|
/// </summary>
|
|
public Subscription[] Subscriptions
|
|
{
|
|
get
|
|
{
|
|
lock(_listenersLock)
|
|
return _listeners.OfType<Subscription>().Where(h => h.UserSubscription).ToArray();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// If the connection has been authenticated
|
|
/// </summary>
|
|
public bool Authenticated { get; set; }
|
|
|
|
/// <summary>
|
|
/// If connection is made
|
|
/// </summary>
|
|
public bool Connected => _socket.IsOpen;
|
|
|
|
/// <summary>
|
|
/// The unique ID of the socket
|
|
/// </summary>
|
|
public int SocketId => _socket.Id;
|
|
|
|
/// <summary>
|
|
/// The current kilobytes per second of data being received, averaged over the last 3 seconds
|
|
/// </summary>
|
|
public double IncomingKbps => _socket.IncomingKbps;
|
|
|
|
/// <summary>
|
|
/// The connection uri
|
|
/// </summary>
|
|
public Uri ConnectionUri => _socket.Uri;
|
|
|
|
/// <summary>
|
|
/// The API client the connection is for
|
|
/// </summary>
|
|
public SocketApiClient ApiClient { get; set; }
|
|
|
|
/// <summary>
|
|
/// Time of disconnecting
|
|
/// </summary>
|
|
public DateTime? DisconnectTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Tag for identificaion
|
|
/// </summary>
|
|
public string Tag { get; set; }
|
|
|
|
/// <summary>
|
|
/// Additional properties for this connection
|
|
/// </summary>
|
|
public Dictionary<string, object> Properties { get; set; }
|
|
|
|
/// <summary>
|
|
/// If activity is paused
|
|
/// </summary>
|
|
public bool PausedActivity
|
|
{
|
|
get => _pausedActivity;
|
|
set
|
|
{
|
|
if (_pausedActivity != value)
|
|
{
|
|
_pausedActivity = value;
|
|
_logger.Log(LogLevel.Information, $"Socket {SocketId} paused activity: " + value);
|
|
if(_pausedActivity) _ = Task.Run(() => ActivityPaused?.Invoke());
|
|
else _ = Task.Run(() => ActivityUnpaused?.Invoke());
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Status of the socket connection
|
|
/// </summary>
|
|
public SocketStatus Status
|
|
{
|
|
get => _status;
|
|
private set
|
|
{
|
|
if (_status == value)
|
|
return;
|
|
|
|
var oldStatus = _status;
|
|
_status = value;
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} status changed from {oldStatus} to {_status}");
|
|
}
|
|
}
|
|
|
|
private bool _pausedActivity;
|
|
private readonly object _listenersLock;
|
|
private readonly List<IMessageProcessor> _listeners;
|
|
private readonly ILogger _logger;
|
|
private SocketStatus _status;
|
|
|
|
/// <summary>
|
|
/// The underlying websocket
|
|
/// </summary>
|
|
private readonly IWebsocket _socket;
|
|
|
|
/// <summary>
|
|
/// New socket connection
|
|
/// </summary>
|
|
/// <param name="logger">The logger</param>
|
|
/// <param name="apiClient">The api client</param>
|
|
/// <param name="socket">The socket</param>
|
|
/// <param name="tag"></param>
|
|
public SocketConnection(ILogger logger, SocketApiClient apiClient, IWebsocket socket, string tag)
|
|
{
|
|
_logger = logger;
|
|
ApiClient = apiClient;
|
|
Tag = tag;
|
|
Properties = new Dictionary<string, object>();
|
|
|
|
_socket = socket;
|
|
_socket.OnStreamMessage += HandleStreamMessage;
|
|
_socket.OnRequestSent += HandleRequestSentAsync;
|
|
_socket.OnOpen += HandleOpenAsync;
|
|
_socket.OnClose += HandleCloseAsync;
|
|
_socket.OnReconnecting += HandleReconnectingAsync;
|
|
_socket.OnReconnected += HandleReconnectedAsync;
|
|
_socket.OnError += HandleErrorAsync;
|
|
_socket.GetReconnectionUrl = GetReconnectionUrlAsync;
|
|
|
|
_listenersLock = new object();
|
|
_listeners = new List<IMessageProcessor>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for a socket opening
|
|
/// </summary>
|
|
protected virtual Task HandleOpenAsync()
|
|
{
|
|
Status = SocketStatus.Connected;
|
|
PausedActivity = false;
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for a socket closing without reconnect
|
|
/// </summary>
|
|
protected virtual Task HandleCloseAsync()
|
|
{
|
|
Status = SocketStatus.Closed;
|
|
Authenticated = false;
|
|
|
|
lock (_listenersLock)
|
|
{
|
|
foreach (var subscription in _listeners.OfType<Subscription>())
|
|
subscription.Confirmed = false;
|
|
|
|
foreach (var query in _listeners.OfType<Query>())
|
|
{
|
|
query.Fail("Connection interupted");
|
|
_listeners.Remove(query);
|
|
}
|
|
}
|
|
|
|
_ = Task.Run(() => ConnectionClosed?.Invoke());
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for a socket losing conenction and starting reconnect
|
|
/// </summary>
|
|
protected virtual Task HandleReconnectingAsync()
|
|
{
|
|
Status = SocketStatus.Reconnecting;
|
|
DisconnectTime = DateTime.UtcNow;
|
|
Authenticated = false;
|
|
|
|
lock (_listenersLock)
|
|
{
|
|
foreach (var subscription in _listeners.OfType<Subscription>())
|
|
subscription.Confirmed = false;
|
|
|
|
foreach (var query in _listeners.OfType<Query>())
|
|
{
|
|
query.Fail("Connection interupted");
|
|
_listeners.Remove(query);
|
|
}
|
|
}
|
|
|
|
_ = Task.Run(() => ConnectionLost?.Invoke());
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get the url to connect to when reconnecting
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected virtual async Task<Uri?> GetReconnectionUrlAsync()
|
|
{
|
|
return await ApiClient.GetReconnectUriAsync(this).ConfigureAwait(false);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for a socket which has reconnected
|
|
/// </summary>
|
|
protected virtual Task HandleReconnectedAsync()
|
|
{
|
|
Status = SocketStatus.Resubscribing;
|
|
|
|
lock (_listenersLock)
|
|
{
|
|
foreach (var query in _listeners.OfType<Query>())
|
|
{
|
|
query.Fail("Connection interupted");
|
|
_listeners.Remove(query);
|
|
}
|
|
}
|
|
|
|
// Can't wait for this as it would cause a deadlock
|
|
_ = Task.Run(async () =>
|
|
{
|
|
var reconnectSuccessful = await ProcessReconnectAsync().ConfigureAwait(false);
|
|
if (!reconnectSuccessful)
|
|
{
|
|
_logger.Log(LogLevel.Warning, $"Socket {SocketId} failed reconnect processing: {reconnectSuccessful.Error}, reconnecting again");
|
|
_ = _socket.ReconnectAsync().ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
Status = SocketStatus.Connected;
|
|
_ = Task.Run(() =>
|
|
{
|
|
ConnectionRestored?.Invoke(DateTime.UtcNow - DisconnectTime!.Value);
|
|
DisconnectTime = null;
|
|
});
|
|
}
|
|
});
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for an error on a websocket
|
|
/// </summary>
|
|
/// <param name="e">The exception</param>
|
|
protected virtual Task HandleErrorAsync(Exception e)
|
|
{
|
|
if (e is WebSocketException wse)
|
|
_logger.Log(LogLevel.Warning, $"Socket {SocketId} error: Websocket error code {wse.WebSocketErrorCode}, details: " + e.ToLogString());
|
|
else
|
|
_logger.Log(LogLevel.Warning, $"Socket {SocketId} error: " + e.ToLogString());
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handler for whenever a request is sent over the websocket
|
|
/// </summary>
|
|
/// <param name="requestId">Id of the request sent</param>
|
|
protected virtual Task HandleRequestSentAsync(int requestId)
|
|
{
|
|
Query query;
|
|
lock (_listenersLock)
|
|
{
|
|
query = _listeners.OfType<Query>().FirstOrDefault(x => x.Id == requestId);
|
|
}
|
|
|
|
if (query == null)
|
|
{
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} msg {requestId} - message sent, but not pending");
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
query.IsSend(ApiClient.ClientOptions.RequestTimeout);
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle a message
|
|
/// </summary>
|
|
/// <param name="stream"></param>
|
|
/// <param name="type"></param>
|
|
/// <returns></returns>
|
|
protected virtual async Task HandleStreamMessage(WebSocketMessageType type, Stream stream)
|
|
{
|
|
var sw = Stopwatch.StartNew();
|
|
|
|
// 1. Decrypt/Preprocess if necessary
|
|
stream = ApiClient.PreprocessStreamMessage(type, stream);
|
|
|
|
// 2. Read data into accessor
|
|
var messageData = new JsonNetMessageData(stream); // TODO if we let the implementation create this we can switch per implementation
|
|
var message = new SocketMessage(DateTime.UtcNow, messageData);
|
|
if (ApiClient.ApiOptions.OutputOriginalData ?? ApiClient.ClientOptions.OutputOriginalData)
|
|
{
|
|
stream.Position = 0;
|
|
using var textReader = new StreamReader(stream, Encoding.UTF8, false, 1024, true);
|
|
message.RawData = textReader.ReadToEnd();
|
|
|
|
_logger.LogTrace("Socket {SocketId} received {Data}", SocketId, message.RawData);
|
|
}
|
|
|
|
// 3. Determine the subscription interested in the messsage
|
|
var listenId = ApiClient.GetListenerIdentifier(message);
|
|
|
|
List<IMessageProcessor> processors;
|
|
lock(_listenersLock)
|
|
processors = _listeners.Where(s => s.ListenerIdentifiers.Contains(listenId)).ToList();
|
|
|
|
if (!processors.Any())
|
|
{
|
|
_logger.LogWarning("Socket {SocketId} received message not matched to any processor", SocketId);
|
|
UnhandledMessage?.Invoke(message);
|
|
return;
|
|
}
|
|
|
|
_logger.LogTrace("Socket {SocketId} {Count} processors matched to message with listener identifier {ListenerId}", SocketId, processors.Count, listenId);
|
|
var totalUserTime = 0;
|
|
foreach (var processor in processors)
|
|
{
|
|
// 4. Determine the type to deserialize to
|
|
var messageType = processor.GetMessageType(message);
|
|
if (messageType == null)
|
|
{
|
|
_logger.LogWarning("Socket {SocketId} received message not recognized by handler {Id}", SocketId, processor.Id);
|
|
continue;
|
|
}
|
|
|
|
// 5. Deserialize the message
|
|
object deserialized;
|
|
try
|
|
{
|
|
deserialized = message.Deserialize(messageType);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogWarning("Socket {SocketId} failed to deserialize message to type {Type}: {Exception}", SocketId, messageType.Name, ex.ToLogString());
|
|
continue;
|
|
}
|
|
|
|
// 6. Hand of the message to the subscription
|
|
try
|
|
{
|
|
var innerSw = Stopwatch.StartNew();
|
|
await processor.HandleAsync(this, new DataEvent<object>(deserialized, null, message.RawData, message.ReceiveTime, null)).ConfigureAwait(false);
|
|
totalUserTime += (int)innerSw.ElapsedMilliseconds;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogWarning("Socket {SocketId} user message processing failed: {Exception}", SocketId, ex.ToLogString());
|
|
if (processor is Subscription subscription)
|
|
subscription.InvokeExceptionHandler(ex);
|
|
}
|
|
}
|
|
|
|
stream.Dispose();
|
|
_logger.LogTrace($"Socket {SocketId} message processed in {(int)sw.ElapsedMilliseconds}ms ({totalUserTime - sw.ElapsedMilliseconds}ms parsing)");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Connect the websocket
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task<bool> ConnectAsync() => await _socket.ConnectAsync().ConfigureAwait(false);
|
|
|
|
/// <summary>
|
|
/// Retrieve the underlying socket
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public IWebsocket GetSocket() => _socket;
|
|
|
|
/// <summary>
|
|
/// Trigger a reconnect of the socket connection
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task TriggerReconnectAsync() => await _socket.ReconnectAsync().ConfigureAwait(false);
|
|
|
|
/// <summary>
|
|
/// Close the connection
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task CloseAsync()
|
|
{
|
|
if (Status == SocketStatus.Closed || Status == SocketStatus.Disposed)
|
|
return;
|
|
|
|
if (ApiClient.socketConnections.ContainsKey(SocketId))
|
|
ApiClient.socketConnections.TryRemove(SocketId, out _);
|
|
|
|
lock (_listenersLock)
|
|
{
|
|
foreach (var subscription in _listeners.OfType<Subscription>())
|
|
{
|
|
if (subscription.CancellationTokenRegistration.HasValue)
|
|
subscription.CancellationTokenRegistration.Value.Dispose();
|
|
}
|
|
}
|
|
|
|
await _socket.CloseAsync().ConfigureAwait(false);
|
|
_socket.Dispose();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Close a subscription on this connection. If all subscriptions on this connection are closed the connection gets closed as well
|
|
/// </summary>
|
|
/// <param name="subscription">Subscription to close</param>
|
|
/// <param name="unsubEvenIfNotConfirmed">Whether to send an unsub request even if the subscription wasn't confirmed</param>
|
|
/// <returns></returns>
|
|
public async Task CloseAsync(Subscription subscription, bool unsubEvenIfNotConfirmed = false)
|
|
{
|
|
lock (_listenersLock)
|
|
{
|
|
if (!_listeners.Contains(subscription))
|
|
return;
|
|
}
|
|
|
|
subscription.Closed = true;
|
|
|
|
if (Status == SocketStatus.Closing || Status == SocketStatus.Closed || Status == SocketStatus.Disposed)
|
|
return;
|
|
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} closing subscription {subscription.Id}");
|
|
if (subscription.CancellationTokenRegistration.HasValue)
|
|
subscription.CancellationTokenRegistration.Value.Dispose();
|
|
|
|
if ((unsubEvenIfNotConfirmed || subscription.Confirmed) && _socket.IsOpen)
|
|
await UnsubscribeAsync(subscription).ConfigureAwait(false);
|
|
|
|
if (Status == SocketStatus.Closing)
|
|
{
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} already closing");
|
|
return;
|
|
}
|
|
|
|
bool shouldCloseConnection;
|
|
lock (_listenersLock)
|
|
{
|
|
shouldCloseConnection = _listeners.OfType<Subscription>().All(r => !r.UserSubscription || r.Closed);
|
|
if (shouldCloseConnection)
|
|
Status = SocketStatus.Closing;
|
|
}
|
|
|
|
if (shouldCloseConnection)
|
|
{
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} closing as there are no more subscriptions");
|
|
await CloseAsync().ConfigureAwait(false);
|
|
}
|
|
|
|
lock (_listenersLock)
|
|
_listeners.Remove(subscription);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dispose the connection
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
Status = SocketStatus.Disposed;
|
|
_socket.Dispose();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Whether or not a new subscription can be added to this connection
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool CanAddSubscription() => Status == SocketStatus.None || Status == SocketStatus.Connected;
|
|
|
|
/// <summary>
|
|
/// Add a subscription to this connection
|
|
/// </summary>
|
|
/// <param name="subscription"></param>
|
|
public bool AddSubscription(Subscription subscription)
|
|
{
|
|
if (Status != SocketStatus.None && Status != SocketStatus.Connected)
|
|
return false;
|
|
|
|
lock (_listenersLock)
|
|
_listeners.Add(subscription);
|
|
|
|
if (subscription.UserSubscription)
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} adding new subscription with id {subscription.Id}, total subscriptions on connection: {UserSubscriptionCount}");
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a subscription on this connection by id
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
public Subscription? GetSubscription(int id)
|
|
{
|
|
lock (_listenersLock)
|
|
return _listeners.OfType<Subscription>().SingleOrDefault(s => s.Id == id);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a subscription on this connection by its subscribe request
|
|
/// </summary>
|
|
/// <param name="predicate">Filter for a request</param>
|
|
/// <returns></returns>
|
|
public Subscription? GetSubscriptionByRequest(Func<object?, bool> predicate)
|
|
{
|
|
lock (_listenersLock)
|
|
return _listeners.OfType<Subscription>().SingleOrDefault(s => predicate(s));
|
|
}
|
|
/// <summary>
|
|
/// Send a query request and wait for an answer
|
|
/// </summary>
|
|
/// <param name="query">Query to send</param>
|
|
/// <param name="onFinished">Action to run when query finishes</param>
|
|
/// <returns></returns>
|
|
public virtual async Task<CallResult> SendAndWaitQueryAsync(Query query, Action? onFinished = null)
|
|
{
|
|
await SendAndWaitIntAsync(query, onFinished).ConfigureAwait(false);
|
|
return query.Result ?? new CallResult(new ServerError("Timeout"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Send a query request and wait for an answer
|
|
/// </summary>
|
|
/// <typeparam name="T">Query response type</typeparam>
|
|
/// <param name="query">Query to send</param>
|
|
/// <param name="onFinished">Action to run when query finishes</param>
|
|
/// <returns></returns>
|
|
public virtual async Task<CallResult<T>> SendAndWaitQueryAsync<T>(Query<T> query, Action? onFinished = null)
|
|
{
|
|
await SendAndWaitIntAsync(query, onFinished).ConfigureAwait(false);
|
|
return query.TypedResult ?? new CallResult<T>(new ServerError("Timeout"));
|
|
}
|
|
|
|
private async Task SendAndWaitIntAsync(Query query, Action? onFinished)
|
|
{
|
|
lock(_listenersLock)
|
|
_listeners.Add(query);
|
|
|
|
var sendOk = Send(query.Id, query.Request, query.Weight);
|
|
if (!sendOk)
|
|
{
|
|
query.Fail("Failed to send");
|
|
return;
|
|
}
|
|
|
|
query.OnFinished = onFinished;
|
|
while (true)
|
|
{
|
|
if (!_socket.IsOpen)
|
|
{
|
|
query.Fail("Socket not open");
|
|
return;
|
|
}
|
|
|
|
if (query.Completed)
|
|
return;
|
|
|
|
await query.WaitAsync(TimeSpan.FromMilliseconds(500)).ConfigureAwait(false);
|
|
|
|
if (query.Completed)
|
|
return;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Send data over the websocket connection
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the object to send</typeparam>
|
|
/// <param name="requestId">The request id</param>
|
|
/// <param name="obj">The object to send</param>
|
|
/// <param name="nullValueHandling">How null values should be serialized</param>
|
|
/// <param name="weight">The weight of the message</param>
|
|
public virtual bool Send<T>(int requestId, T obj, int weight, NullValueHandling nullValueHandling = NullValueHandling.Ignore)
|
|
{
|
|
if(obj is string str)
|
|
return Send(requestId, str, weight);
|
|
else
|
|
return Send(requestId, JsonConvert.SerializeObject(obj, Formatting.None, new JsonSerializerSettings { NullValueHandling = nullValueHandling }), weight);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Send string data over the websocket connection
|
|
/// </summary>
|
|
/// <param name="data">The data to send</param>
|
|
/// <param name="weight">The weight of the message</param>
|
|
/// <param name="requestId">The id of the request</param>
|
|
public virtual bool Send(int requestId, string data, int weight)
|
|
{
|
|
_logger.Log(LogLevel.Trace, $"Socket {SocketId} msg {requestId} - sending messsage: {data}");
|
|
try
|
|
{
|
|
_socket.Send(requestId, data, weight);
|
|
return true;
|
|
}
|
|
catch(Exception)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private async Task<CallResult> ProcessReconnectAsync()
|
|
{
|
|
if (!_socket.IsOpen)
|
|
return new CallResult<bool>(new WebError("Socket not connected"));
|
|
|
|
bool anySubscriptions;
|
|
lock (_listenersLock)
|
|
anySubscriptions = _listeners.OfType<Subscription>().Any(s => s.UserSubscription);
|
|
if (!anySubscriptions)
|
|
{
|
|
// No need to resubscribe anything
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} nothing to resubscribe, closing connection");
|
|
_ = _socket.CloseAsync();
|
|
return new CallResult<bool>(true);
|
|
}
|
|
|
|
bool anyAuthenticated;
|
|
lock (_listenersLock)
|
|
anyAuthenticated = _listeners.OfType<Subscription>().Any(s => s.Authenticated);
|
|
if (anyAuthenticated)
|
|
{
|
|
// If we reconnected a authenticated connection we need to re-authenticate
|
|
var authResult = await ApiClient.AuthenticateSocketAsync(this).ConfigureAwait(false);
|
|
if (!authResult)
|
|
{
|
|
_logger.Log(LogLevel.Warning, $"Socket {SocketId} authentication failed on reconnected socket. Disconnecting and reconnecting.");
|
|
return authResult;
|
|
}
|
|
|
|
Authenticated = true;
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} authentication succeeded on reconnected socket.");
|
|
}
|
|
|
|
// Get a list of all subscriptions on the socket
|
|
List<Subscription> subList;
|
|
lock (_listenersLock)
|
|
subList = _listeners.OfType<Subscription>().ToList();
|
|
|
|
foreach(var subscription in subList)
|
|
{
|
|
subscription.ConnectionInvocations = 0;
|
|
var result = await ApiClient.RevitalizeRequestAsync(subscription).ConfigureAwait(false);
|
|
if (!result)
|
|
{
|
|
_logger.Log(LogLevel.Warning, $"Socket {SocketId} failed request revitalization: " + result.Error);
|
|
return result.As(false);
|
|
}
|
|
}
|
|
|
|
// Foreach subscription which is subscribed by a subscription request we will need to resend that request to resubscribe
|
|
for (var i = 0; i < subList.Count; i += ApiClient.ClientOptions.MaxConcurrentResubscriptionsPerSocket)
|
|
{
|
|
if (!_socket.IsOpen)
|
|
return new CallResult<bool>(new WebError("Socket not connected"));
|
|
|
|
var taskList = new List<Task<CallResult>>();
|
|
foreach (var subscription in subList.Skip(i).Take(ApiClient.ClientOptions.MaxConcurrentResubscriptionsPerSocket))
|
|
{
|
|
var subQuery = subscription.GetSubQuery(this);
|
|
if (subQuery == null)
|
|
continue;
|
|
|
|
taskList.Add(SendAndWaitQueryAsync(subQuery, () =>
|
|
{
|
|
subscription.HandleSubQueryResponse(subQuery.Response!);
|
|
}));
|
|
}
|
|
|
|
await Task.WhenAll(taskList).ConfigureAwait(false);
|
|
if (taskList.Any(t => !t.Result.Success))
|
|
return taskList.First(t => !t.Result.Success).Result;
|
|
}
|
|
|
|
foreach (var subscription in subList)
|
|
subscription.Confirmed = true;
|
|
|
|
if (!_socket.IsOpen)
|
|
return new CallResult<bool>(new WebError("Socket not connected"));
|
|
|
|
_logger.Log(LogLevel.Debug, $"Socket {SocketId} all subscription successfully resubscribed on reconnected socket.");
|
|
return new CallResult<bool>(true);
|
|
}
|
|
|
|
internal async Task UnsubscribeAsync(Subscription subscription)
|
|
{
|
|
var unsubscribeRequest = subscription.GetUnsubQuery();
|
|
if (unsubscribeRequest == null)
|
|
return;
|
|
|
|
await SendAndWaitQueryAsync(unsubscribeRequest).ConfigureAwait(false);
|
|
_logger.Log(LogLevel.Information, $"Socket {SocketId} subscription {subscription!.Id} unsubscribed");
|
|
}
|
|
|
|
internal async Task<CallResult> ResubscribeAsync(Subscription subscription)
|
|
{
|
|
if (!_socket.IsOpen)
|
|
return new CallResult(new UnknownError("Socket is not connected"));
|
|
|
|
var subQuery = subscription.GetSubQuery(this);
|
|
if (subQuery == null)
|
|
return new CallResult(null);
|
|
|
|
var result = await SendAndWaitQueryAsync(subQuery).ConfigureAwait(false);
|
|
subscription.HandleSubQueryResponse(subQuery.Response!);
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Status of the socket connection
|
|
/// </summary>
|
|
public enum SocketStatus
|
|
{
|
|
/// <summary>
|
|
/// None/Initial
|
|
/// </summary>
|
|
None,
|
|
/// <summary>
|
|
/// Connected
|
|
/// </summary>
|
|
Connected,
|
|
/// <summary>
|
|
/// Reconnecting
|
|
/// </summary>
|
|
Reconnecting,
|
|
/// <summary>
|
|
/// Resubscribing on reconnected socket
|
|
/// </summary>
|
|
Resubscribing,
|
|
/// <summary>
|
|
/// Closing
|
|
/// </summary>
|
|
Closing,
|
|
/// <summary>
|
|
/// Closed
|
|
/// </summary>
|
|
Closed,
|
|
/// <summary>
|
|
/// Disposed
|
|
/// </summary>
|
|
Disposed
|
|
}
|
|
}
|
|
}
|
|
|