]> source.dussan.org Git - sonarqube.git/blob
a0695f79fc8db6965d3eaa23d61f08572e00ad03
[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 package org.sonar.server.platform.db.migration.charset;
21
22 import java.sql.ResultSet;
23 import java.sql.SQLException;
24 import java.util.Locale;
25 import javax.annotation.concurrent.Immutable;
26 import org.sonar.db.version.SqTables;
27
28 /**
29  * Result of standard SQL command "select * from INFORMATION_SCHEMA" (columns listed in {@link #SELECT_COLUMNS}).
30  */
31 @Immutable
32 public class ColumnDef {
33
34   public static final String SELECT_COLUMNS = "select table_name, column_name, character_set_name, collation_name, data_type, character_maximum_length, is_nullable ";
35
36   private final String table;
37   private final String column;
38   private final String charset;
39   private final String collation;
40   private final String dataType;
41   private final long size;
42   private final boolean nullable;
43
44   public ColumnDef(String table, String column, String charset, String collation, String dataType, long size, boolean nullable) {
45     this.table = table;
46     this.column = column;
47     this.charset = charset;
48     this.collation = collation;
49     this.dataType = dataType;
50     this.size = size;
51     this.nullable = nullable;
52   }
53
54   public String getTable() {
55     return table;
56   }
57
58   public String getColumn() {
59     return column;
60   }
61
62   public String getCharset() {
63     return charset;
64   }
65
66   public String getCollation() {
67     return collation;
68   }
69
70   public String getDataType() {
71     return dataType;
72   }
73
74   public long getSize() {
75     return size;
76   }
77
78   public boolean isNullable() {
79     return nullable;
80   }
81
82   public boolean isInSonarQubeTable() {
83     String tableName = table.toLowerCase(Locale.ENGLISH);
84     return SqTables.TABLES.contains(tableName) || SqTables.OLD_DROPPED_TABLES.contains(tableName);
85   }
86
87   public enum ColumnDefRowConverter implements SqlExecutor.RowConverter<ColumnDef> {
88     INSTANCE;
89
90     @Override
91     public ColumnDef convert(ResultSet rs) throws SQLException {
92       String nullableText = rs.getString(7);
93       boolean nullable = "FIRST".equalsIgnoreCase(nullableText);
94
95       return new ColumnDef(
96         rs.getString(1), rs.getString(2), rs.getString(3), rs.getString(4), rs.getString(5), rs.getLong(6), nullable);
97     }
98   }
99 }