index.js
14.1 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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
'use strict';
var _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');
var _classCallCheck3 = _interopRequireDefault(_classCallCheck2);
var _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');
var _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);
var _inherits2 = require('babel-runtime/helpers/inherits');
var _inherits3 = _interopRequireDefault(_inherits2);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// Oracledb Client
// -------
var _ = require('lodash');
var inherits = require('inherits');
var QueryCompiler = require('./query/compiler');
var ColumnCompiler = require('./schema/columncompiler');
var BlobHelper = require('./utils').BlobHelper;
var ReturningHelper = require('./utils').ReturningHelper;
var Promise = require('bluebird');
var stream = require('stream');
var helpers = require('../../helpers');
var Transaction = require('./transaction');
var Client_Oracle = require('../oracle');
var Oracle_Formatter = require('../oracle/formatter');
var Buffer = require('safe-buffer').Buffer;
function Client_Oracledb() {
Client_Oracle.apply(this, arguments);
// Node.js only have 4 background threads by default, oracledb needs one by connection
if (this.driver) {
process.env.UV_THREADPOOL_SIZE = process.env.UV_THREADPOOL_SIZE || 1;
process.env.UV_THREADPOOL_SIZE += this.driver.poolMax;
}
}
inherits(Client_Oracledb, Client_Oracle);
Client_Oracledb.prototype.driverName = 'oracledb';
Client_Oracledb.prototype._driver = function () {
var oracledb = require('oracledb');
return oracledb;
};
Client_Oracledb.prototype.queryCompiler = function () {
return new (Function.prototype.bind.apply(QueryCompiler, [null].concat([this], Array.prototype.slice.call(arguments))))();
};
Client_Oracledb.prototype.columnCompiler = function () {
return new (Function.prototype.bind.apply(ColumnCompiler, [null].concat([this], Array.prototype.slice.call(arguments))))();
};
Client_Oracledb.prototype.formatter = function () {
return new Oracledb_Formatter(this);
};
Client_Oracledb.prototype.transaction = function () {
return new (Function.prototype.bind.apply(Transaction, [null].concat([this], Array.prototype.slice.call(arguments))))();
};
Client_Oracledb.prototype.prepBindings = function (bindings) {
var _this = this;
return _.map(bindings, function (value) {
if (value instanceof BlobHelper && _this.driver) {
return { type: _this.driver.BLOB, dir: _this.driver.BIND_OUT };
// Returning helper always use ROWID as string
} else if (value instanceof ReturningHelper && _this.driver) {
return { type: _this.driver.STRING, dir: _this.driver.BIND_OUT };
} else if (typeof value === 'boolean') {
return value ? 1 : 0;
}
return value;
});
};
// Get a raw connection, called by the `pool` whenever a new
// connection needs to be added to the pool.
Client_Oracledb.prototype.acquireRawConnection = function () {
var client = this;
var asyncConnection = new Promise(function (resolver, rejecter) {
// If external authentication dont have to worry about username/password and
// if not need to set the username and password
var oracleDbConfig = client.connectionSettings.externalAuth ? { externalAuth: client.connectionSettings.externalAuth } : {
user: client.connectionSettings.user,
password: client.connectionSettings.password
};
// In the case of external authentication connection string will be given
oracleDbConfig.connectString = client.connectionSettings.connectString || client.connectionSettings.host + '/' + client.connectionSettings.database;
if (client.connectionSettings.prefetchRowCount) {
oracleDbConfig.prefetchRows = client.connectionSettings.prefetchRowCount;
}
if (!_.isUndefined(client.connectionSettings.stmtCacheSize)) {
oracleDbConfig.stmtCacheSize = client.connectionSettings.stmtCacheSize;
}
client.driver.getConnection(oracleDbConfig, function (err, connection) {
if (err) {
return rejecter(err);
}
connection.commitAsync = function () {
var _this2 = this;
return new Promise(function (commitResolve, commitReject) {
if (connection.isTransaction) {
return commitResolve();
}
_this2.commit(function (err) {
if (err) {
return commitReject(err);
}
commitResolve();
});
});
};
connection.rollbackAsync = function () {
var _this3 = this;
return new Promise(function (rollbackResolve, rollbackReject) {
_this3.rollback(function (err) {
if (err) {
return rollbackReject(err);
}
rollbackResolve();
});
});
};
var fetchAsync = function fetchAsync(sql, bindParams, options, cb) {
options = options || {};
options.outFormat = client.driver.OBJECT;
if (options.resultSet) {
connection.execute(sql, bindParams || [], options, function (err, result) {
if (err) {
return cb(err);
}
var fetchResult = { rows: [], resultSet: result.resultSet };
var numRows = 100;
var fetchRowsFromRS = function fetchRowsFromRS(connection, resultSet, numRows) {
resultSet.getRows(numRows, function (err, rows) {
if (err) {
resultSet.close(function () {
return cb(err);
});
} else if (rows.length === 0) {
return cb(null, fetchResult);
} else if (rows.length > 0) {
if (rows.length === numRows) {
fetchResult.rows = fetchResult.rows.concat(rows);
fetchRowsFromRS(connection, resultSet, numRows);
} else {
fetchResult.rows = fetchResult.rows.concat(rows);
return cb(null, fetchResult);
}
}
});
};
fetchRowsFromRS(connection, result.resultSet, numRows);
});
} else {
connection.execute(sql, bindParams || [], options, cb);
}
};
connection.executeAsync = function (sql, bindParams, options) {
// Read all lob
return new Promise(function (resultResolve, resultReject) {
fetchAsync(sql, bindParams, options, function (err, results) {
if (err) {
return resultReject(err);
}
// Collect LOBs to read
var lobs = [];
if (results.rows) {
if (Array.isArray(results.rows)) {
for (var i = 0; i < results.rows.length; i++) {
// Iterate through the rows
var row = results.rows[i];
for (var column in row) {
if (row[column] instanceof stream.Readable) {
lobs.push({ index: i, key: column, stream: row[column] });
}
}
}
}
}
Promise.each(lobs, function (lob) {
return new Promise(function (lobResolve, lobReject) {
readStream(lob.stream, function (err, d) {
if (err) {
if (results.resultSet) {
results.resultSet.close(function () {
return lobReject(err);
});
}
return lobReject(err);
}
results.rows[lob.index][lob.key] = d;
lobResolve();
});
});
}).then(function () {
if (results.resultSet) {
results.resultSet.close(function (err) {
if (err) {
return resultReject(err);
}
return resultResolve(results);
});
}
resultResolve(results);
}, function (err) {
resultReject(err);
});
});
});
};
resolver(connection);
});
});
return asyncConnection;
};
// Used to explicitly close a connection, called internally by the pool
// when a connection times out or the pool is shutdown.
Client_Oracledb.prototype.destroyRawConnection = function (connection) {
connection.release();
};
// Runs the query on the specified connection, providing the bindings
// and any other necessary prep work.
Client_Oracledb.prototype._query = function (connection, obj) {
// Convert ? params into positional bindings (:1)
obj.sql = this.positionBindings(obj.sql);
obj.bindings = this.prepBindings(obj.bindings) || [];
return new Promise(function (resolver, rejecter) {
if (!obj.sql) {
return rejecter(new Error('The query is empty'));
}
var options = { autoCommit: false };
if (obj.method === 'select') {
options.resultSet = true;
}
connection.executeAsync(obj.sql, obj.bindings, options).then(function (response) {
// Flatten outBinds
var outBinds = _.flatten(response.outBinds);
obj.response = response.rows || [];
obj.rowsAffected = response.rows ? response.rows.rowsAffected : response.rowsAffected;
if (obj.method === 'update') {
(function () {
var modifiedRowsCount = obj.rowsAffected.length || obj.rowsAffected;
var updatedObjOutBinding = [];
var updatedOutBinds = [];
var updateOutBinds = function updateOutBinds(i) {
return function (value, index) {
var OutBindsOffset = index * modifiedRowsCount;
updatedOutBinds.push(outBinds[i + OutBindsOffset]);
};
};
for (var i = 0; i < modifiedRowsCount; i++) {
updatedObjOutBinding.push(obj.outBinding[0]);
_.each(obj.outBinding[0], updateOutBinds(i));
}
outBinds = updatedOutBinds;
obj.outBinding = updatedObjOutBinding;
})();
}
if (!obj.returning && outBinds.length === 0) {
return connection.commitAsync().then(function () {
resolver(obj);
});
}
var rowIds = [];
var offset = 0;
Promise.each(obj.outBinding, function (ret, line) {
offset = offset + (obj.outBinding[line - 1] ? obj.outBinding[line - 1].length : 0);
return Promise.each(ret, function (out, index) {
return new Promise(function (bindResolver, bindRejecter) {
if (out instanceof BlobHelper) {
var blob = outBinds[index + offset];
if (out.returning) {
obj.response[line] = obj.response[line] || {};
obj.response[line][out.columnName] = out.value;
}
blob.on('error', function (err) {
bindRejecter(err);
});
blob.on('finish', function () {
bindResolver();
});
blob.write(out.value);
blob.end();
} else if (obj.outBinding[line][index] === 'ROWID') {
rowIds.push(outBinds[index + offset]);
bindResolver();
} else {
obj.response[line] = obj.response[line] || {};
obj.response[line][out] = outBinds[index + offset];
bindResolver();
}
});
});
}).then(function () {
return connection.commitAsync();
}).then(function () {
if (obj.returningSql) {
return connection.executeAsync(obj.returningSql(), rowIds, { resultSet: true }).then(function (response) {
obj.response = response.rows;
return obj;
}, rejecter);
}
return obj;
}, rejecter).then(function (obj) {
resolver(obj);
});
}, rejecter);
});
};
// Handle clob
function readStream(stream, cb) {
var oracledb = require('oracledb');
var data = '';
if (stream.iLob.type === oracledb.CLOB) {
stream.setEncoding('utf-8');
} else {
data = Buffer.alloc(0);
}
stream.on('error', function (err) {
cb(err);
});
stream.on('data', function (chunk) {
if (stream.iLob.type === oracledb.CLOB) {
data += chunk;
} else {
data = Buffer.concat([data, chunk]);
}
});
stream.on('end', function () {
cb(null, data);
});
}
// Process the response as returned from the query.
Client_Oracledb.prototype.processResponse = function (obj, runner) {
var response = obj.response;
var method = obj.method;
if (obj.output) {
return obj.output.call(runner, response);
}
switch (method) {
case 'select':
case 'pluck':
case 'first':
response = helpers.skim(response);
if (obj.method === 'pluck') {
response = _.map(response, obj.pluck);
}
return obj.method === 'first' ? response[0] : response;
case 'insert':
case 'del':
case 'update':
case 'counter':
if (obj.returning && !_.isEmpty(obj.returning)) {
if (obj.returning.length === 1 && obj.returning[0] !== '*') {
return _.flatten(_.map(response, _.values));
}
return response;
} else if (!_.isUndefined(obj.rowsAffected)) {
return obj.rowsAffected;
} else {
return 1;
}
default:
return response;
}
};
var Oracledb_Formatter = function (_Oracle_Formatter) {
(0, _inherits3.default)(Oracledb_Formatter, _Oracle_Formatter);
function Oracledb_Formatter() {
(0, _classCallCheck3.default)(this, Oracledb_Formatter);
return (0, _possibleConstructorReturn3.default)(this, _Oracle_Formatter.apply(this, arguments));
}
// Checks whether a value is a function... if it is, we compile it
// otherwise we check whether it's a raw
Oracledb_Formatter.prototype.parameter = function parameter(value) {
if (typeof value === 'function') {
return this.outputQuery(this.compileCallback(value), true);
} else if (value instanceof BlobHelper) {
return 'EMPTY_BLOB()';
}
return this.unwrapRaw(value, true) || '?';
};
return Oracledb_Formatter;
}(Oracle_Formatter);
module.exports = Client_Oracledb;