/*******************************************************************************
* 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.config;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.exolab.castor.xml.MarshalException;
import org.exolab.castor.xml.ValidationException;
import org.opennms.core.utils.ConfigFileConstants;
import org.opennms.core.xml.CastorUtils;
import org.opennms.netmgt.config.trapd.Snmpv3User;
import org.opennms.netmgt.config.trapd.TrapdConfiguration;
import org.opennms.netmgt.snmp.SnmpV3User;
import org.springframework.core.io.FileSystemResource;
/**
* This is the singleton class used to load the configuration for the OpenNMS
* Trapd from the trapd-configuration.xml.
*
* <strong>Note: </strong>Users of this class should make sure the
* <em>init()</em> is called before calling any other method to ensure the
* config is loaded before accessing other convenience methods.
*
* @author <a href="mailto:sowmya@opennms.org">Sowmya Nataraj </a>
* @author <a href="mailto:tarus@opennms.org">Tarus Balog </a>
* @author <a href="http://www.opennms.org/">OpenNMS </a>
*/
public final class TrapdConfigFactory implements TrapdConfig {
/**
* The singleton instance of this factory
*/
private static TrapdConfig m_singleton = null;
/**
* The config class loaded from the config file
*/
private TrapdConfiguration m_config;
/**
* This member is set to true if the configuration file has been loaded.
*/
private static boolean m_loaded = false;
/**
* Private constructor
*
* @exception java.io.IOException
* Thrown if the specified config file cannot be read
* @exception org.exolab.castor.xml.MarshalException
* Thrown if the file does not conform to the schema.
* @exception org.exolab.castor.xml.ValidationException
* Thrown if the contents do not match the required schema.
*/
private TrapdConfigFactory(String configFile) throws IOException, MarshalException, ValidationException {
m_config = CastorUtils.unmarshal(TrapdConfiguration.class, new FileSystemResource(configFile));
}
/**
* <p>Constructor for TrapdConfigFactory.</p>
*
* @param stream a {@link java.io.InputStream} object.
* @throws org.exolab.castor.xml.MarshalException if any.
* @throws org.exolab.castor.xml.ValidationException if any.
*/
public TrapdConfigFactory(InputStream stream) throws MarshalException, ValidationException {
m_config = CastorUtils.unmarshal(TrapdConfiguration.class, stream);
}
/**
* Load the config from the default config file and create the singleton
* instance of this factory.
*
* @exception java.io.IOException
* Thrown if the specified config file cannot be read
* @exception org.exolab.castor.xml.MarshalException
* Thrown if the file does not conform to the schema.
* @exception org.exolab.castor.xml.ValidationException
* Thrown if the contents do not match the required schema.
* @throws java.io.IOException if any.
* @throws org.exolab.castor.xml.MarshalException if any.
* @throws org.exolab.castor.xml.ValidationException if any.
*/
public static synchronized void init() throws IOException, MarshalException, ValidationException {
if (m_loaded) {
// init already called - return
// to reload, reload() will need to be called
return;
}
File cfgFile = ConfigFileConstants.getFile(ConfigFileConstants.TRAPD_CONFIG_FILE_NAME);
m_singleton = new TrapdConfigFactory(cfgFile.getPath());
m_loaded = true;
}
/**
* Reload the config from the default config file
*
* @exception java.io.IOException
* Thrown if the specified config file cannot be read/loaded
* @exception org.exolab.castor.xml.MarshalException
* Thrown if the file does not conform to the schema.
* @exception org.exolab.castor.xml.ValidationException
* Thrown if the contents do not match the required schema.
* @throws java.io.IOException if any.
* @throws org.exolab.castor.xml.MarshalException if any.
* @throws org.exolab.castor.xml.ValidationException if any.
*/
public static synchronized void reload() throws IOException, MarshalException, ValidationException {
m_singleton = null;
m_loaded = false;
init();
}
/**
* Return the singleton instance of this factory.
*
* @return The current factory instance.
* @throws java.lang.IllegalStateException
* Thrown if the factory has not yet been initialized.
*/
public static synchronized TrapdConfig getInstance() {
if (!m_loaded)
throw new IllegalStateException("The factory has not been initialized");
return m_singleton;
}
/**
* <p>setInstance</p>
*
* @param config a {@link org.opennms.netmgt.config.TrapdConfig} object.
*/
public static synchronized void setInstance(TrapdConfig config) {
m_singleton = config;
m_loaded = true;
}
public synchronized String getSnmpTrapAddress() {
return m_config.getSnmpTrapAddress();
}
/**
* Return the port on which SNMP traps should be received.
*
* @return the port on which SNMP traps should be received
*/
public synchronized int getSnmpTrapPort() {
return m_config.getSnmpTrapPort();
}
/**
* Return whether or not a newSuspect event should be sent when a trap is
* received from an unknown IP address.
*
* @return whether to generate newSuspect events on traps.
*/
public synchronized boolean getNewSuspectOnTrap() {
return m_config.getNewSuspectOnTrap();
}
public synchronized List<SnmpV3User> getSnmpV3Users() {
List<SnmpV3User> snmpUsers = new ArrayList<SnmpV3User>();
for (Snmpv3User user : m_config.getSnmpv3UserCollection()) {
snmpUsers.add(new SnmpV3User(
user.getEngineId(),
user.getSecurityName(),
user.getAuthProtocol(),
user.getAuthPassphrase(),
user.getPrivacyProtocol(),
user.getPrivacyPassphrase()));
}
return snmpUsers;
}
}