forked from databricks/databricks-sql-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBSQLSession.ts
293 lines (268 loc) · 8.5 KB
/
DBSQLSession.ts
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
import { stringify, NIL, parse } from 'uuid';
import { TSessionHandle, TStatus, TOperationHandle, TSparkDirectResults } from '../thrift/TCLIService_types';
import HiveDriver from './hive/HiveDriver';
import { Int64 } from './hive/Types';
import IDBSQLSession, {
ExecuteStatementOptions,
TypeInfoRequest,
CatalogsRequest,
SchemasRequest,
TablesRequest,
TableTypesRequest,
ColumnsRequest,
FunctionsRequest,
PrimaryKeysRequest,
CrossReferenceRequest,
} from './contracts/IDBSQLSession';
import IOperation from './contracts/IOperation';
import DBSQLOperation from './DBSQLOperation';
import Status from './dto/Status';
import StatusFactory from './factory/StatusFactory';
import InfoValue from './dto/InfoValue';
import { definedOrError } from './utils';
import IDBSQLLogger, { LogLevel } from './contracts/IDBSQLLogger';
const defaultMaxRows = 100000;
interface OperationResponseShape {
status: TStatus;
operationHandle?: TOperationHandle;
directResults?: TSparkDirectResults;
}
function getDirectResultsOptions(maxRows: number | null = defaultMaxRows) {
if (maxRows === null) {
return {};
}
return {
getDirectResults: {
maxRows: new Int64(maxRows),
},
};
}
export default class DBSQLSession implements IDBSQLSession {
private driver: HiveDriver;
private sessionHandle: TSessionHandle;
private statusFactory: StatusFactory;
private logger: IDBSQLLogger;
constructor(driver: HiveDriver, sessionHandle: TSessionHandle, logger: IDBSQLLogger) {
this.driver = driver;
this.sessionHandle = sessionHandle;
this.statusFactory = new StatusFactory();
this.logger = logger;
this.logger.log(LogLevel.debug, `Session created with id: ${this.getId()}`);
}
getId() {
return stringify(this.sessionHandle?.sessionId?.guid || parse(NIL));
}
/**
* Fetches info
* @public
* @param infoType - One of the values TCLIService_types.TGetInfoType
* @returns Value corresponding to info type requested
* @example
* const response = await session.getInfo(thrift.TCLIService_types.TGetInfoType.CLI_DBMS_VER);
*/
getInfo(infoType: number): Promise<InfoValue> {
return this.driver
.getInfo({
sessionHandle: this.sessionHandle,
infoType,
})
.then((response) => {
this.assertStatus(response.status);
return new InfoValue(response.infoValue);
});
}
/**
* Executes statement
* @public
* @param statement - SQL statement to be executed
* @param options - maxRows field is used to specify Direct Results
* @returns DBSQLOperation
* @example
* const operation = await session.executeStatement(query, { runAsync: true });
*/
executeStatement(statement: string, options: ExecuteStatementOptions = {}): Promise<IOperation> {
return this.driver
.executeStatement({
sessionHandle: this.sessionHandle,
statement,
queryTimeout: options.queryTimeout,
runAsync: options.runAsync || false,
...getDirectResultsOptions(options.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Information about supported data types
* @public
* @param request
* @returns DBSQLOperation
*/
getTypeInfo(request: TypeInfoRequest = {}): Promise<IOperation> {
return this.driver
.getTypeInfo({
sessionHandle: this.sessionHandle,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get list of catalogs
* @public
* @param request
* @returns DBSQLOperation
*/
getCatalogs(request: CatalogsRequest = {}): Promise<IOperation> {
return this.driver
.getCatalogs({
sessionHandle: this.sessionHandle,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get list of schemas
* @public
* @param request
* @returns DBSQLOperation
*/
getSchemas(request: SchemasRequest = {}): Promise<IOperation> {
return this.driver
.getSchemas({
sessionHandle: this.sessionHandle,
catalogName: request.catalogName,
schemaName: request.schemaName,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get list of tables
* @public
* @param request
* @returns DBSQLOperation
*/
getTables(request: TablesRequest = {}): Promise<IOperation> {
return this.driver
.getTables({
sessionHandle: this.sessionHandle,
catalogName: request.catalogName,
schemaName: request.schemaName,
tableName: request.tableName,
tableTypes: request.tableTypes,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get list of supported table types
* @public
* @param request
* @returns DBSQLOperation
*/
getTableTypes(request: TableTypesRequest = {}): Promise<IOperation> {
return this.driver
.getTableTypes({
sessionHandle: this.sessionHandle,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get full information about columns of the table
* @public
* @param request
* @returns DBSQLOperation
*/
getColumns(request: ColumnsRequest = {}): Promise<IOperation> {
return this.driver
.getColumns({
sessionHandle: this.sessionHandle,
catalogName: request.catalogName,
schemaName: request.schemaName,
tableName: request.tableName,
columnName: request.columnName,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Get information about function
* @public
* @param request
* @returns DBSQLOperation
*/
getFunctions(request: FunctionsRequest): Promise<IOperation> {
return this.driver
.getFunctions({
sessionHandle: this.sessionHandle,
catalogName: request.catalogName,
schemaName: request.schemaName,
functionName: request.functionName,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
getPrimaryKeys(request: PrimaryKeysRequest): Promise<IOperation> {
return this.driver
.getPrimaryKeys({
sessionHandle: this.sessionHandle,
catalogName: request.catalogName,
schemaName: request.schemaName,
tableName: request.tableName,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Request information about foreign keys between two tables
* @public
* @param request
* @returns DBSQLOperation
*/
getCrossReference(request: CrossReferenceRequest): Promise<IOperation> {
return this.driver
.getCrossReference({
sessionHandle: this.sessionHandle,
parentCatalogName: request.parentCatalogName,
parentSchemaName: request.parentSchemaName,
parentTableName: request.parentTableName,
foreignCatalogName: request.foreignCatalogName,
foreignSchemaName: request.foreignSchemaName,
foreignTableName: request.foreignTableName,
runAsync: request.runAsync || false,
...getDirectResultsOptions(request.maxRows),
})
.then((response) => this.createOperation(response));
}
/**
* Closes the session
* @public
* @returns Operation status
*/
close(): Promise<Status> {
return this.driver
.closeSession({
sessionHandle: this.sessionHandle,
})
.then((response) => {
this.logger.log(LogLevel.debug, `Session closed with id: ${this.getId()}`);
return this.statusFactory.create(response.status);
});
}
private createOperation(response: OperationResponseShape): IOperation {
this.assertStatus(response.status);
const handle = definedOrError(response.operationHandle);
return new DBSQLOperation(this.driver, handle, this.logger, response.directResults);
}
private assertStatus(responseStatus: TStatus): void {
this.statusFactory.create(responseStatus);
}
}