2010-11-03 13:27:11 +08:00
|
|
|
var EventEmitter = require('events').EventEmitter;
|
2011-10-11 08:40:52 +08:00
|
|
|
var util = require('util');
|
|
|
|
|
2012-07-06 11:08:18 +08:00
|
|
|
var Result = require(__dirname + '/result');
|
|
|
|
var Types = require(__dirname + '/types');
|
|
|
|
var utils = require(__dirname + '/utils');
|
2010-11-03 13:27:11 +08:00
|
|
|
|
2012-08-10 07:31:32 +08:00
|
|
|
var Query = function(config, values, callback) {
|
|
|
|
// use of "new" optional
|
2013-01-21 21:35:52 +08:00
|
|
|
if (!(this instanceof Query)) { return new Query(config, values, callback); }
|
2013-01-24 08:12:12 +08:00
|
|
|
|
2012-12-11 14:30:16 +08:00
|
|
|
config = utils.normalizeQueryConfig(config, values, callback);
|
2013-01-24 08:12:12 +08:00
|
|
|
|
2010-11-03 13:27:11 +08:00
|
|
|
this.text = config.text;
|
|
|
|
this.values = config.values;
|
|
|
|
this.rows = config.rows;
|
|
|
|
this.types = config.types;
|
|
|
|
this.name = config.name;
|
2011-02-14 23:42:04 +08:00
|
|
|
this.binary = config.binary;
|
2013-01-16 19:04:28 +08:00
|
|
|
this.stream = config.stream;
|
2011-07-13 12:08:16 +08:00
|
|
|
//use unique portal name each time
|
2013-01-21 21:35:52 +08:00
|
|
|
this.portal = config.portal || "";
|
2010-11-15 14:10:21 +08:00
|
|
|
this.callback = config.callback;
|
2011-02-05 08:51:34 +08:00
|
|
|
this._fieldNames = [];
|
|
|
|
this._fieldConverters = [];
|
|
|
|
this._result = new Result();
|
2011-02-05 09:30:30 +08:00
|
|
|
this.isPreparedStatement = false;
|
2013-01-18 06:24:08 +08:00
|
|
|
this._canceledDueToError = false;
|
2010-11-03 13:27:11 +08:00
|
|
|
EventEmitter.call(this);
|
|
|
|
};
|
|
|
|
|
2011-10-11 08:40:52 +08:00
|
|
|
util.inherits(Query, EventEmitter);
|
2010-11-03 13:27:11 +08:00
|
|
|
var p = Query.prototype;
|
|
|
|
|
|
|
|
p.requiresPreparation = function() {
|
2012-12-11 12:44:58 +08:00
|
|
|
//named queries must always be prepared
|
2013-01-21 21:35:52 +08:00
|
|
|
if(this.name) { return true; }
|
2012-12-11 12:44:58 +08:00
|
|
|
//always prepare if there are max number of rows expected per
|
2013-01-24 08:12:12 +08:00
|
|
|
//portal execution
|
2013-01-21 21:35:52 +08:00
|
|
|
if(this.rows) { return true; }
|
2012-12-11 12:44:58 +08:00
|
|
|
//don't prepare empty text queries
|
2013-01-21 21:35:52 +08:00
|
|
|
if(!this.text) { return false; }
|
2012-12-11 12:44:58 +08:00
|
|
|
//binary should be prepared to specify results should be in binary
|
|
|
|
//unless there are no parameters
|
2013-01-21 21:35:52 +08:00
|
|
|
if(this.binary && !this.values) { return false; }
|
2012-12-11 12:44:58 +08:00
|
|
|
//prepare if there are values
|
|
|
|
return (this.values || 0).length > 0;
|
2010-11-03 13:27:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var noParse = function(val) {
|
|
|
|
return val;
|
|
|
|
};
|
|
|
|
|
2011-02-05 08:51:34 +08:00
|
|
|
//associates row metadata from the supplied
|
|
|
|
//message with this query object
|
|
|
|
//metadata used when parsing row results
|
|
|
|
p.handleRowDescription = function(msg) {
|
|
|
|
this._fieldNames = [];
|
|
|
|
this._fieldConverters = [];
|
2011-01-24 09:01:28 +08:00
|
|
|
var len = msg.fields.length;
|
|
|
|
for(var i = 0; i < len; i++) {
|
|
|
|
var field = msg.fields[i];
|
2011-03-03 15:19:07 +08:00
|
|
|
var format = field.format;
|
2011-02-05 08:51:34 +08:00
|
|
|
this._fieldNames[i] = field.name;
|
2011-11-19 04:07:00 +08:00
|
|
|
this._fieldConverters[i] = Types.getTypeParser(field.dataTypeID, format);
|
2013-01-21 21:35:52 +08:00
|
|
|
}
|
2011-02-05 08:51:34 +08:00
|
|
|
};
|
2011-01-24 09:01:28 +08:00
|
|
|
|
2011-02-05 08:51:34 +08:00
|
|
|
p.handleDataRow = function(msg) {
|
2010-11-03 13:27:11 +08:00
|
|
|
var self = this;
|
2011-02-05 08:51:34 +08:00
|
|
|
var row = {};
|
|
|
|
for(var i = 0; i < msg.fields.length; i++) {
|
|
|
|
var rawValue = msg.fields[i];
|
|
|
|
if(rawValue === null) {
|
|
|
|
//leave null values alone
|
|
|
|
row[self._fieldNames[i]] = null;
|
|
|
|
} else {
|
|
|
|
//convert value to javascript
|
|
|
|
row[self._fieldNames[i]] = self._fieldConverters[i](rawValue);
|
2010-11-15 14:10:21 +08:00
|
|
|
}
|
2011-02-05 08:51:34 +08:00
|
|
|
}
|
2012-03-26 21:05:34 +08:00
|
|
|
self.emit('row', row, self._result);
|
2010-11-15 06:50:38 +08:00
|
|
|
|
2011-02-05 08:51:34 +08:00
|
|
|
//if there is a callback collect rows
|
|
|
|
if(self.callback) {
|
|
|
|
self._result.addRow(row);
|
|
|
|
}
|
|
|
|
};
|
2010-12-03 07:47:54 +08:00
|
|
|
|
2011-02-05 08:51:34 +08:00
|
|
|
p.handleCommandComplete = function(msg) {
|
|
|
|
this._result.addCommandComplete(msg);
|
|
|
|
};
|
2010-11-15 06:50:38 +08:00
|
|
|
|
2011-02-05 09:15:57 +08:00
|
|
|
p.handleReadyForQuery = function() {
|
2013-01-18 20:04:21 +08:00
|
|
|
if (this._canceledDueToError) {
|
|
|
|
return this.handleError(this._canceledDueToError);
|
|
|
|
}
|
2011-02-05 09:15:57 +08:00
|
|
|
if(this.callback) {
|
|
|
|
this.callback(null, this._result);
|
|
|
|
}
|
|
|
|
this.emit('end', this._result);
|
|
|
|
};
|
2011-01-24 09:01:28 +08:00
|
|
|
|
2011-02-05 09:15:57 +08:00
|
|
|
p.handleError = function(err) {
|
2013-01-18 06:24:08 +08:00
|
|
|
if (this._canceledDueToError) {
|
|
|
|
err = this._canceledDueToError;
|
|
|
|
this._canceledDueToError = false;
|
|
|
|
}
|
2011-02-05 09:15:57 +08:00
|
|
|
//if callback supplied do not emit error event as uncaught error
|
|
|
|
//events will bubble up to node process
|
|
|
|
if(this.callback) {
|
2013-01-21 21:35:52 +08:00
|
|
|
this.callback(err);
|
2011-02-05 09:15:57 +08:00
|
|
|
} else {
|
|
|
|
this.emit('error', err);
|
|
|
|
}
|
|
|
|
this.emit('end');
|
|
|
|
};
|
2010-11-15 06:50:38 +08:00
|
|
|
|
2010-11-03 13:27:11 +08:00
|
|
|
p.submit = function(connection) {
|
|
|
|
var self = this;
|
|
|
|
if(this.requiresPreparation()) {
|
|
|
|
this.prepare(connection);
|
|
|
|
} else {
|
|
|
|
connection.query(this.text);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
p.hasBeenParsed = function(connection) {
|
|
|
|
return this.name && connection.parsedStatements[this.name];
|
|
|
|
};
|
|
|
|
|
2011-02-05 09:30:30 +08:00
|
|
|
p.getRows = function(connection) {
|
|
|
|
connection.execute({
|
2011-07-13 12:08:16 +08:00
|
|
|
portal: this.portalName,
|
2011-02-05 09:30:30 +08:00
|
|
|
rows: this.rows
|
2011-04-17 00:42:23 +08:00
|
|
|
}, true);
|
2011-02-05 09:30:30 +08:00
|
|
|
connection.flush();
|
|
|
|
};
|
|
|
|
|
2010-11-03 13:27:11 +08:00
|
|
|
p.prepare = function(connection) {
|
|
|
|
var self = this;
|
2011-02-05 09:30:30 +08:00
|
|
|
//prepared statements need sync to be called after each command
|
|
|
|
//complete or when an error is encountered
|
|
|
|
this.isPreparedStatement = true;
|
|
|
|
//TODO refactor this poor encapsulation
|
2010-11-03 13:27:11 +08:00
|
|
|
if(!this.hasBeenParsed(connection)) {
|
|
|
|
connection.parse({
|
|
|
|
text: self.text,
|
|
|
|
name: self.name,
|
|
|
|
types: self.types
|
2011-04-17 00:42:23 +08:00
|
|
|
}, true);
|
2012-12-11 12:44:58 +08:00
|
|
|
if(this.name) {
|
|
|
|
connection.parsedStatements[this.name] = true;
|
|
|
|
}
|
2010-11-03 13:27:11 +08:00
|
|
|
}
|
|
|
|
|
2011-05-02 13:32:30 +08:00
|
|
|
//TODO is there some better way to prepare values for the database?
|
2010-11-03 13:27:11 +08:00
|
|
|
if(self.values) {
|
2012-07-06 11:08:18 +08:00
|
|
|
for(var i = 0, len = self.values.length; i < len; i++) {
|
|
|
|
self.values[i] = utils.prepareValue(self.values[i]);
|
|
|
|
}
|
2010-11-03 13:27:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//http://developer.postgresql.org/pgdocs/postgres/protocol-flow.html#PROTOCOL-FLOW-EXT-QUERY
|
|
|
|
connection.bind({
|
2011-07-13 12:08:16 +08:00
|
|
|
portal: self.portalName,
|
2010-11-03 13:27:11 +08:00
|
|
|
statement: self.name,
|
2011-02-14 23:42:04 +08:00
|
|
|
values: self.values,
|
|
|
|
binary: self.binary
|
2011-04-17 00:42:23 +08:00
|
|
|
}, true);
|
2010-11-03 13:27:11 +08:00
|
|
|
|
|
|
|
connection.describe({
|
|
|
|
type: 'P',
|
2011-07-13 12:08:16 +08:00
|
|
|
name: self.portalName || ""
|
2011-04-17 00:42:23 +08:00
|
|
|
}, true);
|
2010-11-03 13:27:11 +08:00
|
|
|
|
2011-02-05 09:30:30 +08:00
|
|
|
this.getRows(connection);
|
2010-11-03 13:27:11 +08:00
|
|
|
};
|
2012-09-27 18:28:00 +08:00
|
|
|
p.streamData = function (connection) {
|
2013-01-16 17:11:55 +08:00
|
|
|
if ( this.stream ) this.stream.startStreamingToConnection(connection);
|
2013-01-24 08:12:12 +08:00
|
|
|
else connection.sendCopyFail('No source stream defined');
|
2012-09-27 18:28:00 +08:00
|
|
|
};
|
|
|
|
p.handleCopyFromChunk = function (chunk) {
|
2013-01-18 06:24:08 +08:00
|
|
|
if ( this.stream ) {
|
|
|
|
this.stream.handleChunk(chunk);
|
2013-01-24 08:12:12 +08:00
|
|
|
}
|
2013-01-18 06:24:08 +08:00
|
|
|
//if there are no stream (for example when copy to query was sent by
|
2013-01-24 08:12:12 +08:00
|
|
|
//query method instead of copyTo) error will be handled
|
|
|
|
//on copyOutResponse event, so silently ignore this error here
|
2013-01-21 21:35:52 +08:00
|
|
|
};
|
2010-11-03 13:27:11 +08:00
|
|
|
module.exports = Query;
|