knownipmgr.java
来自「opennms得相关源码 请大家看看」· Java 代码 · 共 422 行
JAVA
422 行
//// This file is part of the OpenNMS(R) Application.//// OpenNMS(R) is Copyright (C) 2002-2003 The OpenNMS Group, Inc. All rights reserved.// OpenNMS(R) is a derivative work, containing both original code, included code and modified// code that was published under the GNU General Public License. Copyrights for modified // and included code are below.//// OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.//// Modifications://// 2003 Jan 31: Cleaned up some unused imports.//// Original code base Copyright (C) 1999-2001 Oculan Corp. All rights reserved.//// This program 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 2 of the License, or// (at your option) any later version.//// This program 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 this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.// // For more information contact: // OpenNMS Licensing <license@opennms.org>// http://www.opennms.org/// http://www.opennms.com///// Tab Size = 8//package org.opennms.netmgt.capsd;import java.net.InetAddress;import java.net.UnknownHostException;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import java.sql.Timestamp;import java.text.ParseException;import java.util.Comparator;import java.util.Date;import java.util.Map;import java.util.TreeMap;import org.apache.log4j.Category;import org.opennms.core.utils.ThreadCategory;import org.opennms.netmgt.EventConstants;import org.opennms.netmgt.config.DatabaseConnectionFactory;/** * This class represents a singular instance that is used to check address to * determine their pollablility. If the address has already been discovered or * is part of the exclude list then the manager can be used to check. * * @author <a href="mailto:weave@oculan.com">Brian Weaver </a> * @author <a href="http://www.opennms.org/">OpenNMS </a> * */final class KnownIPMgr { /** * The SQL statement used to extract the list of currently known IP * addresses from the IP Interface table. */ private final static String IP_LOAD_SQL = "SELECT ipAddr, nodeid, ipLastCapsdPoll FROM ipInterface"; /** * The SQL statment used to update the last capabilities check time. */ private final static String IP_UPDATE_TIME_SQL = "UPDATE ipInterface SET ipLastCapsdPoll = ? WHERE ipAddr = ? AND nodeid = ?"; /** * The set of all discovered addresses */ private static Map m_known = new TreeMap(AddrComparator.comparator); /** * This class is used to encapsulate the elements of importants from the IP * interface table in the OpenNMS database. The main elements are the * interface address, the node identifier, and the last time the interface * was checked. * * @author <a href="mailto:weave@oculan.com">Weave </a> * @author <a href="http://www.opennms.org">OpenNMS </a> * */ final static class IPInterface { /** * The internet address of the interface. */ private InetAddress m_interface; /** * The last date that the interface was checked for capabilities. */ private Timestamp m_lastCheck; /** * The node identifier for this interface. */ private int m_nodeid; /** * Constructs a new instance to represent the IP interface. * * @param iface * The IP Interface address. * @param nodeid * The node identifier for the address. * */ IPInterface(InetAddress iface, int nodeid) { m_interface = iface; m_nodeid = nodeid; m_lastCheck = new Timestamp((new Date()).getTime()); } /** * Constructs a new instance to represent the IP interface. * * @param iface * The IP Interface address. * @param nodeid * The node identifier for the address. * @param date * The last date this address was checked. * */ IPInterface(InetAddress iface, int nodeid, Timestamp date) { m_interface = iface; m_lastCheck = date; m_nodeid = nodeid; } /** * Constructs a new instance to represent the IP interface. * * @param iface * The IP Interface address. * @param nodeid * The node identifier for the address. * @param date * The last date this address was checked. * * @throws java.text.ParseException * Thrown if the date is malformed. */ IPInterface(InetAddress iface, int nodeid, String date) throws ParseException { m_interface = iface; m_nodeid = nodeid; java.util.Date tmpDate = EventConstants.parseToDate(date); m_lastCheck = new Timestamp(tmpDate.getTime()); } /** * Returns the internet address of the interface. */ InetAddress getAddress() { return m_interface; } /** * Returns the node identifier for this interface. * */ int getNodeId() { return m_nodeid; } /** * Returns the data on which the interface was last checked. */ Timestamp getLastCheckTime() { return m_lastCheck; } /** * Sets the time the interface was last checked. */ void setLastCheckTime(Timestamp time) { m_lastCheck = time; } /** * Updates the the last check time in the database to match the time * encapsulated in this instance. * * @param db * The database to update the result in. * * @throws java.sql.SQLException * Thrown if an error occurs updating the database entry. */ void update(Connection db) throws SQLException { PreparedStatement stmt = null; try { stmt = db.prepareStatement(KnownIPMgr.IP_UPDATE_TIME_SQL); stmt.setTimestamp(1, m_lastCheck); stmt.setString(2, m_interface.getHostAddress()); stmt.setInt(3, m_nodeid); stmt.executeUpdate(); } finally { if (stmt != null) stmt.close(); } } } /** * This class implements the {@link java.util.Comparator Comparator} * interface and provides the infomation required for a Tree to be sorted. * This implementation only works with objects of type * {@link java.net.InetAddress InetAddress}. * * @author <a href="mailto:weave@oculan.com">Brian Weaver </a> * @author <a href="http://www.opennms.org/">OpenNMS </a> * */ static final class AddrComparator implements Comparator { /** * Singular instance of the comparator that can be used in multiple * trees. */ static final AddrComparator comparator = new AddrComparator(); /** * The compare method returns the difference between to objects. This * method expects both instances to be instances of * {@link java.net.InetAddress InetAddress}or <code>null</code>. * * @param a * an instance of an InetAddress. * @param b * an instance of an InetAddress. * * @return less than zero if <tt>a</tt> < <tt>b</tt>, zero if * <tt>a</tt>==<tt>b</tt>, or greater than zero if * <tt>a</tt> > <tt>b</tt>. */ public int compare(Object a, Object b) { int rc = 0; if (a != null && b == null) { rc = -1; } else if (a == null && b != null) { rc = 1; } else if (a != null) // and b != null { byte[] ax = ((InetAddress) a).getAddress(); byte[] bx = ((InetAddress) b).getAddress(); for (int x = 0; x < ax.length && rc == 0; x++) rc = (ax[x] < 0 ? 256 + ax[x] : ax[x]) - (bx[x] < 0 ? 256 + bx[x] : bx[x]); } return rc; } } /** * Default construct for the instance. This constructor always throws an * exception to the caller. * * @throws java.lang.UnsupportedOperationException * Always thrown. * */ private KnownIPMgr() { throw new UnsupportedOperationException("Construction is not supported"); } /** * Clears and synchronizes the internal known IP address cache with the * current information contained in the database. To synchronize the cache * the method opens a new connection to the database, loads the address, and * then closes it's connection. * * @throws java.util.MissingResourceException * Thrown if the method cannot find the database configuration * file. * @throws java.sql.SQLException * Thrown if the connection cannot be created or a database * error occurs. * */ static synchronized void dataSourceSync() throws SQLException { Category log = ThreadCategory.getInstance(KnownIPMgr.class); // Get the database connection // Connection c = null; try { // open the connection // c = DatabaseConnectionFactory.getInstance().getConnection(); // Run with it // // c.setReadOnly(true); Statement s = c.createStatement(); ResultSet rs = s.executeQuery(IP_LOAD_SQL); if (rs != null) { m_known.clear(); while (rs.next()) { // extract the IP address. // String ipstr = rs.getString(1); InetAddress addr = null; try { addr = InetAddress.getByName(ipstr); } catch (UnknownHostException uhE) { log.warn("KnownIPMgr: failed to convert address " + ipstr, uhE); continue; } // get the node identifier // int nid = rs.getInt(2); // get the last check time // Timestamp lastCheck = rs.getTimestamp(3); m_known.put(addr, new IPInterface(addr, nid, lastCheck)); } rs.close(); } s.close(); } finally { try { if (c != null) c.close(); } catch (SQLException sqlE) { } } } /** * Returns true if the node has been discovered and added to the discovered * IP manager. * * @param addr * The IP Address to query. * * @return True if the address is known to the manager. * */ static synchronized boolean isKnown(InetAddress addr) { return m_known.containsKey(addr); } /** * Returns true if the node has been discovered and added to the discovered * IP manager. If the address cannot be converted to an * {@link java.net.InetAddressInetAddress} instance then an exception is * generated. * * @param ipAddr * The IP Address to query. * * @return True if the address is known to the manager. * * @throws java.io.UnknownHostException * Thrown if the address name could not be converted. * */ static boolean isKnown(String ipAddr) throws UnknownHostException { return isKnown(InetAddress.getByName(ipAddr)); } /** * Adds a new address to the list of discovered address. * * @param addr * The address to add to the discovered set. * * @return True if the address was not already discovered. */ static synchronized boolean addKnown(InetAddress addr) { return (m_known.put(addr, new Date()) == null); } /** * Adds a new address to the list of discovered address. * * @param addr * The address to add to the discovered set. * * @return True if the address was not already discovered. * * @throws java.net.UnknownHost * Thrown if the address cannot be converted. */ static boolean addKnown(String addr) throws UnknownHostException { return addKnown(InetAddress.getByName(addr)); } /** * Returns the current snapshot set of all the known internet addresses in * the set of known nodes. * * @return The arrry of all currently known InetAddress objects. * */ static synchronized InetAddress[] knownSet() { InetAddress[] set = new InetAddress[m_known.size()]; return (InetAddress[]) m_known.keySet().toArray(set); }} // end KnownIPMgr
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?