@pi-r/mssql 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +6 -6
- package/README.md +4 -6
- package/client/index.d.ts +6 -6
- package/client/index.js +10 -10
- package/client/pool.js +63 -0
- package/package.json +29 -29
- package/types/index.d.ts +28 -28
- package/types/pool.d.ts +67 -0
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Copyright
|
|
2
|
-
|
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
-
|
|
5
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
-
|
|
1
|
+
Copyright 2023 An Pham
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
|
+
|
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6
|
+
|
|
7
7
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
package/client/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { IDbSourceClient } from '@e-mc/db/types';
|
|
2
|
-
|
|
3
|
-
import type { MSSQLDataSource } from '../types';
|
|
4
|
-
|
|
5
|
-
declare const MSSQL: IDbSourceClient<MSSQLDataSource>;
|
|
6
|
-
|
|
1
|
+
import type { IDbSourceClient } from '@e-mc/db/types';
|
|
2
|
+
|
|
3
|
+
import type { MSSQLDataSource } from '../types';
|
|
4
|
+
|
|
5
|
+
declare const MSSQL: IDbSourceClient<MSSQLDataSource>;
|
|
6
|
+
|
|
7
7
|
export = MSSQL;
|
package/client/index.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DB_SOURCE_TYPE = exports.DB_SOURCE_CLIENT = exports.checkTimeout = exports.executeBatchQuery = exports.executeQuery = exports.setCredential = void 0;
|
|
4
|
-
const tedious = require("tedious");
|
|
5
4
|
const types_1 = require("@e-mc/types");
|
|
6
5
|
const util_1 = require("@e-mc/db/util");
|
|
7
6
|
const Db = require("@e-mc/db");
|
|
8
|
-
const TediousPool = require('tedious-connection-pool2');
|
|
9
7
|
const DbPool = require('@e-mc/db/pool');
|
|
10
8
|
class MSSQLPool extends DbPool {
|
|
11
9
|
getConnection() {
|
|
@@ -204,6 +202,7 @@ function setCredential(item) {
|
|
|
204
202
|
}
|
|
205
203
|
const poolKey = getPoolKey(credential);
|
|
206
204
|
if (!(pool = POOL_STATE[poolKey]) || pool.closed) {
|
|
205
|
+
const Pool = require("tedious-connection-pool2");
|
|
207
206
|
const config = this.getPoolConfig("mssql", password);
|
|
208
207
|
const poolConfig = (0, types_1.isPlainObject)(item.usePool) ? item.usePool : {};
|
|
209
208
|
if (config) {
|
|
@@ -221,7 +220,7 @@ function setCredential(item) {
|
|
|
221
220
|
(_d = poolConfig.acquireTimeout) !== null && _d !== void 0 ? _d : (poolConfig.acquireTimeout = queue_idle);
|
|
222
221
|
}
|
|
223
222
|
}
|
|
224
|
-
new MSSQLPool(new
|
|
223
|
+
new MSSQLPool(new Pool(poolConfig, credential), poolKey, username && password ? { username, password } : undefined).add(item).parent = POOL_STATE;
|
|
225
224
|
}
|
|
226
225
|
else {
|
|
227
226
|
pool.add(item);
|
|
@@ -238,6 +237,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
238
237
|
if (length === 0) {
|
|
239
238
|
return [];
|
|
240
239
|
}
|
|
240
|
+
const db = require("tedious");
|
|
241
241
|
let parallel, connectOnce, errorQuery, sessionKey, outCacheMiss;
|
|
242
242
|
if ((0, types_1.isPlainObject)(options)) {
|
|
243
243
|
({ parallel, connectOnce, errorQuery, sessionKey, outCacheMiss } = options);
|
|
@@ -303,7 +303,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
303
303
|
}
|
|
304
304
|
if (!client) {
|
|
305
305
|
clients.push(client = await new Promise((resolve, reject) => {
|
|
306
|
-
const sql = new
|
|
306
|
+
const sql = new db.Connection(mssqlCredential || credential);
|
|
307
307
|
sql.connect(err => {
|
|
308
308
|
if (err) {
|
|
309
309
|
reject(err);
|
|
@@ -388,15 +388,15 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
388
388
|
const processRow = typeof streamRow === 'function' && streamRow;
|
|
389
389
|
const rows = [];
|
|
390
390
|
let recordset = 1, resume, output;
|
|
391
|
-
const request = new
|
|
391
|
+
const request = new db.Request(query, () => {
|
|
392
392
|
if (error && this.handleFail(error, item, { errorQuery, commandType })) {
|
|
393
393
|
reject(error);
|
|
394
394
|
}
|
|
395
395
|
else {
|
|
396
396
|
this.add(item, 4);
|
|
397
397
|
if (output) {
|
|
398
|
-
output
|
|
399
|
-
output
|
|
398
|
+
output['__recordset__'] = 0;
|
|
399
|
+
output['__returnvalue__'] = true;
|
|
400
400
|
rows.push([output]);
|
|
401
401
|
}
|
|
402
402
|
resolve(!error ? this.setQueryResult(source, credential, queryString, rows, cacheValue) : rows);
|
|
@@ -407,9 +407,9 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
407
407
|
if (isOutputParameters(params)) {
|
|
408
408
|
({ input: params, output: paramsOutput } = params);
|
|
409
409
|
}
|
|
410
|
-
convertParameters.call(request,
|
|
410
|
+
convertParameters.call(request, db.TYPES, params, false);
|
|
411
411
|
if (paramsOutput) {
|
|
412
|
-
convertParameters.call(request,
|
|
412
|
+
convertParameters.call(request, db.TYPES, paramsOutput, true);
|
|
413
413
|
}
|
|
414
414
|
}
|
|
415
415
|
request
|
|
@@ -423,7 +423,7 @@ async function executeBatchQuery(batch, options = '', outResult) {
|
|
|
423
423
|
try {
|
|
424
424
|
const items = JSON.parse(data.value);
|
|
425
425
|
if ((0, types_1.isArray)(items)) {
|
|
426
|
-
items.forEach((col) => col
|
|
426
|
+
items.forEach((col) => col['__recordset__'] = recordset);
|
|
427
427
|
rows.push(...items);
|
|
428
428
|
}
|
|
429
429
|
}
|
package/client/pool.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const types_1 = require("@e-mc/types");
|
|
3
|
+
const util_1 = require("@e-mc/db/util");
|
|
4
|
+
const DbPool = require('@e-mc/db/pool');
|
|
5
|
+
class MSSQLPool extends DbPool {
|
|
6
|
+
static asString(credential) {
|
|
7
|
+
const auth = credential.authentication?.options;
|
|
8
|
+
if (!credential.server || !(auth?.userName && auth.password)) {
|
|
9
|
+
return super.asString(credential);
|
|
10
|
+
}
|
|
11
|
+
const options = credential.options;
|
|
12
|
+
let tls;
|
|
13
|
+
if (options && (tls = options.cryptoCredentialsDetails)) {
|
|
14
|
+
if (!(0, types_1.isObject)(tls)) {
|
|
15
|
+
delete options.cryptoCredentialsDetails;
|
|
16
|
+
}
|
|
17
|
+
else if (tls.ca || tls.cert || tls.key) {
|
|
18
|
+
credential = { ...credential };
|
|
19
|
+
if ('uuidKey' in credential) {
|
|
20
|
+
delete credential.uuidKey;
|
|
21
|
+
}
|
|
22
|
+
credential.options = { ...options };
|
|
23
|
+
delete credential.options.cryptoCredentialsDetails;
|
|
24
|
+
return JSON.stringify(credential) + '_tls';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
if ('uuidKey' in credential) {
|
|
28
|
+
credential = { ...credential };
|
|
29
|
+
delete credential.uuidKey;
|
|
30
|
+
}
|
|
31
|
+
return JSON.stringify(credential);
|
|
32
|
+
}
|
|
33
|
+
async getConnection() {
|
|
34
|
+
return new Promise((resolve, reject) => {
|
|
35
|
+
this.client.acquire((err, connection) => {
|
|
36
|
+
if (err) {
|
|
37
|
+
reject(err);
|
|
38
|
+
}
|
|
39
|
+
else {
|
|
40
|
+
resolve(connection);
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
async close() {
|
|
46
|
+
return new Promise((resolve, reject) => {
|
|
47
|
+
try {
|
|
48
|
+
this.client.drain();
|
|
49
|
+
resolve();
|
|
50
|
+
}
|
|
51
|
+
catch (err) {
|
|
52
|
+
reject(err);
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
isEmpty() {
|
|
57
|
+
return this.closed || (0, util_1.checkEmpty)(this.client.connections) && (0, util_1.checkEmpty)(this.client.waiting);
|
|
58
|
+
}
|
|
59
|
+
get closed() {
|
|
60
|
+
return !!this.client.drained;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
module.exports = MSSQLPool;
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pi-r/mssql",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "MSSQL client driver for E-mc.",
|
|
5
|
-
"main": "client/index.js",
|
|
6
|
-
"types": "client/index.d.ts",
|
|
7
|
-
"publishConfig": {
|
|
8
|
-
"access": "public"
|
|
9
|
-
},
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/anpham6/pi-r.git",
|
|
13
|
-
"directory": "src/db/mssql"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"squared",
|
|
17
|
-
"e-mc",
|
|
18
|
-
"squared-functions"
|
|
19
|
-
],
|
|
20
|
-
"author": "An Pham <anpham6@gmail.com>",
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
23
|
-
"dependencies": {
|
|
24
|
-
"@e-mc/db": "^0.6.
|
|
25
|
-
"@e-mc/types": "^0.6.
|
|
26
|
-
"tedious": "^16.7.1",
|
|
27
|
-
"tedious-connection-pool2": "^2.1.0"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@pi-r/mssql",
|
|
3
|
+
"version": "0.3.6",
|
|
4
|
+
"description": "MSSQL client driver for E-mc.",
|
|
5
|
+
"main": "client/index.js",
|
|
6
|
+
"types": "client/index.d.ts",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/anpham6/pi-r.git",
|
|
13
|
+
"directory": "src/db/mssql"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"squared",
|
|
17
|
+
"e-mc",
|
|
18
|
+
"squared-functions"
|
|
19
|
+
],
|
|
20
|
+
"author": "An Pham <anpham6@gmail.com>",
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"homepage": "https://github.com/anpham6/pi-r#readme",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@e-mc/db": "^0.6.16",
|
|
25
|
+
"@e-mc/types": "^0.6.16",
|
|
26
|
+
"tedious": "^16.7.1",
|
|
27
|
+
"tedious-connection-pool2": "^2.1.0"
|
|
28
|
+
}
|
|
29
|
+
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import type { DbDataSource } from '@e-mc/types/lib/squared';
|
|
2
|
-
|
|
3
|
-
import type { ExecuteAction, ServerAuth } from '@e-mc/types/lib/db';
|
|
4
|
-
|
|
5
|
-
// @ts-ignore
|
|
6
|
-
import type { ConnectionConfig, ParameterOptions, TediousType, TediousTypes } from 'tedious';
|
|
7
|
-
// @ts-ignore
|
|
8
|
-
import type { PoolConfig } from 'tedious-connection-pool';
|
|
9
|
-
|
|
10
|
-
export interface MSSQLDataSource extends DbDataSource<string, unknown, unknown, string | MSSQLCredential, string | PoolConfig>, ExecuteAction<MSSQLRequestParameters | MSSQLRequestWithOutputParameters> {
|
|
11
|
-
source: "mssql";
|
|
12
|
-
storedProc?: boolean;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface MSSQLCredential extends ServerAuth, ConnectionConfig {}
|
|
16
|
-
|
|
17
|
-
export interface MSSQLRequestWithOutputParameters {
|
|
18
|
-
input?: MSSQLRequestParameters;
|
|
19
|
-
output?: MSSQLRequestParameters;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface MSSQLRequestParameterValue {
|
|
23
|
-
name?: string;
|
|
24
|
-
value?: unknown;
|
|
25
|
-
type?: keyof TediousTypes | TediousType;
|
|
26
|
-
options?: ParameterOptions;
|
|
27
|
-
}
|
|
28
|
-
|
|
1
|
+
import type { DbDataSource } from '@e-mc/types/lib/squared';
|
|
2
|
+
|
|
3
|
+
import type { ExecuteAction, ServerAuth } from '@e-mc/types/lib/db';
|
|
4
|
+
|
|
5
|
+
// @ts-ignore
|
|
6
|
+
import type { ConnectionConfig, ParameterOptions, TediousType, TediousTypes } from 'tedious';
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
import type { PoolConfig } from 'tedious-connection-pool';
|
|
9
|
+
|
|
10
|
+
export interface MSSQLDataSource extends DbDataSource<string, unknown, unknown, string | MSSQLCredential, string | PoolConfig>, ExecuteAction<MSSQLRequestParameters | MSSQLRequestWithOutputParameters> {
|
|
11
|
+
source: "mssql";
|
|
12
|
+
storedProc?: boolean;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface MSSQLCredential extends ServerAuth, ConnectionConfig {}
|
|
16
|
+
|
|
17
|
+
export interface MSSQLRequestWithOutputParameters {
|
|
18
|
+
input?: MSSQLRequestParameters;
|
|
19
|
+
output?: MSSQLRequestParameters;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface MSSQLRequestParameterValue {
|
|
23
|
+
name?: string;
|
|
24
|
+
value?: unknown;
|
|
25
|
+
type?: keyof TediousTypes | TediousType;
|
|
26
|
+
options?: ParameterOptions;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
29
|
export type MSSQLRequestParameters = Null<MSSQLRequestParameterValue[] | ObjectMap<Omit<MSSQLRequestParameterValue, "name">>>;
|
package/types/pool.d.ts
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { Connection, ConnectionConfiguration } from 'tedious';
|
|
2
|
+
|
|
3
|
+
import type * as EventEmitter from 'events';
|
|
4
|
+
|
|
5
|
+
declare class Pool extends EventEmitter {
|
|
6
|
+
/**
|
|
7
|
+
* Connection Pool constructor
|
|
8
|
+
* @param poolConfig the pool configuration
|
|
9
|
+
* @param connectionConfig the connection configuration
|
|
10
|
+
*/
|
|
11
|
+
constructor(poolConfig: Pool.PoolConfig, connectionConfig: ConnectionConfiguration);
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* acquires a connection from the pool
|
|
15
|
+
* @param callback invoked when the connection is retrieved and ready
|
|
16
|
+
*/
|
|
17
|
+
acquire(callback: (err: Error, connection: Pool.PooledConnection) => void): void;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* closes opened connections
|
|
21
|
+
*/
|
|
22
|
+
drain(): void;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare namespace Pool {
|
|
26
|
+
|
|
27
|
+
export class PooledConnection extends Connection {
|
|
28
|
+
/**
|
|
29
|
+
* If the connection is issued from a connection pool returns the connection to the pool.
|
|
30
|
+
*/
|
|
31
|
+
release(): void;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface PoolConfig {
|
|
35
|
+
/**
|
|
36
|
+
* Minimum concurrent connections
|
|
37
|
+
*/
|
|
38
|
+
min?: number | undefined;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Maximum concurrent connections
|
|
42
|
+
*/
|
|
43
|
+
max?: number | undefined;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Defines if logging is activated
|
|
47
|
+
*/
|
|
48
|
+
log?: boolean | undefined;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Idle timeout
|
|
52
|
+
*/
|
|
53
|
+
idleTimeout?: number | undefined;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Retry delay
|
|
57
|
+
*/
|
|
58
|
+
retryDelay?: number | undefined;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* Acquire timeout
|
|
62
|
+
*/
|
|
63
|
+
acquireTimeout?: number | undefined;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export = Pool;
|