node-oracledb/lib/connection.js

619 lines
20 KiB
JavaScript
Raw Normal View History

2022-05-17 11:09:34 +08:00
// Copyright (c) 2016, 2022, Oracle and/or its affiliates.
2019-03-13 08:02:49 +08:00
//-----------------------------------------------------------------------------
//
// You may not use the identified files except in compliance with the Apache
// License, Version 2.0 (the "License.")
//
// You may obtain a copy of the License at
// http://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.
//
//-----------------------------------------------------------------------------
'use strict';
const BaseDbObject = require('./dbObject.js');
2019-03-13 08:02:49 +08:00
const EventEmitter = require('events');
const QueryStream = require('./queryStream.js');
2019-03-13 08:02:49 +08:00
const nodbUtil = require('./util.js');
const util = require('util');
//-----------------------------------------------------------------------------
// execute()
// Executes a SQL statement and returns the results.
//-----------------------------------------------------------------------------
async function execute(sql, a2, a3) {
let binds = [];
let executeOpts = {};
nodbUtil.checkArgCount(arguments, 1, 3);
nodbUtil.assert(typeof sql === 'string', 'NJS-005', 1);
switch (arguments.length) {
case 2:
nodbUtil.assert(nodbUtil.isObjectOrArray(a2), 'NJS-005', 2);
binds = a2;
break;
case 3:
nodbUtil.assert(nodbUtil.isObjectOrArray(a2), 'NJS-005', 2);
nodbUtil.assert(nodbUtil.isObject(a3), 'NJS-005', 3);
binds = a2;
executeOpts = a3;
break;
}
const result = await this._execute(sql, binds, executeOpts);
// process queries; if a result set is not desired, fetch all of the rows
// from the result set and then destroy the result set
2020-02-26 10:43:33 +08:00
if (result.resultSet && !executeOpts.resultSet) {
result.rows = await result.resultSet._getAllRows(executeOpts, result);
2020-02-26 10:43:33 +08:00
delete result.resultSet;
}
// process implicit results; ensure all implicit results have their fetch
// array size fixed, or, if a result set is not requested, that all rows are
// fetched
if (result.implicitResults) {
for (const key in result.implicitResults) {
const implicitResult = result.implicitResults[key];
if (!executeOpts.resultSet) {
result.implicitResults[key] =
await implicitResult._getAllRows(executeOpts);
2019-05-07 12:43:22 +08:00
}
}
}
2021-04-01 12:48:37 +08:00
return (result);
}
//-----------------------------------------------------------------------------
// executeMany()
// Executes a SQL statement multiple times and returns the results.
//-----------------------------------------------------------------------------
async function executeMany(sql, bindsOrNumIters, a3) {
let options = {};
nodbUtil.checkArgCount(arguments, 2, 3);
nodbUtil.assert(typeof sql === 'string', 'NJS-005', 1);
if (typeof bindsOrNumIters === 'number') {
nodbUtil.assert(Number.isInteger(bindsOrNumIters), 'NJS-005', 2);
nodbUtil.assert(bindsOrNumIters > 0, 'NJS-005', 2);
} else {
nodbUtil.assert(Array.isArray(bindsOrNumIters), 'NJS-005', 2);
nodbUtil.assert(bindsOrNumIters.length > 0, 'NJS-005', 2);
}
if (arguments.length == 3) {
nodbUtil.assert(nodbUtil.isObject(a3), 'NJS-005', 3);
options = a3;
}
2021-04-01 12:48:37 +08:00
return (await this._executeMany(sql, bindsOrNumIters, options));
}
//-----------------------------------------------------------------------------
// getDbObjectClass()
// Returns a database object class given its name. The cache is searched
// first, but if not found, the database is queried and the result is cached
// using the fully qualified name.
//-----------------------------------------------------------------------------
async function getDbObjectClass(name) {
nodbUtil.checkArgCount(arguments, 1, 1);
nodbUtil.assert(typeof name === 'string', 'NJS-005', 1);
let cls = this._dbObjectClasses[name];
if (cls) {
return cls;
}
2021-04-01 12:48:37 +08:00
return (await this._getDbObjectClass(name));
}
2018-03-27 14:02:47 +08:00
//-----------------------------------------------------------------------------
// getStatementInfo()
// Returns information about the statement.
//-----------------------------------------------------------------------------
async function getStatementInfo(sql) {
nodbUtil.checkArgCount(arguments, 1, 1);
2021-04-01 12:48:37 +08:00
return (await this._getStatementInfo(sql));
2018-03-27 14:02:47 +08:00
}
//-----------------------------------------------------------------------------
// commit()
// Commits the current transaction.
//-----------------------------------------------------------------------------
async function commit() {
nodbUtil.checkArgCount(arguments, 0, 0);
await this._commit();
}
2017-06-14 09:58:58 +08:00
//-----------------------------------------------------------------------------
// createLob()
// Creates a temporary LOB and returns it to the caller.
//-----------------------------------------------------------------------------
async function createLob(type) {
nodbUtil.checkArgCount(arguments, 1, 1);
nodbUtil.assert(typeof type === 'number', 'NJS-005', 1);
2021-04-01 12:48:37 +08:00
return (await this._createLob(type));
2017-06-14 09:58:58 +08:00
}
//-----------------------------------------------------------------------------
// rollback()
// Rolls back the current transaction.
//-----------------------------------------------------------------------------
async function rollback() {
nodbUtil.checkArgCount(arguments, 0, 0);
await this._rollback();
}
//-----------------------------------------------------------------------------
// close()
// Closes the connection and makes it unusable for further work.
//-----------------------------------------------------------------------------
async function close(a1) {
let options = {};
nodbUtil.checkArgCount(arguments, 0, 1);
if (arguments.length == 1) {
nodbUtil.assert(nodbUtil.isObject(a1), 'NJS-005', 1);
options = a1;
}
// If already in the process of closing, throw an error instead of doing
// a roundtrip
if (this._closing) {
throw new Error (nodbUtil.getErrorMessage('NJS-003'));
}
this._closing = true;
try {
await this._close(options);
} finally {
this._closing = false;
}
for (const cls of Object.values(this._dbObjectClasses)) {
cls.prototype.constructor = Object;
cls.prototype = null;
}
this.emit('_afterConnClose');
}
//-----------------------------------------------------------------------------
// break()
// Breaks the execution of the statement.
//-----------------------------------------------------------------------------
module.break = async function() {
nodbUtil.checkArgCount(arguments, 0, 0);
await this._break();
};
2018-03-27 13:17:16 +08:00
//-----------------------------------------------------------------------------
// changePassword()
// Changes the password of the specified user.
//-----------------------------------------------------------------------------
async function changePassword(user, password, newPassword) {
nodbUtil.checkArgCount(arguments, 3, 3);
nodbUtil.assert(typeof user === 'string', 'NJS-005', 1);
nodbUtil.assert(typeof password === 'string', 'NJS-005', 2);
nodbUtil.assert(typeof newPassword === 'string', 'NJS-005', 3);
await this._changePassword(user, password, newPassword);
2018-03-27 13:17:16 +08:00
}
//-----------------------------------------------------------------------------
// getQueue()
// Returns a queue with the specified name.
//-----------------------------------------------------------------------------
async function getQueue(name, a2) {
let options = {};
nodbUtil.checkArgCount(arguments, 1, 2);
nodbUtil.assert(typeof name === 'string', 'NJS-005', 1);
if (arguments.length == 2) {
nodbUtil.assert(nodbUtil.isObject(a2), 'NJS-005', 2);
options = a2;
}
2021-04-01 12:48:37 +08:00
return (await this._getQueue(name, options));
}
//-----------------------------------------------------------------------------
// ping()
// Sends a "ping" to the database to see if it is "alive".
//-----------------------------------------------------------------------------
async function ping() {
nodbUtil.checkArgCount(arguments, 0, 0);
await this._ping();
}
//-----------------------------------------------------------------------------
// shutdown()
// Shuts down the database instance.
//-----------------------------------------------------------------------------
async function shutdown(a1) {
let mode = this._oracledb.SHUTDOWN_MODE_DEFAULT;
nodbUtil.checkArgCount(arguments, 0, 1);
if (a1 !== undefined) {
nodbUtil.assert(typeof mode === 'number', 'NJS-005', 1);
mode = a1;
}
await this._shutdown(mode);
}
//-----------------------------------------------------------------------------
// startup()
// Starts up the database instance.
//-----------------------------------------------------------------------------
async function startup(a1) {
let opts = {};
nodbUtil.checkArgCount(arguments, 0, 1);
if (arguments.length == 1) {
nodbUtil.assert(typeof opts === 'object', 'NJS-005', 1);
opts = a1;
}
await this._startup(opts);
}
//-----------------------------------------------------------------------------
// subscribe()
// Creates a subscription which can be used to get notifications of database
// changes or of AQ messages available to dequeue.
//-----------------------------------------------------------------------------
async function subscribe(name, options) {
nodbUtil.checkArgCount(arguments, 2, 2);
nodbUtil.assert(typeof name === 'string', 'NJS-005', 1);
nodbUtil.assert(nodbUtil.isObject(options), 'NJS-005', 2);
await this._subscribe(name, options);
}
//-----------------------------------------------------------------------------
// unsubscribe()
// Destroy a subscription which was earlier created using subscribe().
//-----------------------------------------------------------------------------
async function unsubscribe(name) {
nodbUtil.checkArgCount(arguments, 1, 1);
nodbUtil.assert(typeof name === 'string', 'NJS-005', 1);
await this._unsubscribe(name);
}
2019-11-05 07:54:10 +08:00
// build a database object class
function buildDbObjectClass(schema, name, fqn) {
const DbObject = function(initialValue) {
if (this.isCollection) {
const proxy = new Proxy(this, BaseDbObject._collectionProxyHandler);
if (initialValue !== undefined) {
for (let i = 0; i < initialValue.length; i++) {
this.append(initialValue[i]);
}
}
2021-04-01 12:48:37 +08:00
return (proxy);
2019-11-05 07:54:10 +08:00
} else if (initialValue !== undefined) {
2019-11-19 10:24:38 +08:00
Object.assign(this, initialValue);
2019-11-05 07:54:10 +08:00
}
2019-11-19 10:24:38 +08:00
};
2019-11-05 07:54:10 +08:00
DbObject.prototype = Object.create(BaseDbObject.prototype);
DbObject.prototype.constructor = DbObject;
DbObject.prototype.schema = schema;
DbObject.prototype.name = name;
DbObject.prototype.fqn = fqn;
DbObject.toString = function() {
2021-04-01 12:48:37 +08:00
return ('DbObjectClass [' + fqn + ']');
2019-11-05 07:54:10 +08:00
};
2021-04-01 12:48:37 +08:00
return (DbObject);
2019-11-05 07:54:10 +08:00
}
2021-10-21 16:00:42 +08:00
//-----------------------------------------------------------------------------
// tpcBegin()
// Starts a two-phase-commit transaction
//----------------------------------------------------------------------------
async function tpcBegin(xid, flag, timeout) {
nodbUtil.checkArgCount(arguments, 1, 3);
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
if (arguments.length < 3) {
timeout = 60; // seconds
} else {
nodbUtil.assert(typeof timeout === 'number', 'NJS-005', 3);
}
if (arguments.length < 2) {
flag = this._oracledb.TPC_BEGIN_NEW;
} else {
nodbUtil.assert(typeof flag === 'number', 'NJS-005', 2);
}
await this._tpcBegin(xid, flag, timeout);
}
//-----------------------------------------------------------------------------
// tpcCommit
// Commit the two-phase-commit transaction
//-----------------------------------------------------------------------------
async function tpcCommit(xid, onePhase) {
nodbUtil.checkArgCount(arguments, 0, 2);
if (arguments.length < 2) {
onePhase = false;
} else {
nodbUtil.assert(typeof onePhase === 'boolean', 'NJS-005', 2);
}
if (arguments.length >= 1) {
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
}
await this._tpcCommit(xid, onePhase);
}
//-----------------------------------------------------------------------------
// tpcEnd
// Ends the two-phase-commit transaction
//-----------------------------------------------------------------------------
async function tpcEnd(xid, flag) {
nodbUtil.checkArgCount(arguments, 0, 2);
if (arguments.length < 2) {
flag = this._oracledb.TPC_END_NORMAL;
} else {
nodbUtil.assert(typeof flag === 'number', 'NJS-005', 2);
}
if (arguments.length >= 1) {
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
}
await this._tpcEnd(xid, flag);
}
//-----------------------------------------------------------------------------
// tpcForget
// causes the server to forget a heuristically completed global transaction.
//-----------------------------------------------------------------------------
async function tpcForget(xid) {
nodbUtil.checkArgCount(arguments, 1, 1);
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
await this._tpcForget(xid);
}
//-----------------------------------------------------------------------------
// tpcPrepare
// prepares a global transaction for commit.
//-----------------------------------------------------------------------------
async function tpcPrepare(xid) {
nodbUtil.checkArgCount(arguments, 0, 1);
if (arguments.length >= 1) {
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
}
return await this._tpcPrepare(xid);
}
//-----------------------------------------------------------------------------
// tpcRecover
// Returns a list of pending transactions
//-----------------------------------------------------------------------------
async function tpcRecover(asString) {
nodbUtil.checkArgCount(arguments, 0, 1);
if (arguments.length == 1) {
nodbUtil.assert(typeof asString === 'boolean', 'NJS-005', 1);
} else {
asString = true;
}
const sqlStr = `
SELECT
formatid as "formatId",
UTL_RAW.CAST_TO_VARCHAR2(globalid) as "globalTransactionId",
UTL_RAW.CAST_TO_VARCHAR2(branchid) as "branchQualifier"
FROM DBA_PENDING_TRANSACTIONS`;
const sqlBuf = `
SELECT
formatid as "formatId",
globalid as "globalTransactionId",
branchid as "branchQualifier"
FROM DBA_PENDING_TRANSACTIONS`;
const options = {
outFormat: this._oracledb.OUT_FORMAT_OBJECT,
};
const result = await this._execute(asString ? sqlStr : sqlBuf, {}, options);
return result.resultSet._getAllRows(options, result.metaData, false);
}
//-----------------------------------------------------------------------------
// tpcRollback()
// Rollbacks the current changes in two-phase-commit
//-----------------------------------------------------------------------------
async function tpcRollback(xid) {
nodbUtil.checkArgCount(arguments, 0, 1);
if (arguments.length == 1) {
nodbUtil.assert(nodbUtil.isXid(xid), 'NJS-005', 1);
}
await this._tpcRollback(xid);
}
2019-03-13 08:02:49 +08:00
// define class
class Connection extends EventEmitter {
constructor() {
super();
this._dbObjectClasses = {};
this._requestQueue = [];
this._inProgress = false;
this._closing = false;
}
2019-03-13 08:02:49 +08:00
// extend class with promisified functions
_extend(oracledb) {
this._oracledb = oracledb;
this.break = nodbUtil.callbackify(module.break); // should not be serialized
this.changePassword = nodbUtil.callbackify(nodbUtil.serialize(changePassword));
this.close = nodbUtil.callbackify(nodbUtil.serialize(close));
this.commit = nodbUtil.callbackify(nodbUtil.serialize(commit));
this.createLob = nodbUtil.callbackify(nodbUtil.serialize(createLob));
this.execute = nodbUtil.callbackify(nodbUtil.serialize(execute));
this.executeMany = nodbUtil.callbackify(nodbUtil.serialize(executeMany));
this.getDbObjectClass = nodbUtil.callbackify(nodbUtil.serialize(getDbObjectClass));
this.getQueue = nodbUtil.callbackify(nodbUtil.serialize(getQueue));
this.getStatementInfo = nodbUtil.callbackify(nodbUtil.serialize(getStatementInfo));
this.ping = nodbUtil.callbackify(nodbUtil.serialize(ping));
this.release = nodbUtil.callbackify(nodbUtil.serialize(close));
this.rollback = nodbUtil.callbackify(nodbUtil.serialize(rollback));
this.shutdown = nodbUtil.callbackify(nodbUtil.serialize(shutdown));
this.startup = nodbUtil.callbackify(nodbUtil.serialize(startup));
this.subscribe = nodbUtil.callbackify(nodbUtil.serialize(subscribe));
2021-10-21 16:00:42 +08:00
this.tpcBegin = nodbUtil.callbackify(nodbUtil.serialize(tpcBegin));
this.tpcCommit = nodbUtil.callbackify(nodbUtil.serialize(tpcCommit));
this.tpcEnd = nodbUtil.callbackify(nodbUtil.serialize(tpcEnd));
this.tpcForget = nodbUtil.callbackify(nodbUtil.serialize(tpcForget));
this.tpcPrepare = nodbUtil.callbackify(nodbUtil.serialize(tpcPrepare));
this.tpcRecover = nodbUtil.callbackify(nodbUtil.serialize(tpcRecover));
this.tpcRollback = nodbUtil.callbackify(nodbUtil.serialize(tpcRollback));
this.unsubscribe = nodbUtil.callbackify(nodbUtil.serialize(unsubscribe));
}
async _acquireLock() {
if (this._inProgress) {
if (this._oracledb.errorOnConcurrentExecute) {
throw new Error(nodbUtil.getErrorMessage('NJS-081'));
}
await new Promise((resolve, reject) => {
const payload = {resolve: resolve, reject: reject};
this._requestQueue.push(payload);
});
}
this._inProgress = true;
}
_getConnection() {
return this;
2019-03-13 08:02:49 +08:00
}
_getDbObjectClassJS(schema, name) {
const fqn = `${schema}.${name}`;
let cls = this._dbObjectClasses[fqn];
if (!cls) {
2019-11-05 07:54:10 +08:00
cls = buildDbObjectClass(schema, name, fqn);
cls._connection = this;
2019-11-05 07:54:10 +08:00
this._dbObjectClasses[fqn] = cls;
}
2021-04-01 12:48:37 +08:00
return (cls);
}
_isDate(val) {
2021-04-01 12:48:37 +08:00
return (util.isDate(val));
}
_releaseLock() {
if (this._requestQueue.length > 0) {
const payload = this._requestQueue.shift();
payload.resolve();
} else {
this._inProgress = false;
}
}
2019-03-13 08:02:49 +08:00
// To obtain a SodaDatabase object (high-level SODA object associated with
// current connection)
getSodaDatabase() {
nodbUtil.checkArgCount(arguments, 0, 0);
2021-04-01 12:48:37 +08:00
return (this._getSodaDatabase());
2019-03-13 08:02:49 +08:00
}
2022-02-23 08:58:21 +08:00
//--------------------------------------------------------------------------
// isHealthy()
// To get the health status of the connection.
// NOTE: if this function returns false, the application must close the
// connection obect.
// This is a synchronous call.
//---------------------------------------------------------------------------
isHealthy() {
return (!this._closing && this._isHealthy());
2022-02-23 08:58:21 +08:00
}
2019-03-13 08:02:49 +08:00
// The queryStream function is similar to execute except that it immediately
// returns a QueryStream.
queryStream(sql, binding, options) {
nodbUtil.checkArgCount(arguments, 1, 3);
nodbUtil.assert(typeof sql === 'string', 'NJS-005', 1);
2019-03-13 08:02:49 +08:00
if (binding) {
nodbUtil.assert(nodbUtil.isObjectOrArray(binding), 'NJS-005', 2);
}
2019-03-13 08:02:49 +08:00
if (options) {
nodbUtil.assert(nodbUtil.isObject(options), 'NJS-005', 3);
2019-03-13 08:02:49 +08:00
}
binding = binding || [];
options = options || {};
options.resultSet = true;
const stream = new QueryStream();
2019-03-13 08:02:49 +08:00
// calling execute() via nextTick to ensure that handlers are registered
// prior to the events being emitted
process.nextTick(() => {
try {
const p = this._execute(sql, binding, options);
p.then(function(result) {
if (!result.resultSet) {
stream.destroy(new Error(nodbUtil.getErrorMessage('NJS-019')));
} else {
stream._open(result.resultSet);
}
}, function(err) {
stream.destroy(err);
});
} catch (err) {
stream.destroy(err);
return;
}
2019-03-13 08:02:49 +08:00
});
2021-04-01 12:48:37 +08:00
return (stream);
2019-03-13 08:02:49 +08:00
}
}
2019-03-13 08:02:49 +08:00
// module.exports.extend = extend;
module.exports = Connection;