Browse Source

request.respond(null) sends eof

v0.7.4-release
Ryan 16 years ago
parent
commit
90ea571602
  1. 8
      count-hosts.js
  2. 7
      http_request.h
  3. 16
      js_http_request_processor.cc

8
count-hosts.js

@ -1,12 +1,12 @@
function Process(request) { function Process(request) {
log("Processing " + request.path + ". method: " + request.method); log("Processing " + request.path + ". method: " + request.method);
// sends null on the last chunk.
request.onBody = function (chunk) { request.onBody = function (chunk) {
log("body chunk: " + chunk); log("body chunk: '" + chunk + "'");
} }
request.respond("HTTP/1.0 200 OK\r\n") request.respond("HTTP/1.0 200 OK\r\n")
request.respond("Content-Type: text-plain\r\nContent-Length: 6\r\n\r\nhello\n"); request.respond("Content-Type: text-plain\r\nContent-Length: 6\r\n\r\nhello\n");
/* request.respond(null); // eof
request.response_complete();
*/
} }

7
http_request.h

@ -21,11 +21,12 @@ public:
class HttpRequest { class HttpRequest {
public: public:
HttpRequest (Connection &c) : connection(c) { ebb_request_init(&parser_info); } HttpRequest (Connection &c) : connection(c)
{
ebb_request_init(&parser_info);
}
~HttpRequest() { } ~HttpRequest() { }
const string& Path () { return path; }
string path; string path;
Connection &connection; Connection &connection;

16
js_http_request_processor.cc

@ -387,8 +387,7 @@ Handle<Value> JsHttpRequestProcessor::GetPath
) )
{ {
HttpRequest* request = UnwrapRequest(info.Holder()); HttpRequest* request = UnwrapRequest(info.Holder());
const string& path = request->Path(); return String::New(request->path.c_str(), request->path.length());
return String::New(path.c_str(), path.length());
} }
Handle<Value> JsHttpRequestProcessor::GetMethod Handle<Value> JsHttpRequestProcessor::GetMethod
@ -426,6 +425,17 @@ Handle<Value> JsHttpRequestProcessor::RespondCallback
if (args.Length() < 1) return v8::Undefined(); if (args.Length() < 1) return v8::Undefined();
HandleScope scope; HandleScope scope;
Handle<Value> arg = args[0]; Handle<Value> arg = args[0];
// TODO Make sure that we write reponses in the correct order. With
// keep-alive it's possible that one response can return before the last
// one has been sent!!!
if(arg == Null()) {
request->connection.socket.on_drain = oi_socket_close;
} else {
Local<String> s = arg->ToString(); Local<String> s = arg->ToString();
oi_buf *buf = oi_buf_new2(s->Length()); oi_buf *buf = oi_buf_new2(s->Length());
@ -433,6 +443,8 @@ Handle<Value> JsHttpRequestProcessor::RespondCallback
oi_socket_write(&request->connection.socket, buf); oi_socket_write(&request->connection.socket, buf);
}
return v8::Undefined(); return v8::Undefined();
} }

Loading…
Cancel
Save