mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-11 16:32:57 +00:00
e823114623
* Result types: * (Web)CallResult types are replaced by HttpResult, WebSocketResult and QueryResult with the same logic * Updated result types to record type * Result creation can be done with (Http/WebSocket/Query)Result.Ok(..) and .Fail(..) * Removed implicit result type conversion to bool, `if (result)` no longer works, instead use `if (result.Success)` * Replaced CallResult.SuccessResult with CallResult.Ok() * Fixed result object nullability hinting, for example Data might be null if Success isn't checked for true * Parameters & serialization: * Added support for `enabled` and `disabled` strings to bool converter * Removed ParameterCollection type, has been replaced by Parameters type * Removed ArraySerialization, OrderParameters and ParameterOrderComparer properties from RestApiClient, moved to ParameterSerializationsSettings * Updated RestRequestConfiguration in AuthenticationProvider.ProcessRequest to contain the full RequestDefinition instead of copied fields * Clients: * Updated Api client constructor logging parameter from ILogger to ILoggerFactory? * Added Api client constructor exchange name parameter * Added ToString overrides on base API types * Added Exchange property on BaseApiClient * Added ApiCredentials property on IRestApiClient and ISocketApiClient interfaces * Updated ILogger source from client name to topic specific client name * Removed logging from client creation * Fixed BaseRestClient SetApiCredentials not marked as virtual * Rest: * Added BaseAddress to RequestDefinition object * Updated RestApiClient AuthenticationProvider logic from private to protected and virtual * Removed RestApiClient.SendAsync baseAddress parameter removed * Removed RestApiClient.SendAsync without type parameter * WebSocket: * Updated MessageRouting definition into CreateForEvent for subscriptions and CreateForQuery for queries * Improved Query type safety with CeateForQuery which allows second parameter for specifying the result type * Renamed MessageRouter.CreateWithoutHandler to CreateVoid * Updated SocketApiClient.GetSocketConnection to check connection uri instead of Tag for finding compatible connections * Removed unused UnhandledMessageExpected property SocketApiClient * Fixed issue in SocketApiClient.GetSocketConnection causing requests to always wait the full max 10 seconds when there was a reconnecting socket * Shared APIs: * Updated Option definitions to always require the exchange name as first parameter * Added missing dedicated option types * Added Discover method on ISharedClient interface, returning info on supported capabilities and operations * Added SharedRequest GetParamValue helper method accepting multiple parameter names * Added ResetStaticExchangeParameters method on ExchangeParameters * Added Status property to SharedWithdrawal model * Added TradingModes property to SharedBalance model * Updated ExchangeSymbolCache to support multiple environments and additional key separation * Updated Shared ExchangeParameters parameter names to be case insensitive * Updated code comments * Replaced ExchangeResult with ExchangeCallResult type * Removed AsExchangeResult/ExchangeWebResult * Removed TradingMode from the response model, only maintained on models where it makes sense * Removed IListenKey support, listen keys now rely on internal management with TokenManager * Rate limiting: * Fixed websocket connection attempts counting towards rate limit even when server could not be reached * Removed host from rate limit methods, now part of the already provided RequestDefinition * Added amount parameter to RateLimit Reset method to allow partially resetting the limit * Added TokenManager implementation for automatic listenkey/token management * Added UserClientProvider base class * Added async streaming on UserDataTracker items with StreamUpdatesAsync * Added cancellation token support to UserDataTracker starting * Added Unit type for non-result types * Added ServerError constructor taking ErrorType and message to make it easier to create * Added SupportedEnvironments property to PlatformInfo * Updated SymbolOrderBook DoResyncAsync to return CallResult instead of CallResult<bool> which was redundant * Various small performance improvements
215 lines
8.9 KiB
C#
215 lines
8.9 KiB
C#
using CryptoExchange.Net.Objects;
|
|
using CryptoExchange.Net.RateLimiting.Interfaces;
|
|
using CryptoExchange.Net.RateLimiting.Trackers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
|
|
namespace CryptoExchange.Net.RateLimiting.Guards
|
|
{
|
|
/// <inheritdoc />
|
|
public class RateLimitGuard : IRateLimitGuard
|
|
{
|
|
/// <summary>
|
|
/// Apply guard per host
|
|
/// </summary>
|
|
public static Func<RequestDefinition, string?, string> PerHost { get; } = new Func<RequestDefinition, string?, string>((def, key) => def.BaseAddress);
|
|
/// <summary>
|
|
/// Apply guard per endpoint
|
|
/// </summary>
|
|
public static Func<RequestDefinition, string?, string> PerEndpoint { get; } = new Func<RequestDefinition, string?, string>((def, key) => def.Path + def.Method);
|
|
/// <summary>
|
|
/// Apply guard per connection
|
|
/// </summary>
|
|
public static Func<RequestDefinition, string?, string> PerConnection { get; } = new Func<RequestDefinition, string?, string>((def, key) => def.ConnectionId.ToString()!);
|
|
/// <summary>
|
|
/// Apply guard per API key
|
|
/// </summary>
|
|
public static Func<RequestDefinition, string?, string> PerApiKey { get; } = new Func<RequestDefinition, string?, string>((def, key) => key!);
|
|
/// <summary>
|
|
/// Apply guard per API key per endpoint
|
|
/// </summary>
|
|
public static Func<RequestDefinition, string?, string> PerApiKeyPerEndpoint { get; } = new Func<RequestDefinition, string?, string>((def, key) => key! + def.Path + def.Method);
|
|
|
|
private readonly IEnumerable<IGuardFilter> _filters;
|
|
private readonly Dictionary<string, IWindowTracker> _trackers;
|
|
private readonly RateLimitWindowType _windowType;
|
|
private readonly double? _decayRate;
|
|
private readonly int? _connectionWeight;
|
|
private readonly Func<RequestDefinition, string?, string> _keySelector;
|
|
private readonly SemaphoreSlim? _sharedGuardSemaphore;
|
|
|
|
/// <inheritdoc />
|
|
public string Name => "RateLimitGuard";
|
|
|
|
/// <inheritdoc />
|
|
public string Description => _windowType == RateLimitWindowType.Decay ? $"Limit of {Limit} with a decay rate of {_decayRate}" : $"Limit of {Limit} per {TimeSpan}";
|
|
|
|
/// <summary>
|
|
/// The limit per period
|
|
/// </summary>
|
|
public int Limit { get; }
|
|
/// <summary>
|
|
/// The time period for the limit
|
|
/// </summary>
|
|
public TimeSpan TimeSpan { get; }
|
|
|
|
/// <summary>
|
|
/// Whether this guard is shared between multiple gates
|
|
/// </summary>
|
|
public bool SharedGuard { get; }
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="keySelector">The rate limit key selector</param>
|
|
/// <param name="filter">Filter for rate limit items. Only when the rate limit item passes the filter the guard will apply</param>
|
|
/// <param name="limit">Limit per period</param>
|
|
/// <param name="timeSpan">Timespan for the period</param>
|
|
/// <param name="windowType">Type of rate limit window</param>
|
|
/// <param name="decayPerTimeSpan">The decay per timespan if windowType is DecayWindowTracker</param>
|
|
/// <param name="connectionWeight">The weight of a new connection</param>
|
|
/// <param name="shared">Whether this guard is shared between multiple gates</param>
|
|
public RateLimitGuard(Func<RequestDefinition, string?, string> keySelector, IGuardFilter filter, int limit, TimeSpan timeSpan, RateLimitWindowType windowType, double? decayPerTimeSpan = null, int? connectionWeight = null, bool shared = false)
|
|
: this(keySelector, new[] { filter }, limit, timeSpan, windowType, decayPerTimeSpan, connectionWeight, shared)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="keySelector">The rate limit key selector</param>
|
|
/// <param name="filters">Filters for rate limit items. Only when the rate limit item passes all filters the guard will apply</param>
|
|
/// <param name="limit">Limit per period</param>
|
|
/// <param name="timeSpan">Timespan for the period</param>
|
|
/// <param name="windowType">Type of rate limit window</param>
|
|
/// <param name="decayPerTimeSpan">The decay per timespan if windowType is DecayWindowTracker</param>
|
|
/// <param name="connectionWeight">The weight of a new connection</param>
|
|
/// <param name="shared">Whether this guard is shared between multiple gates</param>
|
|
public RateLimitGuard(Func<RequestDefinition, string?, string> keySelector, IEnumerable<IGuardFilter> filters, int limit, TimeSpan timeSpan, RateLimitWindowType windowType, double? decayPerTimeSpan = null, int? connectionWeight = null, bool shared = false)
|
|
{
|
|
_filters = filters;
|
|
_trackers = new Dictionary<string, IWindowTracker>();
|
|
_windowType = windowType;
|
|
Limit = limit;
|
|
TimeSpan = timeSpan;
|
|
SharedGuard = shared;
|
|
_keySelector = keySelector;
|
|
_decayRate = decayPerTimeSpan;
|
|
_connectionWeight = connectionWeight;
|
|
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore = new SemaphoreSlim(1, 1);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public LimitCheck Check(RateLimitItemType type, RequestDefinition definition, string? apiKey, int requestWeight, string? keySuffix)
|
|
{
|
|
foreach (var filter in _filters)
|
|
{
|
|
if (!filter.Passes(type, definition, apiKey))
|
|
return LimitCheck.NotApplicable;
|
|
}
|
|
|
|
if (type == RateLimitItemType.Connection)
|
|
requestWeight = _connectionWeight ?? requestWeight;
|
|
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Wait();
|
|
|
|
try
|
|
{
|
|
var key = _keySelector(definition, apiKey) + keySuffix;
|
|
if (!_trackers.TryGetValue(key, out var tracker))
|
|
{
|
|
tracker = CreateTracker();
|
|
_trackers.Add(key, tracker);
|
|
}
|
|
|
|
var delay = tracker.GetWaitTime(requestWeight);
|
|
if (delay == default)
|
|
return LimitCheck.NotNeeded(Limit, TimeSpan, tracker.Current);
|
|
|
|
return LimitCheck.Needed(delay, Limit, TimeSpan, tracker.Current);
|
|
}
|
|
finally
|
|
{
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Release();
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public RateLimitState ApplyWeight(RateLimitItemType type, RequestDefinition definition, string? apiKey, int requestWeight, string? keySuffix)
|
|
{
|
|
foreach (var filter in _filters)
|
|
{
|
|
if (!filter.Passes(type, definition, apiKey))
|
|
return RateLimitState.NotApplied;
|
|
}
|
|
|
|
if (type == RateLimitItemType.Connection)
|
|
requestWeight = _connectionWeight ?? requestWeight;
|
|
|
|
|
|
var key = _keySelector(definition, apiKey) + keySuffix;
|
|
var tracker = _trackers[key];
|
|
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Wait();
|
|
|
|
try
|
|
{
|
|
tracker.ApplyWeight(requestWeight);
|
|
}
|
|
finally
|
|
{
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Release();
|
|
}
|
|
|
|
return RateLimitState.Applied(Limit, TimeSpan, tracker.Current);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Reset(RateLimitItemType type, RequestDefinition definition, string? apiKey, string? keySuffix, int? amount)
|
|
{
|
|
foreach (var filter in _filters)
|
|
{
|
|
if (!filter.Passes(type, definition, apiKey))
|
|
return;
|
|
}
|
|
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Wait();
|
|
|
|
try
|
|
{
|
|
var key = _keySelector(definition, apiKey) + keySuffix;
|
|
if (!_trackers.TryGetValue(key, out var tracker))
|
|
return;
|
|
|
|
tracker.Reset(amount);
|
|
}
|
|
finally
|
|
{
|
|
if (SharedGuard)
|
|
_sharedGuardSemaphore!.Release();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new WindowTracker
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected IWindowTracker CreateTracker()
|
|
{
|
|
return _windowType == RateLimitWindowType.Sliding ? new SlidingWindowTracker(Limit, TimeSpan)
|
|
: _windowType == RateLimitWindowType.Fixed ? new FixedWindowTracker(Limit, TimeSpan)
|
|
: _windowType == RateLimitWindowType.FixedAfterFirst ? new FixedAfterStartWindowTracker(Limit, TimeSpan) :
|
|
new DecayWindowTracker(Limit, TimeSpan, _decayRate ?? throw new InvalidOperationException("Decay rate not provided"));
|
|
}
|
|
}
|
|
}
|