DatabaseConnection.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.database;
  19. import java.sql.Connection;
  20. import java.sql.DriverManager;
  21. import java.sql.SQLException;
  22. import java.util.Collection;
  23. import java.util.LinkedList;
  24. import java.util.Properties;
  25. import org.slf4j.Logger;
  26. import org.slf4j.LoggerFactory;
  27. /**
  28.  * All OdinMS servers maintain a Database Connection. This class therefore "singletonices" the connection per process.
  29.  * 
  30.  * 
  31.  * @author Frz
  32.  */
  33. public class DatabaseConnection {
  34.     private static ThreadLocal<Connection> con = new ThreadLocalConnection();
  35.     private final static Logger log = LoggerFactory.getLogger(DatabaseConnection.class);
  36.     private static Properties props = null;
  37.     public static Connection getConnection() {
  38.         if (props == null) {
  39.             throw new RuntimeException("DatabaseConnection not initialized");
  40.         }
  41.         return con.get();
  42.     }
  43.     public static boolean isInitialized() {
  44.         return props != null;
  45.     }
  46.     public static void setProps(Properties aProps) {
  47.         props = aProps;
  48.     }
  49.     public static void closeAll() throws SQLException {
  50.         for (Connection con : ThreadLocalConnection.allConnections) {
  51.             con.close();
  52.         }
  53.     }
  54.     private static class ThreadLocalConnection extends ThreadLocal<Connection> {
  55.         public static Collection<Connection> allConnections = new LinkedList<Connection>();
  56.         @Override
  57.         protected Connection initialValue() {
  58.             String driver = props.getProperty("driver");
  59.             String url = props.getProperty("url");
  60.             String user = props.getProperty("user");
  61.             String password = props.getProperty("password");
  62.             try {
  63.                 Class.forName(driver); // touch the mysql driver
  64.             } catch (ClassNotFoundException e) {
  65.                 log.error("ERROR", e);
  66.             }
  67.             try {
  68.                 Connection con = DriverManager.getConnection(url, user, password);
  69.                 allConnections.add(con);
  70.                 return con;
  71.             } catch (SQLException e) {
  72.                 log.error("ERROR", e);
  73.                 return null;
  74.             }
  75.         }
  76.     }
  77. }