EmbeddedConnectionProvider.java 3.82 KB
Newer Older
Matt Tucker's avatar
Matt Tucker committed
1
/**
2
 * Copyright (C) 2004-2008 Jive Software. All rights reserved.
Matt Tucker's avatar
Matt Tucker committed
3
 *
4 5 6 7 8 9 10 11 12 13 14
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
Matt Tucker's avatar
Matt Tucker committed
15 16 17 18
 */

package org.jivesoftware.database;

19
import org.jivesoftware.util.JiveGlobals;
20 21
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Matt Tucker's avatar
Matt Tucker committed
22 23 24

import java.io.File;
import java.io.IOException;
25
import java.sql.Connection;
26
import java.sql.PreparedStatement;
27
import java.sql.SQLException;
28 29
import java.sql.DriverManager;
import java.util.Properties;
Matt Tucker's avatar
Matt Tucker committed
30 31 32

/**
 * A connection provider for the embedded hsqlDB database. The database file is stored at
33 34 35
 * <tt>home/database</tt>. The log file for this connection provider is stored at
 * <tt>[home]/logs/EmbeddedConnectionProvider.log</tt>, so you should ensure
 * that the <tt>[home]/logs</tt> directory exists.
Matt Tucker's avatar
Matt Tucker committed
36 37 38 39 40
 *
 * @author Matt Tucker
 */
public class EmbeddedConnectionProvider implements ConnectionProvider {

41 42
    private static final Logger Log = LoggerFactory.getLogger(EmbeddedConnectionProvider.class);

43 44 45 46 47 48 49
    private Properties settings;
    private String serverURL;
    private String driver = "org.hsqldb.jdbcDriver";
    private String proxoolURL;

    public EmbeddedConnectionProvider() {
    }
Matt Tucker's avatar
Matt Tucker committed
50

51
    @Override
Matt Tucker's avatar
Matt Tucker committed
52 53 54 55
    public boolean isPooled() {
        return true;
    }

56
    @Override
Matt Tucker's avatar
Matt Tucker committed
57
    public Connection getConnection() throws SQLException {
58 59
        try {
            Class.forName("org.logicalcobwebs.proxool.ProxoolDriver");
60
            return DriverManager.getConnection(proxoolURL, settings);
Matt Tucker's avatar
Matt Tucker committed
61
        }
62
        catch (ClassNotFoundException e) {
63
            throw new SQLException("EmbeddedConnectionProvider: Unable to find driver: "+e);
64
        }
Matt Tucker's avatar
Matt Tucker committed
65 66
    }

67
    @Override
Matt Tucker's avatar
Matt Tucker committed
68
    public void start() {
69 70 71 72 73
        File databaseDir = new File(JiveGlobals.getHomeDirectory(), File.separator + "embedded-db");
        // If the database doesn't exist, create it.
        if (!databaseDir.exists()) {
            databaseDir.mkdirs();
        }
Matt Tucker's avatar
Matt Tucker committed
74

75 76 77 78 79
        try {
            serverURL = "jdbc:hsqldb:" + databaseDir.getCanonicalPath() + File.separator + "openfire";
        }
        catch (IOException ioe) {
            Log.error("EmbeddedConnectionProvider: Error starting connection pool: ", ioe);
Matt Tucker's avatar
Matt Tucker committed
80
        }
81 82 83 84 85 86 87
        proxoolURL = "proxool.openfire:"+driver+":"+serverURL;
        settings = new Properties();
        settings.setProperty("proxool.maximum-connection-count", "25");
        settings.setProperty("proxool.minimum-connection-count", "3");
        settings.setProperty("proxool.maximum-connection-lifetime", Integer.toString((int)(86400000 * 0.5)));
        settings.setProperty("user", "sa");
        settings.setProperty("password", "");
Matt Tucker's avatar
Matt Tucker committed
88 89
    }

90
    @Override
Matt Tucker's avatar
Matt Tucker committed
91 92 93 94 95 96 97
    public void restart() {
        // Kill off pool.
        destroy();
        // Start a new pool.
        start();
    }

98
    @Override
Matt Tucker's avatar
Matt Tucker committed
99
    public void destroy() {
100 101
        // Shutdown the database.
        Connection con = null;
102
        PreparedStatement pstmt = null;
103 104
        try {
            con = getConnection();
105 106
            pstmt = con.prepareStatement("SHUTDOWN");
            pstmt.execute();
107 108
        }
        catch (SQLException sqle) {
109
            Log.error(sqle.getMessage(), sqle);
110 111
        }
        finally {
112
            DbConnectionManager.closeConnection(pstmt, con);
113
        }
114 115
        // Blank out the settings
        settings = null;
Matt Tucker's avatar
Matt Tucker committed
116 117
    }

118 119
    @Override
	public void finalize() throws Throwable {
Matt Tucker's avatar
Matt Tucker committed
120
        super.finalize();
Matt Tucker's avatar
Matt Tucker committed
121 122
        destroy();
    }
123
}