blob: 1e8d5bef1029b71bba79b84d6a3f448ff7b7bc86 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jelly.tags.sql;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import javax.sql.DataSource;
import org.apache.commons.jelly.tags.Resources;
import org.apache.commons.jelly.util.ClassLoaderUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* <p>A simple <code>DataSource</code> wrapper for the standard
* <code>DriverManager</code> class.
*
* @author Hans Bergsten
*/
public class DataSourceWrapper implements DataSource {
/** The Log to which logging calls will be made. */
private static final Log log = LogFactory.getLog(DataSourceWrapper.class);
private String driverClassName;
private String jdbcURL;
private String userName;
private String password;
public void setDriverClassName(String driverClassName)
throws ClassNotFoundException, InstantiationException, IllegalAccessException {
if (log.isDebugEnabled()) {
log.debug("Loading JDBC driver: [" + driverClassName + "]");
}
this.driverClassName = driverClassName;
ClassLoaderUtils.getClassLoader(getClass()).loadClass(driverClassName).newInstance();
}
public void setJdbcURL(String jdbcURL) {
this.jdbcURL = jdbcURL;
}
public <T> T unwrap(Class<T> tClass) throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
public boolean isWrapperFor(Class<?> aClass) throws SQLException {
return false;
}
public void setUserName(String userName) {
this.userName = userName;
}
public void setPassword(String password) {
this.password = password;
}
/**
* Returns a Connection using the DriverManager and all
* set properties.
*/
public Connection getConnection() throws SQLException {
Connection conn = null;
if (userName != null) {
if (log.isDebugEnabled()) {
log.debug(
"Creating connection from url: " + jdbcURL + " userName: " + userName);
}
conn = DriverManager.getConnection(jdbcURL, userName, password);
}
else {
if (log.isDebugEnabled()) {
log.debug("Creating connection from url: " + jdbcURL);
}
conn = DriverManager.getConnection(jdbcURL);
}
if (log.isDebugEnabled()) {
log.debug(
"Created connection: " + conn );
}
return conn;
}
/**
* Always throws a SQLException. Username and password are set
* in the constructor and can not be changed.
*/
public Connection getConnection(String username, String password)
throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
/**
* Always throws a SQLException. Not supported.
*/
public int getLoginTimeout() throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
/**
* Always throws a SQLException. Not supported.
*/
public PrintWriter getLogWriter() throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
/**
* Always throws a SQLException. Not supported.
*/
public void setLoginTimeout(int seconds) throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
/**
* Always throws a SQLException. Not supported.
*/
public synchronized void setLogWriter(PrintWriter out) throws SQLException {
throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
}
}