/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2012 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.detector.simple.support; import org.jboss.netty.channel.Channel; import org.jboss.netty.channel.ChannelHandlerContext; import org.jboss.netty.handler.codec.oneone.OneToOneDecoder; import org.opennms.netmgt.provision.detector.simple.response.MultilineOrientedResponse; /** * <p>MultilineOrientedResponseDecoder class.</p> * * @author Seth */ public class MultilineOrientedResponseDecoder extends OneToOneDecoder { public static final String DEFAULT_MULTILINE_INDICATOR = "-"; private final String m_multilineIndicator; private MultilineOrientedResponse m_response; /** * <p>Constructor for MultilineOrientedResponseDecoder.</p> * * @param multilineIndicator a {@link java.lang.String} object. */ public MultilineOrientedResponseDecoder() { this(DEFAULT_MULTILINE_INDICATOR); } /** * <p>Constructor for MultilineOrientedResponseDecoder.</p> * * @param multilineIndicator a {@link java.lang.String} object. */ public MultilineOrientedResponseDecoder(final String multilineIndicator) { m_multilineIndicator = multilineIndicator; } /** * This method decodes {@link String} objects into {@link MultilineOrientedResponse} instances * that contain each line of the string response. */ @Override protected Object decode(final ChannelHandlerContext ctx, final Channel channel, final Object msg) throws Exception { // We can only decode strings if (!(msg instanceof String)) { return msg; } // Construct a new response if there isn't one yet if (m_response == null) { m_response = new MultilineOrientedResponse(); } String response = (String)msg; m_response.addLine(response); if(checkIndicator(response)) { // Do nothing; if the multi-line indicator is present then // continue to accumulate lines into the m_response instance return null; } else { MultilineOrientedResponse retval = m_response; m_response = null; return retval; } } /** * <p>checkIndicator</p> * * @param line a {@link String} object. * @return a boolean. */ protected boolean checkIndicator(final String line) { return line.substring(3, 4).equals(getMultilineIndicator()); } /** * <p>getMultilineIndicator</p> * * @return a {@link java.lang.String} object. */ public String getMultilineIndicator() { return m_multilineIndicator; } }