/******************************************************************************* * 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.collectd; import java.net.InetAddress; import java.util.Collection; import org.opennms.core.utils.InetAddressUtils; import org.opennms.core.utils.ThreadCategory; import org.opennms.netmgt.snmp.AggregateTracker; import org.opennms.netmgt.snmp.SnmpResult; /** * The SnmpNodeCollector class is responsible for performing the actual SNMP * data collection for a node over a specified network interface. The * SnmpNodeCollector implements the SnmpHandler class in order to receive * notifications when an SNMP reply is received or error occurs. * * The SnmpNodeCollector is provided a list of MIB objects to collect and an * interface over which to collect the data. Data collection can be via SNMPv1 * GetNext requests or SNMPv2 GetBulk requests depending upon the parms used to * construct the collector. * * @author <A HREF="mailto:mike@opennms.org">Mike </A> * @author <A>Jon Whetzel </A> */ public class SnmpNodeCollector extends AggregateTracker { /** * Used to store the collected MIB data. */ private SNMPCollectorEntry m_collectorEntry; /** * Holds the IP Address of the primary SNMP iterface. */ private String m_primaryIf; private SnmpCollectionSet m_collectionSet; /** * The class constructor is used to initialize the collector and send out * the initial SNMP packet requesting data. The data is then received and * store by the object. When all the data has been collected the passed * signaler object is <EM>notified</EM> using the notifyAll() method. * * @param address TODO * @param objList * The list of object id's to be collected. * @param collectionSet TODO */ public SnmpNodeCollector(InetAddress address, Collection<SnmpAttributeType> objList, SnmpCollectionSet collectionSet) { super(SnmpAttributeType.getCollectionTrackers(objList)); m_primaryIf = InetAddressUtils.str(address); m_collectionSet = collectionSet; m_collectorEntry = new SNMPCollectorEntry(objList, m_collectionSet); } /** * <p>log</p> * * @return a {@link org.opennms.core.utils.ThreadCategory} object. */ protected ThreadCategory log() { return ThreadCategory.getInstance(getClass()); } /** * Returns the list of all entry maps that can be used to access all the * information from the service polling. * * @return a {@link org.opennms.netmgt.collectd.SNMPCollectorEntry} object. */ public SNMPCollectorEntry getEntry() { return m_collectorEntry; } /** {@inheritDoc} */ protected void reportGenErr(String msg) { log().warn("genErr collecting data for node "+m_primaryIf+": "+msg); } /** {@inheritDoc} */ protected void reportNoSuchNameErr(String msg) { log().info("noSuchName collecting data for node "+m_primaryIf+": "+msg); } /** {@inheritDoc} */ protected void storeResult(SnmpResult res) { m_collectorEntry.storeResult(res); } /** * <p>getCollectionSet</p> * * @return a {@link org.opennms.netmgt.collectd.SnmpCollectionSet} object. */ public SnmpCollectionSet getCollectionSet() { return m_collectionSet; } }