mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Optionally reset the idle timeout when sending data
A new option reset_idle_timeout_on_send has been added. When set to 'true', the idle timeout is reset not only when data is received, but also when data is sent. This allows sending large responses without having to worry about timeouts triggering. The default is currently unchanged but might change in a future release. LH: Greatly reworked the implementation so that the timeout gets reset on almost all socket writes. This essentially completely supersets the original work. Tests are mostly the same although I refactored a bit to avoid test code duplication. This commit also changes HTTP/2 behavior a little when data is received: Cowboy will not attempt to update the window before running stream handler commands to avoid sending WINDOW_UPDATE frames twice. Now it has some small heuristic to ensure they can only be sent once at most.
This commit is contained in:
parent
7400b04b02
commit
f74b69c3ed
5 changed files with 225 additions and 38 deletions
20
test/handlers/streamed_result_h.erl
Normal file
20
test/handlers/streamed_result_h.erl
Normal file
|
@ -0,0 +1,20 @@
|
|||
-module(streamed_result_h).
|
||||
|
||||
-export([init/2]).
|
||||
|
||||
init(Req, Opts) ->
|
||||
N = list_to_integer(binary_to_list(cowboy_req:binding(n, Req))),
|
||||
Interval = list_to_integer(binary_to_list(cowboy_req:binding(interval, Req))),
|
||||
chunked(N, Interval, Req, Opts).
|
||||
|
||||
chunked(N, Interval, Req0, Opts) ->
|
||||
Req = cowboy_req:stream_reply(200, Req0),
|
||||
{ok, loop(N, Interval, Req), Opts}.
|
||||
|
||||
loop(0, _Interval, Req) ->
|
||||
ok = cowboy_req:stream_body("Finished!\n", fin, Req),
|
||||
Req;
|
||||
loop(N, Interval, Req) ->
|
||||
ok = cowboy_req:stream_body(iolist_to_binary([integer_to_list(N), <<"\n">>]), nofin, Req),
|
||||
timer:sleep(Interval),
|
||||
loop(N-1, Interval, Req).
|
|
@ -29,7 +29,8 @@ init_dispatch(_) ->
|
|||
cowboy_router:compile([{"localhost", [
|
||||
{"/", hello_h, []},
|
||||
{"/echo/:key", echo_h, []},
|
||||
{"/resp_iolist_body", resp_iolist_body_h, []}
|
||||
{"/resp_iolist_body", resp_iolist_body_h, []},
|
||||
{"/streamed_result/:n/:interval", streamed_result_h, []}
|
||||
]}]).
|
||||
|
||||
%% Do a prior knowledge handshake (function originally copied from rfc7540_SUITE).
|
||||
|
@ -116,6 +117,15 @@ idle_timeout_reset_on_data(Config) ->
|
|||
cowboy:stop_listener(?FUNCTION_NAME)
|
||||
end.
|
||||
|
||||
idle_timeout_on_send(Config) ->
|
||||
doc("Ensure the idle timeout is not reset when sending (by default)."),
|
||||
http_SUITE:do_idle_timeout_on_send(Config, http2).
|
||||
|
||||
idle_timeout_reset_on_send(Config) ->
|
||||
doc("Ensure the reset_idle_timeout_on_send results in the "
|
||||
"idle timeout resetting when sending ."),
|
||||
http_SUITE:do_idle_timeout_reset_on_send(Config, http2).
|
||||
|
||||
inactivity_timeout(Config) ->
|
||||
doc("Terminate when the inactivity timeout is reached."),
|
||||
ProtoOpts = #{
|
||||
|
|
|
@ -45,7 +45,8 @@ init_dispatch(_) ->
|
|||
{"/", hello_h, []},
|
||||
{"/echo/:key", echo_h, []},
|
||||
{"/resp/:key[/:arg]", resp_h, []},
|
||||
{"/set_options/:key", set_options_h, []}
|
||||
{"/set_options/:key", set_options_h, []},
|
||||
{"/streamed_result/:n/:interval", streamed_result_h, []}
|
||||
]}]).
|
||||
|
||||
chunked_false(Config) ->
|
||||
|
@ -252,6 +253,82 @@ idle_timeout_infinity(Config) ->
|
|||
cowboy:stop_listener(?FUNCTION_NAME)
|
||||
end.
|
||||
|
||||
idle_timeout_on_send(Config) ->
|
||||
doc("Ensure the idle timeout is not reset when sending (by default)."),
|
||||
do_idle_timeout_on_send(Config, http).
|
||||
|
||||
%% Also used by http2_SUITE.
|
||||
do_idle_timeout_on_send(Config, Protocol) ->
|
||||
{ok, _} = cowboy:start_clear(?FUNCTION_NAME, [{port, 0}], #{
|
||||
env => #{dispatch => init_dispatch(Config)},
|
||||
idle_timeout => 1000
|
||||
}),
|
||||
Port = ranch:get_port(?FUNCTION_NAME),
|
||||
try
|
||||
ConnPid = gun_open([{type, tcp}, {protocol, Protocol}, {port, Port}|Config]),
|
||||
{ok, Protocol} = gun:await_up(ConnPid),
|
||||
#{socket := Socket} = gun:info(ConnPid),
|
||||
Pid = get_remote_pid_tcp(Socket),
|
||||
StreamRef = gun:get(ConnPid, "/streamed_result/10/250"),
|
||||
Ref = erlang:monitor(process, Pid),
|
||||
receive
|
||||
{gun_response, ConnPid, StreamRef, nofin, _Status, _Headers} ->
|
||||
do_idle_timeout_recv_loop(Ref, Pid, ConnPid, StreamRef, false)
|
||||
after 2000 ->
|
||||
error(timeout)
|
||||
end
|
||||
after
|
||||
cowboy:stop_listener(?FUNCTION_NAME)
|
||||
end.
|
||||
|
||||
idle_timeout_reset_on_send(Config) ->
|
||||
doc("Ensure the reset_idle_timeout_on_send results in the "
|
||||
"idle timeout resetting when sending ."),
|
||||
do_idle_timeout_reset_on_send(Config, http).
|
||||
|
||||
%% Also used by http2_SUITE.
|
||||
do_idle_timeout_reset_on_send(Config, Protocol) ->
|
||||
{ok, _} = cowboy:start_clear(?FUNCTION_NAME, [{port, 0}], #{
|
||||
env => #{dispatch => init_dispatch(Config)},
|
||||
idle_timeout => 1000,
|
||||
reset_idle_timeout_on_send => true
|
||||
}),
|
||||
Port = ranch:get_port(?FUNCTION_NAME),
|
||||
try
|
||||
ConnPid = gun_open([{type, tcp}, {protocol, Protocol}, {port, Port}|Config]),
|
||||
{ok, Protocol} = gun:await_up(ConnPid),
|
||||
#{socket := Socket} = gun:info(ConnPid),
|
||||
Pid = get_remote_pid_tcp(Socket),
|
||||
StreamRef = gun:get(ConnPid, "/streamed_result/10/250"),
|
||||
Ref = erlang:monitor(process, Pid),
|
||||
receive
|
||||
{gun_response, ConnPid, StreamRef, nofin, _Status, _Headers} ->
|
||||
do_idle_timeout_recv_loop(Ref, Pid, ConnPid, StreamRef, true)
|
||||
after 2000 ->
|
||||
error(timeout)
|
||||
end
|
||||
after
|
||||
cowboy:stop_listener(?FUNCTION_NAME)
|
||||
end.
|
||||
|
||||
do_idle_timeout_recv_loop(Ref, Pid, ConnPid, StreamRef, ExpectCompletion) ->
|
||||
receive
|
||||
{gun_data, ConnPid, StreamRef, nofin, _Data} ->
|
||||
do_idle_timeout_recv_loop(Ref, Pid, ConnPid, StreamRef, ExpectCompletion);
|
||||
{gun_data, ConnPid, StreamRef, fin, _Data} when ExpectCompletion ->
|
||||
gun:close(ConnPid);
|
||||
{gun_data, ConnPid, StreamRef, fin, _Data} ->
|
||||
gun:close(ConnPid),
|
||||
error(completed);
|
||||
{'DOWN', Ref, process, Pid, _} when ExpectCompletion ->
|
||||
gun:close(ConnPid),
|
||||
error(exited);
|
||||
{'DOWN', Ref, process, Pid, _} ->
|
||||
ok
|
||||
after 2000 ->
|
||||
error(timeout)
|
||||
end.
|
||||
|
||||
persistent_term_router(Config) ->
|
||||
doc("The router can retrieve the routes from persistent_term storage."),
|
||||
case erlang:function_exported(persistent_term, get, 1) of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue