/******************************************************************************* * 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.core.resource; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.SQLException; import java.util.Enumeration; import java.util.Iterator; import java.util.Map; import java.util.Properties; import java.util.StringTokenizer; import javax.sql.DataSource; /** * The Vault handles policies for allocating/deallocating scarce resources and * stores application configuration properties. * * <p> * Since our code might be deployed in different environments, this class * provides a deployment-neutral way of retrieving scarce resources and * configuration properties. Our application code may be deployed as a daemon, * command-line interface, graphical user interface, applet, or servlet. Some of * the scarce resources we might like to have allocation policies for are * database connections, socket connections, RMI connections, CORBA connections, * or open temporary files. * </p> * * @author <A HREF="mailto:larry@opennms.org">Lawrence Karnowski </A> * @author <A HREF="mailto:weave@oculan.com">Brian Weaver </A> */ public class Vault extends Object { /** * Holds all the application configuration properties. */ protected static Properties properties = new Properties(System.getProperties()); /** * Stores the directory where the OpenNMS configuration files can be found. * The default is <em>/opt/OpenNMS</em>. */ protected static String homeDir = "/opt/opennms/"; private static DataSource s_dataSource; /** * Private, empty constructor so that this class cannot be instantiated. */ private Vault() { } /** * <p>setDataSource</p> * * @param dataSource a {@link javax.sql.DataSource} object. */ public static void setDataSource(DataSource dataSource) { if (dataSource == null) { throw new IllegalArgumentException("Cannot take null parameters."); } s_dataSource = dataSource; } /** * <p>getDataSource</p> * * @return a {@link javax.sql.DataSource} object. */ public static DataSource getDataSource() { if (s_dataSource == null) { throw new IllegalStateException("You must set a DataSource before requesting a data source."); } return s_dataSource; } /** * Retrieve a database connection from the datasource. * * @return a {@link java.sql.Connection} object. * @throws java.sql.SQLException if any. */ public static Connection getDbConnection() throws SQLException { if (s_dataSource == null) { throw new IllegalStateException("You must set a DataSource before requesting a database connection."); } return s_dataSource.getConnection(); } /** * Release a database connection. * * @param connection * the connection to release * @throws java.sql.SQLException * If a SQL error occurs while calling connection.close() on the * connection. */ public static void releaseDbConnection(Connection connection) throws SQLException { connection.close(); } /** * Set the application configuration properties. * * @param properties a {@link java.util.Properties} object. */ public static void setProperties(Properties properties) { if (properties == null) { throw new IllegalArgumentException("Cannot take null parameters."); } Vault.properties = properties; /* * For backwards compatibility; put all these * properties into the system properties. */ Enumeration<Object> keys = properties.keys(); Properties sysProps = System.getProperties(); while (keys.hasMoreElements()) { String key = (String) keys.nextElement(); sysProps.put(key, properties.get(key)); } } /** * Return the entire set of application configuration properties. * * @return a {@link java.util.Properties} object. */ public static Properties getProperties() { return properties; } /** * Return property from the configuration parameter list. * * @param key a {@link java.lang.String} object. * @return a {@link java.lang.String} object. */ public static String getProperty(String key) { return properties.getProperty(key); } /** * Set the directory so we will know where we can get the OpenNMS * configuration files. * * @param homeDir a {@link java.lang.String} object. */ public static void setHomeDir(String homeDir) { if (homeDir == null) { throw new IllegalArgumentException("Cannot take null parameters."); } Vault.homeDir = homeDir; Vault.properties.setProperty("opennms.home", homeDir); System.setProperty("opennms.home", homeDir); } /** * Get the directory that holds the OpenNMS configuration files. * * @return a {@link java.lang.String} object. */ public static String getHomeDir() { return homeDir; } /** * <P> * Adds new keys to the system properties using the passed key name a the * properties location instance. The passed key is used as a key to the * system {@link java.util.Properties#getPropertyget property} to find the * supplementary property information. The returned value should be in the * form of a list of file names, each separated by the system * {@link java.io.File#pathSeparatorCharpath separator} character. * </P> * * <P> * Once the list of files is recovered, each file is visited and loaded into * the system properties. If any file cannot be loaded due to an I/O error * then it is skipped as a whole. No partial key sets are loaded into the * system properties. Also, this method will not overwrite an existing key * in the currently loaded properties. * </P> * * @param key * The key name used to lookup the property path values. * @return True if all properties loaded correctly, false if any property * file failed to load. */ public static boolean supplementSystemPropertiesFromKey(String key) { boolean loadedOK = true; String path = System.getProperty(key); if (path != null) { StringTokenizer files = new StringTokenizer(path, File.pathSeparator); while (files.hasMoreTokens()) { try { File pfile = new File(files.nextToken()); if (pfile.exists() && pfile.isFile()) { Properties p = new Properties(); InputStream is = new FileInputStream(pfile); try { p.load(is); } catch (IOException ioE) { throw ioE; } finally { try { is.close(); } catch (IOException ioE) { /* do nothing */ } } Iterator<Map.Entry<Object,Object>> i = p.entrySet().iterator(); while (i.hasNext()) { Map.Entry<Object,Object> e = i.next(); if (System.getProperty((String) e.getKey()) == null) System.setProperty((String) e.getKey(), (String) e.getValue()); } } } catch (IOException ioE) { loadedOK = false; } } // end while more files to be processed } // end if property path no null return loadedOK; } }