mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Fix typo * Enable eslint:recommended and remove unused eslint plugins Enables eslint:recommended by disabling the options that would not pass. Also removes dependencies for included but unused eslint plugins. * Convert console.error(...) calls to use %s placeholders * Enable eslint no-console rule * Add and enable eslint-node-plugin * Correct typo * Enable eslint no-unused-vars
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
'use strict'
|
|
/**
|
|
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* README.md file in the root directory of this source tree.
|
|
*/
|
|
|
|
var util = require('util')
|
|
var Client = require('./client')
|
|
var defaults = require('./defaults')
|
|
var Connection = require('./connection')
|
|
var Pool = require('pg-pool')
|
|
|
|
const poolFactory = (Client) => {
|
|
var BoundPool = function (options) {
|
|
var config = Object.assign({ Client: Client }, options)
|
|
return new Pool(config)
|
|
}
|
|
|
|
util.inherits(BoundPool, Pool)
|
|
|
|
return BoundPool
|
|
}
|
|
|
|
var PG = function (clientConstructor) {
|
|
this.defaults = defaults
|
|
this.Client = clientConstructor
|
|
this.Query = this.Client.Query
|
|
this.Pool = poolFactory(this.Client)
|
|
this._pools = []
|
|
this.Connection = Connection
|
|
this.types = require('pg-types')
|
|
}
|
|
|
|
if (typeof process.env.NODE_PG_FORCE_NATIVE !== 'undefined') {
|
|
module.exports = new PG(require('./native'))
|
|
} else {
|
|
module.exports = new PG(Client)
|
|
|
|
// lazy require native module...the native module may not have installed
|
|
module.exports.__defineGetter__('native', function () {
|
|
delete module.exports.native
|
|
var native = null
|
|
try {
|
|
native = new PG(require('./native'))
|
|
} catch (err) {
|
|
if (err.code !== 'MODULE_NOT_FOUND') {
|
|
throw err
|
|
}
|
|
/* eslint-disable no-console */
|
|
console.error(err.message)
|
|
/* eslint-enable no-console */
|
|
}
|
|
module.exports.native = native
|
|
return native
|
|
})
|
|
}
|