forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
67 changed files
with
1,207 additions
and
575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
...keycloak/connections/jpa/updater/liquibase/lock/CustomLockDatabaseChangeLogGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* Copyright 2016 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* 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 org.keycloak.connections.jpa.updater.liquibase.lock; | ||
|
||
import liquibase.database.Database; | ||
import liquibase.database.core.DB2Database; | ||
import liquibase.database.core.H2Database; | ||
import liquibase.database.core.MSSQLDatabase; | ||
import liquibase.database.core.MySQLDatabase; | ||
import liquibase.database.core.OracleDatabase; | ||
import liquibase.database.core.PostgresDatabase; | ||
import liquibase.sql.Sql; | ||
import liquibase.sql.UnparsedSql; | ||
import liquibase.sqlgenerator.SqlGeneratorChain; | ||
import liquibase.sqlgenerator.core.LockDatabaseChangeLogGenerator; | ||
import liquibase.statement.core.LockDatabaseChangeLogStatement; | ||
import org.jboss.logging.Logger; | ||
|
||
/** | ||
* We use "SELECT FOR UPDATE" pessimistic locking (Same algorithm like Hibernate LockMode.PESSIMISTIC_WRITE ) | ||
* | ||
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a> | ||
*/ | ||
public class CustomLockDatabaseChangeLogGenerator extends LockDatabaseChangeLogGenerator { | ||
|
||
private static final Logger logger = Logger.getLogger(CustomLockDatabaseChangeLogGenerator.class); | ||
|
||
@Override | ||
public int getPriority() { | ||
return super.getPriority() + 1; // Ensure bigger priority than LockDatabaseChangeLogGenerator | ||
} | ||
|
||
@Override | ||
public Sql[] generateSql(LockDatabaseChangeLogStatement statement, Database database, SqlGeneratorChain sqlGeneratorChain) { | ||
|
||
Sql selectForUpdateSql = generateSelectForUpdate(database); | ||
|
||
return new Sql[] { selectForUpdateSql }; | ||
} | ||
|
||
|
||
private Sql generateSelectForUpdate(Database database) { | ||
String catalog = database.getLiquibaseCatalogName(); | ||
String schema = database.getLiquibaseSchemaName(); | ||
String rawLockTableName = database.getDatabaseChangeLogLockTableName(); | ||
|
||
String lockTableName = database.escapeTableName(catalog, schema, rawLockTableName); | ||
String idColumnName = database.escapeColumnName(catalog, schema, rawLockTableName, "ID"); | ||
|
||
String sqlBase = "SELECT " + idColumnName + " FROM " + lockTableName; | ||
String sqlWhere = " WHERE " + idColumnName + "=1"; | ||
|
||
String sql; | ||
if (database instanceof MySQLDatabase || database instanceof PostgresDatabase || database instanceof H2Database || | ||
database instanceof OracleDatabase) { | ||
sql = sqlBase + sqlWhere + " FOR UPDATE"; | ||
} else if (database instanceof MSSQLDatabase) { | ||
sql = sqlBase + " WITH (UPDLOCK, ROWLOCK)" + sqlWhere; | ||
} else if (database instanceof DB2Database) { | ||
sql = sqlBase + sqlWhere + " FOR READ ONLY WITH RS USE AND KEEP UPDATE LOCKS"; | ||
} else { | ||
sql = sqlBase + sqlWhere; | ||
logger.warnf("No direct support for database %s . Database lock may not work correctly", database.getClass().getName()); | ||
} | ||
|
||
logger.debugf("SQL command for pessimistic lock: %s", sql); | ||
|
||
return new UnparsedSql(sql); | ||
} | ||
|
||
} |
Oops, something went wrong.