/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 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.icmp; import java.net.InetAddress; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import org.opennms.core.utils.ThreadCategory; /** * <p>SinglePingResponseCallback class.</p> * * @author <a href="mailto:ranger@opennms.org">Ben Reed</a> * @author <a href="mailto:brozow@opennms.org">Mathew Brozowski</a> */ public class SinglePingResponseCallback implements PingResponseCallback { /** * Value of round-trip-time for the ping in microseconds. */ private Long m_responseTime = null; private InetAddress m_host; private Throwable m_error = null; private CountDownLatch m_latch = new CountDownLatch(1); /** * <p>Constructor for SinglePingResponseCallback.</p> * * @param host a {@link java.net.InetAddress} object. */ public SinglePingResponseCallback(InetAddress host) { m_host = host; } /** {@inheritDoc} */ public void handleResponse(InetAddress address, EchoPacket response) { try { info("got response for address " + address + ", thread " + response.getIdentifier() + ", seq " + response.getSequenceNumber() + " with a responseTime "+response.elapsedTime(TimeUnit.MILLISECONDS)+"ms"); m_responseTime = (long)Math.round(response.elapsedTime(TimeUnit.MICROSECONDS)); } finally { m_latch.countDown(); } } private ThreadCategory log() { return ThreadCategory.getInstance(this.getClass()); } /** {@inheritDoc} */ public void handleTimeout(InetAddress address, EchoPacket request) { try { assert(request != null); info("timed out pinging address " + address + ", thread " + request.getIdentifier() + ", seq " + request.getSequenceNumber()); } finally { m_latch.countDown(); } } /** {@inheritDoc} */ public void handleError(InetAddress address, EchoPacket request, Throwable t) { try { m_error = t; info("an error occurred pinging " + address, t); } finally { m_latch.countDown(); } } /** * <p>waitFor</p> * * @param timeout a long. * @throws java.lang.InterruptedException if any. */ public void waitFor(long timeout) throws InterruptedException { m_latch.await(timeout, TimeUnit.MILLISECONDS); } /** * <p>waitFor</p> * * @throws java.lang.InterruptedException if any. */ public void waitFor() throws InterruptedException { info("waiting for ping to "+m_host+" to finish"); m_latch.await(); info("finished waiting for ping to "+m_host+" to finish"); } public void rethrowError() throws Exception { if (m_error instanceof Error) { throw (Error)m_error; } else if (m_error instanceof Exception) { throw (Exception)m_error; } } /** * <p>Getter for the field <code>responseTime</code>.</p> * * @return a {@link java.lang.Long} object. */ public Long getResponseTime() { return m_responseTime; } public Throwable getError() { return m_error; } /** * <p>info</p> * * @param msg a {@link java.lang.String} object. */ public void info(String msg) { log().info(msg); } /** * <p>info</p> * * @param msg a {@link java.lang.String} object. * @param t a {@link java.lang.Throwable} object. */ public void info(String msg, Throwable t) { log().info(msg, t); } }