Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
http: Write hex/base64 chunks properly
Browse files Browse the repository at this point in the history
This removes a dubious performance "optimization" where strings body
chunks were concatenated to one another (and to the headers) without any
regard for their encoding.
  • Loading branch information
isaacs committed Aug 15, 2013
1 parent dce02a1 commit 6d3d60a
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 24 deletions.
34 changes: 10 additions & 24 deletions lib/_http_outgoing.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ OutgoingMessage.prototype._send = function(data, encoding) {
// the same packet. Future versions of Node are going to take care of
// this at a lower level and in a more general way.
if (!this._headerSent) {
if (util.isString(data)) {
if (util.isString(data) &&
encoding !== 'hex' &&
encoding !== 'base64') {
data = this._header + data;
} else {
this.output.unshift(this._header);
Expand Down Expand Up @@ -162,25 +164,6 @@ OutgoingMessage.prototype._writeRaw = function(data, encoding) {


OutgoingMessage.prototype._buffer = function(data, encoding) {
if (data.length === 0) return;

var length = this.output.length;

if (length === 0 || !util.isString(data)) {
this.output.push(data);
this.outputEncodings.push(encoding);
return false;
}

var lastEncoding = this.outputEncodings[length - 1];
var lastData = this.output[length - 1];

if ((encoding && lastEncoding === encoding) ||
(!encoding && data.constructor === lastData.constructor)) {
this.output[length - 1] = lastData + data;
return false;
}

this.output.push(data);
this.outputEncodings.push(encoding);

Expand Down Expand Up @@ -421,13 +404,16 @@ OutgoingMessage.prototype.write = function(chunk, encoding) {
ret = this._send(chunk, encoding);
} else {
// buffer, or a non-toString-friendly encoding
len = chunk.length;
if (util.isString(chunk))
len = Buffer.byteLength(chunk, encoding);
else
len = chunk.length;

if (this.connection)
this.connection.cork();
this._send(len.toString(16));
this._send(len.toString(16), 'ascii');
this._send(crlf_buf);
this._send(chunk);
this._send(chunk, encoding);
ret = this._send(crlf_buf);
if (this.connection)
this.connection.uncork();
Expand Down Expand Up @@ -493,7 +479,7 @@ OutgoingMessage.prototype.end = function(data, encoding) {
}

if (this.chunkedEncoding) {
ret = this._send('0\r\n' + this._trailer + '\r\n'); // Last chunk.
ret = this._send('0\r\n' + this._trailer + '\r\n', 'ascii');
} else {
// Force a flush, HACK.
ret = this._send('');
Expand Down
53 changes: 53 additions & 0 deletions test/simple/test-http-hex-write.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// Copyright Joyent, Inc. and other Node contributors.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.

var common = require('../common');
var assert = require('assert');

var http = require('http');

var expect = 'hex\nutf8\n';
var data = '';
var ended = false;

process.on('exit', function() {
assert(ended);
assert.equal(data, expect);
console.log('ok');
});

http.createServer(function(q, s) {
s.setHeader('content-length', expect.length);
s.write('6865780a', 'hex');
s.write('utf8\n');
s.end();
this.close();
}).listen(common.PORT, function() {
http.request({ port: common.PORT }).on('response', function(res) {
res.setEncoding('ascii');
res.on('data', function(c) {
data += c;
});
res.on('end', function() {
ended = true;
});
}).end();
});

0 comments on commit 6d3d60a

Please sign in to comment.