@@ -43,6 +43,7 @@ import { DatabaseDialectCodes } from "./database_dialect/database_dialect_codes"
43
43
import { getWriter } from "./utils/utils" ;
44
44
import { ConnectionProvider } from "./connection_provider" ;
45
45
import { TelemetryFactory } from "./utils/telemetry/telemetry_factory" ;
46
+ import { DriverDialect } from "./driver_dialect/driver_dialect" ;
46
47
47
48
export class PluginService implements ErrorHandler , HostListProviderService {
48
49
private readonly _currentClient : AwsClient ;
@@ -55,6 +56,7 @@ export class PluginService implements ErrorHandler, HostListProviderService {
55
56
private dbDialectProvider : DatabaseDialectProvider ;
56
57
private readonly initialHost : string ;
57
58
private dialect : DatabaseDialect ;
59
+ private readonly driverDialect : DriverDialect ;
58
60
protected readonly sessionStateService : SessionStateService ;
59
61
protected static readonly hostAvailabilityExpiringCache : CacheMap < string , HostAvailability > = new CacheMap < string , HostAvailability > ( ) ;
60
62
readonly props : Map < string , any > ;
@@ -64,12 +66,14 @@ export class PluginService implements ErrorHandler, HostListProviderService {
64
66
client : AwsClient ,
65
67
dbType : DatabaseType ,
66
68
knownDialectsByCode : Map < DatabaseDialectCodes , DatabaseDialect > ,
67
- props : Map < string , any >
69
+ props : Map < string , any > ,
70
+ driverDialect : DriverDialect
68
71
) {
69
72
this . _currentClient = client ;
70
73
this . pluginServiceManagerContainer = container ;
71
74
this . props = props ;
72
75
this . dbDialectProvider = new DatabaseDialectManager ( knownDialectsByCode , dbType , this . props ) ;
76
+ this . driverDialect = driverDialect ;
73
77
this . initialHost = props . get ( WrapperProperties . HOST . name ) ;
74
78
this . sessionStateService = new SessionStateServiceImpl ( this , this . props ) ;
75
79
container . pluginService = this ;
@@ -158,6 +162,10 @@ export class PluginService implements ErrorHandler, HostListProviderService {
158
162
return this . dialect ;
159
163
}
160
164
165
+ getDriverDialect ( ) : DriverDialect {
166
+ return this . driverDialect ;
167
+ }
168
+
161
169
getHostInfoBuilder ( ) : HostInfoBuilder {
162
170
return new HostInfoBuilder ( { hostAvailabilityStrategy : new HostAvailabilityStrategyFactory ( ) . create ( this . props ) } ) ;
163
171
}
@@ -310,14 +318,6 @@ export class PluginService implements ErrorHandler, HostListProviderService {
310
318
return provider . identifyConnection ( targetClient , this . dialect ) ;
311
319
}
312
320
313
- createTargetClient ( props : Map < string , any > ) : any {
314
- const createClientFunc = this . getCurrentClient ( ) . getCreateClientFunc ( ) ;
315
- if ( createClientFunc ) {
316
- return createClientFunc ( props ) ;
317
- }
318
- throw new AwsWrapperError ( "AwsClient is missing create target client function." ) ; // This should not be reached
319
- }
320
-
321
321
connect ( hostInfo : HostInfo , props : Map < string , any > ) : Promise < ClientWrapper > {
322
322
return this . pluginServiceManagerContainer . pluginManager ! . connect ( hostInfo , props , false ) ;
323
323
}
@@ -356,7 +356,7 @@ export class PluginService implements ErrorHandler, HostListProviderService {
356
356
357
357
if ( oldClient && ( isInTransaction || WrapperProperties . ROLLBACK_ON_SWITCH . get ( this . props ) ) ) {
358
358
try {
359
- await this . getDialect ( ) . rollback ( oldClient ) ;
359
+ await this . getDriverDialect ( ) . rollback ( oldClient ) ;
360
360
} catch ( error : any ) {
361
361
// Ignore.
362
362
}
@@ -379,7 +379,7 @@ export class PluginService implements ErrorHandler, HostListProviderService {
379
379
}
380
380
381
381
try {
382
- await this . tryClosingTargetClient ( oldClient ) ;
382
+ await this . abortTargetClient ( oldClient ) ;
383
383
} catch ( error : any ) {
384
384
// Ignore.
385
385
}
@@ -400,12 +400,14 @@ export class PluginService implements ErrorHandler, HostListProviderService {
400
400
401
401
async abortCurrentClient ( ) : Promise < void > {
402
402
if ( this . _currentClient . targetClient ) {
403
- await this . getDialect ( ) . tryClosingTargetClient ( this . _currentClient . targetClient ) ;
403
+ await this . getDriverDialect ( ) . abort ( this . _currentClient . targetClient ) ;
404
404
}
405
405
}
406
406
407
- async tryClosingTargetClient ( targetClient : ClientWrapper ) : Promise < void > {
408
- await this . getDialect ( ) . tryClosingTargetClient ( targetClient ) ;
407
+ async abortTargetClient ( targetClient : ClientWrapper | undefined ) : Promise < void > {
408
+ if ( targetClient ) {
409
+ await this . getDriverDialect ( ) . abort ( targetClient ) ;
410
+ }
409
411
}
410
412
411
413
getSessionStateService ( ) {
@@ -482,7 +484,7 @@ export class PluginService implements ErrorHandler, HostListProviderService {
482
484
}
483
485
484
486
async rollback ( targetClient : ClientWrapper ) {
485
- return await this . getDialect ( ) . rollback ( targetClient ) ;
487
+ return await this . getDriverDialect ( ) . rollback ( targetClient ) ;
486
488
}
487
489
488
490
getTelemetryFactory ( ) : TelemetryFactory {
0 commit comments