summaryrefslogtreecommitdiff
path: root/java/java/cluster/src/org/apache/qpid/server/cluster/ServerHandlerRegistry.java
blob: 71c53146a861444f33205fbad9efd0ec04b7327b (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
/*
 *
 * 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.server.cluster;

import org.apache.log4j.Logger;
import org.apache.qpid.framing.AMQMethodBody;
import org.apache.qpid.server.state.AMQState;
import org.apache.qpid.server.state.AMQStateManager;
import org.apache.qpid.server.state.IllegalStateTransitionException;
import org.apache.qpid.server.state.StateAwareMethodListener;
import org.apache.qpid.server.cluster.util.LogMessage;

import java.util.HashMap;
import java.util.Map;

/**
 * An extension of server.AMQStateManager that allows different handlers to be registered.
 *
 */
class ServerHandlerRegistry extends AMQStateManager
{
    private final Logger _logger = Logger.getLogger(ServerHandlerRegistry.class);
    private final Map<AMQState, MethodHandlerRegistry> _handlers = new HashMap<AMQState, MethodHandlerRegistry>();

    ServerHandlerRegistry()
    {
        super(AMQState.CONNECTION_NOT_STARTED, false);
    }

    ServerHandlerRegistry(ServerHandlerRegistry s)
    {
        this();
        _handlers.putAll(s._handlers);
    }

    ServerHandlerRegistry(MethodHandlerFactory factory)
    {
        this();
        init(factory);
    }

    void setHandlers(AMQState state, MethodHandlerRegistry handlers)
    {
        _handlers.put(state, handlers);
    }

    void init(MethodHandlerFactory factory)
    {
        for (AMQState s : AMQState.values())
        {
            setHandlers(s, factory.register(s, new MethodHandlerRegistry()));
        }
    }

    protected <B extends AMQMethodBody> StateAwareMethodListener<B> findStateTransitionHandler(AMQState state, B frame) throws IllegalStateTransitionException
    {
        MethodHandlerRegistry registry = _handlers.get(state);
        StateAwareMethodListener<B> handler = (registry == null) ? null : registry.getHandler(frame);
        if (handler == null)
        {
            _logger.warn(new LogMessage("No handler for {0}, {1}", state, frame));
        }
        return handler;
    }

    <A extends AMQMethodBody, B extends Class<A>> void addHandler(AMQState state, B type, StateAwareMethodListener<A> handler)
    {
        MethodHandlerRegistry registry = _handlers.get(state);
        if (registry == null)
        {
            registry = new MethodHandlerRegistry();
            _handlers.put(state, registry);
        }
        registry.addHandler(type, handler);
    }
}