-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathBigQueryParameterMetaData.java
More file actions
186 lines (169 loc) · 5.64 KB
/
Copy pathBigQueryParameterMetaData.java
File metadata and controls
186 lines (169 loc) · 5.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
* Copyright 2026 Google LLC
*
* 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
*
* https://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 com.google.cloud.bigquery.jdbc;
import com.google.cloud.bigquery.StandardSQLTypeName;
import com.google.cloud.bigquery.exception.BigQueryJdbcException;
import java.sql.ParameterMetaData;
import java.sql.SQLException;
import java.sql.Types;
/** ParameterMetaData implementation for BigQuery JDBC PreparedStatement parameters. */
class BigQueryParameterMetaData implements ParameterMetaData {
private final int parameterCount;
private final BigQueryParameterHandler parameterHandler;
BigQueryParameterMetaData(int parameterCount, BigQueryParameterHandler parameterHandler) {
this.parameterCount = parameterCount;
this.parameterHandler = parameterHandler;
}
private void checkValidIndex(int param) throws SQLException {
if (param < 1 || param > this.parameterCount) {
throw new BigQueryJdbcException("Invalid parameter index: " + param);
}
}
@Override
public int getParameterCount() {
return this.parameterCount;
}
@Override
public int isNullable(int param) throws SQLException {
checkValidIndex(param);
return parameterNullable;
}
@Override
public boolean isSigned(int param) throws SQLException {
int type = getParameterType(param);
return type == Types.SMALLINT
|| type == Types.TINYINT
|| type == Types.INTEGER
|| type == Types.BIGINT
|| type == Types.FLOAT
|| type == Types.DOUBLE
|| type == Types.DECIMAL
|| type == Types.NUMERIC;
}
@Override
public int getPrecision(int param) throws SQLException {
checkValidIndex(param);
StandardSQLTypeName sqlType = getStandardSQLTypeName(param);
if (sqlType == null) {
return 0;
}
BigQueryJdbcTypeMappings.ColumnTypeInfo typeInfo =
BigQueryJdbcTypeMappings.STANDARD_TYPE_INFO.get(sqlType);
if (typeInfo != null && typeInfo.columnSize != null) {
return typeInfo.columnSize;
}
return 0;
}
@Override
public int getScale(int param) throws SQLException {
checkValidIndex(param);
StandardSQLTypeName sqlType = getStandardSQLTypeName(param);
if (sqlType == null) {
return 0;
}
BigQueryJdbcTypeMappings.ColumnTypeInfo typeInfo =
BigQueryJdbcTypeMappings.STANDARD_TYPE_INFO.get(sqlType);
if (typeInfo != null && typeInfo.decimalDigits != null) {
return typeInfo.decimalDigits;
}
return 0;
}
@Override
public int getParameterType(int param) throws SQLException {
checkValidIndex(param);
StandardSQLTypeName sqlType = getStandardSQLTypeName(param);
if (sqlType == null) {
return Types.OTHER;
}
Integer jdbcType = BigQueryJdbcTypeMappings.standardSQLToJavaSqlTypesMapping.get(sqlType);
if (jdbcType != null) {
return jdbcType;
}
return Types.OTHER;
}
@Override
public String getParameterTypeName(int param) throws SQLException {
checkValidIndex(param);
StandardSQLTypeName sqlType = getStandardSQLTypeName(param);
return sqlType != null ? sqlType.name() : "UNKNOWN";
}
@Override
public String getParameterClassName(int param) throws SQLException {
checkValidIndex(param);
StandardSQLTypeName sqlType = getStandardSQLTypeName(param);
if (sqlType != null) {
Class<?> clazz = BigQueryJdbcTypeMappings.standardSQLToJavaTypeMapping.get(sqlType);
if (clazz != null) {
return clazz.getName();
}
}
if (this.parameterHandler == null) {
return Object.class.getName();
}
Class<?> boundType = this.parameterHandler.getType(param);
if (boundType != null) {
return boundType.getName();
}
return Object.class.getName();
}
@Override
public int getParameterMode(int param) throws SQLException {
checkValidIndex(param);
if (this.parameterHandler == null) {
return parameterModeIn;
}
BigQueryParameterHandler.BigQueryStatementParameterType paramType =
this.parameterHandler.getParameterType(param);
if (paramType == BigQueryParameterHandler.BigQueryStatementParameterType.OUT) {
return parameterModeOut;
}
if (paramType == BigQueryParameterHandler.BigQueryStatementParameterType.INOUT) {
return parameterModeInOut;
}
return parameterModeIn;
}
private StandardSQLTypeName getStandardSQLTypeName(int param) {
if (this.parameterHandler == null) {
return null;
}
StandardSQLTypeName sqlType = this.parameterHandler.getSqlType(param);
if (sqlType != null) {
return sqlType;
}
Class<?> javaType = this.parameterHandler.getType(param);
if (javaType == null) {
return null;
}
try {
return BigQueryJdbcTypeMappings.classToType(javaType);
} catch (SQLException ignored) {
// fall back to default
return null;
}
}
@Override
public <T> T unwrap(Class<T> iface) throws SQLException {
if (!isWrapperFor(iface)) {
throw new BigQueryJdbcException(
"Cannot unwrap to " + (iface != null ? iface.getName() : "null"));
}
return iface.cast(this);
}
@Override
public boolean isWrapperFor(Class<?> iface) throws SQLException {
return iface != null && iface.isInstance(this);
}
}