Coverage Report - org.apache.torque.engine.platform.PlatformFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
PlatformFactory
0%
0/22
0%
0/4
2
 
 1  
 package org.apache.torque.engine.platform;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE
 5  
  * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
 7  
  * 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 distributed under the License is distributed on
 12  
  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 13  
  * specific language governing permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 import java.util.HashMap;
 17  
 import java.util.Map;
 18  
 
 19  
 import org.apache.commons.logging.Log;
 20  
 import org.apache.commons.logging.LogFactory;
 21  
 
 22  
 /**
 23  
  * Factory class responsible for creating Platform objects that define RDBMS platform specific behaviour.
 24  
  */
 25  0
 public class PlatformFactory {
 26  0
     private static Map<String, Platform> platforms = new HashMap<String, Platform>();
 27  0
     private static Log log = LogFactory.getLog(PlatformFactory.class);
 28  
 
 29  
     /**
 30  
      * Returns the Platform for a platform name.
 31  
      * 
 32  
      * @param dbms
 33  
      *            name of the platform
 34  
      */
 35  
     public static Platform getPlatformFor(String dbms) {
 36  0
         Platform result = null;
 37  0
         String platformName = null;
 38  
 
 39  0
         result = (Platform) getPlatforms().get(dbms);
 40  0
         if (result == null) {
 41  
             try {
 42  0
                 platformName = getClassnameFor(dbms);
 43  0
                 Class<?> platformClass = Class.forName(platformName);
 44  0
                 result = (Platform) platformClass.newInstance();
 45  
 
 46  0
             } catch (Throwable t) {
 47  0
                 log.warn("problems with platform " + platformName + ": " + t.getMessage());
 48  0
                 log.warn("Torque will use PlatformDefaultImpl instead");
 49  
 
 50  0
                 result = new PlatformDefaultImpl();
 51  0
             }
 52  0
             getPlatforms().put(dbms, result); // cache the Platform
 53  
         }
 54  0
         return result;
 55  
     }
 56  
 
 57  
     /**
 58  
      * compute the name of the concrete Class representing the Platform specified by <code>platform</code>
 59  
      * 
 60  
      * @param platform
 61  
      *            the name of the platform as specified in the repository
 62  
      */
 63  
     private static String getClassnameFor(String platform) {
 64  0
         String pf = "Default";
 65  0
         if (platform != null) {
 66  0
             pf = platform;
 67  
         }
 68  0
         return "org.apache.torque.engine.platform.Platform" + pf.substring(0, 1).toUpperCase() + pf.substring(1)
 69  
                 + "Impl";
 70  
     }
 71  
 
 72  
     /**
 73  
      * Gets the platforms.
 74  
      * 
 75  
      * @return Returns a HashMap
 76  
      */
 77  
     private static Map<String, Platform> getPlatforms() {
 78  0
         return platforms;
 79  
     }
 80  
 }