EmbeddedConnectionProvider.java 3.82 KB
Newer Older
Matt Tucker's avatar
Matt Tucker committed
1 2 3 4 5
/**
 * $RCSfile$
 * $Revision$
 * $Date$
 *
6
 * Copyright (C) 2004-2008 Jive Software. All rights reserved.
Matt Tucker's avatar
Matt Tucker committed
7
 *
8 9 10 11 12 13 14 15 16 17 18
 * 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
19 20 21 22
 */

package org.jivesoftware.database;

23
import org.jivesoftware.util.JiveGlobals;
Matt Tucker's avatar
Matt Tucker committed
24 25 26 27
import org.jivesoftware.util.Log;

import java.io.File;
import java.io.IOException;
28
import java.sql.Connection;
29
import java.sql.PreparedStatement;
30 31
import java.sql.SQLException;
import java.sql.Statement;
32 33
import java.sql.DriverManager;
import java.util.Properties;
Matt Tucker's avatar
Matt Tucker committed
34 35 36

/**
 * A connection provider for the embedded hsqlDB database. The database file is stored at
37 38 39
 * <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
40 41 42 43 44
 *
 * @author Matt Tucker
 */
public class EmbeddedConnectionProvider implements ConnectionProvider {

45 46 47 48 49 50 51 52
    private Properties settings;
    private String serverURL;
    private String driver = "org.hsqldb.jdbcDriver";
    private String proxoolURL;

    public EmbeddedConnectionProvider() {
        System.setProperty("org.apache.commons.logging.LogFactory", "org.jivesoftware.util.log.util.CommonsLogFactory");
    }
Matt Tucker's avatar
Matt Tucker committed
53 54 55 56 57 58

    public boolean isPooled() {
        return true;
    }

    public Connection getConnection() throws SQLException {
59 60
        try {
            Class.forName("org.logicalcobwebs.proxool.ProxoolDriver");
61
            return DriverManager.getConnection(proxoolURL, settings);
Matt Tucker's avatar
Matt Tucker committed
62
        }
63
        catch (ClassNotFoundException e) {
64
            throw new SQLException("EmbeddedConnectionProvider: Unable to find driver: "+e);
65
        }
Matt Tucker's avatar
Matt Tucker committed
66 67 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 91 92 93 94 95 96 97
    }

    public void restart() {
        // Kill off pool.
        destroy();
        // Start a new pool.
        start();
    }

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

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