Closes stream responses on error. Fixes #188
This commit is contained in:
parent
f3c6b1ecc6
commit
025a6abdaa
4
NEWS.md
4
NEWS.md
@ -1,6 +1,10 @@
|
|||||||
1.19.1 - 2014-mm-dd
|
1.19.1 - 2014-mm-dd
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
* Closes stream responses on error (#188)
|
||||||
|
|
||||||
|
|
||||||
1.19.0 - 2014-11-21
|
1.19.0 - 2014-11-21
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
var pg = require('./pg'),
|
var pg = require('./pg'),
|
||||||
util = require('util'),
|
util = require('util'),
|
||||||
|
PgErrorHandler = require(global.settings.app_root + '/app/postgresql/error_handler'),
|
||||||
_ = require('underscore');
|
_ = require('underscore');
|
||||||
|
|
||||||
function JsonFormat() {
|
function JsonFormat() {
|
||||||
this.buffer = '';
|
this.buffer = '';
|
||||||
|
this.lastKnownResult = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
JsonFormat.prototype = new pg('json');
|
JsonFormat.prototype = new pg('json');
|
||||||
@ -11,6 +13,7 @@ JsonFormat.prototype = new pg('json');
|
|||||||
JsonFormat.prototype._contentType = "application/json; charset=utf-8";
|
JsonFormat.prototype._contentType = "application/json; charset=utf-8";
|
||||||
|
|
||||||
JsonFormat.prototype.formatResultFields = function(flds) {
|
JsonFormat.prototype.formatResultFields = function(flds) {
|
||||||
|
flds = flds || [];
|
||||||
var nfields = {};
|
var nfields = {};
|
||||||
for (var i=0; i<flds.length; ++i) {
|
for (var i=0; i<flds.length; ++i) {
|
||||||
var f = flds[i];
|
var f = flds[i];
|
||||||
@ -55,21 +58,23 @@ JsonFormat.prototype.startStreaming = function() {
|
|||||||
this._streamingStarted = true;
|
this._streamingStarted = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
JsonFormat.prototype.handleQueryRow = function(row) {
|
JsonFormat.prototype.handleQueryRow = function(row, result) {
|
||||||
if ( ! this._streamingStarted ) {
|
if ( ! this._streamingStarted ) {
|
||||||
this.startStreaming();
|
this.startStreaming();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.lastKnownResult = result;
|
||||||
|
|
||||||
this.buffer += (this.total_rows++ ? ',' : '') + JSON.stringify(row);
|
this.buffer += (this.total_rows++ ? ',' : '') + JSON.stringify(row);
|
||||||
|
|
||||||
if (this.total_rows % (this.opts.bufferedRows || 1000)) {
|
if (this.total_rows % (1||this.opts.bufferedRows || 1000)) {
|
||||||
this.opts.sink.write(this.buffer);
|
this.opts.sink.write(this.buffer);
|
||||||
this.buffer = '';
|
this.buffer = '';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
JsonFormat.prototype.handleQueryEnd = function(result) {
|
JsonFormat.prototype.handleQueryEnd = function(result) {
|
||||||
if ( this.error ) {
|
if (this.error && !this._streamingStarted) {
|
||||||
this.callback(this.error);
|
this.callback(this.error);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -82,6 +87,8 @@ JsonFormat.prototype.handleQueryEnd = function(result) {
|
|||||||
|
|
||||||
this.opts.total_time = (Date.now() - this.start_time)/1000;
|
this.opts.total_time = (Date.now() - this.start_time)/1000;
|
||||||
|
|
||||||
|
result = result || this.lastKnownResult || {};
|
||||||
|
|
||||||
// Drop field description for skipped fields
|
// Drop field description for skipped fields
|
||||||
if (this.hasSkipFields) {
|
if (this.hasSkipFields) {
|
||||||
var newfields = [];
|
var newfields = [];
|
||||||
@ -99,9 +106,14 @@ JsonFormat.prototype.handleQueryEnd = function(result) {
|
|||||||
'],', // end of "rows" array
|
'],', // end of "rows" array
|
||||||
'"time":', JSON.stringify(total_time),
|
'"time":', JSON.stringify(total_time),
|
||||||
',"fields":', JSON.stringify(this.formatResultFields(result.fields)),
|
',"fields":', JSON.stringify(this.formatResultFields(result.fields)),
|
||||||
',"total_rows":', JSON.stringify(result.rowCount)
|
',"total_rows":', JSON.stringify(result.rowCount || this.total_rows)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
if (this.error) {
|
||||||
|
var pgErrorHandler = new PgErrorHandler(this.error);
|
||||||
|
out.push(',"error":', JSON.stringify([pgErrorHandler.getMessage()]));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if ( result.notices && result.notices.length > 0 ) {
|
if ( result.notices && result.notices.length > 0 ) {
|
||||||
var notices = {},
|
var notices = {},
|
||||||
|
@ -1441,4 +1441,27 @@ test('GET with callback must return 200 status error even if it is an error', fu
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('GET with callback must return 200 status error even if it is an error', function(done){
|
||||||
|
assert.response(
|
||||||
|
app,
|
||||||
|
{
|
||||||
|
url: "/api/v1/sql?" + querystring.stringify({
|
||||||
|
q: "SELECT 100/(cartodb_id - 3) cdb_ratio FROM untitle_table_4"
|
||||||
|
}),
|
||||||
|
headers: {host: 'vizzuality.cartodb.com'},
|
||||||
|
method: 'GET'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
status: 200
|
||||||
|
},
|
||||||
|
function(res) {
|
||||||
|
var parsedBody = JSON.parse(res.body);
|
||||||
|
assert.equal(parsedBody.rows.length, 2);
|
||||||
|
assert.deepEqual(parsedBody.fields, {"cdb_ratio": {"type": "number"}});
|
||||||
|
assert.deepEqual(parsedBody.error, ["division by zero"]);
|
||||||
|
done();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user