From 786a05a129d9aeff7f88deaf6d9e4f06b935b665 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 17 Mar 2011 22:02:47 +0100 Subject: Run the dispatcher as early as possible to quickly dismiss 404 errors. --- src/cowboy_http_protocol.erl | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) (limited to 'src/cowboy_http_protocol.erl') diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl index 726f33c..3a8aac7 100644 --- a/src/cowboy_http_protocol.erl +++ b/src/cowboy_http_protocol.erl @@ -23,6 +23,7 @@ socket :: socket(), transport :: module(), dispatch :: dispatch(), + handler :: {Handler::module(), Opts::term()}, timeout :: timeout(), connection = keepalive :: keepalive | close }). @@ -81,12 +82,19 @@ wait_header(Req, State=#state{socket=Socket, -spec header({http_header, I::integer(), Field::http_header(), R::term(), Value::string()} | http_eoh, Req::#http_req{}, State::#state{}) -> ok. -header({http_header, _I, 'Host', _R, Value}, Req, State) -> +header({http_header, _I, 'Host', _R, Value}, Req=#http_req{path=Path}, + State=#state{dispatch=Dispatch}) -> Host = cowboy_dispatcher:split_host(Value), - %% @todo We have Host and Path at this point, dispatch right away and - %% error_terminate(404) early if it fails. - wait_header(Req#http_req{host=Host, - headers=[{'Host', Value}|Req#http_req.headers]}, State); + %% @todo We probably want to filter the Host and Path here to allow + %% things like url rewriting. + case cowboy_dispatcher:match(Host, Path, Dispatch) of + {ok, Handler, Opts, Binds} -> + wait_header(Req#http_req{host=Host, bindings=Binds, + headers=[{'Host', Value}|Req#http_req.headers]}, + State#state{handler={Handler, Opts}}); + {error, notfound} -> + error_terminate(404, State) + end; header({http_header, _I, 'Connection', _R, Connection}, Req, State) -> wait_header(Req#http_req{ headers=[{'Connection', Connection}|Req#http_req.headers]}, @@ -97,22 +105,16 @@ header({http_header, _I, Field, _R, Value}, Req, State) -> %% The Host header is required. header(http_eoh, #http_req{host=undefined}, State) -> error_terminate(400, State); -header(http_eoh, Req=#http_req{host=Host, path=Path}, - State=#state{dispatch=Dispatch}) -> - %% @todo We probably want to filter the Host and Patch here to allow - %% things like url rewriting. - dispatch(cowboy_dispatcher:match(Host, Path, Dispatch), Req, State). +header(http_eoh, Req, State) -> + handler_loop(Req, State). --spec dispatch({ok, Handler::module(), Opts::term(), Binds::bindings()} - | {error, notfound}, Req::#http_req{}, State::#state{}) -> ok. -dispatch({ok, Handler, Opts, Binds}, Req, State) -> - case Handler:handle(Opts, Req#http_req{bindings=Binds}) of +-spec handler_loop(Req::#http_req{}, State::#state{}) -> ok. +handler_loop(Req, State=#state{handler={Handler, Opts}}) -> + case Handler:handle(Opts, Req) of {reply, RCode, RHeaders, RBody} -> reply(RCode, RHeaders, RBody, State) %% @todo stream_reply, request_body, stream_request_body... - end; -dispatch({error, notfound}, _Req, State) -> - error_terminate(404, State). + end. -spec error_terminate(Code::http_status(), State::#state{}) -> ok. error_terminate(Code, State) -> -- cgit v1.2.3