summaryrefslogtreecommitdiff
path: root/java/client/src/main/java/org/apache/qpid/client/state/AMQStateManager.java
blob: 9c7d62670cda3a705ae81cacfb369a3186a5dba5 (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
/*
 *
 * 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.client.state;

import org.apache.qpid.AMQException;
import org.apache.qpid.client.protocol.AMQProtocolSession;
import org.apache.qpid.framing.*;
import org.apache.qpid.protocol.AMQMethodEvent;
import org.apache.qpid.protocol.AMQMethodListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Set;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.io.IOException;

/**
 * The state manager is responsible for managing the state of the protocol session. <p/>
 * For each {@link org.apache.qpid.client.protocol.AMQProtocolHandler} there is a separate state manager.
 *
 * The AMQStateManager is now attached to the {@link org.apache.qpid.client.protocol.AMQProtocolHandler} and that is the sole point of reference so that
 * As the {@link AMQProtocolSession} changes due to failover the AMQStateManager need not be copied around.
 *
 * The StateManager works by any component can wait for a state change to occur by using the following sequence.
 *
 * <li>StateWaiter waiter = stateManager.createWaiter(Set<AMQState> states);
 * <li> // Perform action that will cause state change
 * <li>waiter.await();
 *
 * The two step process is required as there is an inherit race condition between starting a process that will cause
 * the state to change and then attempting to wait for that change. The interest in the change must be first set up so
 * that any asynchrous errors that occur can be delivered to the correct waiters.
 */
public class AMQStateManager implements AMQMethodListener
{
    private static final Logger _logger = LoggerFactory.getLogger(AMQStateManager.class);

    private AMQProtocolSession _protocolSession;

    /** The current state */
    private AMQState _currentState;

    private final Object _stateLock = new Object();

    private static final long MAXIMUM_STATE_WAIT_TIME = Long.parseLong(System.getProperty("amqj.MaximumStateWait", "30000"));

    protected final List<StateWaiter> _waiters = new CopyOnWriteArrayList<StateWaiter>();
    private Exception _lastException;

    public AMQStateManager()
    {
        this(null);
    }

    public AMQStateManager(AMQProtocolSession protocolSession)
    {
        this(AMQState.CONNECTION_NOT_STARTED, protocolSession);
    }

    protected AMQStateManager(AMQState state, AMQProtocolSession protocolSession)
    {
        _protocolSession = protocolSession;
        _currentState = state;
    }

    public AMQState getCurrentState()
    {
        return _currentState;
    }

    public void changeState(AMQState newState)
    {
        _logger.debug("State changing to " + newState + " from old state " + _currentState);

        synchronized (_stateLock)
        {
            _currentState = newState;

            _logger.debug("Notififying State change to " + _waiters.size() + " : " + _waiters);

            for (StateWaiter waiter : _waiters)
            {
                waiter.received(newState);
            }
        }
    }

    public <B extends AMQMethodBody> boolean methodReceived(AMQMethodEvent<B> evt) throws AMQException
    {
        B method = evt.getMethod();

        //    StateAwareMethodListener handler = findStateTransitionHandler(_currentState, evt.getMethod());
        method.execute(_protocolSession.getMethodDispatcher(), evt.getChannelId());
        return true;
    }

    /**
     * Setting of the ProtocolSession will be required when Failover has been successfuly compeleted.
     *
     * The new {@link AMQProtocolSession} that has been re-established needs to be provided as that is now the
     * connection to the network.
     *
     * @param session The new protocol session
     */
    public void setProtocolSession(AMQProtocolSession session)
    {
        if (_logger.isInfoEnabled())
        {
            _logger.info("Setting ProtocolSession:" + session);
        }
        _protocolSession = session;
    }

    /**
     * Propogate error to waiters
     *
     * @param error The error to propogate.
     */
    public void error(Exception error)
    {
        if (error instanceof AMQException)
        {
            // AMQException should be being notified before closing the
            // ProtocolSession. Which will change the State to CLOSED.
            // if we have a hard error.
            if (((AMQException)error).isHardError())
            {
                changeState(AMQState.CONNECTION_CLOSING);
            }
        }
        else
        {
            // Be on the safe side here and mark the connection closed
            changeState(AMQState.CONNECTION_CLOSED);
        }

        if (_waiters.size() == 0)
        {
            _logger.error("No Waiters for error saving as last error:" + error.getMessage());
            _lastException = error;
        }
        for (StateWaiter waiter : _waiters)
        {
            _logger.error("Notifying Waiters(" + _waiters + ") for error:" + error.getMessage());
            waiter.error(error);
        }
    }

    /**
     * This provides a single place that the maximum time for state change to occur can be accessed.
     * It is currently set via System property amqj.MaximumStateWait
     *
     * @return long Milliseconds value for a timeout
     */
    public long getWaitTimeout()
    {
        return MAXIMUM_STATE_WAIT_TIME;
    }

    /**
     * Create and add a new waiter to the notifcation list.
     *
     * @param states The waiter will attempt to wait for one of these desired set states to be achived.
     *
     * @return the created StateWaiter.
     */
    public StateWaiter createWaiter(Set<AMQState> states)
    {
        final StateWaiter waiter;
        synchronized (_stateLock)
        {
            waiter = new StateWaiter(this, _currentState, states);

            _waiters.add(waiter);
        }

        return waiter;
    }

    /**
     * Remove the waiter from the notification list.
     *
     * @param waiter The waiter to remove.
     */
    public void removeWaiter(StateWaiter waiter)
    {
        synchronized (_stateLock)
        {
            _waiters.remove(waiter);
        }
    }

    public Exception getLastException()
    {
        return _lastException;
    }

    public void clearLastException()
    {
        _lastException = null;
    }
}