
io.vertigo.dynamo.impl.database.vendor.sqlserver.SqlServerExceptionHandler Maven / Gradle / Ivy
/**
* vertigo - simple java starter
*
* Copyright (C) 2013-2016, KleeGroup, [email protected] (http://www.kleegroup.com)
* KleeGroup, Centre d'affaire la Boursidiere - BP 159 - 92357 Le Plessis Robinson Cedex - France
*
* 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.
*/
package io.vertigo.dynamo.impl.database.vendor.sqlserver;
import java.sql.SQLException;
import io.vertigo.dynamo.database.statement.SqlPreparedStatement;
import io.vertigo.dynamo.impl.database.vendor.core.AbstractSqlExceptionHandler;
/**
* Handler des exceptions SQL qui peuvent survenir dans une tache.
* Cette implémentation est adaptée pour SQL Server.
*
* @author jmainaud, npiedeloup
*/
final class SqlServerExceptionHandler extends AbstractSqlExceptionHandler {
private enum SQLServerVersion {
PostSQLServer2008("«\u00A0", "\u00A0»."), // \u00A0 : no-break-space (ne part pas avec un trim)
PostSQLServer2008b("\"", "\"."), // autre facon de SQL serveur pour lever les contraintes (au moins sur les FK)
PreSQLServer2008("'", "'.");
private final String startQuote;
private final String endQuote;
SQLServerVersion(final String startQuote, final String endQuote) {
this.startQuote = startQuote;
this.endQuote = endQuote;
}
public String getStartQuote() {
return startQuote;
}
public String getEndQuote() {
return endQuote;
}
}
/**
* Constructeur.
*/
SqlServerExceptionHandler() {
super();
}
/** {@inheritDoc} */
@Override
public void handleSQLException(final SQLException sqle, final SqlPreparedStatement statement) {
final int codeErreur = sqle.getErrorCode();
if (codeErreur >= 20000 && codeErreur < 30000) {
// Erreur utilisateur
handleUserSQLException(sqle);
} else if (codeErreur == 8152) {
// Valeur trop grande pour ce champs (#8152)
handleTooLargeValueSqlException(sqle);
} else if (codeErreur == 547) {
// Violation de contrainte d'intégrité référentielle (#547)
handleForeignConstraintSQLException(sqle);
} else if (codeErreur == 2601 || codeErreur == 2627) {
// Violation de contrainte d'unicité (#2627)
// Violation de contrainte d'unicité sur index (#2601) (attention message différent)
handleUniqueConstraintSQLException(sqle);
} else {
// Message d'erreur par défaut
handleOtherSQLException(sqle, statement);
}
}
/** {@inheritDoc} */
@Override
protected String extractConstraintName(final String messageErreur) {
String constraintName = null;
for (final SQLServerVersion parsingMode : SQLServerVersion.values()) {
constraintName = extractConstraintName(parsingMode, messageErreur);
if (constraintName != null) {
return constraintName;
}
}
return constraintName;
}
private static String extractConstraintName(final SQLServerVersion version, final String messageErreur) {
final int indexFin = messageErreur.indexOf(version.getEndQuote());
if (indexFin != -1) {
final int indexDebut = messageErreur.lastIndexOf(version.getStartQuote(), indexFin - 1);
if (indexDebut != -1) {
return messageErreur.substring(indexDebut + version.getStartQuote().length(), indexFin);
}
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy