/* * Copyright 2011 Red Hat, Inc. and/or its affiliates. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA */ package org.infinispan.demo.nearcache.server; import org.hornetq.integration.bootstrap.HornetQBootstrapServer; import java.io.InputStream; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.notifications.Listener; import org.infinispan.notifications.cachelistener.annotation.CacheEntryModified; import org.infinispan.notifications.cachelistener.annotation.CacheEntryRemoved; import org.infinispan.notifications.cachelistener.event.CacheEntryEvent; import org.infinispan.notifications.cachelistener.event.CacheEntryModifiedEvent; import org.infinispan.server.core.CacheValue; import org.infinispan.server.core.Main; import org.infinispan.server.core.ProtocolServer; import org.infinispan.util.ByteArrayKey; import org.infinispan.util.logging.Log; import org.infinispan.util.logging.LogFactory; import javax.jms.BytesMessage; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.JMSException; import javax.jms.MessageProducer; import javax.jms.Session; import javax.jms.Topic; import javax.naming.Context; import javax.naming.InitialContext; /** * Hot Rod and JMS messaging server * * @author Galder ZamarreƱo * @since 5.1 */ public class MessagingHotRodDemo { private static final Log log = LogFactory.getLog(MessagingHotRodDemo.class); public static void main(String[] args) throws Exception { final InputStream in = System.in; // Start HornetQ server HornetQBootstrapServer.main(new String[]{"hornetq-beans.xml"}); // Start Infinispan remote data grid, listening on localhost:11222 Main.main(new String[]{"-r", "hotrod"}); ProtocolServer server = Main.getServer(); EmbeddedCacheManager cm = Main.getCacheManager(); Context ctx = new InitialContext(); Connection con = null; try { con = ((ConnectionFactory) ctx.lookup("/ConnectionFactory")) .createConnection(); con.start(); // Start delivery // Add a message producer to send invalidation messages to near cache clients Session s = con.createSession(false, Session.AUTO_ACKNOWLEDGE); // Set up the datagrid topic (TODO: Selective key/cache topics) Topic topic = (Topic) ctx.lookup("/topic/datagrid"); // Add invalidation listener for default cache cm.getCache().addListener(new InvalidationProducer(s, topic)); } finally { while (in.read() != -1) {} ctx.close(); if (con != null) con.close(); server.stop(); cm.stop(); System.exit(0); } } @Listener public static class InvalidationProducer { final MessageProducer msgProducer; final Session s; final Topic topic; public InvalidationProducer(Session s, Topic topic) throws JMSException { this.s = s; this.topic = topic; msgProducer = s.createProducer(topic); } @CacheEntryModified public void invalidateModifiedEntry( CacheEntryModifiedEvent<ByteArrayKey, CacheValue> e) throws JMSException { if (e.isPre() && e.getValue() != null) { log.infof("Entry modified"); invalidate(e); } } @CacheEntryRemoved public void invalidateRemovedEntry( CacheEntryEvent<ByteArrayKey, CacheValue> e) throws JMSException { if (e.isPre()) { log.infof("Entry removed"); invalidate(e); } } private void invalidate(CacheEntryEvent<ByteArrayKey, CacheValue> e) throws JMSException { byte[] keyBytes = e.getKey().getData(); // Hot Rod keys are byte[], so send them as they are in a BytesMessage BytesMessage msg = s.createBytesMessage(); // Create a message with the key that's been modified or removed msg.writeBytes(keyBytes); msgProducer.send(msg); log.infof("Send invalidation message %s", msg.getJMSMessageID()); } } }