MysqlDataSourceFactory.java
上传用户:sxlinghang
上传日期:2022-07-20
资源大小:1405k
文件大小:4k
源码类别:

数据库编程

开发平台:

Java

  1. /*
  2.    Copyright (C) 2002 MySQL AB
  3.    
  4.       This program is free software; you can redistribute it and/or modify
  5.       it under the terms of the GNU General Public License as published by
  6.       the Free Software Foundation; either version 2 of the License, or
  7.       (at your option) any later version.
  8.    
  9.       This program is distributed in the hope that it will be useful,
  10.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.       GNU General Public License for more details.
  13.    
  14.       You should have received a copy of the GNU General Public License
  15.       along with this program; if not, write to the Free Software
  16.       Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.       
  18.  */
  19. package com.mysql.jdbc.jdbc2.optional;
  20. import java.util.Hashtable;
  21. import javax.naming.Context;
  22. import javax.naming.Name;
  23. import javax.naming.Reference;
  24. import javax.naming.spi.ObjectFactory;
  25. /**
  26.  * Factory class for MysqlDataSource objects
  27.  * 
  28.  * @author Mark Matthews
  29.  */
  30. public class MysqlDataSourceFactory
  31.     implements ObjectFactory {
  32.     //~ Instance/static variables .............................................
  33.     /**
  34.      * The class name for a standard MySQL DataSource.
  35.      */
  36.     protected final String dataSourceClassName = "com.mysql.jdbc.jdbc2.optional.MysqlDataSource";
  37.     
  38.     /**
  39.      * The class name for a poolable MySQL DataSource.
  40.      */
  41.     protected final String poolDataSourceName = "com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource";
  42.     //~ Methods ...............................................................
  43.     /**
  44.      * DOCUMENT ME!
  45.      * 
  46.      * @param refObj DOCUMENT ME!
  47.      * @param nm DOCUMENT ME!
  48.      * @param ctx DOCUMENT ME!
  49.      * @param env DOCUMENT ME!
  50.      * @return DOCUMENT ME! 
  51.      * @throws Exception DOCUMENT ME!
  52.      */
  53.     public Object getObjectInstance(Object refObj, Name nm, Context ctx, 
  54.                                     Hashtable env)
  55.                              throws Exception {
  56.         Reference ref = (Reference) refObj;
  57.         String className = ref.getClassName();
  58.         if (className != null
  59.             && (className.equals(dataSourceClassName) || className.equals(
  60.                                                                  poolDataSourceName))) {
  61.             MysqlDataSource dataSource = null;
  62.             try {
  63.                 dataSource = (MysqlDataSource) Class.forName(className).newInstance();
  64.             } catch (Exception ex) {
  65.                 throw new RuntimeException("Unable to create DataSource of "
  66.                                            + "class '" + className
  67.                                            + "', reason: " + ex.toString());
  68.             }
  69.             int portNumber = 3306;
  70. String portNumberAsString = (String) ref.get("port").getContent();
  71.             
  72. if (portNumberAsString != null) {
  73. portNumber = Integer.parseInt(portNumberAsString);
  74. }
  75.             
  76. dataSource.setPort(portNumber);
  77.             
  78. String user = (String) ref.get("user").getContent();
  79.             
  80. if (user != null) {
  81. dataSource.setUser(user);
  82. }
  83.             
  84. String password = (String) ref.get("password").getContent();
  85.             
  86. if (password != null) {
  87. dataSource.setPassword(password);
  88. }
  89.             
  90. String serverName = (String) ref.get("serverName").getContent();
  91.             
  92. if (serverName != null) {
  93. dataSource.setServerName(serverName);
  94. }
  95.             
  96. String databaseName = (String) ref.get("databaseName").getContent();
  97.             
  98. if (databaseName != null) {
  99. dataSource.setDatabaseName(databaseName);
  100. }
  101.             return dataSource;
  102.         } else { // We can't create an instance of the reference
  103.             return null;
  104.         }
  105.     }
  106. }