1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| package com.opensymphony.oscache.plugins.clustersupport; |
6 |
| |
7 |
| import com.opensymphony.oscache.base.Cache; |
8 |
| import com.opensymphony.oscache.base.Config; |
9 |
| import com.opensymphony.oscache.base.FinalizationException; |
10 |
| import com.opensymphony.oscache.base.InitializationException; |
11 |
| |
12 |
| import org.apache.commons.logging.Log; |
13 |
| import org.apache.commons.logging.LogFactory; |
14 |
| |
15 |
| import javax.jms.*; |
16 |
| |
17 |
| import javax.naming.InitialContext; |
18 |
| |
19 |
| |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
| |
25 |
| public class JMSBroadcastingListener extends AbstractBroadcastingListener { |
26 |
| private final static Log log = LogFactory.getLog(JMSBroadcastingListener.class); |
27 |
| |
28 |
| |
29 |
| |
30 |
| |
31 |
| private Connection connection; |
32 |
| |
33 |
| |
34 |
| |
35 |
| |
36 |
| private MessageProducer messagePublisher; |
37 |
| |
38 |
| |
39 |
| |
40 |
| |
41 |
| private Session publisherSession; |
42 |
| |
43 |
| |
44 |
| |
45 |
| |
46 |
| private String clusterNode; |
47 |
| |
48 |
| |
49 |
| |
50 |
| |
51 |
| |
52 |
| |
53 |
| |
54 |
| |
55 |
| |
56 |
| |
57 |
| |
58 |
| |
59 |
| |
60 |
| |
61 |
| |
62 |
| |
63 |
| |
64 |
| |
65 |
| |
66 |
0
| public void initialize(Cache cache, Config config) throws InitializationException {
|
67 |
0
| super.initialize(cache, config);
|
68 |
| |
69 |
| |
70 |
0
| clusterNode = config.getProperty("cache.cluster.jms.node.name");
|
71 |
| |
72 |
0
| String topic = config.getProperty("cache.cluster.jms.topic.name");
|
73 |
0
| String topicFactory = config.getProperty("cache.cluster.jms.topic.factory");
|
74 |
| |
75 |
0
| if (log.isInfoEnabled()) {
|
76 |
0
| log.info("Starting JMS clustering (node name=" + clusterNode + ", topic=" + topic + ", topic factory=" + topicFactory + ")");
|
77 |
| } |
78 |
| |
79 |
0
| try {
|
80 |
| |
81 |
| |
82 |
0
| InitialContext jndi = new InitialContext();
|
83 |
| |
84 |
| |
85 |
0
| ConnectionFactory connectionFactory = (ConnectionFactory) jndi.lookup(topicFactory);
|
86 |
| |
87 |
| |
88 |
0
| connection = connectionFactory.createConnection();
|
89 |
| |
90 |
| |
91 |
0
| publisherSession = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
92 |
| |
93 |
0
| Session subSession = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
94 |
| |
95 |
| |
96 |
0
| Topic chatTopic = (Topic) jndi.lookup(topic);
|
97 |
| |
98 |
| |
99 |
0
| messagePublisher = publisherSession.createProducer(chatTopic);
|
100 |
| |
101 |
0
| MessageConsumer messageConsumer = subSession.createConsumer(chatTopic);
|
102 |
| |
103 |
| |
104 |
0
| messageConsumer.setMessageListener(new MessageListener() {
|
105 |
0
| public void onMessage(Message message) {
|
106 |
0
| try {
|
107 |
| |
108 |
0
| ObjectMessage objectMessage = null;
|
109 |
| |
110 |
0
| if (!(message instanceof ObjectMessage)) {
|
111 |
0
| log.error("Cannot handle message of type (class=" + message.getClass().getName() + "). Notification ignored.");
|
112 |
0
| return;
|
113 |
| } |
114 |
| |
115 |
0
| objectMessage = (ObjectMessage) message;
|
116 |
| |
117 |
| |
118 |
0
| if (!(objectMessage.getObject() instanceof ClusterNotification)) {
|
119 |
0
| log.error("An unknown cluster notification message received (class=" + objectMessage.getObject().getClass().getName() + "). Notification ignored.");
|
120 |
0
| return;
|
121 |
| } |
122 |
| |
123 |
0
| if (log.isDebugEnabled()) {
|
124 |
0
| log.debug(objectMessage.getObject());
|
125 |
| } |
126 |
| |
127 |
| |
128 |
0
| if (!objectMessage.getStringProperty("nodeName").equals(clusterNode)) {
|
129 |
| |
130 |
0
| ClusterNotification notification = (ClusterNotification) objectMessage.getObject();
|
131 |
0
| handleClusterNotification(notification);
|
132 |
| } |
133 |
| } catch (JMSException jmsEx) { |
134 |
0
| log.error("Cannot handle cluster Notification", jmsEx);
|
135 |
| } |
136 |
| } |
137 |
| }); |
138 |
| |
139 |
| |
140 |
0
| connection.start();
|
141 |
| } catch (Exception e) { |
142 |
0
| throw new InitializationException("Initialization of the JMSBroadcastingListener failed: " + e);
|
143 |
| } |
144 |
| } |
145 |
| |
146 |
| |
147 |
| |
148 |
| |
149 |
| |
150 |
| |
151 |
| |
152 |
0
| public void finialize() throws FinalizationException {
|
153 |
0
| try {
|
154 |
0
| if (log.isInfoEnabled()) {
|
155 |
0
| log.info("Shutting down JMS clustering...");
|
156 |
| } |
157 |
| |
158 |
0
| connection.close();
|
159 |
| |
160 |
0
| if (log.isInfoEnabled()) {
|
161 |
0
| log.info("JMS clustering shutdown complete.");
|
162 |
| } |
163 |
| } catch (JMSException e) { |
164 |
0
| log.warn("A problem was encountered when closing the JMS connection", e);
|
165 |
| } |
166 |
| } |
167 |
| |
168 |
0
| protected void sendNotification(ClusterNotification message) {
|
169 |
0
| try {
|
170 |
0
| ObjectMessage objectMessage = publisherSession.createObjectMessage();
|
171 |
0
| objectMessage.setObject(message);
|
172 |
| |
173 |
| |
174 |
0
| objectMessage.setStringProperty("nodeName", clusterNode);
|
175 |
0
| messagePublisher.send(objectMessage);
|
176 |
| } catch (JMSException e) { |
177 |
0
| log.error("Cannot send notification " + message, e);
|
178 |
| } |
179 |
| } |
180 |
| } |