/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2008-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.netmgt.provision.support; import org.jboss.netty.channel.ChannelHandlerContext; import org.jboss.netty.channel.ChannelStateEvent; import org.jboss.netty.channel.Channels; import org.jboss.netty.channel.ExceptionEvent; import org.jboss.netty.channel.MessageEvent; import org.jboss.netty.channel.SimpleChannelHandler; import org.opennms.core.utils.LogUtils; //import org.opennms.netmgt.provision.DetectFuture; import org.opennms.netmgt.provision.support.DetectFutureNettyImpl.ServiceDetectionFailedException; /** * <p>DetectorHandlerNettyImpl class.</p> * * CAUTION: This class is unused. This implementation has never been in production. * * @author Seth */ public class DetectorHandlerNettyImpl<Request, Response> extends SimpleChannelHandler { //private DetectFuture m_future; private AsyncClientConversation<Request, Response> m_conversation; /** * <p>setFuture</p> * * @param future a {@link org.opennms.netmgt.provision.DetectFuture} object. * @param <Request> a Request object. * @param <Response> a Response object. */ /* public void setFuture(DetectFuture future) { m_future = future; } /** * <p>getFuture</p> * * @return a {@link org.opennms.netmgt.provision.DetectFuture} object. * / public DetectFuture getFuture() { return m_future; } */ /** {@inheritDoc} */ @Override public void channelOpen(ChannelHandlerContext ctx, ChannelStateEvent event) throws Exception { LogUtils.debugf(this, "channelOpen()"); if(!getConversation().hasBanner() && getConversation().getRequest() != null) { Object request = getConversation().getRequest(); ctx.getChannel().write(request); } } /** {@inheritDoc} */ @Override public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent event) throws Exception { LogUtils.debugf(this, "channelClosed()"); /* if(!getFuture().isDone()) { getFuture().setServiceDetected(false); } */ } /* I'm not sure how to create a Netty equivalent to this... @Override public void sessionIdle(IoSession session, IdleStatus status) throws Exception { if(getConversation().hasBanner() && status == IdleStatus.READER_IDLE) { getFuture().setServiceDetected(false); session.close(true); } } */ /** {@inheritDoc} */ @Override public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent event) throws Exception { LogUtils.debugf(this, event.getCause(), "Caught a Throwable in %s", this.getClass().getName()); //getFuture().setException(event.getCause()); // Make sure that the channel is closed ctx.getChannel().close(); // P ctx.sendUpstream(event); } /** {@inheritDoc} */ @Override public void messageReceived(ChannelHandlerContext ctx, MessageEvent message) { try { final AsyncClientConversation<Request, Response> conversation = getConversation(); LogUtils.debugf(this, "Client Receiving: %s", message.getMessage().toString().trim()); LogUtils.debugf(this, "Conversation: %s", conversation); if(conversation.hasExchanges() && conversation.validate((Response)message.getMessage())) { Object request = conversation.getRequest(); if (request != null) { LogUtils.debugf(this, "Writing request: %s", request); ctx.getChannel().write(request); } else if (request == null && conversation.isComplete()) { LogUtils.debugf(this, "Closing channel: %s", conversation); //getFuture().setServiceDetected(true); ctx.getChannel().close(); } else { //getFuture().setServiceDetected(false); LogUtils.debugf(this, "Closing channel, detection failed: %s", conversation); ctx.getChannel().close(); Channels.fireExceptionCaught(ctx, new ServiceDetectionFailedException()); } } else { LogUtils.debugf(this, "Invalid response: %s", message.getMessage().toString().trim()); //getFuture().setServiceDetected(false); ctx.getChannel().close(); Channels.fireExceptionCaught(ctx, new ServiceDetectionFailedException()); } } catch(Throwable e) { LogUtils.debugf(this, e, "Exception caught!"); ctx.getChannel().close(); Channels.fireExceptionCaught(ctx, e); } } /** * <p>setConversation</p> * * @param conversation a {@link org.opennms.netmgt.provision.support.AsyncClientConversation} object. */ public void setConversation(AsyncClientConversation<Request, Response> conversation) { m_conversation = conversation; } /** * <p>getConversation</p> * * @return a {@link org.opennms.netmgt.provision.support.AsyncClientConversation} object. */ public AsyncClientConversation<Request, Response> getConversation() { return m_conversation; } }