All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.fhir.jpa.migrate.taskdef.DropTableTask Maven / Gradle / Ivy

The newest version!
/*-
 * #%L
 * HAPI FHIR Server - SQL Migration
 * %%
 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
 * %%
 * 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.
 * #L%
 */
package ca.uhn.fhir.jpa.migrate.taskdef;

import ca.uhn.fhir.jpa.migrate.DriverTypeEnum;
import ca.uhn.fhir.jpa.migrate.JdbcUtils;
import org.intellij.lang.annotations.Language;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.sql.SQLException;
import java.util.List;
import java.util.Set;

public class DropTableTask extends BaseTableTask {

	private static final Logger ourLog = LoggerFactory.getLogger(DropTableTask.class);

	public DropTableTask(String theProductVersion, String theSchemaVersion) {
		super(theProductVersion, theSchemaVersion);
	}

	@Override
	public void validate() {
		super.validate();
		setDescription("Drop table " + getTableName());
	}

	@Override
	public void doExecute() throws SQLException {
		Set tableNames = JdbcUtils.getTableNames(getConnectionProperties());
		if (!tableNames.contains(getTableName())) {
			return;
		}

		Set foreignKeys = JdbcUtils.getForeignKeys(getConnectionProperties(), null, getTableName());
		logInfo(ourLog, "Table {} has the following foreign keys: {}", getTableName(), foreignKeys);

		Set indexNames = JdbcUtils.getIndexNames(getConnectionProperties(), getTableName());
		logInfo(ourLog, "Table {} has the following indexes: {}", getTableName(), indexNames);

		for (String next : foreignKeys) {
			if (getDriverType() == DriverTypeEnum.DERBY_EMBEDDED && next.contains("-")) {
				// Derby creates special internal indexes with GUID names that can't be deleted
				continue;
			}
			List sql = DropForeignKeyTask.generateSql(getTableName(), next, getDriverType());
			for (@Language("SQL") String nextSql : sql) {
				executeSql(getTableName(), nextSql);
			}
		}

		DropIndexTask theIndexTask = new DropIndexTask(getProductVersion(), getSchemaVersion());
		theIndexTask
				.setTableName(getTableName())
				.setConnectionProperties(getConnectionProperties())
				.setDriverType(getDriverType())
				.setDryRun(isDryRun());
		for (String nextIndex : indexNames) {
			if (getDriverType() == DriverTypeEnum.DERBY_EMBEDDED && nextIndex.contains("-")) {
				// Derby creates special internal indexes with GUID names that can't be deleted
				continue;
			}
			theIndexTask.setIndexName(nextIndex).execute();
		}

		logInfo(ourLog, "Dropping table: {}", getTableName());

		@Language("SQL")
		String sql = "DROP TABLE " + getTableName();
		executeSql(getTableName(), sql);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy