Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

graceful shutdown #178

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 34 additions & 6 deletions src/mochiweb_socket_server.erl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
ssl=false,
ssl_opts=[{ssl_imp, new}],
acceptor_pool=sets:new(),
profile_fun=undefined}).
profile_fun=undefined,
shutdown_delay=0}).

-define(is_old_state(State), not is_record(State, mochiweb_socket_server)).

Expand Down Expand Up @@ -60,6 +61,8 @@ set(Name, Property, _Value) ->
[Name, Property]).

stop(Name) when is_atom(Name) orelse is_pid(Name) ->
ShutdownDelay = get(Name, shutdown_delay),
graceful_shutdown(Name, ShutdownDelay),
gen_server:call(Name, stop);
stop({Scope, Name}) when Scope =:= local orelse Scope =:= global ->
stop(Name);
Expand Down Expand Up @@ -145,7 +148,10 @@ parse_options([{ssl_opts, SslOpts} | Rest], State) when is_list(SslOpts) ->
SslOpts1 = [{ssl_imp, new} | proplists:delete(ssl_imp, SslOpts)],
parse_options(Rest, State#mochiweb_socket_server{ssl_opts=SslOpts1});
parse_options([{profile_fun, ProfileFun} | Rest], State) when is_function(ProfileFun) ->
parse_options(Rest, State#mochiweb_socket_server{profile_fun=ProfileFun}).
parse_options(Rest, State#mochiweb_socket_server{profile_fun=ProfileFun});
parse_options([{shutdown_delay, ShutdownDelay} | Rest], State) ->
ShutdownDelayInt = ensure_int(ShutdownDelay),
parse_options(Rest, State#mochiweb_socket_server{shutdown_delay=ShutdownDelayInt}).


start_server(F, State=#mochiweb_socket_server{ssl=Ssl, name=Name}) ->
Expand Down Expand Up @@ -236,7 +242,9 @@ do_get(port, #mochiweb_socket_server{port=Port}) ->
do_get(waiting_acceptors, #mochiweb_socket_server{acceptor_pool=Pool}) ->
sets:size(Pool);
do_get(active_sockets, #mochiweb_socket_server{active_sockets=ActiveSockets}) ->
ActiveSockets.
ActiveSockets;
do_get(shutdown_delay, #mochiweb_socket_server{shutdown_delay=ShutdownDelay}) ->
ShutdownDelay.


state_to_proplist(#mochiweb_socket_server{name=Name,
Expand Down Expand Up @@ -265,6 +273,8 @@ handle_call({get, Property}, _From, State) ->
{reply, Res, State};
handle_call(stop, _From, State) ->
{stop, normal, ok, State};
handle_call(prep_stop, _From, State) ->
{reply, close_listen_socket(State), State};
handle_call(_Message, _From, State) ->
Res = error,
{reply, Res, State}.
Expand Down Expand Up @@ -294,7 +304,10 @@ handle_cast({set, profile_fun, ProfileFun}, State) ->

terminate(Reason, State) when ?is_old_state(State) ->
terminate(Reason, upgrade_state(State));
terminate(_Reason, #mochiweb_socket_server{listen=Listen}) ->
terminate(_Reason, State) ->
close_listen_socket(State).

close_listen_socket(#mochiweb_socket_server{listen=Listen}) ->
mochiweb_socket:close(Listen).

code_change(_OldVsn, State, _Extra) ->
Expand Down Expand Up @@ -363,7 +376,21 @@ handle_info(Info, State) ->
error_logger:info_report([{'INFO', Info}, {'State', State}]),
{noreply, State}.


graceful_shutdown(_, 0) ->
ok;
graceful_shutdown(Name, ShutdownDelay) ->
gen_server:call(Name, prep_stop),
WaitLoop = fun (_, Delay) when Delay =< 0 ->
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to have a more active solution that doesn't require polling.

ok;
(Loop, Delay) ->
case mochiweb_socket_server:get(Name, active_sockets) of
0 -> ok;
X -> error_logger:info_msg("Waiting for ~p clients to finish~n", [X]),
timer:sleep(min(5, Delay)),
Loop(Loop, Delay - 5)
end
end,
WaitLoop(WaitLoop, ShutdownDelay).

%%
%% Tests
Expand All @@ -388,7 +415,8 @@ upgrade_state_test() ->
acceptor_pool_size=acceptor_pool_size,
ssl=ssl, ssl_opts=ssl_opts,
acceptor_pool=acceptor_pool,
profile_fun=undefined},
profile_fun=undefined,
shutdown_delay=0},
?assertEqual(CmpState, State).

-endif.
65 changes: 65 additions & 0 deletions test/mochiweb_socket_server_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ client_fun(Socket, [{send_pid, To} | Cmds]) ->
To ! {client, self()},
client_fun(Socket, Cmds);
client_fun(Socket, [{send, Data, Tester} | Cmds]) ->
client_fun(Socket, [{send, Data, Tester, 0} | Cmds]);
client_fun(Socket, [{send, Data, Tester, Delay} | Cmds]) ->
timer:sleep(Delay),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not good to have tests that sleep, they can cause the test runs to take much longer than they should and they can intermittently pass or fail depending on external factors (e.g. the specs or load on the system running the tests). It's best to have code that doesn't require the wall clock to work, or at least use mocking when testing it to avoid any sleeping.

case gen_tcp:send(Socket, Data) of
ok -> ok;
{error, E} -> Tester ! {client_send_error, self(), E}
Expand Down Expand Up @@ -140,10 +143,72 @@ normal_acceptor_test_fun() ->
?assertEqual(Expected, Result)
end || {Max, PoolSize, NumClients, Expected} <- Tests].

graceful_shutdown_test_fun() ->
Tester = self(),
NumClients = 2,
ClientSendDelay = 10,
BufferTime = 5,
ShutDownDelay = (NumClients * ClientSendDelay) + BufferTime,
ServerOpts = [{max, NumClients}, {acceptor_pool_size, NumClients}, {shutdown_delay, ShutDownDelay}],
ServerLoop =
fun (Socket, _Opts) ->
Tester ! {server_accepted, self()},
mochiweb_socket:setopts(Socket, [{packet, 1}]),
echo_loop(Socket)
end,
{Server, Port} = socket_server(ServerOpts, ServerLoop),
Data = <<"data">>,
ClientCmds = [{send_pid, Tester}, {wait_msg, go},
{send, Data, Tester, ClientSendDelay},
{close_sock}, {send_msg, done, Tester}],
start_client_conns(Port, NumClients, fun client_fun/2, ClientCmds, Tester),

ConnectLoop =
fun (Loop, Connected, Accepted, Errors) ->
case (length(Accepted) + Errors >= NumClients
andalso length(Connected) + Errors >= NumClients) of
true -> {Connected, Accepted};
false ->
receive
{server_accepted, ServerPid} ->
Loop(Loop, Connected, [ServerPid | Accepted], Errors);
{client, ClientPid} ->
Loop(Loop, Connected ++ [ClientPid], Accepted, Errors);
{client_conn_error, _E} ->
Loop(Loop, Connected, Accepted, Errors + 1)
end
end
end,
{Connected, _} = ConnectLoop(ConnectLoop, [], [], 0),

spawn(mochiweb_socket_server, stop, [Server]),

WaitLoop =
fun (_Loop, Done, Error, []) ->
{Done, Error};
(Loop, Done, Error, [NextClient | Rest]) ->
NextClient ! go,
receive
{done, From} ->
Loop(Loop, [From | Done], Error, Rest);
E ->
Loop(Loop, Done, [E | Error], Rest)
end
end,

{Done, Error} = WaitLoop(WaitLoop, [], [], Connected),
?assertEqual(NumClients, length(Done)),
?assertEqual([], Error).


-define(LARGE_TIMEOUT, 40).

normal_acceptor_test_() ->
Tests = normal_acceptor_test_fun(),
{timeout, ?LARGE_TIMEOUT, Tests}.


graceful_shutdown_test_() ->
{timeout, ?LARGE_TIMEOUT, [fun() -> graceful_shutdown_test_fun() end]}.

-endif.