ManagedDataSource.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.dbcp2.managed;

  18. import java.sql.Connection;
  19. import java.sql.SQLException;
  20. import java.util.Objects;

  21. import org.apache.commons.dbcp2.PoolingDataSource;
  22. import org.apache.commons.pool2.ObjectPool;

  23. /**
  24.  * The ManagedDataSource is a PoolingDataSource that creates ManagedConnections.
  25.  *
  26.  * @param <C>
  27.  *            The kind of {@link Connection} to manage.
  28.  * @since 2.0
  29.  */
  30. public class ManagedDataSource<C extends Connection> extends PoolingDataSource<C> {
  31.     private TransactionRegistry transactionRegistry;

  32.     /**
  33.      * Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the
  34.      * specified transaction registry. The TransactionRegistry must be the transaction registry obtained from the
  35.      * XAConnectionFactory used to create the connection pool. If not, an error will occur when attempting to use the
  36.      * connection in a global transaction because the XAResource object associated with the connection will be
  37.      * unavailable.
  38.      *
  39.      * @param pool
  40.      *            the connection pool
  41.      * @param transactionRegistry
  42.      *            the transaction registry obtained from the XAConnectionFactory used to create the connection pool
  43.      *            object factory
  44.      */
  45.     public ManagedDataSource(final ObjectPool<C> pool, final TransactionRegistry transactionRegistry) {
  46.         super(pool);
  47.         this.transactionRegistry = transactionRegistry;
  48.     }

  49.     @Override
  50.     public Connection getConnection() throws SQLException {
  51.         if (getPool() == null) {
  52.             throw new IllegalStateException("Pool has not been set");
  53.         }
  54.         if (transactionRegistry == null) {
  55.             throw new IllegalStateException("TransactionRegistry has not been set");
  56.         }

  57.         return new ManagedConnection<>(getPool(), transactionRegistry, isAccessToUnderlyingConnectionAllowed());
  58.     }

  59.     /**
  60.      * Gets the transaction registry.
  61.      *
  62.      * @return The transaction registry.
  63.      * @see #setTransactionRegistry(TransactionRegistry)
  64.      * @since 2.6.0
  65.      */
  66.     public TransactionRegistry getTransactionRegistry() {
  67.         return transactionRegistry;
  68.     }

  69.     /**
  70.      * Sets the transaction registry from the XAConnectionFactory used to create the pool. The transaction registry can
  71.      * only be set once using either a connector or this setter method.
  72.      *
  73.      * @param transactionRegistry
  74.      *            the transaction registry acquired from the XAConnectionFactory used to create the pool
  75.      */
  76.     public void setTransactionRegistry(final TransactionRegistry transactionRegistry) {
  77.         if (this.transactionRegistry != null) {
  78.             throw new IllegalStateException("TransactionRegistry already set");
  79.         }
  80.         Objects.requireNonNull(transactionRegistry, "transactionRegistry");

  81.         this.transactionRegistry = transactionRegistry;
  82.     }
  83. }