From 7984f21f9a585723252c6582003510c2b3be7ee3 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Fri, 20 Jan 2023 15:49:55 +0100 Subject: [PATCH] Recovery for 1.x --- .../com/republicate/modality/Instance.java | 2 +- .../modality/sql/ConnectionPool.java | 64 ++++++++++--------- 2 files changed, 35 insertions(+), 31 deletions(-) diff --git a/modality-core/src/main/java/com/republicate/modality/Instance.java b/modality-core/src/main/java/com/republicate/modality/Instance.java index 2f4ac20..db381e9 100644 --- a/modality-core/src/main/java/com/republicate/modality/Instance.java +++ b/modality-core/src/main/java/com/republicate/modality/Instance.java @@ -570,7 +570,7 @@ private void writeObject(ObjectOutputStream out) throws IOException { if (model == null) { - // the only way this can happen is when instance has ben deserialized + // the only way this can happen is when instance has been deserialized // while corresponding model has never been initialized throw new IOException("cannot serialize instance again: its model was never initialized"); } diff --git a/modality-core/src/main/java/com/republicate/modality/sql/ConnectionPool.java b/modality-core/src/main/java/com/republicate/modality/sql/ConnectionPool.java index b6b8a88..dc5a506 100644 --- a/modality-core/src/main/java/com/republicate/modality/sql/ConnectionPool.java +++ b/modality-core/src/main/java/com/republicate/modality/sql/ConnectionPool.java @@ -29,6 +29,7 @@ import java.util.ArrayList; import java.util.Iterator; import java.util.List; +import java.util.Random; import javax.sql.DataSource; /** @@ -38,35 +39,17 @@ */ public class ConnectionPool implements Serializable { + private static final int VALIDATION_TIMEOUT = 1; // 1s is long enough + protected static Logger logger = LoggerFactory.getLogger("sql"); + private static Random randomizer = new Random(); /** * Constructor. - * @param schema schema - * @param driverInfos infos on the driverInfos - * @param autocommit autocommit - * @param max max connections - * @throws SQLException - * / - public ConnectionPool(String schema, DriverInfos driverInfos, boolean autocommit, int max) - throws SQLException - { - this.schema = schema; - this.driverInfos = driverInfos; - this.autocommit = autocommit; - connections = new ArrayList(); - this.max = max; - } - */ - - /** * - * @param dataSource - * @param schema - * @param max * @throws SQLException */ - public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfos driverInfos, String schema, boolean autocommit, int max) throws SQLException + public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfos driverInfos, String schema, boolean autocommit, int max, boolean checkConnections) throws SQLException { this.dataSource = dataSource; this.credentials = credentials; @@ -74,6 +57,22 @@ public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfo this.schema = schema; this.autocommit = autocommit; this.max = max; + this.checkConnections = checkConnections; + } + + public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfos driverInfos, String schema, boolean autocommit, int max) throws SQLException + { + this(dataSource, credentials, driverInfos, schema, autocommit, max, true); + } + + public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfos driverInfos, String schema, boolean autocommit) throws SQLException + { + this(dataSource, credentials, driverInfos, schema, autocommit, 50, true); + } + + public ConnectionPool(DataSource dataSource, Credentials credentials, DriverInfos driverInfos, String schema) throws SQLException + { + this(dataSource, credentials, driverInfos, schema, true, 50, true); } public DataSource getDataSource() @@ -96,14 +95,16 @@ public synchronized ConnectionWrapper getConnection() throws SQLException for(Iterator it = connections.iterator(); it.hasNext(); ) { ConnectionWrapper c = (ConnectionWrapper)it.next(); - - if(c.isClosed()) + if (!c.isBusy()) { - it.remove(); - } - else if(!c.isBusy()) - { - return c; + if(c.isClosed() || checkConnections && !c.isValid(VALIDATION_TIMEOUT)) + { + it.remove(); + } + else + { + return c; + } } } if(connections.size() == max) @@ -111,7 +112,7 @@ else if(!c.isBusy()) logger.warn("Connection pool: max number of connections reached! "); // return a busy connection... - return connections.get(0); + return connections.get(randomizer.nextInt(connections.size())); } ConnectionWrapper newconn = createConnection(); @@ -199,4 +200,7 @@ public void clear() /** Maximum number of connections. */ private int max; + + /** whether to check connections */ + private boolean checkConnections; }