2018-05-25 23:42:30 +08:00
|
|
|
const PSQL = require('cartodb-psql');
|
|
|
|
const copyTo = require('pg-copy-streams').to;
|
|
|
|
const copyFrom = require('pg-copy-streams').from;
|
2018-06-21 19:01:59 +08:00
|
|
|
const { Client } = require('pg');
|
2018-05-25 23:42:30 +08:00
|
|
|
|
2018-06-21 19:39:33 +08:00
|
|
|
const ACTION_TO = 'to';
|
|
|
|
const ACTION_FROM = 'from';
|
2018-07-20 21:32:32 +08:00
|
|
|
const DEFAULT_TIMEOUT = "'5h'";
|
2018-06-21 19:39:33 +08:00
|
|
|
|
2018-06-14 02:12:21 +08:00
|
|
|
module.exports = class StreamCopy {
|
2018-07-20 21:32:32 +08:00
|
|
|
|
2018-06-21 19:21:23 +08:00
|
|
|
constructor(sql, userDbParams) {
|
2018-07-20 16:22:54 +08:00
|
|
|
const dbParams = Object.assign({}, userDbParams, {
|
|
|
|
port: global.settings.db_batch_port || userDbParams.port
|
|
|
|
});
|
|
|
|
this.pg = new PSQL(dbParams);
|
2018-06-12 22:56:18 +08:00
|
|
|
this.sql = sql;
|
2018-06-21 20:53:07 +08:00
|
|
|
this.stream = null;
|
2018-07-20 21:32:32 +08:00
|
|
|
this.timeout = global.settings.copy_timeout || DEFAULT_TIMEOUT;
|
2018-06-12 22:56:18 +08:00
|
|
|
}
|
|
|
|
|
2018-06-21 19:39:33 +08:00
|
|
|
static get ACTION_TO() {
|
|
|
|
return ACTION_TO;
|
|
|
|
}
|
|
|
|
|
|
|
|
static get ACTION_FROM() {
|
|
|
|
return ACTION_FROM;
|
|
|
|
}
|
|
|
|
|
2018-06-21 21:18:26 +08:00
|
|
|
getPGStream(action, cb) {
|
2018-06-21 19:21:23 +08:00
|
|
|
this.pg.connect((err, client, done) => {
|
2018-06-08 22:58:32 +08:00
|
|
|
if (err) {
|
2018-06-14 00:26:58 +08:00
|
|
|
return cb(err);
|
2018-06-08 22:58:32 +08:00
|
|
|
}
|
|
|
|
|
2018-07-20 21:32:32 +08:00
|
|
|
client.query('SET statement_timeout=' + this.timeout);
|
|
|
|
|
2018-06-21 21:16:47 +08:00
|
|
|
let streamMaker = action === ACTION_TO ? copyTo : copyFrom;
|
|
|
|
this.stream = streamMaker(this.sql);
|
2018-06-21 20:53:07 +08:00
|
|
|
const pgstream = client.query(this.stream);
|
2018-06-14 00:26:58 +08:00
|
|
|
|
2018-06-08 22:58:32 +08:00
|
|
|
pgstream
|
2018-06-14 06:54:03 +08:00
|
|
|
.on('end', () => done())
|
2018-06-21 19:01:59 +08:00
|
|
|
.on('error', err => done(err))
|
|
|
|
.on('cancelQuery', err => {
|
2018-06-21 21:16:47 +08:00
|
|
|
if(action === ACTION_TO) {
|
|
|
|
// See https://www.postgresql.org/docs/9.5/static/protocol-flow.html#PROTOCOL-COPY
|
|
|
|
const cancelingClient = new Client(client.connectionParameters);
|
|
|
|
cancelingClient.cancel(client, pgstream);
|
|
|
|
|
|
|
|
// see https://node-postgres.com/api/pool#releasecallback
|
|
|
|
done(err);
|
|
|
|
} else if (action === ACTION_FROM) {
|
|
|
|
client.connection.sendCopyFail('CARTO SQL API: Connection closed by client');
|
|
|
|
}
|
2018-06-21 19:39:33 +08:00
|
|
|
});
|
2018-06-08 22:50:12 +08:00
|
|
|
|
2018-06-21 20:38:22 +08:00
|
|
|
cb(null, pgstream);
|
2018-06-08 22:50:12 +08:00
|
|
|
});
|
2018-05-25 23:42:30 +08:00
|
|
|
}
|
2018-06-21 19:21:23 +08:00
|
|
|
|
2018-06-21 20:53:07 +08:00
|
|
|
getRowCount() {
|
|
|
|
return this.stream.rowCount;
|
2018-06-21 19:21:23 +08:00
|
|
|
}
|
2018-05-26 00:50:56 +08:00
|
|
|
};
|