]> source.dussan.org Git - sonarqube.git/blob
ea4112520f28b8a0a8a4ec51c38501f53ec6e469
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2020 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20
21 package org.sonar.server.platform.db.migration.version.v83.util;
22
23 import java.sql.SQLException;
24 import java.util.List;
25 import org.sonar.db.Database;
26 import org.sonar.db.dialect.Dialect;
27 import org.sonar.db.dialect.H2;
28 import org.sonar.db.dialect.MsSql;
29 import org.sonar.db.dialect.Oracle;
30 import org.sonar.db.dialect.PostgreSql;
31
32 import static java.lang.String.format;
33 import static java.util.Arrays.asList;
34 import static java.util.Collections.singletonList;
35 import static java.util.Locale.ENGLISH;
36 import static org.sonar.server.platform.db.migration.sql.CreateTableBuilder.PRIMARY_KEY_PREFIX;
37
38 public class DropPrimaryKeySqlGenerator {
39   private final Database db;
40   private final GetConstraintHelper getConstraintHelper;
41
42   public DropPrimaryKeySqlGenerator(Database db, GetConstraintHelper getConstraintHelper) {
43     this.db = db;
44     this.getConstraintHelper = getConstraintHelper;
45   }
46
47   public List<String> generate(String tableName, String originalTableName, String columnName) throws SQLException {
48     Dialect dialect = db.getDialect();
49     switch (dialect.getId()) {
50       case PostgreSql.ID:
51         return generateForPostgresSql(tableName, originalTableName, columnName, getConstraintHelper.getPostgresSqlConstraint(tableName));
52       case MsSql.ID:
53         return generateForMsSql(tableName, getConstraintHelper.getMssqlConstraint(tableName));
54       case Oracle.ID:
55         return generateForOracle(tableName, getConstraintHelper.getOracleConstraint(tableName));
56       case H2.ID:
57         return generateForH2(tableName, originalTableName, columnName);
58       default:
59         throw new IllegalStateException(format("Unsupported database '%s'", dialect.getId()));
60     }
61   }
62
63   private static List<String> generateForPostgresSql(String tableName, String originalTableName, String column, String constraintName) {
64     return asList(
65       format("ALTER TABLE %s ALTER COLUMN %s DROP DEFAULT", tableName, column),
66       format("DROP SEQUENCE %s_%s_seq", originalTableName, column),
67       format("ALTER TABLE %s DROP CONSTRAINT %s", tableName, constraintName));
68   }
69
70   private static List<String> generateForOracle(String tableName, String constraintName) {
71     return asList(
72       format("DROP TRIGGER %s_IDT", tableName),
73       format("DROP SEQUENCE %s_SEQ", tableName),
74       format("ALTER TABLE %s DROP CONSTRAINT %s", tableName, constraintName));
75   }
76
77   private static List<String> generateForMsSql(String tableName, String constraintName) {
78     return singletonList(format("ALTER TABLE %s DROP CONSTRAINT %s", tableName, constraintName));
79   }
80
81   private static List<String> generateForH2(String tableName, String originalTableName, String column) {
82     return asList(
83       format("ALTER TABLE %s DROP CONSTRAINT %s%s", tableName, PRIMARY_KEY_PREFIX.toUpperCase(ENGLISH), originalTableName),
84       format("ALTER TABLE %s ALTER COLUMN %s INTEGER NOT NULL", tableName, column));
85   }
86
87 }