summaryrefslogtreecommitdiff
path: root/qpid/java/client/src/main/java/org/apache/qpid/jms/failover/FailoverRoundRobinServers.java
blob: 41ba4974ec93323f157eca5aefe47cb69ec557f0 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
package org.apache.qpid.jms.failover;

import org.apache.qpid.jms.BrokerDetails;
import org.apache.qpid.jms.ConnectionURL;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class FailoverRoundRobinServers implements FailoverMethod
{
    private static final Logger _logger = LoggerFactory.getLogger(FailoverRoundRobinServers.class);

    /** The default number of times to cycle through all servers */
    public static final int DEFAULT_CYCLE_RETRIES = 1;
    /** The default number of times to retry each server */
    public static final int DEFAULT_SERVER_RETRIES = 0;

    /** The index into the hostDetails array of the broker to which we are connected */
    private int _currentBrokerIndex = 0;

    /** The number of times to retry connecting for each server */
    private int _serverRetries;

    /** The current number of retry attempts made */
    private int _currentServerRetry = 0;

    /** The number of times to cycle through the servers */
    private int _cycleRetries;

    /** The current number of cycles performed. */
    private int _currentCycleRetries = 0;

    /** Array of BrokerDetail used to make connections. */
    protected ConnectionURL _connectionDetails;

    public FailoverRoundRobinServers(ConnectionURL connectionDetails)
    {
        if (!(connectionDetails.getBrokerCount() > 0))
        {
            throw new IllegalArgumentException("At least one broker details must be specified.");
        }

        _connectionDetails = connectionDetails;

        // There is no current broker at startup so set it to -1.
        _currentBrokerIndex = 0;

        String cycleRetries = _connectionDetails.getFailoverOption(ConnectionURL.OPTIONS_FAILOVER_CYCLE);

        _cycleRetries = DEFAULT_CYCLE_RETRIES;
        
        if (cycleRetries != null)
        {
            try
            {
                _cycleRetries = Integer.parseInt(cycleRetries);
            }
            catch (NumberFormatException nfe)
            {
                _logger.warn("Cannot set cycle Retries, " + cycleRetries + " is not a number. Using default: " + DEFAULT_CYCLE_RETRIES); 
            }
        }

        _currentCycleRetries = 0;

        _serverRetries = 0;
        _currentServerRetry = 0;
    }

    public void reset()
    {
        _currentBrokerIndex = 0;
        _currentCycleRetries = 0;
        _currentServerRetry = 0;
    }

    public boolean failoverAllowed()
    {
        _logger.info("==== Checking failoverAllowed() ====");
        _logger.info(toString());
        _logger.info("====================================");
        return ((_currentCycleRetries < _cycleRetries) || (_currentServerRetry < _serverRetries));
    }

    public void attainedConnection()
    {
        _currentCycleRetries = 0;
        _currentServerRetry = 0;
    }

    public BrokerDetails getCurrentBrokerDetails()
    {
        return _connectionDetails.getBrokerDetails(_currentBrokerIndex);
    }

    public BrokerDetails getNextBrokerDetails()
    {
        boolean doDelay = false;

        if (_currentBrokerIndex == (_connectionDetails.getBrokerCount() - 1))
        {
            if (_currentServerRetry < _serverRetries)
            {
                _logger.info("Trying " + _connectionDetails.getBrokerDetails(_currentBrokerIndex));
                doDelay= _currentBrokerIndex != 0;
                _currentServerRetry++;
            }
            else
            {
                _currentCycleRetries++;
                // failed to connect to first broker
                _currentBrokerIndex = 0;

                setBroker(_connectionDetails.getBrokerDetails(_currentBrokerIndex));

                // This is zero rather than -1 as we are already retrieving the details.
                _currentServerRetry = 0;
            }
            // else - should force client to stop as max retries has been reached.
        }
        else
        {
            if (_currentServerRetry < _serverRetries)
            {
                _logger.info("Trying " + _connectionDetails.getBrokerDetails(_currentBrokerIndex));
                doDelay= _currentBrokerIndex != 0;

                _currentServerRetry++;
            }
            else
            {
                _currentBrokerIndex++;

                setBroker(_connectionDetails.getBrokerDetails(_currentBrokerIndex));
                // This is zero rather than -1 as we are already retrieving the details.
                _currentServerRetry = 0;
            }
        }

        BrokerDetails broker = _connectionDetails.getBrokerDetails(_currentBrokerIndex);

        String delayStr = broker.getProperty(BrokerDetails.OPTIONS_CONNECT_DELAY);
        if (delayStr != null && doDelay)
        {
            Long delay = Long.parseLong(delayStr);
            _logger.info("Delay between connect retries:" + delay);
            try
            {
                Thread.sleep(delay);
            }
            catch (InterruptedException ie)
            {
                return null;
            }
        }
        else
        {
            // Only display if option not set. Not if deDelay==false.
            if (delayStr == null)
            {
                _logger.info("No delay between connect retries, use tcp://host:port?connectdelay='value' to enable.");
            }
        }

        return broker;
    }

    public void setBroker(BrokerDetails broker)
    {

        _connectionDetails.addBrokerDetails(broker);

        int index = _connectionDetails.getAllBrokerDetails().indexOf(broker);

        String serverRetries = broker.getProperty(BrokerDetails.OPTIONS_RETRY);

        if (serverRetries != null)
        {
            try
            {
                _serverRetries = Integer.parseInt(serverRetries);
            }
            catch (NumberFormatException nfe)
            {
                _serverRetries = DEFAULT_SERVER_RETRIES;
            }
        }

        _currentServerRetry = 0;
        _currentBrokerIndex = index;
    }

    public void setRetries(int maxRetries)
    {
        _cycleRetries = maxRetries;
    }

    public String methodName()
    {
        return "Cycle Servers";
    }

    public String toString()
    {
        StringBuffer sb = new StringBuffer();

        sb.append("Cycle Servers:\n");

        sb.append("Cycle Retries:");
        sb.append(_cycleRetries);
        sb.append("\nCurrent Cycle:");
        sb.append(_currentCycleRetries);
        sb.append("\nServer Retries:");
        sb.append(_serverRetries);
        sb.append("\nCurrent Retry:");
        sb.append(_currentServerRetry);
        sb.append("\nCurrent Broker:");
        sb.append(_currentBrokerIndex);
        sb.append("\n");

        for (int i = 0; i < _connectionDetails.getBrokerCount(); i++)
        {
            if (i == _currentBrokerIndex)
            {
                sb.append(">");
            }

            sb.append(_connectionDetails.getBrokerDetails(i));
            sb.append("\n");
        }

        return sb.toString();
    }
}