mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 08:26:20 +00:00
Added support for IOptions injection, allowing options to be read from IConfiguration Small refactor on client options internals Updated HttpClient to be static field to be
133 lines
4.6 KiB
C#
133 lines
4.6 KiB
C#
using CryptoExchange.Net.Authentication;
|
|
using CryptoExchange.Net.Objects.Options;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CryptoExchange.Net.Clients
|
|
{
|
|
/// <summary>
|
|
/// The base for all clients, websocket client and rest client
|
|
/// </summary>
|
|
public abstract class BaseClient : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Version of the CryptoExchange.Net base library
|
|
/// </summary>
|
|
public Version CryptoExchangeLibVersion { get; } = typeof(BaseClient).Assembly.GetName().Version;
|
|
|
|
/// <summary>
|
|
/// Version of the client implementation
|
|
/// </summary>
|
|
public Version ExchangeLibVersion
|
|
{
|
|
get
|
|
{
|
|
lock(_versionLock)
|
|
{
|
|
if (_exchangeVersion == null)
|
|
_exchangeVersion = GetType().Assembly.GetName().Version;
|
|
|
|
return _exchangeVersion;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The name of the API the client is for
|
|
/// </summary>
|
|
public string Exchange { get; }
|
|
|
|
/// <summary>
|
|
/// Api clients in this client
|
|
/// </summary>
|
|
internal List<BaseApiClient> ApiClients { get; } = new List<BaseApiClient>();
|
|
|
|
/// <summary>
|
|
/// The log object
|
|
/// </summary>
|
|
protected internal ILogger _logger;
|
|
|
|
private object _versionLock = new object();
|
|
private Version _exchangeVersion;
|
|
|
|
/// <summary>
|
|
/// Provided client options
|
|
/// </summary>
|
|
public ExchangeOptions ClientOptions { get; private set; }
|
|
|
|
/// <summary>
|
|
/// ctor
|
|
/// </summary>
|
|
/// <param name="logger">Logger</param>
|
|
/// <param name="exchange">The name of the exchange this client is for</param>
|
|
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
|
protected BaseClient(ILoggerFactory? logger, string exchange)
|
|
#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
|
|
{
|
|
_logger = logger?.CreateLogger(exchange) ?? NullLoggerFactory.Instance.CreateLogger(exchange);
|
|
|
|
Exchange = exchange;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initialize the client with the specified options
|
|
/// </summary>
|
|
/// <param name="options"></param>
|
|
/// <exception cref="ArgumentNullException"></exception>
|
|
protected virtual void Initialize(ExchangeOptions options)
|
|
{
|
|
if (options == null)
|
|
throw new ArgumentNullException(nameof(options));
|
|
|
|
ClientOptions = options;
|
|
_logger.Log(LogLevel.Trace, $"Client configuration: {options}, CryptoExchange.Net: v{CryptoExchangeLibVersion}, {Exchange}.Net: v{ExchangeLibVersion}");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Set the API credentials for this client. All Api clients in this client will use the new credentials, regardless of earlier set options.
|
|
/// </summary>
|
|
/// <param name="credentials">The credentials to set</param>
|
|
protected virtual void SetApiCredentials<T>(T credentials) where T : ApiCredentials
|
|
{
|
|
foreach (var apiClient in ApiClients)
|
|
apiClient.SetApiCredentials(credentials);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Register an API client
|
|
/// </summary>
|
|
/// <param name="apiClient">The client</param>
|
|
protected T AddApiClient<T>(T apiClient) where T : BaseApiClient
|
|
{
|
|
if (ClientOptions == null)
|
|
throw new InvalidOperationException("Client should have called Initialize before adding API clients");
|
|
|
|
_logger.Log(LogLevel.Trace, $" {apiClient.GetType().Name}, base address: {apiClient.BaseAddress}");
|
|
ApiClients.Add(apiClient);
|
|
return apiClient;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Apply the options delegate to a new options instance
|
|
/// </summary>
|
|
protected static T ApplyOptionsDelegate<T>(Action<T>? del) where T: new()
|
|
{
|
|
var opts = new T();
|
|
del?.Invoke(opts);
|
|
return opts;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Dispose
|
|
/// </summary>
|
|
public virtual void Dispose()
|
|
{
|
|
_logger.Log(LogLevel.Debug, "Disposing client");
|
|
foreach (var client in ApiClients)
|
|
client.Dispose();
|
|
}
|
|
}
|
|
}
|