java/sql-dk/src/info/globalcode/sql/dk/configuration/Loader.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 17 May 2015 13:51:40 +0200
branchv_0
changeset 194 629c9c7eab01
parent 193 5a18a6adf7f9
child 196 76da38d49e81
permissions -rw-r--r--
JDBC driver class can be specified in the database configuration as an optional parameter (useful especially while embedding jdbc-dk-driver into other application that does not support automatic driver discovery)
     1 /**
     2  * SQL-DK
     3  * Copyright © 2015 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.configuration;
    19 
    20 import info.globalcode.sql.dk.*;
    21 import static info.globalcode.sql.dk.DatabaseConnection.JDBC_PROPERTY_USER;
    22 import static info.globalcode.sql.dk.DatabaseConnection.JDBC_PROPERTY_PASSWORD;
    23 import java.sql.Connection;
    24 import java.sql.Driver;
    25 import java.sql.DriverManager;
    26 import java.sql.SQLException;
    27 import java.util.logging.Level;
    28 import java.util.logging.Logger;
    29 import javax.xml.bind.JAXBContext;
    30 import javax.xml.bind.Unmarshaller;
    31 
    32 /**
    33  * Configuration loader – deserializes Configuration from the XML file.
    34  *
    35  * @author Ing. František Kučera (frantovo.cz)
    36  */
    37 public class Loader {
    38 
    39 	private static final Logger log = Logger.getLogger(Loader.class.getName());
    40 
    41 	public Configuration loadConfiguration() throws ConfigurationException {
    42 		try {
    43 			JAXBContext jaxb = JAXBContext.newInstance(Configuration.class.getPackage().getName(), Configuration.class.getClassLoader());
    44 			Unmarshaller u = jaxb.createUnmarshaller();
    45 			return (Configuration) u.unmarshal(Constants.CONFIG_FILE);
    46 		} catch (Exception e) {
    47 			throw new ConfigurationException("Unable to load configuration from " + Constants.CONFIG_FILE, e);
    48 		}
    49 	}
    50 
    51 	/**
    52 	 * JDBC connection should not be used directly in SQL-DK.
    53 	 *
    54 	 * @see DatabaseDefinition#connect(info.globalcode.sql.dk.configuration.Properties)
    55 	 * @param properties
    56 	 * @param databaseDefinition
    57 	 * @return
    58 	 * @throws java.sql.SQLException
    59 	 */
    60 	public static Connection jdbcConnect(DatabaseDefinition databaseDefinition, Properties properties) throws SQLException {
    61 		if (properties.hasProperty(JDBC_PROPERTY_PASSWORD)) {
    62 			log.log(Level.WARNING, "Passing DB password as CLI parameter is insecure!");
    63 		}
    64 		Properties credentials = new Properties();
    65 		credentials.add(new Property(JDBC_PROPERTY_USER, databaseDefinition.getUserName()));
    66 		credentials.add(new Property(JDBC_PROPERTY_PASSWORD, databaseDefinition.getPassword()));
    67 		credentials.setDefaults(databaseDefinition.getProperties());
    68 		properties.setDefaults(credentials);
    69 		java.util.Properties javaProperties = properties.getJavaProperties();
    70 
    71 		String driverClassName = databaseDefinition.getDriver();
    72 		final String url = databaseDefinition.getUrl();
    73 		if (driverClassName == null) {
    74 			log.log(Level.FINE, "Using DriverManager to create connection for „{0}“", url);
    75 			return DriverManager.getConnection(url, javaProperties);
    76 		} else {
    77 			log.log(Level.FINE, "Using custom Driver „{0}“ to create connection for „{1}“", new Object[]{driverClassName, url});
    78 			try {
    79 				Class<Driver> driverClass = (Class<Driver>) Class.forName(driverClassName);
    80 				Driver driver = driverClass.newInstance();
    81 				return driver.connect(url, javaProperties);
    82 			} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | SQLException e) {
    83 				throw new SQLException("Unable to connect usig specific driver: " + driverClassName, e);
    84 			}
    85 		}
    86 	}
    87 
    88 }