using Logging; using Utils; namespace Core { public interface IHttp { T OnClient(Func action); T OnClient(Func action, string description); IEndpoint CreateEndpoint(Address address, string baseUrl, string? logAlias = null); } internal class Http : IHttp { private static readonly object httpLock = new object(); private readonly ILog log; private readonly ITimeSet timeSet; private readonly Action onClientCreated; internal Http(ILog log, ITimeSet timeSet) : this(log, timeSet, DoNothing) { } internal Http(ILog log, ITimeSet timeSet, Action onClientCreated) { this.log = log; this.timeSet = timeSet; this.onClientCreated = onClientCreated; } public T OnClient(Func action) { return OnClient(action, GetDescription()); } public T OnClient(Func action, string description) { var client = GetClient(); return LockRetry(() => { return action(client); }, description); } public IEndpoint CreateEndpoint(Address address, string baseUrl, string? logAlias = null) { return new Endpoint(log, this, address, baseUrl, logAlias); } private string GetDescription() { return DebugStack.GetCallerName(skipFrames: 2); } private T LockRetry(Func operation, string description) { lock (httpLock) { return Time.Retry(operation, timeSet.HttpMaxNumberOfRetries(), timeSet.HttpCallRetryDelay(), description); } } private HttpClient GetClient() { var client = new HttpClient(); client.Timeout = timeSet.HttpCallTimeout(); onClientCreated(client); return client; } private static void DoNothing(HttpClient client) { } } }