Coverage Report - org.kuali.rice.core.ojb.RiceDataSourceConnectionFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
RiceDataSourceConnectionFactory
0%
0/28
0%
0/12
4
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.core.ojb;
 17  
 
 18  
 import java.sql.Connection;
 19  
 import java.util.ArrayList;
 20  
 import java.util.HashMap;
 21  
 import java.util.List;
 22  
 import java.util.Map;
 23  
 
 24  
 import javax.sql.DataSource;
 25  
 
 26  
 import org.apache.ojb.broker.accesslayer.ConnectionFactoryNotPooledImpl;
 27  
 import org.apache.ojb.broker.accesslayer.LookupException;
 28  
 import org.apache.ojb.broker.metadata.JdbcConnectionDescriptor;
 29  
 import org.springframework.beans.factory.BeanFactory;
 30  
 import org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy;
 31  
 
 32  
 public class RiceDataSourceConnectionFactory extends ConnectionFactoryNotPooledImpl {
 33  
 
 34  
         /**
 35  
          * BeanFactories to retrieve DataSource beans from.
 36  
          */
 37  0
         private static List<BeanFactory> beanFactories = new ArrayList<BeanFactory>();
 38  
 
 39  
         public static void addBeanFactory(BeanFactory beanFactory) {
 40  0
                 beanFactories.add(beanFactory);
 41  0
         }
 42  
 
 43  
         /**
 44  
          * Map that holds already retrieved DataSources,
 45  
          * with JCD alias Strings as keys and DataSources as values.
 46  
          */
 47  0
         private Map<String, DataSource> dataSources = new HashMap<String, DataSource>();
 48  
 
 49  0
         public RiceDataSourceConnectionFactory() {
 50  0
                 if (beanFactories.isEmpty()) {
 51  0
                         throw new IllegalStateException("No BeanFactories found for configuration - must specify RiceOjbConfigurer as a Spring bean.");
 52  
                 }
 53  0
         }
 54  
 
 55  
         public Connection lookupConnection(JdbcConnectionDescriptor jcd) throws LookupException {
 56  
                 try {
 57  0
                         DataSource dataSource = null;
 58  0
                         synchronized (this.dataSources) {
 59  0
                                 dataSource = this.dataSources.get(jcd.getJcdAlias());
 60  0
                                 if (dataSource == null) {
 61  0
                                         dataSource = getDataSource(jcd.getJcdAlias());
 62  0
                                         this.dataSources.put(jcd.getJcdAlias(), dataSource);
 63  
                                 }
 64  0
                         }
 65  0
                         return dataSource.getConnection();
 66  
                 }
 67  0
                 catch (Exception ex) {
 68  0
                         throw new LookupException("Could not obtain connection from data source", ex);
 69  
                 }
 70  
         }
 71  
 
 72  
         /**
 73  
          * Return the DataSource to use for the given JCD alias.
 74  
          * <p>This implementation fetches looks for a bean with the
 75  
          * JCD alias name in the provided Spring BeanFactory.
 76  
          * @param jcdAlias the JCD alias to retrieve a DataSource for
 77  
          * @return the DataSource to use
 78  
          */
 79  
 
 80  
         protected DataSource getDataSource(String jcdAlias) throws LookupException {
 81  0
                 DataSource dataSource = null;
 82  0
                 for (BeanFactory beanFactory : beanFactories) {
 83  0
                         if (beanFactory.containsBean(jcdAlias)) {
 84  0
                                 dataSource = (DataSource) beanFactory.getBean(jcdAlias, DataSource.class);
 85  0
                                 break;
 86  
                         }
 87  
                 }
 88  0
                 if (dataSource == null) {
 89  0
                         throw new LookupException("Could not lookup datasource with alias " + jcdAlias);
 90  0
                 } else if (dataSource instanceof TransactionAwareDataSourceProxy) {
 91  0
                         return dataSource;
 92  
                 } else {
 93  0
                         return new TransactionAwareDataSourceProxy(dataSource);
 94  
                 }
 95  
         }
 96  
 
 97  
 }