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

Commit

Permalink
Add Request objects on the HTTP server can be interrupted.
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jun 12, 2009
1 parent 825d7a8 commit 916b9ca
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 30 deletions.
17 changes: 7 additions & 10 deletions src/http.cc
Expand Up @@ -80,9 +80,7 @@ void
HTTPConnection::OnReceive (const void *buf, size_t len)
{
http_parser_execute(&parser_, static_cast<const char*>(buf), len);

if (http_parser_has_error(&parser_))
ForceClose();
if (http_parser_has_error(&parser_)) ForceClose();
}

int
Expand Down Expand Up @@ -187,16 +185,15 @@ HTTPConnection::on_headers_complete (http_parser *parser)
);
message_handler->Set(HTTP_VERSION_SYMBOL, String::New(version));

// SHOULD KEEP ALIVE
message_handler->Set( SHOULD_KEEP_ALIVE_SYMBOL
, http_parser_should_keep_alive(&connection->parser_) ? True() : False()
);

message_handler->Set(SHOULD_KEEP_ALIVE_SYMBOL,
http_parser_should_keep_alive(&connection->parser_) ? True() : False());

Local<Value> on_headers_complete_v = message_handler->Get(ON_HEADERS_COMPLETE_SYMBOL);
Local<Value> on_headers_complete_v =
message_handler->Get(ON_HEADERS_COMPLETE_SYMBOL);
if (on_headers_complete_v->IsFunction() == false) return 0;

Handle<Function> on_headers_complete = Handle<Function>::Cast(on_headers_complete_v);
Handle<Function> on_headers_complete =
Handle<Function>::Cast(on_headers_complete_v);

TryCatch try_catch;
Local<Value> ret = on_headers_complete->Call(message_handler, 0, NULL);
Expand Down
34 changes: 17 additions & 17 deletions src/http.js
Expand Up @@ -239,22 +239,24 @@ node.http.Server = function (RequestHandler, options) {
var responses = [];

connection.onMessage = function ( ) {
var interrupted = false;
// filled in ...
var req = { method : null // at onHeadersComplete
, uri : "" // at onURI
, httpVersion : null // at onHeadersComplete
, httpVersion : null // at onHeadersComplete
, headers : [] // at onHeaderField, onHeaderValue
, onBody : null // by user
, onBodyComplete : null // by user
, interrupt : function ( ) { interrupted = true; }
, setBodyEncoding : function (enc) {
connection.setEncoding(enc);
}
}
};
var res = new node.http.ServerResponse(connection, responses);

this.onURI = function (data) {
req.uri += data;
return true
return !interrupted;
};

var last_was_value = false;
Expand All @@ -266,7 +268,7 @@ node.http.Server = function (RequestHandler, options) {
else
headers.push([data]);
last_was_value = false;
return true;
return !interrupted;
};

this.onHeaderValue = function (data) {
Expand All @@ -276,31 +278,29 @@ node.http.Server = function (RequestHandler, options) {
else
last_pair[1] += data;
last_was_value = true;
return true;
return !interrupted;
};

this.onHeadersComplete = function () {
req.httpVersion = this.httpVersion;
req.method = this.method;
req.uri = node.http.parseUri(req.uri); // TODO parse the URI lazily

req.method = this.method;
// TODO parse the URI lazily?
req.uri = node.http.parseUri(req.uri);
res.should_keep_alive = this.should_keep_alive;

return RequestHandler.apply(server, [req, res]);
RequestHandler.apply(server, [req, res]);

return !interrupted;
};

this.onBody = function (chunk) {
if (req.onBody)
return req.onBody(chunk);
else
return true;
if (req.onBody) req.onBody(chunk);
return !interrupted;
};

this.onMessageComplete = function () {
if (req.onBodyComplete)
return req.onBodyComplete();
else
return true;
if (req.onBodyComplete) req.onBodyComplete();
return !interrupted;
};
};

Expand Down
2 changes: 1 addition & 1 deletion test/test-http-server.js
Expand Up @@ -43,7 +43,7 @@ function onLoad() {
c.onReceive = function (chunk) {
server_response += chunk;

if ( requests_sent == 1) {
if (requests_sent == 1) {
c.send("POST /quit HTTP/1.1\r\n\r\n");
c.close();
assertEquals(c.readyState, "readOnly");
Expand Down
12 changes: 10 additions & 2 deletions website/api.html
Expand Up @@ -622,7 +622,7 @@ <h3 id="http_server_request"><code>node.http.ServerRequest</code></h3>
<code>"1.1"</code>, <code>"1.0"</code>
</dd>

<dt><code>req.onBody</code></dt>
<dt><code>req.onBody = function (chunk) { }; </code></dt>
<dd>
Callback. Should be set by the user to be informed of when a
piece of the message body is received. Example:
Expand All @@ -640,7 +640,7 @@ <h3 id="http_server_request"><code>node.http.ServerRequest</code></h3>
</p>
</dd>

<dt><code>req.onBodyComplete</code></dt>
<dt><code>req.onBodyComplete = function () { };</code></dt>
<dd>
Callback. Made exactly once for each message. No arguments.
After <code>onBodyComplete</code> is executed
Expand All @@ -652,6 +652,14 @@ <h3 id="http_server_request"><code>node.http.ServerRequest</code></h3>
Set the encoding for the request body. Either <code>"utf8"</code>
or <code>"raw"</code>. Defaults to raw.
</dd>

<dt><code>req.interrupt()</code></dt>
<dd>
Interrupt the request. You will not receive anymore callbacks.
This is useful if, for example someone is streaming up a file but it
is too large and neesd to be stopped. The connection to the client
will be closed immediately.
</dd>
</dl>

<h3 id="http_server_response"><code>node.http.ServerResponse</code></h3>
Expand Down

0 comments on commit 916b9ca

Please sign in to comment.