2010-11-03 13:27:11 +08:00
|
|
|
var EventEmitter = require('events').EventEmitter;
|
2010-11-04 05:47:26 +08:00
|
|
|
var sys = require('sys');var sys = require('sys');
|
2011-01-19 12:39:07 +08:00
|
|
|
var Result = require(__dirname + "/result");
|
2011-03-04 02:05:29 +08:00
|
|
|
var types = require(__dirname + "/types");
|
2010-11-03 13:27:11 +08:00
|
|
|
|
|
|
|
var Query = function(config) {
|
|
|
|
this.text = config.text;
|
|
|
|
this.values = config.values;
|
|
|
|
this.rows = config.rows;
|
|
|
|
this.types = config.types;
|
|
|
|
this.name = config.name;
|
|
|
|
//for code clarity purposes we'll declare this here though it's not
|
|
|
|
//set or used until a rowDescription message comes in
|
|
|
|
this.rowDescription = null;
|
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;
|
2010-11-03 13:27:11 +08:00
|
|
|
EventEmitter.call(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
sys.inherits(Query, EventEmitter);
|
|
|
|
var p = Query.prototype;
|
|
|
|
|
|
|
|
p.requiresPreparation = function() {
|
|
|
|
return (this.values || 0).length > 0 || this.name || this.rows;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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-02-05 08:51:34 +08:00
|
|
|
this._fieldNames[i] = field.name;
|
2011-03-04 02:05:29 +08:00
|
|
|
this._fieldConverters[i] = types.getStringTypeParser(field.dataTypeID);
|
2011-01-24 09:01:28 +08:00
|
|
|
};
|
2011-02-05 08:51:34 +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);
|
|
|
|
|
|
|
|
//if there is a callback collect rows
|
|
|
|
if(self.callback) {
|
|
|
|
self._result.addRow(row);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
p.handleCommandComplete = function(msg) {
|
|
|
|
this._result.addCommandComplete(msg);
|
|
|
|
};
|
2011-01-24 09:01:28 +08:00
|
|
|
|
2011-02-05 09:15:57 +08:00
|
|
|
p.handleReadyForQuery = function() {
|
|
|
|
if(this.callback) {
|
|
|
|
this.callback(null, this._result);
|
|
|
|
}
|
|
|
|
this.emit('end', this._result);
|
|
|
|
};
|
|
|
|
|
|
|
|
p.handleError = function(err) {
|
|
|
|
//if callback supplied do not emit error event as uncaught error
|
|
|
|
//events will bubble up to node process
|
|
|
|
if(this.callback) {
|
|
|
|
this.callback(err)
|
|
|
|
} else {
|
|
|
|
this.emit('error', err);
|
|
|
|
}
|
|
|
|
this.emit('end');
|
|
|
|
};
|
|
|
|
|
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({
|
|
|
|
portal: this.name,
|
|
|
|
rows: this.rows
|
|
|
|
});
|
|
|
|
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-01-24 09:01:28 +08:00
|
|
|
connection.parsedStatements[this.name] = true;
|
2010-11-03 13:27:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO is there some btter way to prepare values for the database?
|
|
|
|
if(self.values) {
|
|
|
|
self.values = self.values.map(function(val) {
|
|
|
|
return (val instanceof Date) ? JSON.stringify(val) : val;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//http://developer.postgresql.org/pgdocs/postgres/protocol-flow.html#PROTOCOL-FLOW-EXT-QUERY
|
|
|
|
connection.bind({
|
|
|
|
portal: self.name,
|
|
|
|
statement: self.name,
|
|
|
|
values: self.values
|
|
|
|
});
|
|
|
|
|
|
|
|
connection.describe({
|
|
|
|
type: 'P',
|
|
|
|
name: self.name || ""
|
|
|
|
});
|
|
|
|
|
2011-02-05 09:30:30 +08:00
|
|
|
this.getRows(connection);
|
2010-11-03 13:27:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Query;
|