aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Data.Caching/src/ClientRetryManager.cs
blob: 97d3d3a1787ef537b39e6f94f8bc3cce79120e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using System;
using System.Threading.Tasks;
using System.Security.Cryptography;

using VNLib.Utils;
using VNLib.Net.Messaging.FBM.Client;

namespace VNLib.Data.Caching
{
    /// <summary>
    /// Manages a <see cref="FBMClientWorkerBase"/> reconnect policy
    /// </summary>
    public class ClientRetryManager<T> : VnDisposeable where T: IStatefulConnection
    {
        const int RetryRandMaxMsDelay = 1000;

        private readonly TimeSpan RetryDelay;
        private readonly T Client;
        private readonly Uri ServerUri;

        internal ClientRetryManager(T worker, TimeSpan delay, Uri serverUri)
        {
            this.Client = worker;
            this.RetryDelay = delay;
            this.ServerUri = serverUri;
            //Register disconnect listener
            worker.ConnectionClosed += Worker_Disconnected;
        }

        private void Worker_Disconnected(object? sender, EventArgs args)
        {
            //Exec retry on exit
            _ = RetryAsync().ConfigureAwait(false);
        }
       

        /// <summary>
        /// Raised before client is to be reconnected
        /// </summary>
        public event Action<T>? OnBeforeReconnect;
        /// <summary>
        /// Raised when the client fails to reconnect. Should return a value that instructs the 
        /// manager to reconnect
        /// </summary>
        public event Func<T, Exception, bool>? OnReconnectFailed;

        async Task RetryAsync()
        {
            
            //Begin random delay with retry ms
            int randomDelayMs = (int)RetryDelay.TotalMilliseconds;
            //random delay to add to prevent retry-storm
            randomDelayMs += RandomNumberGenerator.GetInt32(RetryRandMaxMsDelay);
            //Retry loop
            bool retry = true;
            while (retry)
            {
                try
                {
                    //Inform Listener for the retry
                    OnBeforeReconnect?.Invoke(Client);
                    //wait for delay before reconnecting
                    await Task.Delay(randomDelayMs);
                    //Reconnect async
                    await Client.ConnectAsync(ServerUri).ConfigureAwait(false);
                    break;
                }
                catch (Exception Ex)
                {
                    //Invoke error handler, may be null, incase exit
                    retry = OnReconnectFailed?.Invoke(Client, Ex) ?? false;
                }
            }
        }

        ///<inheritdoc/>
        protected override void Free()
        {
            //Unregister the event listener
            Client.ConnectionClosed -= Worker_Disconnected;
        }
    }
}