All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oracle.toplink.essentials.sessions.DatasourceLogin Maven / Gradle / Ivy

There is a newer version: 2.1-60f
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * // Copyright (c) 1998, 2007, Oracle. All rights reserved.
 * 
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package oracle.toplink.essentials.sessions;

import java.util.*;
import java.io.*;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.text.MessageFormat;
import oracle.toplink.essentials.internal.databaseaccess.*;
import oracle.toplink.essentials.exceptions.*;
import oracle.toplink.essentials.queryframework.*;
import oracle.toplink.essentials.sequencing.Sequence;
import oracle.toplink.essentials.Version;
import oracle.toplink.essentials.internal.helper.*;
import oracle.toplink.essentials.internal.localization.*;
import oracle.toplink.essentials.internal.security.SecurableObjectHolder;
import oracle.toplink.essentials.internal.helper.ConversionManager;
import oracle.toplink.essentials.internal.security.PrivilegedAccessHelper;
import oracle.toplink.essentials.internal.security.PrivilegedNewInstanceFromClass;

/**
 * 

* Purpose: * Hold the configuration information necessary to connect to a datasource. *

* Description: * This is an abstract class that defines the common datasource independent connection configuration. * It is extended to support specific datasources such as JDBC, JCA, XML, etc. */ public abstract class DatasourceLogin implements oracle.toplink.essentials.sessions.Login, Serializable, Cloneable { /** Version info */ private static final String versionStringTemplate = "{0} - {1} (Build {2})"; public static String versionString = null; /** Connection properties (e.g. user, password, and driver-specific settings) */ protected Properties properties; /** Implementation of platform-specific behaviors. */ protected Platform platform; /** The encrypted String that holds the expiry key */ protected static String encryptedString = null; /** The securable object holder and flag*/ private boolean isEncryptedPasswordSet; private transient SecurableObjectHolder securableObjectHolder; /** Provide a little flexibility for connecting to a database */ protected Connector connector; /** True if we use an external connection pool such as WebLogic's JTS driver */ protected boolean usesExternalConnectionPooling; /** True if we should use some external transaction service such as JTS. */ protected boolean usesExternalTransactionController; /** * By default concurrency is optimized and the cache is not locked during reads or writes, * This allows for concurrent reading and writing and should never cause any problems. If the application * uses no form of locking the last unit of work to merge changes will win, with no locking it is possible * only under this senerio for two unit of works to merge changes different than the database although highly unlikely * and if occured is the entire purpose of locking. This property allows for the isolation level of changes to the * cache to be configured for sever situation and it is not suggest that this be changed. */ protected int cacheTransactionIsolation = SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE; /** Reads and unit of work merges can occur concurrently. */ public static final int CONCURRENT_READ_WRITE = 1; /** Reads can occur concurrently but unit of work merges will be serialized. */ public static final int SYNCHRONIZED_WRITE = 2; /** Reads and unit of work merges will be serialized. */ public static final int SYNCHRONIZED_READ_ON_WRITE = 3; /** Writes to the cache (merge, object build/refresh will be synchronized * as will cache access (cloning) based on when access is required. */ public static final int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE = 4; /** Writes to the cache (merge, object build/refresh will be synchronized * as will cache access (cloning) based on database transaction. */ public static final int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE = 5; /** * PUBLIC: * Create a new login. */ public DatasourceLogin() { this(new DatasourcePlatform()); } /** * ADVANCED: * Create a new login for the given platform. */ public DatasourceLogin(Platform databasePlatform) { this.platform = databasePlatform; this.dontUseExternalConnectionPooling(); this.dontUseExternalTransactionController(); this.properties = new Properties(); this.properties.put("user", ""); this.properties.put("password", ""); this.isEncryptedPasswordSet = false; this.securableObjectHolder = new SecurableObjectHolder(); } /** * INTERNAL: * Return the encryption securable holder. * Lazy initialize to handle serialization. */ protected SecurableObjectHolder getSecurableObjectHolder() { if (securableObjectHolder == null) { securableObjectHolder = new SecurableObjectHolder(); securableObjectHolder.getSecurableObject(); } return securableObjectHolder; } /** * INTERNAL: * Clone the login. * This also clones the platform as it is internal to the login. */ public Object clone() { DatasourceLogin clone = null; try { clone = (DatasourceLogin)super.clone(); } catch (Exception exception) { // should not happen...do nothing } if (getConnector() != null) { clone.setConnector((Connector)getConnector().clone()); } clone.setDatasourcePlatform((Platform)getDatasourcePlatform().clone()); clone.setProperties((Properties)properties.clone()); return clone; } /** * INTERNAL: * Connect to the datasource, and return the driver level connection object. */ public Object connectToDatasource(Accessor accessor) throws DatabaseException { return getConnector().connect(prepareProperties(properties)); } /** * ADVANCED: * By default concurrency is optimized and the cache is not locked more than required during reads or writes, * This allows for virtual concurrent reading and writing and should never cause any problems. If the application * uses no form of locking the last unit of work to merge changes will win, with no locking it is possible * only under this senerio for two unit of works to merge changes different than the database although highly unlikely * and if occured is the entire purpose of locking and locking is the suggested solution if this is a problem. * This property allows for the isolation level of changes to the * cache to be configured for sever situations and it is not suggest that this be changed. *

Setting are:

    *
  • ConcurrentReadWrite - default *
  • SynchronizedWrite - only allow a single writer (i.e. unit of work merge) to the cache at once *
  • SynchronizedReadOnWrite - do not allow reading or other unit of work merge ehile a unit of work is in merge */ public int getCacheTransactionIsolation() { return cacheTransactionIsolation; } /** * ADVANCED: * Return the connector that will instantiate the connection. */ public Connector getConnector() { return connector; } /** * INTERNAL: * Return the database platform specific information. * This allows TopLink to configure certain advanced features for the database desired. * NOTE: this must only be used for relational specific usage and will not work for * non-relational datasources. */ public DatabasePlatform getPlatform() { try { return (DatabasePlatform)getDatasourcePlatform(); } catch (ClassCastException wrongType) { throw ValidationException.notSupportedForDatasource(); } } /** * PUBLIC: * Return the datasource platform specific information. * This allows TopLink to configure certain advanced features for the datasource desired. */ public Platform getDatasourcePlatform() { return platform; } /** * INTERNAL: * The properties are additional, driver-specific, connection information * to be passed to the driver.

    * NOTE: Do not set the password directly by getting the properties and * setting the "password" property directly. Use the method DatabaseLogin.setPassword(String). */ public Properties getProperties() { return properties; } /** * PUBLIC: * The properties are additional, driver-specific, connection information * to be passed to the driver.

    * NOTE: Do not set the password directly by getting the properties and * setting the "password" property directly. Use the method DatabaseLogin.setPassword(String). */ public Object getProperty(String name) { return getProperties().get(name); } /** * PUBLIC: * Return the qualifier for the all of the tables referenced by TopLink. * This can be the creator of the table or database name the table exists on. * This is required by some databases such as Oracle and DB2. * This should only be used if all of the tables have the same qualifier. * It can also be set on each descriptor when the table name is specified. */ public String getTableQualifier() { return getDatasourcePlatform().getTableQualifier(); } /** * PUBLIC: * The user name is the database login name. * Some databases do not require a user name or the user is obtained from the OS, * in this case the user name not be specified. */ public String getUserName() { return properties.getProperty("user"); } /** * PUBLIC: * Return the TopLink version. * @return version of TopLink */ public static String getVersion() { if (versionString == null) { Object[] args = { Version.getProduct(), Version.getVersion(), Version.getBuildNumber() }; versionString = MessageFormat.format(versionStringTemplate, args); } return versionString; } /** * SECURE: * The password in the login properties is encrypted. Return a clone * of the properties with the password decrypted. */ private Properties prepareProperties(Properties properties) { Properties result = (Properties)properties.clone(); String password = result.getProperty("password"); if (password != null) { // Fix for bug # 2700529 // The securable object is initialized on first call of // getSecurableObject. When setting an encrypted password // we don't make this call since it is already encrypted, hence, // we do not initialize the securable object on the holder. // // If neither setPassword or setEncryptedPassword is called // (example, user sets properties via the setProperties method), // when the user tries to connect they will get a null pointer // exception. So if the holder does not hold // a securable object or the setEncryptedPassword flag is not true, // don't bother trying to decrypt. if (getSecurableObjectHolder().hasSecurableObject() || isEncryptedPasswordSet) { result.put("password", getSecurableObjectHolder().getSecurableObject().decryptPassword(password)); } } return result; } /** * PUBLIC: * Some drivers don't like the "user" and "password" properties. * They can be removed with this method. */ public void removeProperty(String propertyName) { properties.remove(propertyName); } /** * ADVANCED: * By default concurrency is optimized and the cache is not locked more than required during reads or writes, * This allows for virtual concurrent reading and writing and should never cause any problems. If the application * uses no form of locking the last unit of work to merge changes will win, with no locking it is possible * only under this senerio for two unit of works to merge changes different than the database although highly unlikely * and if occured is the entire purpose of locking and locking is the suggested solution if this is a problem. * This property allows for the isolation level of changes to the * cache to be configured for sever situations and it is not suggest that this be changed. *

    Setting are:

      *
    • ConcurrentReadWrite - default *
    • SynchronizedWrite - only allow a single writer (i.e. unit of work merge) to the cache at once *
    • SynchronizedReadOnWrite - do not allow reading or other unit of work merge ehile a unit of work is in merge */ public void setCacheTransactionIsolation(int cacheTransactionIsolation) { this.cacheTransactionIsolation = cacheTransactionIsolation; } /** * PUBLIC: * Set the connector that will instantiate the connection. * As an example, to use a JNDI-supplied DataSource, use code * something like the following: *
      * session.getLogin().setConnector(new JNDIConnector(context, dataSourceName));
      * session.login(); *
      * where the context is an instance of a javax.naming.Context and * the dataSourceName refers to the name of the DataSource * within the context. */ public void setConnector(Connector connector) { this.connector = connector; } /** * PUBLIC: * The default value to substitute for database NULLs can be configured * on a per-class basis. * Example: login.setDefaultNullValue(long.class, new Long(0)) */ public void setDefaultNullValue(Class type, Object value) { getDatasourcePlatform().getConversionManager().setDefaultNullValue(type, value); } /** * Set the password. */ public void setPassword(String password) { if (password != null) { // first call to get will initialize the securable object setProperty("password", getSecurableObjectHolder().getSecurableObject().encryptPassword(password)); } else { // is null so remove the property removeProperty("password"); } } /** * Return the password. It will be encrypted. */ public String getPassword() { return properties.getProperty("password"); } /** * Set the encrypted password. */ public void setEncryptedPassword(String password) { // remember that we set an encrypted password // flag will be needed in prepareProperties. isEncryptedPasswordSet = true; if (password != null) { setProperty("password", password); } else {// is null so remove the property removeProperty("password"); } } /** * Sets the encryption class name */ public void setEncryptionClassName(String encryptionClassName) { getSecurableObjectHolder().setEncryptionClassName(encryptionClassName); } /** * INTERNAL: * Set the database platform specific information. * This allows TopLink to configure certain advanced features for the database desired. */ public void setPlatform(Platform platform) { setDatasourcePlatform(platform); } /** * PUBLIC: * Set the database platform specific information. * This allows TopLink to configure certain advanced features for the database desired. */ public void setDatasourcePlatform(Platform platform) { this.platform = platform; } /** * INTERNAL: * Return the name of the database platform class. */ public String getPlatformClassName() { return getDatasourcePlatform().getClass().getName(); } /** * INTERNAL: * Set the name of the Platform to be used. * Creates a new instance of the specified Class. */ public void setPlatformClassName(String platformClassName) throws ValidationException { Class platformClass = null; try { //First try loading with the Login's class loader platformClass = this.getClass().getClassLoader().loadClass(platformClassName); Platform platform = null; if (PrivilegedAccessHelper.shouldUsePrivilegedAccess()){ try { platform = (Platform)AccessController.doPrivileged(new PrivilegedNewInstanceFromClass(platformClass)); } catch (PrivilegedActionException exception) { throw exception.getException(); } } else { platform = (Platform)PrivilegedAccessHelper.newInstanceFromClass(platformClass); } usePlatform(platform); } catch(Exception cne) { //next try using ConversionManager try { platformClass = ConversionManager.loadClass(platformClassName); Platform platform = null; if (PrivilegedAccessHelper.shouldUsePrivilegedAccess()){ try { platform = (Platform)AccessController.doPrivileged(new PrivilegedNewInstanceFromClass(platformClass)); } catch (PrivilegedActionException exception) { throw ValidationException.platformClassNotFound(exception.getException(), platformClassName); } } else { platform = (Platform)PrivilegedAccessHelper.newInstanceFromClass(platformClass); } usePlatform(platform); } catch(Exception cne2) { //if still not found, throw exception throw ValidationException.platformClassNotFound(cne2, platformClassName); } } } /** * ADVANCED: * Set the database platform to be custom platform. */ public void usePlatform(Platform platform) { if (getDatasourcePlatform() != null) { getDatasourcePlatform().copyInto(platform); } setPlatform(platform); } /** * PUBLIC: * The properties are additional, driver-specific, connection information * to be passed to the JDBC driver. */ public void setProperties(Properties properties) { this.properties = properties; } /** * PUBLIC: * Some JDBC drivers require additional, driver-specific, properties. * Add the specified property to those to be passed to the JDBC driver. */ public void setProperty(String propertyName, Object propertyValue) { properties.put(propertyName, propertyValue); } /** * PUBLIC: * Set the default qualifier for all tables. * This can be the creator of the table or database name the table exists on. * This is required by some databases such as Oracle and DB2. */ public void setTableQualifier(String qualifier) { getDatasourcePlatform().setTableQualifier(qualifier); } /** * PUBLIC: * Override the default query for returning a timestamp from the server. */ public void setTimestampQuery(ValueReadQuery timestampQuery) { getDatasourcePlatform().setTimestampQuery(timestampQuery); } /** * PUBLIC: * The user name is the database login name. * Some databases do not require a user name or the user is obtained from the OS, * in this case this should not be specified. */ public void setUserName(String name) { if (name != null) { setProperty("user", name); } } /** * PUBLIC: * Return whether TopLink uses some external connection pooling service such as a JDBC 2.0 driver. */ public void setUsesExternalConnectionPooling(boolean usesExternalConnectionPooling) { this.usesExternalConnectionPooling = usesExternalConnectionPooling; } /** * PUBLIC: * Return whether TopLink uses some external transaction service such as JTS. */ public void setUsesExternalTransactionController(boolean usesExternalTransactionController) { this.usesExternalTransactionController = usesExternalTransactionController; } /** * PUBLIC: * Do not use external connection pooling. This is appropriate if using regular * TopLink connection pooling and regular JDBC drivers. * * @see #useExternalConnectionPooling() */ public void dontUseExternalConnectionPooling() { setUsesExternalConnectionPooling(false); } /** * PUBLIC: * Let TopLink control transactions instead of some external transaction * service such as JTS. * * @see #useExternalTransactionController() */ public void dontUseExternalTransactionController() { setUsesExternalTransactionController(false); } /** * INTERNAL: * Used for cache isolation. */ public boolean shouldAllowConcurrentReadWrite() { return getCacheTransactionIsolation() == CONCURRENT_READ_WRITE; } /** * INTERNAL: * Used for cache isolation. */ public boolean shouldSynchronizedReadOnWrite() { return getCacheTransactionIsolation() == SYNCHRONIZED_READ_ON_WRITE; } /** * INTERNAL: * Used for Cache Isolation. Causes TopLink to lock at the class level on * cache updates. */ public boolean shouldSynchronizeWrites() { return getCacheTransactionIsolation() == SYNCHRONIZED_WRITE; } /** * INTERNAL: * Used for Cache Isolation. Causes TopLink to lock at the object level on * cache updates and cache access. */ public boolean shouldSynchronizeObjectLevelReadWrite(){ return getCacheTransactionIsolation() == SYNCRONIZED_OBJECT_LEVEL_READ_WRITE; } /** * INTERNAL: * Used for Cache Isolation. Causes TopLink to lock at the object level on * cache updates and cache access, based on database transaction. */ public boolean shouldSynchronizeObjectLevelReadWriteDatabase(){ return getCacheTransactionIsolation() == SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE; } /** * PUBLIC: * Return whether TopLink uses some external connection pooling * (e.g. WebLogic's JTS driver). * * @see #useExternalConnectionPooling() * @see #dontUseExternalConnectionPooling() */ public boolean shouldUseExternalConnectionPooling() { return usesExternalConnectionPooling; } /** * PUBLIC: * Return whether TopLink uses some external transaction service such as JTS. * * @see #useExternalTransactionController() * @see #dontUseExternalTransactionController() */ public boolean shouldUseExternalTransactionController() { return usesExternalTransactionController; } /** * PUBLIC: * Use external connection pooling. * * @see #dontUseExternalConnectionPooling() * @see #shouldUseExternalConnectionPooling() */ public void useExternalConnectionPooling() { setUsesExternalConnectionPooling(true); } /** * PUBLIC: * Use an external transaction controller such as a JTS service * * @see #dontUseExternalTransactionController() * @see #shouldUseExternalTransactionController() */ public void useExternalTransactionController() { setUsesExternalTransactionController(true); } /** * PUBLIC: * Print all of the connection information. */ public String toString() { StringWriter stringWriter = new StringWriter(); PrintWriter writer = new PrintWriter(stringWriter); writer.write(Helper.getShortClassName(getClass())); writer.println("("); writer.println("\t" + ToStringLocalization.buildMessage("platform", (Object[])null) + "=> " + getDatasourcePlatform()); if (!shouldUseExternalConnectionPooling()) { writer.println("\t" + ToStringLocalization.buildMessage("user_name", (Object[])null) + "=> \"" + getUserName() + "\""); } writer.print("\t"); getConnector().toString(writer); writer.write(")"); return stringWriter.toString(); } /** * Get default sequence */ public Sequence getDefaultSequence() { return getDatasourcePlatform().getDefaultSequence(); } /** * Set default sequence */ public void setDefaultSequence(Sequence sequence) { getDatasourcePlatform().setDefaultSequence(sequence); } /** * Add sequence corresponding to the name */ public void addSequence(Sequence sequence) { getDatasourcePlatform().addSequence(sequence); } /** * Get sequence corresponding to the name */ public Sequence getSequence(String seqName) { return getDatasourcePlatform().getSequence(seqName); } /** * Returns a map of sequence names to Sequences (may be null). */ public Map getSequences() { return getDatasourcePlatform().getSequences(); } /** * Remove sequence corresponding to name. * Doesn't remove default sequence. */ public Sequence removeSequence(String seqName) { return getDatasourcePlatform().removeSequence(seqName); } /** * Remove all sequences but the default one. */ public void removeAllSequences() { getDatasourcePlatform().removeAllSequences(); } /** * INTERNAL: * Used only for writing the login into XML or Java. */ public Sequence getDefaultSequenceToWrite() { return getDatasourcePlatform().getDefaultSequenceToWrite(); } /** * INTERNAL: * Used only for writing the login into XML or Java. */ public Map getSequencesToWrite() { return getDatasourcePlatform().getSequencesToWrite(); } /** * INTERNAL: * Used only for reading the login from XML. */ public void setSequences(Map sequences) { getDatasourcePlatform().setSequences(sequences); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy