1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
class ConnectionPool
{
public synchronized void
destroy()
{
_destroyed = true;
while(_connections.size() != _nconnections)
{
try
{
wait();
}
catch(InterruptedException e)
{
}
}
while(!_connections.isEmpty())
{
java.sql.Connection conn = _connections.removeFirst();
try
{
conn.close();
}
catch(java.sql.SQLException e)
{
}
}
}
public synchronized java.sql.Connection
acquire()
{
while(_connections.isEmpty() && !_destroyed)
{
try
{
wait();
}
catch(InterruptedException e)
{
}
}
if(_destroyed)
{
return null;
}
java.sql.Connection conn = _connections.removeFirst();
try
{
boolean closed = conn.isClosed();
if(closed)
{
_logger.warning("ConnectionPool: lost connection to database");
conn = null;
}
else
{
// Probe the connection with the database.
java.sql.PreparedStatement stmt = conn.prepareStatement("SELECT 1");
java.sql.ResultSet rs = stmt.executeQuery();
stmt.close();
}
}
catch(java.sql.SQLException e)
{
java.io.StringWriter sw = new java.io.StringWriter();
java.io.PrintWriter pw = new java.io.PrintWriter(sw);
e.printStackTrace(pw);
pw.flush();
_logger.warning("ConnectionPool: lost connection to database:\n" + sw.toString());
conn = null;
}
// If the connection has been closed, or is otherwise invalid,
// we need to re-establish the connection.
while(conn == null)
{
if(_trace)
{
_logger.trace("ConnectionPool", "establishing new database connection");
}
try
{
conn = java.sql.DriverManager.getConnection(_url, _username, _password);
conn.setAutoCommit(false);
}
catch(java.sql.SQLException e)
{
java.io.StringWriter sw = new java.io.StringWriter();
java.io.PrintWriter pw = new java.io.PrintWriter(sw);
e.printStackTrace(pw);
pw.flush();
_logger.warning("ConnectionPool: database connection failed:\n" + sw.toString());
}
}
if(_trace)
{
_logger.trace("ConnectionPool", "returning connection: " + conn + " " +
_connections.size() + "/" + _nconnections + " remaining");
}
return conn;
}
public synchronized void
release(java.sql.Connection connection)
{
if(connection != null)
{
_connections.add(connection);
notifyAll();
}
}
ConnectionPool(Ice.Logger logger, String url, String username, String password, int numConnections)
throws java.sql.SQLException
{
_logger = logger;
_url = url;
_username = username;
_password = password;
_nconnections = numConnections;
if(_trace)
{
_logger.trace("ConnectionPool", "establishing " + numConnections + " connections to " + url);
}
while(numConnections-- > 0)
{
java.sql.Connection connection = java.sql.DriverManager.getConnection(url, username, password);
connection.setAutoCommit(false);
_connections.add(connection);
}
}
private Ice.Logger _logger;
private boolean _trace = true;
private String _url;
private String _username;
private String _password;
private java.util.LinkedList<java.sql.Connection> _connections = new java.util.LinkedList<java.sql.Connection>();
private boolean _destroyed = false;
private int _nconnections;
}
|