liquibase.snapshot.ResultSetCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.snapshot;
import liquibase.CatalogAndSchema;
import liquibase.database.Database;
import liquibase.database.core.InformixDatabase;
import liquibase.database.jvm.JdbcConnection;
import liquibase.exception.DatabaseException;
import liquibase.exception.UnexpectedLiquibaseException;
import liquibase.executor.jvm.ColumnMapRowMapper;
import liquibase.executor.jvm.RowMapperResultSetExtractor;
import liquibase.util.JdbcUtil;
import liquibase.util.StringUtil;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.*;
class ResultSetCache {
private Map timesSingleQueried = new HashMap<>();
private Map didBulkQuery = new HashMap<>();
private boolean bulkTracking = true;
private Map>> cacheBySchema = new HashMap<>();
private Map info = new HashMap<>();
public List get(ResultSetExtractor resultSetExtractor) throws DatabaseException {
try {
String wantedKey = resultSetExtractor.wantedKeyParameters().createParamsKey(resultSetExtractor.database);
String schemaKey = resultSetExtractor.wantedKeyParameters().createSchemaKey(resultSetExtractor.database);
Map> cache = cacheBySchema.get(schemaKey);
if (cache == null) {
cache = new HashMap<>();
cacheBySchema.put(schemaKey, cache);
}
if (cache.containsKey(wantedKey)) {
return cache.get(wantedKey);
}
if (didBulkQuery.containsKey(schemaKey) && didBulkQuery.get(schemaKey)) {
return new ArrayList<>();
}
List results;
boolean bulkQueried = false;
if (resultSetExtractor.shouldBulkSelect(schemaKey, this)) {
//remove any existing single fetches that may be duplicated
if (resultSetExtractor.bulkContainsSchema(schemaKey)) {
for (Map cachedValue : cacheBySchema.values()) {
cachedValue.clear();
}
} else {
cache.clear();
}
results = resultSetExtractor.bulkFetch();
didBulkQuery.put(schemaKey, bulkTracking);
bulkQueried = true;
} else {
// Don't store results in real cache to prevent confusion if later fetching all items.
cache = new HashMap<>();
Integer previousCount = timesSingleQueried.get(schemaKey);
if (previousCount == null) {
previousCount = 0;
}
timesSingleQueried.put(schemaKey, previousCount + 1);
results = resultSetExtractor.fastFetch();
}
for (CachedRow row : results) {
for (String rowKey : resultSetExtractor.rowKeyParameters(row).getKeyPermutations()) {
if (bulkQueried && resultSetExtractor.bulkContainsSchema(schemaKey)) {
String rowSchema = CatalogAndSchema.CatalogAndSchemaCase.ORIGINAL_CASE.
equals(resultSetExtractor.database.getSchemaAndCatalogCase())?resultSetExtractor.getSchemaKey(row):
resultSetExtractor.getSchemaKey(row).toLowerCase();
cache = cacheBySchema.get(rowSchema);
if (cache == null) {
cache = new HashMap>();
cacheBySchema.put(rowSchema, cache);
}
}
if (!cache.containsKey(rowKey)) {
cache.put(rowKey, new ArrayList());
}
cache.get(rowKey).add(row);
}
}
if (bulkQueried) {
cache = cacheBySchema.get(schemaKey);
}
List returnList = cache.get(wantedKey);
if (returnList == null) {
returnList = new ArrayList<>();
}
return returnList;
} catch (SQLException e) {
throw new DatabaseException(e);
}
}
public T getInfo(String key, Class type) {
return (T) info.get(key);
}
public void putInfo(String key, Object value) {
info.put(key, value);
}
private int getTimesSingleQueried(String schemaKey) {
Integer integer = timesSingleQueried.get(schemaKey);
if (integer == null) {
return 0;
}
return integer;
}
public static class RowData {
private Database database;
private String[] parameters;
private String catalog;
private String schema;
private String[] keyPermutations;
protected RowData(String catalog, String schema, Database database, String... parameters) {
this.database = database;
this.catalog = catalog;
this.schema = schema;
this.parameters = parameters;
}
public String[] getKeyPermutations() {
if (keyPermutations == null) {
this.keyPermutations = permutations(parameters);
}
return keyPermutations;
}
protected String[] permutations(String[] params) {
return permute(params, 0);
}
private String[] permute(String[] params, int fromIndex) {
String[] nullVersion = Arrays.copyOf(params, params.length);
nullVersion[fromIndex] = null;
if (params.length == (fromIndex + 1)) {
return new String[]{
createKey(database, params),
createKey(database, nullVersion)
};
} else {
List permutations = new ArrayList<>();
Collections.addAll(permutations, permute(params, fromIndex + 1));
Collections.addAll(permutations, permute(nullVersion, fromIndex + 1));
return permutations.toArray(new String[permutations.size()]);
}
}
public String createSchemaKey(Database database) {
if (!database.supportsCatalogs() && !database.supportsSchemas()) {
return "all";
} else if (database.supportsCatalogs() && database.supportsSchemas()) {
if (CatalogAndSchema.CatalogAndSchemaCase.ORIGINAL_CASE.
equals(database.getSchemaAndCatalogCase())) {
return (catalog + "." + schema);
}
return (catalog + "." + schema).toLowerCase();
} else {
if ((catalog == null) && (schema != null)) {
if (CatalogAndSchema.CatalogAndSchemaCase.ORIGINAL_CASE.
equals(database.getSchemaAndCatalogCase())) {
return schema;
}
return schema.toLowerCase();
} else {
if (catalog == null) {
return "all";
}
if (CatalogAndSchema.CatalogAndSchemaCase.ORIGINAL_CASE.
equals(database.getSchemaAndCatalogCase())) {
return catalog;
}
return catalog.toLowerCase();
}
}
}
public String createKey(Database database, String... params) {
String key = StringUtil.join(params, ":");
if (CatalogAndSchema.CatalogAndSchemaCase.ORIGINAL_CASE.
equals(database.getSchemaAndCatalogCase())) {
return key;
}
if (!database.isCaseSensitive()) {
return key.toLowerCase();
}
return key;
}
public String createParamsKey(Database database) {
return createKey(database, parameters);
}
}
// public abstract static class MultiSchemaRowData extends RowData {
// public MultiSchemaRowData(String catalog, String schema, Database database, String... parameters) {
// super(catalog, schema, database, parameters);
// }
//
// @Override
// public String createSchemaKey(Database database) {
// String multiSchemaKey = getMultiSchemaKey();
//
// if (multiSchemaKey == null) {
// return super.createSchemaKey(database);
// }
//
// for (Class extends Database> supportedDb : getMultiSchemaSupportedDatabases()) {
// if (supportedDb.isAssignableFrom(database.getClass())) {
// return multiSchemaKey;
// }
// }
// return super.createSchemaKey(database);
// }
//
// public abstract Class extends Database>[] getMultiSchemaSupportedDatabases();
//
// public abstract String getMultiSchemaKey();
// }
public abstract static class ResultSetExtractor {
private final Database database;
public ResultSetExtractor(Database database) {
this.database = database;
}
public abstract boolean bulkContainsSchema(String schemaKey);
public String getSchemaKey(CachedRow row) {
throw new UnexpectedLiquibaseException("Not Implemented");
}
boolean shouldBulkSelect(String schemaKey, ResultSetCache resultSetCache) {
return resultSetCache.getTimesSingleQueried(schemaKey) >= 3;
}
List executeAndExtract(String sql, Database database) throws DatabaseException, SQLException {
return executeAndExtract(sql, database, false);
}
List executeAndExtract(String sql, Database database, boolean informixTrimHint)
throws DatabaseException, SQLException {
if (sql == null) {
return new ArrayList<>();
}
Statement statement = null;
ResultSet resultSet = null;
try {
JdbcConnection connection = (JdbcConnection) database.getConnection();
statement = connection.createStatement();
resultSet = statement.executeQuery(sql);
resultSet.setFetchSize(database.getFetchSize());
return extract(resultSet, informixTrimHint);
} finally {
JdbcUtil.close(resultSet, statement);
}
}
public boolean equals(Object expectedValue, Object foundValue) {
return equals(expectedValue, foundValue, true);
}
public boolean equals(Object expectedValue, Object foundValue, boolean equalIfEitherNull) {
if ((expectedValue == null) && (foundValue == null)) {
return true;
}
if ((expectedValue == null) || (foundValue == null)) {
return equalIfEitherNull;
}
return expectedValue.equals(foundValue);
}
public abstract RowData rowKeyParameters(CachedRow row);
public abstract RowData wantedKeyParameters();
public abstract List fastFetch() throws SQLException, DatabaseException;
public abstract List bulkFetch() throws SQLException, DatabaseException;
protected List extract(ResultSet resultSet) throws SQLException {
return extract(resultSet, false);
}
protected List extract(ResultSet resultSet, final boolean informixIndexTrimHint)
throws SQLException {
resultSet.setFetchSize(database.getFetchSize());
List