DbModelPostgresql.java
/*
* This file is part of Waarp Project (named also Waarp or GG).
*
* Copyright (c) 2019, Waarp SAS, and individual contributors by the @author
* tags. See the COPYRIGHT.txt in the distribution for a full listing of
* individual contributors.
*
* All Waarp Project is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Waarp is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* Waarp . If not, see <http://www.gnu.org/licenses/>.
*/
package org.waarp.common.database.model;
import org.postgresql.Driver;
import org.waarp.common.database.DbConstant;
import org.waarp.common.database.DbPreparedStatement;
import org.waarp.common.database.DbRequest;
import org.waarp.common.database.DbSession;
import org.waarp.common.database.data.DbDataModel;
import org.waarp.common.database.exception.WaarpDatabaseNoConnectionException;
import org.waarp.common.database.exception.WaarpDatabaseNoDataException;
import org.waarp.common.database.exception.WaarpDatabaseSqlException;
import org.waarp.common.logging.SysErrLogger;
import org.waarp.common.logging.WaarpLogger;
import org.waarp.common.logging.WaarpLoggerFactory;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Types;
/**
* PostGreSQL Database Model implementation
*/
public abstract class DbModelPostgresql extends DbModelAbstract {
/**
* Internal Logger
*/
private static final WaarpLogger logger =
WaarpLoggerFactory.getLogger(DbModelPostgresql.class);
private static final DbType type = DbType.PostGreSQL;
protected static class DbTypeResolverPostgreSQL
extends DbModelAbstract.DbTypeResolver {
@Override
public final String getType(final int sqlType) {
return DBType.getType(sqlType);
}
@Override
public final DbType getDbType() {
return type;
}
}
static {
dbTypeResolver = new DbTypeResolverPostgreSQL();
}
protected Boolean useIsValid;
@Override
public final DbType getDbType() {
return type;
}
/**
* Create the object and initialize if necessary the driver
*
* @throws WaarpDatabaseNoConnectionException
*/
protected DbModelPostgresql() throws WaarpDatabaseNoConnectionException {
if (DbModelFactory.classLoaded.contains(type.name())) {
return;
}
try {
DriverManager.registerDriver(new Driver());
DbModelFactory.classLoaded.add(type.name());
} catch (final SQLException e) {
// SQLException
logger.error(
"Cannot register Driver " + type.name() + ' ' + e.getMessage());
DbConstant.error(e);
throw new WaarpDatabaseNoConnectionException(
"Cannot load database drive:" + type.name(), e);
}
// No pooling connection yet available through URL and not for production purpose
/*
* Quoting the PostgreSQL documentation: from http://jdbc.postgresql.org/documentation/head/ds-ds.html In
* general it is not recommended to use the PostgreSQLâ„¢ provided connection pool.
*
*/
/*
* PGPoolingDataSource source = new PGPoolingDataSource(); source.setDataSourceName("A Data Source");
* source.setServerName("localhost"); source.setDatabaseName("test"); source.setUser("testuser");
* source.setPassword("testpassword"); source.setMaxConnections(10);
*/
}
protected enum DBType {
CHAR(Types.CHAR, " CHAR(3) "),
VARCHAR(Types.VARCHAR, " VARCHAR(" + MAX_VARCHAR + ") "),
NVARCHAR(Types.NVARCHAR, " VARCHAR(" + MAX_KEY_VARCHAR + ") "),
LONGVARCHAR(Types.LONGVARCHAR, " VARCHAR(" + MAX_LONGVARCHAR + ") "),
BIT(Types.BIT, " BOOLEAN "), TINYINT(Types.TINYINT, " INT2 "),
SMALLINT(Types.SMALLINT, " SMALLINT "), INTEGER(Types.INTEGER, " INTEGER "),
BIGINT(Types.BIGINT, " BIGINT "), REAL(Types.REAL, " REAL "),
DOUBLE(Types.DOUBLE, " DOUBLE PRECISION "),
VARBINARY(Types.VARBINARY, " BYTEA "), DATE(Types.DATE, " DATE "),
TIMESTAMP(Types.TIMESTAMP, " TIMESTAMP(3) ");
public final int type;
public final String constructor;
DBType(final int type, final String constructor) {
this.type = type;
this.constructor = constructor;
}
public static String getType(final int sqltype) {
switch (sqltype) {
case Types.CHAR:
return CHAR.constructor;
case Types.VARCHAR:
return VARCHAR.constructor;
case Types.NVARCHAR:
return NVARCHAR.constructor;
case Types.LONGVARCHAR:
return LONGVARCHAR.constructor;
case Types.BIT:
return BIT.constructor;
case Types.TINYINT:
return TINYINT.constructor;
case Types.SMALLINT:
return SMALLINT.constructor;
case Types.INTEGER:
return INTEGER.constructor;
case Types.BIGINT:
return BIGINT.constructor;
case Types.REAL:
return REAL.constructor;
case Types.DOUBLE:
return DOUBLE.constructor;
case Types.VARBINARY:
return VARBINARY.constructor;
case Types.DATE:
return DATE.constructor;
case Types.TIMESTAMP:
return TIMESTAMP.constructor;
default:
return null;
}
}
}
@Override
public void resetSequence(final DbSession session, final long newvalue)
throws WaarpDatabaseNoConnectionException {
final String action =
"ALTER SEQUENCE " + DbDataModel.fieldseq + " MINVALUE " +
(DbConstant.ILLEGALVALUE + 1) + " RESTART WITH " + newvalue;
final DbRequest request = new DbRequest(session);
try {
request.query(action);
} catch (final WaarpDatabaseNoConnectionException e) {
SysErrLogger.FAKE_LOGGER.ignoreLog(e);
} catch (final WaarpDatabaseSqlException e) {
SysErrLogger.FAKE_LOGGER.ignoreLog(e);
} finally {
request.close();
}
logger.warn(action);
}
@Override
public long nextSequence(final DbSession dbSession)
throws WaarpDatabaseNoConnectionException, WaarpDatabaseSqlException,
WaarpDatabaseNoDataException {
long result;
final String action = "SELECT NEXTVAL('" + DbDataModel.fieldseq + "')";
final DbPreparedStatement preparedStatement =
new DbPreparedStatement(dbSession);
try {
preparedStatement.createPrepareStatement(action);
// Limit the search
preparedStatement.executeQuery();
if (preparedStatement.getNext()) {
try {
result = preparedStatement.getResultSet().getLong(1);
} catch (final SQLException e) {
throw new WaarpDatabaseSqlException(e);
}
return result;
} else {
throw new WaarpDatabaseNoDataException(
"No sequence found. Must be initialized first");
}
} finally {
preparedStatement.realClose();
}
}
@Override
protected final String validConnectionString() {
return "select 1";
}
@Override
public final String limitRequest(final String allfields, final String request,
final int nb) {
if (nb == 0) {
return request;
}
return request + " LIMIT " + nb;
}
}