/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2006-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.poller.remote.support; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.Map; import org.opennms.core.utils.LogUtils; import org.opennms.netmgt.model.OnmsMonitoringLocationDefinition; import org.opennms.netmgt.model.PollStatus; import org.opennms.netmgt.model.OnmsLocationMonitor.MonitorStatus; import org.opennms.netmgt.poller.DistributionContext; import org.opennms.netmgt.poller.ServiceMonitorLocator; import org.opennms.netmgt.poller.remote.PollerBackEnd; import org.opennms.netmgt.poller.remote.PollerConfiguration; import org.springframework.remoting.RemoteAccessException; /** * <p>ServerUnreachableAdaptor class.</p> * * @author <a href="mailto:brozow@opennms.org">Mathew Brozowski</a> * @author <a href="mailto:dj@opennms.org">DJ Gregor</a> * @author <a href="mailto:brozow@opennms.org">Mathew Brozowski</a> * @author <a href="mailto:dj@opennms.org">DJ Gregor</a> * @version $Id: $ */ public class ServerUnreachableAdaptor implements PollerBackEnd { private String m_monitorName; private PollerBackEnd m_remoteBackEnd; private boolean m_serverUnresponsive = false; /** * <p>setRemoteBackEnd</p> * * @param remoteBackEnd a {@link org.opennms.netmgt.poller.remote.PollerBackEnd} object. */ public void setRemoteBackEnd(final PollerBackEnd remoteBackEnd) { m_remoteBackEnd = remoteBackEnd; } /** * <p>checkForDisconnectedMonitors</p> */ public void checkForDisconnectedMonitors() { // this is a server side only method } /** * <p>configurationUpdated</p> */ public void configurationUpdated() { // this is a server side only method } /** * <p>getMonitoringLocations</p> * * @return a {@link java.util.Collection} object. */ public Collection<OnmsMonitoringLocationDefinition> getMonitoringLocations() { // leave this method as it is a 'before registration' method and we want errors to occur? return m_remoteBackEnd.getMonitoringLocations(); } /** {@inheritDoc} */ public PollerConfiguration getPollerConfiguration(final int locationMonitorId) { if (m_serverUnresponsive) { return new EmptyPollerConfiguration(); } try { final PollerConfiguration config = m_remoteBackEnd.getPollerConfiguration(locationMonitorId); m_serverUnresponsive = false; return config; } catch (final RemoteAccessException e) { m_serverUnresponsive = true; LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); return new EmptyPollerConfiguration(); } } /** {@inheritDoc} */ public MonitorStatus pollerCheckingIn(final int locationMonitorId, final Date currentConfigurationVersion) { // if we check in and get a remote exception then we switch to the EmptyConfiguration try { final MonitorStatus result = m_remoteBackEnd.pollerCheckingIn(locationMonitorId, currentConfigurationVersion); m_serverUnresponsive = false; return result; } catch (final RemoteAccessException e) { // we have failed to check in properly with the server m_serverUnresponsive = true; LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); return MonitorStatus.DISCONNECTED; } } /** {@inheritDoc} */ public boolean pollerStarting(final int locationMonitorId, final Map<String, String> pollerDetails) { try { final boolean pollerStarting = m_remoteBackEnd.pollerStarting(locationMonitorId, pollerDetails); // If false was returned, this location monitor doesn't exist on the server, so we can't get its name if (pollerStarting) { m_monitorName = m_remoteBackEnd.getMonitorName(locationMonitorId); } m_serverUnresponsive = false; return pollerStarting; } catch (final RemoteAccessException e) { m_serverUnresponsive = true; LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); return true; } } /** {@inheritDoc} */ public void pollerStopping(final int locationMonitorId) { m_remoteBackEnd.pollerStopping(locationMonitorId); } /** {@inheritDoc} */ public int registerLocationMonitor(final String monitoringLocationId) { // leave this method as it is a 'before registration' method and we want errors to occur? return m_remoteBackEnd.registerLocationMonitor(monitoringLocationId); } /** {@inheritDoc} */ public void reportResult(final int locationMonitorID, final int serviceId, final PollStatus status) { if (!m_serverUnresponsive) { try { m_remoteBackEnd.reportResult(locationMonitorID, serviceId, status); } catch (RemoteAccessException e) { m_serverUnresponsive = true; LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); } } } /** {@inheritDoc} */ public Collection<ServiceMonitorLocator> getServiceMonitorLocators(DistributionContext context) { try { return m_remoteBackEnd.getServiceMonitorLocators(context); } catch (RemoteAccessException e) { m_serverUnresponsive = true; LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); return Collections.emptyList(); } } /** {@inheritDoc} */ public String getMonitorName(int locationMonitorId) { try { return m_remoteBackEnd.getMonitorName(locationMonitorId); } catch (RemoteAccessException e) { LogUtils.warnf(this, e, "Server is unable to respond due to the following exception."); return (m_monitorName == null ? ""+locationMonitorId : m_monitorName); } } }