node-postgres/lib/query.js

193 lines
5.1 KiB
JavaScript
Raw Normal View History

var EventEmitter = require('events').EventEmitter;
2011-10-11 08:40:52 +08:00
var util = require('util');
var Result = require(__dirname + '/result');
var Types = require(__dirname + '/types');
var utils = require(__dirname + '/utils');
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); }
config = utils.normalizeQueryConfig(config, values, callback);
this.text = config.text;
this.values = config.values;
this.rows = config.rows;
this.types = config.types;
this.name = config.name;
this.binary = config.binary;
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 || "";
this.callback = config.callback;
this._fieldNames = [];
this._fieldConverters = [];
this._result = new Result();
this.isPreparedStatement = false;
this._canceledDueToError = false;
EventEmitter.call(this);
};
2011-10-11 08:40:52 +08:00
util.inherits(Query, EventEmitter);
var p = Query.prototype;
p.requiresPreparation = function() {
//named queries must always be prepared
2013-01-21 21:35:52 +08:00
if(this.name) { return true; }
//always prepare if there are max number of rows expected per
//portal execution
2013-01-21 21:35:52 +08:00
if(this.rows) { return true; }
//don't prepare empty text queries
2013-01-21 21:35:52 +08:00
if(!this.text) { return false; }
//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; }
//prepare if there are values
return (this.values || 0).length > 0;
};
var noParse = function(val) {
return val;
};
//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 = [];
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;
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
}
};
p.handleDataRow = function(msg) {
var self = this;
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);
}
}
self.emit('row', row, self._result);
//if there is a callback collect rows
if(self.callback) {
self._result.addRow(row);
}
};
p.handleCommandComplete = function(msg) {
this._result.addCommandComplete(msg);
};
p.handleReadyForQuery = function() {
if (this._canceledDueToError) {
return this.handleError(this._canceledDueToError);
}
if(this.callback) {
this.callback(null, this._result);
}
this.emit('end', this._result);
};
p.handleError = function(err) {
if (this._canceledDueToError) {
err = this._canceledDueToError;
this._canceledDueToError = false;
}
//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);
} else {
this.emit('error', err);
}
this.emit('end');
};
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];
};
p.getRows = function(connection) {
connection.execute({
2011-07-13 12:08:16 +08:00
portal: this.portalName,
rows: this.rows
}, true);
connection.flush();
};
p.prepare = function(connection) {
var self = this;
//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
if(!this.hasBeenParsed(connection)) {
connection.parse({
text: self.text,
name: self.name,
types: self.types
}, true);
if(this.name) {
connection.parsedStatements[this.name] = true;
}
}
2011-05-02 13:32:30 +08:00
//TODO is there some better way to prepare values for the database?
if(self.values) {
for(var i = 0, len = self.values.length; i < len; i++) {
self.values[i] = utils.prepareValue(self.values[i]);
}
}
//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,
statement: self.name,
values: self.values,
binary: self.binary
}, true);
connection.describe({
type: 'P',
2011-07-13 12:08:16 +08:00
name: self.portalName || ""
}, true);
this.getRows(connection);
};
p.streamData = function (connection) {
if ( this.stream ) this.stream.startStreamingToConnection(connection);
else connection.sendCopyFail('No source stream defined');
};
p.handleCopyFromChunk = function (chunk) {
if ( this.stream ) {
this.stream.handleChunk(chunk);
}
//if there are no stream (for example when copy to query was sent by
//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
};
module.exports = Query;